:root {
  --cream: #f8f3f0;
  --paper: #fffdfb;
  --ink: #075b55;
  --ink-deep: #064c48;
  --muted: #5b7773;
  --mist: #d7e9e5;
  --soft-teal: #e7f3f0;
  --teal: #2d9892;
  --aqua: #69bdb6;
  --coral: #f16f58;
  --coral-dark: #e75b47;
  --peach: #ffad8c;
  --gold: #eab96b;
  --line: rgba(7, 91, 85, 0.14);
  --shadow: 0 28px 80px rgba(25, 77, 72, 0.13);
  --font: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(105, 189, 182, 0.13), transparent 23rem),
    radial-gradient(circle at 6% 35%, rgba(255, 173, 140, 0.11), transparent 20rem),
    var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1240px, calc(100% - 48px));
  min-height: 98px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.7px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 5px 9px rgba(241, 111, 88, 0.18));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(241, 111, 88, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

.header-cta {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.68);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: rgba(7, 91, 85, 0.34);
  background: var(--paper);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100vh - 98px);
  margin: 0 auto;
  padding: 58px 0 104px;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.8fr);
  gap: clamp(60px, 9vw, 140px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.1vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-intro {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 780;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 13px 30px rgba(231, 91, 71, 0.25);
}

.button-primary:hover {
  box-shadow: 0 17px 36px rgba(231, 91, 71, 0.32);
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
.brand:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(45, 152, 146, 0.38);
  outline-offset: 3px;
}

.launch-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-list {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 16px 23px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  display: grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  place-items: center;
  color: var(--teal);
  background: rgba(45, 152, 146, 0.1);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  width: min(100%, 530px);
  margin-left: auto;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-orb-coral {
  top: -45px;
  right: -45px;
  width: 170px;
  height: 170px;
  background: rgba(255, 173, 140, 0.28);
}

.ambient-orb-teal {
  bottom: 2%;
  left: -70px;
  width: 210px;
  height: 210px;
  background: rgba(105, 189, 182, 0.2);
}

.app-window {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: 29px 30px 27px;
  overflow: hidden;
  border: 1px solid rgba(7, 91, 85, 0.13);
  border-radius: 54px;
  background:
    linear-gradient(180deg, rgba(255, 237, 225, 0.9) 0%, rgba(233, 246, 242, 0.88) 56%, rgba(198, 232, 226, 0.94) 100%);
  box-shadow: var(--shadow);
}

.app-window::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(7, 91, 85, 0.07) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  opacity: 0.18;
  content: "";
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.mini-mark {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  place-items: center;
  color: white;
  background: var(--coral);
  font-size: 20px;
  line-height: 1;
}

.privacy-pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(7, 91, 85, 0.1);
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.privacy-pill svg {
  width: 13px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-greeting {
  margin: 36px 0 0;
}

.app-greeting span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.app-greeting h2 {
  margin: 7px 0 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.pond {
  margin: 9px -22px -5px;
}

.pond-rings {
  display: block;
  width: 100%;
  overflow: visible;
}

.lotus-bloom {
  animation: bloom 4.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.floating-seed {
  animation: float-seed 3.4s ease-in-out infinite;
}

.seed-two {
  animation-delay: -1.4s;
}

.progress-card {
  position: relative;
  z-index: 3;
  padding: 18px 20px 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 12px 30px rgba(7, 91, 85, 0.09);
  backdrop-filter: blur(12px);
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.progress-head span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #95682b;
  background: #fff2d8;
  font-size: 10px;
  font-weight: 750;
}

.progress-track {
  height: 7px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7ecea;
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--peach), var(--coral));
  animation: breathe 4s ease-in-out infinite;
  transform-origin: left;
}

.progress-card p {
  margin: 9px 0 0;
  color: #80918e;
  font-size: 10px;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(7, 91, 85, 0.09);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 12px 32px rgba(7, 91, 85, 0.12);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 750;
}

.note-private {
  top: 31%;
  left: -52px;
  animation: float-note 4s ease-in-out infinite;
}

.note-private i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.note-soon {
  right: -26px;
  bottom: 20%;
  animation: float-note 4.5s ease-in-out -1.3s infinite;
}

.note-soon span {
  color: var(--gold);
}

.promise {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 102px clamp(32px, 6vw, 88px) 88px;
  border-radius: 50px;
  color: #f7fbfa;
  background:
    radial-gradient(circle at 88% 12%, rgba(105, 189, 182, 0.19), transparent 22rem),
    radial-gradient(circle at 8% 100%, rgba(241, 111, 88, 0.11), transparent 22rem),
    var(--ink-deep);
  overflow: hidden;
}

.promise-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  column-gap: 50px;
}

.promise-heading .eyebrow {
  grid-column: 1 / -1;
}

.eyebrow-light {
  color: #a8d6d1;
}

.promise-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.promise-heading > p:last-child {
  max-width: 480px;
  margin: 7px 0 0;
  align-self: end;
  color: #b8d1ce;
  font-size: 17px;
  line-height: 1.65;
}

.promise-grid {
  display: grid;
  margin-top: 75px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promise-card {
  position: relative;
  min-height: 330px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease;
}

.promise-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.card-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #78aaa5;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.promise-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  border-radius: 19px;
  place-items: center;
  background: rgba(105, 189, 182, 0.12);
}

.promise-icon svg {
  width: 32px;
  fill: none;
  stroke: #88c7c1;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-rhythm {
  background: rgba(234, 185, 107, 0.12);
}

.icon-rhythm svg {
  stroke: var(--gold);
}

.icon-lotus {
  background: rgba(241, 111, 88, 0.12);
}

.icon-lotus svg {
  stroke: var(--peach);
}

.promise-card h3 {
  margin: 0;
  color: white;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.promise-card p {
  margin: 12px 0 0;
  color: #a9c5c2;
  font-size: 14px;
  line-height: 1.6;
}

.waitlist-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0 105px;
}

.waitlist-card {
  position: relative;
  display: grid;
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  background:
    radial-gradient(circle at 4% 100%, rgba(105, 189, 182, 0.19), transparent 18rem),
    linear-gradient(135deg, #fff5ec 0%, #edf8f5 100%);
  box-shadow: 0 25px 70px rgba(7, 91, 85, 0.08);
}

.waitlist-copy,
.waitlist-form {
  position: relative;
  z-index: 2;
}

.waitlist-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 59px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.waitlist-copy > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-form {
  align-self: center;
}

.form-row {
  display: flex;
  padding: 6px;
  border: 1px solid rgba(7, 91, 85, 0.16);
  border-radius: 23px;
  background: rgba(255, 253, 251, 0.89);
  box-shadow: 0 10px 24px rgba(7, 91, 85, 0.07);
}

.form-row input {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.form-row input::placeholder {
  color: #879b98;
}

.form-row .button {
  min-height: 51px;
  flex: 0 0 auto;
}

.consent-row {
  display: grid;
  margin: 14px 8px 0;
  align-items: start;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.honey-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 23px;
  margin: 12px 8px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: #a3453a;
}

.waitlist-form.is-success .form-row {
  border-color: rgba(45, 152, 146, 0.5);
}

.waitlist-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.waitlist-decoration .leaf {
  position: absolute;
  z-index: 1;
  display: block;
  width: 75px;
  height: 29px;
  border-radius: 100% 0 100% 0;
  background: rgba(45, 152, 146, 0.12);
}

.leaf-one {
  top: -14px;
  right: 14%;
  transform: rotate(26deg);
}

.leaf-two {
  right: -16px;
  bottom: 12%;
  transform: rotate(-23deg) scale(1.3);
}

.leaf-three {
  bottom: -10px;
  left: 19%;
  transform: rotate(41deg) scale(0.8);
}

.site-footer {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  font-size: 19px;
}

.footer-brand .brand-mark {
  width: 28px;
  height: 28px;
}

.site-footer > p {
  margin: 0;
}

.copyright {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms !important;
}

.reveal-delay-2 {
  transition-delay: 180ms !important;
}

.reveal-delay-3 {
  transition-delay: 270ms !important;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(241, 111, 88, 0.1); }
  50% { box-shadow: 0 0 0 7px rgba(241, 111, 88, 0.03); }
}

@keyframes bloom {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-5px) rotate(0.6deg); }
}

@keyframes float-seed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes float-note {
  0%, 100% { transform: translateY(0) rotate(-0.2deg); }
  50% { transform: translateY(-7px) rotate(0.2deg); }
}

@keyframes breathe {
  0%, 100% { transform: scaleX(0.96); }
  50% { transform: scaleX(1); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 420px;
    gap: 46px;
  }

  .app-window {
    min-height: 620px;
    padding-inline: 25px;
  }

  .pond {
    margin-top: 2px;
  }

  .floating-note {
    display: none;
  }
}

@media (max-width: 850px) {
  .hero {
    padding-top: 42px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 570px);
    margin: 10px auto 0;
  }

  .promise-heading {
    display: block;
  }

  .promise-heading > p:last-child {
    margin-top: 25px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-card {
    min-height: 0;
  }

  .promise-icon {
    margin-bottom: 34px;
  }

  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 30px 0;
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .waitlist-wrap,
  .site-footer {
    width: min(100% - 32px, 100%);
  }

  .site-header {
    min-height: 82px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .availability {
    display: none;
  }

  .header-cta {
    padding: 9px 14px;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 80px;
    gap: 60px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 59px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .launch-note {
    align-self: center;
  }

  .trust-list {
    gap: 12px 17px;
  }

  .app-window {
    min-height: 585px;
    padding: 24px 20px 21px;
    border-radius: 38px;
  }

  .privacy-pill {
    font-size: 9px;
  }

  .app-greeting {
    margin-top: 28px;
  }

  .app-greeting h2 {
    font-size: 27px;
  }

  .pond {
    margin: 4px -31px -2px;
  }

  .progress-card {
    padding: 16px;
  }

  .promise {
    width: calc(100% - 16px);
    padding: 68px 20px 20px;
    border-radius: 35px;
  }

  .promise-heading {
    padding: 0 8px;
  }

  .promise-heading h2 {
    font-size: 41px;
  }

  .promise-grid {
    margin-top: 48px;
  }

  .promise-card {
    padding: 24px;
    border-radius: 24px;
  }

  .waitlist-wrap {
    padding: 80px 0;
  }

  .waitlist-card {
    padding: 35px 20px;
    border-radius: 30px;
  }

  .waitlist-copy h2 {
    font-size: 42px;
  }

  .form-row {
    padding: 0;
    border: 0;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    box-shadow: none;
  }

  .form-row input {
    min-height: 58px;
    padding: 0 17px;
    border: 1px solid rgba(7, 91, 85, 0.16);
    border-radius: 18px;
    background: rgba(255, 253, 251, 0.9);
  }

  .form-row .button {
    width: 100%;
  }

  .site-footer {
    min-height: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
