:root {
  color-scheme: light;
  --ink: #071d2a;
  --ink-2: #0c2a39;
  --ink-3: #173e4f;
  --teal: #35dfbf;
  --teal-dark: #087f70;
  --lime: #c8f451;
  --page: #f4f8f7;
  --surface: #ffffff;
  --surface-2: #eaf1f1;
  --text: #102630;
  --muted: #566b75;
  --line: #cddadd;
  --line-soft: #e2eaec;
  --shadow: 0 24px 70px rgba(7, 29, 42, .11);
  --container: 1180px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #071118;
  --surface: #0d1d25;
  --surface-2: #122832;
  --text: #f3f9f8;
  --muted: #adbdc3;
  --line: #304650;
  --line-soft: #1d333d;
  --shadow: 0 26px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background .25s ease, color .25s ease;
}
button, input, select { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 100; padding: 12px 16px; background: var(--lime); color: var(--ink); font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--page) 91%, transparent);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
html[data-theme="dark"] .site-header .brand { color: #effafa; }
.brand-mark { width: 40px; height: 40px; }
.brand > span { font-size: 1.4rem; font-weight: 800; letter-spacing: -.055em; }
.brand b { color: var(--teal-dark); }
html[data-theme="dark"] .brand b { color: var(--teal); }
.nav-menu { display: flex; justify-content: center; gap: 30px; }
.nav-menu a, .site-footer nav a { text-decoration: none; font-size: .86rem; font-weight: 700; color: var(--muted); }
.nav-menu a:hover, .site-footer nav a:hover { color: var(--teal-dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: .82rem; font-weight: 700; }
.theme-toggle svg { width: 20px; height: 20px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 9px; padding: 11px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text); margin: 4px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .theme-toggle:focus-visible, .menu-toggle:focus-visible, input:focus, select:focus, summary:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .84rem; }
.button-outline { border-color: var(--line); color: var(--text); background: var(--surface); }
.button-primary { color: #06241e; background: var(--teal); box-shadow: 0 12px 34px rgba(53, 223, 191, .22); }
.button-primary:hover { background: #62e8cf; box-shadow: 0 15px 38px rgba(53, 223, 191, .32); }
.button-dark { background: var(--ink); color: #fff; }
.text-link { font-weight: 750; text-decoration: none; }
.text-link-light { color: #d4e5e6; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 104px 0 94px; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,42,57,.5), transparent 45%); pointer-events: none; }
.hero-rings { position: absolute; width: 720px; height: 720px; right: -270px; top: -250px; border: 1px solid rgba(53,223,191,.22); border-radius: 50%; }
.hero-rings::before, .hero-rings::after { content: ""; position: absolute; border: 1px solid rgba(53,223,191,.17); border-radius: 50%; }
.hero-rings::before { inset: 85px; }.hero-rings::after { inset: 175px; }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--teal-dark); font-family: "Nunito Sans", "Segoe UI", sans-serif; font-size: .76rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.eyebrow span { position: relative; display: inline-block; width: 15px; height: 15px; margin: 0 11px -1px 2px; border: 2px solid currentColor; border-radius: 5px 5px 5px 1px; transform: rotate(45deg); }
.eyebrow span::after { content: ""; position: absolute; top: -4px; right: -4px; width: 5px; height: 5px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); }
.section:not(.difference-section):not(.beta-section) .eyebrow span::after, .faq-section .eyebrow span::after { border-color: var(--bg); }
.eyebrow-light { color: var(--teal); }
.hero h1 { margin: 0; max-width: 640px; font-size: clamp(3rem, 6vw, 6rem); line-height: .96; letter-spacing: -.075em; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { max-width: 625px; margin: 27px 0 0; color: #bbced1; font-size: clamp(1.04rem, 1.8vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 35px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 17px 24px; margin-top: 38px; color: #a8c1c5; font-size: .76rem; font-weight: 650; }
.hero-trust i { margin-right: 5px; color: var(--lime); font-style: normal; }

.product-stage { position: relative; min-height: 610px; display: flex; align-items: center; justify-content: center; }
.stage-glow { position: absolute; width: 68%; height: 68%; border-radius: 50%; background: var(--teal); filter: blur(100px); opacity: .12; }
.app-window { position: relative; width: min(100%, 615px); padding: 22px; border: 1px solid rgba(130,186,192,.35); border-radius: 18px; background: #0c2633; box-shadow: 0 40px 90px rgba(0,0,0,.38); transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg); }
.app-topbar { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-bottom: 19px; border-bottom: 1px solid #254653; color: #c7dadd; font-size: .72rem; }
.app-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.app-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(53,223,191,.12); }
.live-label { display: flex; align-items: center; gap: 6px; color: #8facb1; }
.live-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.app-summary { display: grid; grid-template-columns: auto 1fr; gap: 19px; align-items: center; padding: 21px 0; }
.app-summary div { display: flex; align-items: baseline; gap: 8px; }.app-summary strong { color: var(--teal); font-size: 2.3rem; line-height: 1; }.app-summary span { color: #d7e8e9; font-size: .74rem; font-weight: 750; }.app-summary p { margin: 0; padding-left: 18px; border-left: 1px solid #2a4b57; color: #91adb2; font-size: .72rem; }
.job-card { border: 1px solid #294b58; background: #102f3d; }
.job-featured { padding: 20px; border-left: 3px solid var(--teal); }
.job-head, .job-compact { display: flex; justify-content: space-between; gap: 16px; }
.job-card h2 { margin: 7px 0 4px; color: #f5ffff; font-size: .96rem; line-height: 1.25; }
.job-card p { margin: 0; color: #88a5ab; font-size: .7rem; }
.source-tag { display: inline-flex; padding: 3px 7px; border: 1px solid #288c80; color: var(--teal); border-radius: 999px; font-size: .58rem; font-weight: 800; }
.source-alt { color: #c8f451; border-color: #708b38; }.source-mail { color: #8bbcff; border-color: #3d6699; }
.match-score { text-align: right; flex: 0 0 auto; }.match-score strong { display: block; color: var(--lime); font-size: 1.28rem; line-height: 1; }.match-score span { color: #78969d; font-size: .54rem; text-transform: uppercase; }
.reason { margin-top: 16px; padding: 11px 13px; background: #153947; color: #a9c1c5; font-size: .68rem; }.reason b { color: #edfafa; }
.job-meta { display: flex; align-items: center; gap: 10px; margin-top: 15px; color: #7e9da4; font-size: .62rem; }.job-meta span { padding: 4px 7px; border: 1px solid #2b4c58; border-radius: 4px; }.job-meta button { margin-left: auto; border: 0; background: transparent; color: var(--teal); font-size: .65rem; font-weight: 800; }
.job-compact { margin-top: 10px; padding: 14px 16px; }.job-compact h2 { font-size: .78rem; }.job-compact .match-score strong { font-size: 1rem; }.muted-card { opacity: .8; }
.float-pill { position: absolute; padding: 10px 14px; border: 1px solid rgba(255,255,255,.19); border-radius: 10px; background: rgba(7,29,42,.88); box-shadow: 0 18px 45px rgba(0,0,0,.3); color: #adc6c9; backdrop-filter: blur(10px); font-size: .7rem; }.float-pill span { display: block; color: #f4ffff; font-weight: 850; font-size: .76rem; }.pill-top { right: -12px; top: 53px; }.pill-bottom { left: -20px; bottom: 42px; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.proof-grid { min-height: 116px; display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.proof-grid > p { margin: 0; max-width: 460px; font-size: 1.05rem; font-weight: 750; }
.proof-points { display: flex; gap: 35px; }.proof-points span { color: var(--muted); font-size: .74rem; font-weight: 700; }.proof-points b { margin-right: 8px; color: var(--teal-dark); font-family: "Nunito Sans", "Segoe UI", sans-serif; font-size: .72rem; font-weight: 800; font-variant-numeric: tabular-nums; }

.section { padding: 122px 0; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.split-heading h2, .section-heading h2, .difference-copy h2, .beta-copy h2, .faq-grid h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.6rem); line-height: 1.03; letter-spacing: -.06em; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border: 1px solid var(--line); }
.pain-card { min-height: 300px; padding: 33px; background: var(--surface); border-right: 1px solid var(--line); }.pain-card:last-child { border-right: 0; }.pain-card h3 { margin: 58px 0 12px; font-size: 1.25rem; }.pain-card p { margin: 0; color: var(--muted); }.pain-index { color: var(--teal-dark); font-family: "Nunito Sans", "Segoe UI", sans-serif; font-size: .8rem; font-weight: 800; font-variant-numeric: tabular-nums; }.pain-highlight { color: #fff; background: var(--ink); }.pain-highlight p { color: #a9bec2; }.pain-highlight .pain-index { color: var(--teal); }

.how-section { background: var(--surface); }
.section-heading { max-width: 860px; }.section-heading > p:last-child { max-width: 630px; color: var(--muted); font-size: 1.05rem; }.centered { margin-inline: auto; text-align: center; }.centered > p:last-child { margin: 24px auto 0; }
.steps { margin-top: 80px; }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; padding: 74px 0; border-top: 1px solid var(--line-soft); }.step:last-child { border-bottom: 1px solid var(--line-soft); }.step-reverse .step-visual { order: 2; }.step-reverse .step-copy { order: 1; }
.step-copy > span { color: var(--teal-dark); font-family: "Nunito Sans", "Segoe UI", sans-serif; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .065em; font-variant-numeric: tabular-nums; }.step-copy h3 { margin: 15px 0 16px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }.step-copy p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.step-visual { position: relative; height: 340px; overflow: hidden; border-radius: 18px; background: var(--surface-2); }
.profile-visual { display: grid; place-items: center; background: linear-gradient(145deg, #0e3544, #071d2a); }.profile-sheet { width: 70%; padding: 30px; border-radius: 12px; background: #fff; box-shadow: 0 30px 55px rgba(0,0,0,.25); transform: rotate(-3deg); }.profile-photo { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 20px; border-radius: 50%; background: var(--teal); color: var(--ink); font-weight: 900; }.profile-sheet > i { display: block; width: 82%; height: 8px; margin: 11px 0; border-radius: 99px; background: #dbe4e6; }.profile-sheet > i:nth-of-type(2) { width: 63%; }.skill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }.skill-row b { padding: 6px 9px; border-radius: 5px; background: #e7f9f5; color: #116a60; font-size: .62rem; }
.radar-visual { background: var(--ink); }.radar-orbit { position: absolute; inset: 50%; border: 1px solid rgba(53,223,191,.3); border-radius: 50%; transform: translate(-50%,-50%); }.orbit-a { width: 100px; height: 100px; }.orbit-b { width: 200px; height: 200px; }.orbit-c { width: 310px; height: 310px; }.radar-center { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 20px; background: #0d2d3a; transform: translate(-50%,-50%); box-shadow: 0 0 0 10px rgba(53,223,191,.06); }.radar-center svg { width: 38px; }.radar-job { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(200,244,81,.12); }.rj-1 { left: 24%; top: 34%; }.rj-2 { right: 22%; top: 27%; background: var(--teal); }.rj-3 { right: 27%; bottom: 22%; }
.decision-visual { display: flex; align-items: center; gap: 36px; padding: 50px; background: #dff3ef; }.decision-score { display: flex; align-items: flex-start; color: var(--ink); }.decision-score strong { font-size: 5rem; line-height: 1; letter-spacing: -.08em; }.decision-score small { margin-top: 8px; font-weight: 900; }.decision-lines { flex: 1; }.decision-lines span { display: block; margin: 18px 0; color: #345260; font-size: .68rem; font-weight: 750; }.decision-lines i { position: relative; display: block; height: 7px; margin-top: 7px; border-radius: 99px; background: #b9d9d4; overflow: hidden; }.decision-lines i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--fill); background: var(--teal-dark); }

.difference-section { position: relative; overflow: hidden; background: var(--ink); color: #fff; }.difference-section::after { content: ""; position: absolute; right: -160px; bottom: -280px; width: 620px; height: 620px; border: 1px solid rgba(53,223,191,.18); border-radius: 50%; box-shadow: inset 0 0 0 85px rgba(53,223,191,.025), inset 0 0 0 170px rgba(53,223,191,.025); }.difference-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }.difference-copy > p:not(.eyebrow) { color: #adc2c5; font-size: 1.05rem; }.feature-list { list-style: none; margin: 38px 0 0; padding: 0; }.feature-list li { display: flex; gap: 14px; margin: 22px 0; }.feature-list li > span { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(53,223,191,.13); color: var(--teal); }.feature-list b, .feature-list small { display: block; }.feature-list small { margin-top: 4px; color: #8fa9ae; font-size: .8rem; }
.comparison-card { padding: 30px; border: 1px solid #31515e; border-radius: 16px; background: #0c2937; box-shadow: 0 35px 70px rgba(0,0,0,.24); }.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 32px 1fr; gap: 10px; align-items: center; }.comparison-head { padding: 0 10px 18px; color: #829da3; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }.comparison-head b { grid-column: 3; color: var(--teal); }.comparison-row { padding: 18px 10px; border-top: 1px solid #244553; }.comparison-row span { color: #9db4b8; font-size: .82rem; }.comparison-row i { color: #52707a; font-style: normal; }.comparison-row b { color: #f4ffff; font-size: .84rem; }

.control-section { background: var(--page); }.control-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.control-grid article { min-height: 285px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }.control-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--teal) 14%, var(--surface)); color: var(--teal-dark); font-size: 1.35rem; }.control-grid h3 { margin: 42px 0 12px; font-size: 1.07rem; }.control-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.beta-section { color: #fff; background: linear-gradient(125deg, #0b3140, #071d2a 65%); }.beta-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 105px; align-items: center; }.beta-copy > p:not(.eyebrow) { max-width: 600px; color: #aec5c8; font-size: 1.05rem; }.founder-note { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; align-items: center; margin-top: 40px; padding: 21px 0; border-top: 1px solid #315461; border-bottom: 1px solid #315461; }.founder-note b { color: var(--teal); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }.founder-note strong { grid-row: span 2; font-size: 2.15rem; letter-spacing: -.05em; }.founder-note strong small { color: #92aeb3; font-size: .72rem; }.founder-note span { color: #8fa9ae; font-size: .75rem; }
.waitlist-card { padding: clamp(28px, 5vw, 44px); border-radius: 18px; background: #fff; color: #102630; box-shadow: 0 35px 80px rgba(0,0,0,.28); }.form-badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #e8faf6; color: #087f70; font-family: "Nunito Sans", "Segoe UI", sans-serif; font-size: .67rem; font-weight: 800; text-transform: uppercase; }.waitlist-card h3 { margin: 17px 0 8px; font-size: 1.65rem; letter-spacing: -.04em; }.waitlist-card > p { margin: 0 0 25px; color: #60747d; font-size: .88rem; }.waitlist-card label { display: block; margin: 16px 0 7px; font-size: .76rem; font-weight: 800; }.waitlist-card input, .waitlist-card select { width: 100%; min-height: 49px; border: 1px solid #c9d5d8; border-radius: 8px; padding: 0 13px; background: #f9fbfb; color: #102630; }.form-button { width: 100%; margin-top: 22px; border: 0; }.privacy-note { display: block; margin-top: 13px; color: #566b75; text-align: center; font-size: .67rem; }.form-message { display: none; margin-top: 16px; padding: 12px; border-radius: 8px; background: #e8faf6; color: #0a6a5e; font-size: .78rem; font-weight: 700; }.form-message.visible { display: block; }.form-message.error { background: #fff0ef; color: #a43c32; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }.waitlist-card .consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; font-weight: 600; line-height: 1.45; }.waitlist-card .consent-field input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: #0b8f7d; }.consent-field a { color: #087f70; text-decoration: underline; text-underline-offset: 2px; }.form-button:disabled { cursor: wait; opacity: .72; }

.faq-section { background: var(--surface); }.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }.faq-grid h2 { font-size: clamp(2rem, 4vw, 3.7rem); }.faq-list details { border-top: 1px solid var(--line); }.faq-list details:last-child { border-bottom: 1px solid var(--line); }.faq-list summary { position: relative; padding: 24px 45px 24px 0; cursor: pointer; list-style: none; font-weight: 800; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { position: absolute; right: 8px; top: 20px; color: var(--teal-dark); font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { margin: -7px 40px 24px 0; color: var(--muted); }

.final-cta { padding: 85px 0; background: var(--teal); color: var(--ink); }.final-cta-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; }.final-cta svg { width: 64px; }.final-cta h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.06em; }
.site-footer { padding: 58px 0 25px; color: #abc0c4; background: #061720; }.footer-main { display: grid; grid-template-columns: auto 1fr auto; gap: 38px; align-items: center; }.footer-brand { color: #fff; }.footer-main > p { margin: 0; color: #8ea7ac; }.site-footer nav { display: flex; gap: 24px; }.site-footer nav a { color: #9bb2b6; }.footer-privacy-button { padding: 0; border: 0; background: transparent; color: #9bb2b6; font: inherit; cursor: pointer; }.footer-privacy-button:hover, .footer-privacy-button:focus-visible { color: #fff; }.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 22px; border-top: 1px solid #1b333e; color: #6f8b92; font-size: .7rem; }

.privacy-consent { position: fixed; z-index: 1000; right: 20px; bottom: 20px; width: min(520px, calc(100% - 40px)); padding: 24px; border: 1px solid #31515e; border-radius: 16px; background: #071d2a; color: #fff; box-shadow: 0 22px 65px rgba(0,0,0,.35); }.privacy-consent[hidden] { display: none; }.privacy-consent__close { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid #31515e; border-radius: 8px; background: transparent; color: #b7cacc; cursor: pointer; font-size: 1.25rem; }.privacy-consent h2 { margin: 0 42px 8px 0; font-size: 1.2rem; letter-spacing: -.025em; }.privacy-consent p { margin: 0; color: #b7cacc; font-size: .85rem; line-height: 1.6; }.privacy-consent a { color: #35dfbf; text-decoration: underline; text-underline-offset: 2px; }.privacy-consent__status { display: block; margin-top: 10px; color: #c8f451; font-size: .73rem; font-weight: 700; }.privacy-consent__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }.privacy-consent__actions button { min-height: 42px; padding: 0 16px; border: 1px solid #3d606c; border-radius: 8px; background: transparent; color: #fff; cursor: pointer; font: inherit; font-size: .8rem; font-weight: 800; }.privacy-consent__actions .privacy-consent__accept { border-color: #35dfbf; background: #35dfbf; color: #071d2a; }.privacy-consent__actions button:hover, .privacy-consent__actions button:focus-visible { filter: brightness(1.08); }.legal-privacy-button { min-height: 44px; margin-top: 12px; padding: 0 16px; border: 1px solid #087f70; border-radius: 8px; background: transparent; color: #087f70; cursor: pointer; font: inherit; font-weight: 800; }

@media (max-width: 1050px) {
  .nav-menu { gap: 18px; }.nav-menu a { font-size: .78rem; }
  .theme-toggle span { display: none; }
  .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.product-stage { width: min(780px, 100%); margin-inline: auto; }
  .control-grid { grid-template-columns: repeat(2, 1fr); }
  .beta-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .nav-wrap { display: flex; }.brand { order: 1; }.nav-actions { display: flex; order: 2; margin-left: auto; }.nav-actions .button { display: none; }.nav-actions .theme-toggle { display: inline-flex; width: 44px; padding: 0; justify-content: center; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }.menu-toggle { display: block; order: 3; }.nav-menu { position: absolute; inset: 78px 0 auto; display: none; flex-direction: column; gap: 0; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); background: var(--page); }.nav-menu.open { display: flex; }.nav-menu a { padding: 13px 0; font-size: .9rem; }
  .hero { padding-top: 80px; }.proof-grid, .split-heading, .difference-grid, .beta-grid, .faq-grid { grid-template-columns: 1fr; }.proof-grid { padding-block: 26px; }.proof-points { justify-content: space-between; }.split-heading { gap: 30px; }.pain-grid { grid-template-columns: 1fr; }.pain-card { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--line); }.pain-card h3 { margin-top: 34px; }
  .step, .step-reverse { grid-template-columns: 1fr; gap: 40px; }.step-reverse .step-visual, .step-reverse .step-copy { order: initial; }.step-visual { height: 310px; }
  .difference-grid, .beta-grid, .faq-grid { gap: 55px; }.final-cta-inner { grid-template-columns: auto 1fr; }.final-cta-inner .button { grid-column: 1 / -1; justify-self: start; }.footer-main { grid-template-columns: 1fr; }.site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }.site-header .brand-mark { width: 36px; height: 36px; }
  .hero { padding: 62px 0 70px; }.hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-actions .text-link { align-self: center; }.hero-trust { display: grid; }
  .product-stage { min-height: 560px; margin-top: 28px; }.app-window { padding: 13px; transform: none; }.app-topbar { font-size: .62rem; }.app-summary { grid-template-columns: 1fr; }.app-summary p { padding: 0; border: 0; }.job-featured { padding: 15px; }.job-head { align-items: flex-start; }.reason { font-size: .62rem; }.job-meta span:nth-child(2) { display: none; }.float-pill { display: none; }
  .proof-points { display: grid; gap: 10px; }.section { padding: 88px 0; }.split-heading h2, .section-heading h2, .difference-copy h2, .beta-copy h2, .faq-grid h2 { font-size: 2.45rem; }.pain-card { padding: 27px; }
  .step { padding: 50px 0; }.step-visual { height: 260px; }.decision-visual { padding: 30px; gap: 20px; }.decision-score strong { font-size: 3.6rem; }.comparison-card { padding: 18px; }.comparison-row { grid-template-columns: 1fr 20px 1fr; }.comparison-row span, .comparison-row b { font-size: .72rem; }
  .control-grid { grid-template-columns: 1fr; }.control-grid article { min-height: 230px; }.control-grid h3 { margin-top: 28px; }.founder-note { grid-template-columns: 1fr; }.founder-note strong { grid-row: auto; }.waitlist-card { border-radius: 12px; }
  .final-cta-inner { grid-template-columns: 1fr; }.final-cta h2 { font-size: 2.7rem; }.footer-bottom { flex-direction: column; }.privacy-consent { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 20px; }.privacy-consent__actions { display: grid; grid-template-columns: 1fr; }.privacy-consent__actions button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
