:root {
  --bg: #fbf7ee;
  --bg-2: #f3eadc;
  --card: #ffffff;
  --card-strong: #f7efe3;
  --text: #12231d;
  --muted: #65756e;
  --line: rgba(18, 35, 29, 0.12);
  --green: #0e9f6e;
  --green-2: #0c7f5a;
  --gold: #f4c96b;
  --red: #ff6b6b;
  --cream: #fffaf1;
  --shadow: 0 24px 70px rgba(44, 38, 28, 0.11);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg) 0%, #fffaf1 45%, #f6efe4 100%);
  color: var(--text);
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Noto Serif", Georgia, serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 35, 29, 0.08);
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1rem 1.25rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.7rem;
  letter-spacing: -0.03em;
  font-family: "Quicksand", system-ui, sans-serif;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 1rem;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: "Quicksand", system-ui, sans-serif;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-2);
  font-weight: 700;
  padding: 0.65rem 1rem;
  font-family: "Quicksand", system-ui, sans-serif;
}

.section-pad {
  margin: 0 auto;
  max-width: 1180px;
  padding: 5.8rem 1.25rem;
}

.hero {
  padding-top: 5.3rem;
}

.hero-grid,
.split,
.waitlist-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--green-2);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Quicksand", system-ui, sans-serif;
}

.hero .eyebrow {
  font-size: 1rem;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.pulse-dot {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(14, 159, 110, 0.12);
  height: 0.55rem;
  width: 0.55rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.1rem);
  letter-spacing: -0.075em;
  line-height: 0.93;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  letter-spacing: -0.058em;
  line-height: 1;
  margin: 0.75rem 0 1rem;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
  margin-bottom: 0.65rem;
}

.hero-lede,
.section-heading p,
.split p,
.waitlist-copy p,
.pilot-card p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.trust-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 35, 29, 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
}

.hero-visual {
  min-height: 590px;
  position: relative;
}

.phone-shell {
  background: #f8f0e3;
  border: 1px solid rgba(18, 35, 29, 0.14);
  border-radius: 2.35rem;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 355px;
  padding: 1.1rem;
  position: relative;
}

.phone-top {
  display: flex;
  justify-content: center;
  padding: 0.3rem 0 1rem;
}

.phone-top span {
  background: rgba(18, 35, 29, 0.2);
  border-radius: 999px;
  height: 0.45rem;
  width: 5rem;
}

.app-card,
.mini-card,
.problem-grid article,
.audience-card,
.steps article,
.waitlist-form,
.pilot-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(44, 38, 28, 0.08);
}

.app-card {
  border-radius: 1.4rem;
  padding: 1rem;
}

.status-card {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
}

.status-card strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.status-pill {
  background: rgba(14, 159, 110, 0.11);
  border: 1px solid rgba(14, 159, 110, 0.24);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 0.65rem;
}

.metric-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

.mini-card {
  border-radius: 1.2rem;
  padding: 1rem;
}

.mini-card strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0.45rem 0 0.2rem;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.mini-card.danger {
  border-color: rgba(255, 107, 107, 0.28);
}

.mini-card.warning {
  border-color: rgba(193, 131, 20, 0.28);
}

.report-card {
  margin-top: 0.9rem;
}

.report-card p {
  color: #385047;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.orbit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--green-2);
  font-weight: 800;
  padding: 0.8rem 1rem;
  position: absolute;
}

.orbit-card.one {
  left: 0;
  top: 17%;
}

.orbit-card.two {
  right: 0;
  top: 42%;
}

.orbit-card.three {
  bottom: 11%;
  left: 8%;
}

.section-heading {
  margin: 0 auto 2.4rem;
  max-width: 740px;
  text-align: center;
}

.problem-grid,
.audience-grid,
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid article,
.audience-card,
.steps article {
  border-radius: 1.25rem;
  padding: 1.45rem;
}

.problem-grid p,
.audience-card p,
.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon,
.step-number {
  align-items: center;
  background: rgba(14, 159, 110, 0.1);
  border: 1px solid rgba(14, 159, 110, 0.2);
  border-radius: 1rem;
  color: var(--green-2);
  display: inline-flex;
  font-weight: 900;
  height: 2.6rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 2.6rem;
}

.intelligence {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2));
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.signal-stack {
  display: grid;
  gap: 0.8rem;
}

.signal-row,
.signal-result {
  align-items: center;
  background: #fbf7ee;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 1rem;
}

.signal-row strong {
  color: var(--gold);
}

.signal-result {
  background: rgba(14, 159, 110, 0.1);
  color: var(--green-2);
  font-weight: 800;
}

.audience-card ul {
  color: var(--muted);
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.audience-card li + li {
  margin-top: 0.45rem;
}

.personal {
  background: #ffffff;
}

.family {
  background: #ffffff;
}

.providers {
  background: #ffffff;
}

.pilot-card {
  align-items: center;
  background: #12352a;
  border-color: rgba(18, 35, 29, 0.12);
  border-radius: 1.6rem;
  color: #ffffff;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.9fr;
  padding: 2rem;
}

.pilot-card .section-kicker {
  color: #91ffd1;
}

.pilot-card p {
  color: rgba(255, 255, 255, 0.78);
}

.pilot-points {
  display: grid;
  gap: 0.75rem;
}

.pilot-points span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.8rem 1rem;
}

.waitlist {
  padding-top: 4rem;
}

.waitlist-copy-full {
  margin: 0 auto 2rem;
  max-width: 780px;
  text-align: center;
}

.waitlist-form {
  border-radius: 1.25rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.waitlist-form-center {
  margin: 0 auto;
  max-width: 680px;
  width: 100%;
}

.waitlist-form-embed {
  background: linear-gradient(180deg, #fffefb 0%, #f9f4ea 100%);
  border: 1px solid rgba(18, 35, 29, 0.09);
  box-shadow: 0 18px 50px rgba(44, 38, 28, 0.08);
  padding: 1.35rem;
}

.waitlist-form-inner {
  background: #ffffff;
  border: 1px solid rgba(18, 35, 29, 0.07);
  border-radius: 1.1rem;
  overflow: hidden;
}

.waitlist-form-header {
  padding: 1.5rem 1.5rem 0.4rem;
  text-align: center;
}

.waitlist-form-header p {
  color: var(--muted);
  margin: 0.5rem auto 0;
  max-width: 40rem;
}

.waitlist-embed-frame {
  padding: 0 1.25rem 1rem;
}

.waitlist-form-inner iframe {
  display: block;
  width: 100%;
}

label {
  color: #20362f;
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.45rem;
}

input,
select,
textarea {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 0.85rem 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(14, 159, 110, 0.65);
  box-shadow: 0 0 0 3px rgba(14, 159, 110, 0.12);
}

textarea {
  resize: vertical;
}

.note {
  background: rgba(244, 201, 107, 0.18);
  border: 1px solid rgba(157, 104, 12, 0.18);
  border-radius: 1.1rem;
  color: #5d4210;
  margin-top: 1.5rem;
  padding: 1rem;
}

.form-status {
  color: var(--green-2);
  font-weight: 700;
  margin: 0;
  min-height: 1.5rem;
  text-align: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.footer p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .section-pad {
    padding: 4.5rem 1rem;
  }

  .hero-grid,
  .split,
  .waitlist-grid,
  .pilot-card {
    gap: 2.2rem;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-lede,
  .section-heading p,
  .split p,
  .waitlist-copy p,
  .pilot-card p {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 0.95;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    margin: 0.5rem 0 0.85rem;
  }

  h3 {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin: 1.5rem 0 1.1rem;
  }

  .trust-row {
    gap: 0.5rem;
  }

  .trust-row span {
    padding: 0.35rem 0.6rem;
    font-size: 0.84rem;
  }

  .problem-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .problem-grid article,
  .audience-card,
  .steps article {
    padding: 1.15rem;
  }

  .section-heading {
    margin: 0 auto 1.65rem;
  }

  .section-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .hero .eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .hero-visual {
    display: block;
    min-height: 380px;
    position: relative;
  }

  .phone-shell {
    max-width: 320px;
    padding: 0.95rem;
  }

  .mini-card strong {
    font-size: 1.65rem;
  }

  .orbit-card {
    display: inline-flex;
    font-size: 0.88rem;
    padding: 0.65rem 0.85rem;
    position: absolute;
    z-index: 2;
  }

  .orbit-card.one {
    left: max(0.25rem, calc(50% - 190px));
    top: 1.4rem;
  }

  .orbit-card.two {
    right: max(0.25rem, calc(50% - 190px));
    top: 42%;
  }

  .orbit-card.three {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .pilot-card {
    padding: 1.25rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 2.15rem 1rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

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

  .hero-visual {
    display: block;
    min-height: auto;
    position: relative;
  }

  .hero .eyebrow {
    font-size: 0.9rem;
  }

  .phone-shell {
    border-radius: 1.8rem;
    max-width: min(300px, calc(100% - 1.25rem));
  }

  .orbit-card,
  .orbit-card.one,
  .orbit-card.two,
  .orbit-card.three {
    font-size: 0.76rem;
    padding: 0.55rem 0.7rem;
    position: absolute;
    white-space: nowrap;
    z-index: 2;
  }

  .orbit-card.one {
    left: 0.15rem;
    top: 1.25rem;
  }

  .orbit-card.two {
    right: 0.15rem;
    top: 44%;
  }

  .orbit-card.three {
    bottom: 1rem;
    left: 0.35rem;
    transform: none;
  }

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

  .feature-grid,
  .problem-grid,
  .audience-grid,
  .steps {
    gap: 1rem;
  }

  .hero-grid,
  .split,
  .waitlist-grid,
  .pilot-card {
    gap: 1.35rem;
  }

  .problem-grid article,
  .audience-card,
  .steps article,
  .pilot-card {
    padding: 1.25rem;
  }

  .section-heading {
    margin: 0 auto 1.25rem;
  }

  .waitlist-copy-full {
    margin-bottom: 1.1rem;
  }

  .waitlist-form-embed {
    padding: 0.95rem;
  }

  .waitlist-form-header {
    padding: 1rem 1rem 0.35rem;
  }

  .waitlist-embed-frame {
    padding: 0 0.9rem 0.8rem;
  }

  .waitlist-form-inner iframe {
    min-height: 1200px;
  }

  .nav-cta {
    display: none;
  }
}
