@font-face { font-family: "Averta"; src: url("/fonts/Averta-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Averta"; src: url("/fonts/Averta-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --orange: #F88F58;
  --orange-soft: rgba(248, 143, 88, 0.14);
  --mint: #9DE7D7;
  --mint-soft: rgba(157, 231, 215, 0.12);
  --lav: #D6BFDD;
  --bg: #0c0c0c;
  --bg-2: #141414;
  --card: #1b1b1b;
  --line: rgba(255, 255, 255, 0.09);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.42);
  --r: 14px;
  --r-lg: 22px;
  --wrap: 1160px;
  --font: "Averta", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 17px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .wrap { padding: 0 16px; } }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.lede { color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); max-width: 38em; }
.mint { color: var(--mint); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font: 700 16px var(--font); text-decoration: none; cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { background: #ffa274; }
.btn-ghost { border-color: rgba(255,255,255,.22); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(12,12,12,.78); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.nav .logo { display: flex; color: #fff; }
.nav .logo img, .nav .logo svg { height: 34px; width: auto; }
.nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav ul a { color: var(--muted); text-decoration: none; font-size: 15px; }
.nav ul a:hover { color: #fff; }
.nav .btn { min-height: 40px; padding: 0 18px; font-size: 15px; }
@media (max-width: 860px) { .nav ul { display: none; } }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 80px); background:
  radial-gradient(ellipse 60% 55% at 85% 20%, rgba(157,231,215,.10) 0%, transparent 60%),
  radial-gradient(ellipse 45% 40% at 10% 10%, rgba(248,143,88,.10) 0%, transparent 60%), var(--bg); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.hero h1 { font-size: clamp(40px, 6.2vw, 76px); margin: 22px 0 22px; }
.hero .lede { margin-bottom: 34px; }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .principle { margin-top: 36px; color: var(--faint); font-size: 15px; }
.hero .principle strong { color: var(--mint); font-weight: 700; }
.hero figure { margin: 0; position: relative; }
.hero figure img { width: 100%; max-width: 440px; margin-left: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero figure img { max-width: 300px; margin: 0 auto; }
}

/* Sections */
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); margin: 18px 0 18px; }
.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Problem */
.minutes { display: grid; grid-template-columns: 1fr 3fr; gap: 16px; }
.minutes .card { padding: 32px; }
.minutes .num { font-size: clamp(44px, 6vw, 80px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.minutes .num small { font-size: .35em; letter-spacing: 0; color: var(--muted); margin-left: 8px; }
.minutes .clinic .num { color: var(--mint); }
.minutes .home .num { color: var(--orange); }
.minutes p { color: var(--muted); margin-top: 12px; }
.bar { height: 8px; border-radius: 8px; margin-top: 24px; }
.clinic .bar { background: var(--mint); width: 100%; }
.home .bar { background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 16px); opacity: .7; }
@media (max-width: 700px) { .minutes { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 32px; position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; color: var(--orange); font-weight: 700; font-size: 14px; letter-spacing: .14em; margin-bottom: 20px; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip { padding: 9px 16px; border-radius: 999px; background: var(--mint-soft); color: var(--mint); font-size: 14px; font-weight: 700; }

/* Product */
.product { display: grid; grid-template-columns: .75fr 1.25fr; gap: 16px; }
.product .card { padding: 36px; overflow: hidden; display: flex; flex-direction: column; }
.product h3 { font-size: 26px; color: var(--orange); margin-bottom: 10px; }
.product p { color: var(--muted); margin-bottom: 32px; }
.product .shot { margin-top: auto; }
.product .phone img { width: 78%; max-width: 280px; margin: 0 auto -80px; }
.product .portal img { width: 100%; border-radius: 10px; }
@media (max-width: 860px) { .product { grid-template-columns: 1fr; } .product .phone img { margin-bottom: -60px; } }

.quote { margin-top: 16px; padding: clamp(32px, 5vw, 56px); text-align: center; background:
  radial-gradient(ellipse 70% 120% at 50% 0%, rgba(157,231,215,.10), transparent 70%), var(--card); }
.quote p { font-size: clamp(24px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.quote em { font-style: normal; }
.quote .sub { display: block; color: var(--muted); font-size: 16px; font-weight: 400; letter-spacing: 0; margin-top: 16px; }

/* Focus strip */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fact { padding: 28px 32px; }
.fact h3 { font-size: 19px; display: flex; gap: 12px; align-items: baseline; margin-bottom: 8px; }
.fact h3::before { content: "✓"; color: var(--mint); }
.fact p { color: var(--muted); font-size: 16px; }
@media (max-width: 860px) { .facts { grid-template-columns: 1fr; } }

/* Team */
.team { display: grid; gap: 16px; }
.person p { color: var(--faint); font-size: 14px; line-height: 1.4; }
.person .role { display: block; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 6px; }
.person img { border-radius: 50%; object-fit: cover; background: #222; }
.founders { grid-template-columns: repeat(3, 1fr); }
.founders .person { text-align: center; padding: 36px 20px; }
.founders .person img { width: 168px; height: 168px; margin: 0 auto 22px; }
.founders .person h3 { font-size: 22px; margin-bottom: 6px; }
.founders .person p { font-size: 15px; }
.leaders { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 16px auto 0; }
.leaders .person { display: flex; align-items: center; gap: 18px; padding: 20px 24px; }
.leaders .person img { width: 72px; height: 72px; flex: none; }
.leaders .person h3 { font-size: 17px; margin-bottom: 4px; letter-spacing: -0.01em; }
@media (max-width: 760px) {
  .founders { grid-template-columns: 1fr; }
  .founders .person img { width: 140px; height: 140px; }
  .leaders { grid-template-columns: 1fr; }
}

/* Forms */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
form.card { padding: clamp(24px, 4vw, 40px); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .grid2 { grid-template-columns: 1fr; } }
label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
label .opt { color: var(--faint); font-weight: 400; }
input, select, textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 14px; background: #0f0f0f; color: var(--text); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; font: 400 16px var(--font); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px var(--mint-soft); }
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #aaa 50%), linear-gradient(135deg, #aaa 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.check { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-weight: 400; color: var(--muted); font-size: 14px; line-height: 1.5; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--orange); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.status { margin-top: 16px; font-size: 15px; min-height: 1.5em; }
.status.ok { color: var(--mint); }
.status.err { color: #ff9b8a; }
form.done > :not(.status) { display: none; }
form.done .status { margin: 0; font-size: 18px; }

.investors { background:
  radial-gradient(ellipse 50% 60% at 0% 100%, rgba(248,143,88,.10), transparent 60%),
  radial-gradient(ellipse 40% 50% at 100% 0%, rgba(214,191,221,.08), transparent 60%), var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.investors ul { list-style: none; padding: 0; margin: 28px 0 0; }
.investors li { padding: 14px 0; border-top: 1px solid var(--line); color: var(--muted); display: flex; gap: 14px; }
.investors li::before { content: "—"; color: var(--orange); }
.disclaimer { margin-top: 28px; font-size: 13px; line-height: 1.55; color: var(--faint); }

/* Footer */
footer { padding: 40px 0 56px; color: var(--faint); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
footer .logo { color: #fff; display: flex; }
footer .logo svg, footer .logo img { height: 28px; width: auto; }
footer nav { display: flex; gap: 24px; }
footer a { text-decoration: none; }
footer a:hover { color: #fff; }

/* Prose page */
.prose { max-width: 720px; padding: 64px 0 96px; }
.prose h1 { font-size: clamp(34px, 5vw, 48px); margin: 18px 0 28px; }
.prose h2 { font-size: 22px; margin: 36px 0 12px; }
.prose p, .prose li { color: var(--muted); }
.prose p + p { margin-top: 12px; }

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