:root {
  --teal: #156082;
  --teal-dark: #0d4660;
  --teal-deep: #082f42;
  --teal-soft: #eaf5f7;
  --teal-pale: #f3fafb;
  --line: #d3dde2;
  --text: #172026;
  --muted: #62717a;
  --bg: #f5f8f9;
  --white: #ffffff;
  --success: #166534;
  --shadow: 0 22px 70px rgba(13, 70, 96, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow-shell { max-width: 820px; }
.section-pad { padding: 108px 0; }
.center-copy { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(211, 221, 226, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner { height: 70px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.header-logo { display: block; width: 190px; height: auto; }
.brand-mark { display: grid; grid-template-columns: repeat(3, 5px); align-items: end; gap: 3px; width: 22px; height: 22px; }
.brand-mark span { display: block; border-radius: 2px; background: var(--teal); }
.brand-mark span:nth-child(1) { height: 9px; opacity: .65; }
.brand-mark span:nth-child(2) { height: 15px; opacity: .82; }
.brand-mark span:nth-child(3) { height: 21px; background: var(--teal-dark); }
.header-cta { padding: 10px 17px; border-radius: 8px; background: var(--teal-dark); color: white; font-size: 14px; font-weight: 750; box-shadow: 0 8px 24px rgba(13, 70, 96, .16); transition: transform .16s ease, background .16s ease; }
.header-cta:hover { transform: translateY(-1px); background: var(--teal); }

.hero { position: relative; overflow: hidden; padding-top: 155px; padding-bottom: 96px; background: linear-gradient(180deg, #fbfdfd 0%, #f5f9fa 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--line); opacity: .8; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 620px; height: 620px; right: -300px; top: 20px; background: radial-gradient(circle, rgba(21, 96, 130, .13), rgba(21, 96, 130, 0) 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -280px; top: 250px; background: radial-gradient(circle, rgba(21, 96, 130, .08), rgba(21, 96, 130, 0) 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .93fr 1.07fr; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 7px 10px; border: 1px solid #c7dce3; border-radius: 999px; background: rgba(255,255,255,.78); color: var(--teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(21,96,130,.11); }
.hero h1 { max-width: 670px; margin: 0; color: #142129; font-size: clamp(40px, 4.2vw, 58px); line-height: .99; letter-spacing: -0.058em; font-weight: 830; }
.hero h1 span { color: var(--teal); }
.hero-sub { max-width: 650px; margin: 28px 0 25px; color: #4e606a; font-size: 20px; line-height: 1.5; }
.waitlist-form { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 9px; max-width: 610px; }
.waitlist-form input[type="email"] { width: 100%; min-width: 0; height: 56px; padding: 0 17px; border: 1px solid #b9cbd2; border-radius: 9px; background: #fff; color: var(--text); font-size: 16px; outline: none; box-shadow: 0 5px 20px rgba(23,32,38,.04); transition: border .16s ease, box-shadow .16s ease; }
.waitlist-form input[type="email"]:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(21,96,130,.11); }
.waitlist-form button { height: 56px; padding: 0 20px; border: 0; border-radius: 9px; background: var(--teal-dark); color: #fff; font-weight: 800; box-shadow: 0 8px 24px rgba(13,70,96,.18); transition: transform .16s ease, background .16s ease; white-space: nowrap; }
.waitlist-form button:hover { transform: translateY(-1px); background: var(--teal); }
.waitlist-form button:disabled { opacity: .68; cursor: default; transform: none; }
.form-status { position: absolute; top: calc(100% + 30px); left: 0; margin: 0; font-size: 13px; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: #a61b1b; }
.form-note { margin-top: 10px; color: #77858c; font-size: 12px; }
.mini-proof { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 34px; color: #43545e; font-size: 13px; font-weight: 650; }
.mini-proof-item { display: inline-flex; align-items: center; gap: 7px; }
.mini-proof-item span { display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); font-size: 11px; font-weight: 900; }

.hero-product { position: relative; width: 100%; }
.browser-shell { overflow: hidden; border: 1px solid #b8cbd3; border-radius: 16px; background: #fff; box-shadow: 0 30px 80px rgba(13,70,96,.19), 0 3px 10px rgba(13,70,96,.08); transform: perspective(1500px) rotateY(-2deg) rotateX(1deg); transform-origin: center; }
.browser-top { height: 38px; display: grid; grid-template-columns: 90px 1fr 90px; align-items: center; padding: 0 12px; border-bottom: 1px solid #dce5e8; background: #f5f7f8; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c5ced2; }
.browser-title { justify-self: center; color: #728087; font-size: 9px; font-weight: 650; }
.app-window { display: grid; grid-template-columns: 27% 73%; min-height: 430px; font-family: Arial, sans-serif; font-size: 8px; }
.app-rail { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 13px 10px 10px; background: var(--teal-dark); color: #fff; }
.app-wordmark { margin-bottom: 13px; font-size: 12px; font-weight: 800; letter-spacing: -.03em; }
.rail-label, .rail-list-label { margin: 8px 0 4px; color: #cfe5ea; font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.rail-select, .rail-search { display: flex; justify-content: space-between; gap: 6px; padding: 6px 7px; border: 1px solid rgba(255,255,255,.17); border-radius: 4px; background: #fff; color: #23343c; }
.rail-search { color: #839097; }
.rail-list-label { margin-top: 13px; }
.rail-client { display: grid; gap: 1px; margin-bottom: 3px; padding: 7px; border-radius: 4px; color: #dbe9ed; }
.rail-client b { font-size: 8px; font-weight: 700; }
.rail-client small { color: #aac7cf; font-size: 6px; }
.rail-client.active { background: #fff; color: var(--teal-dark); }
.rail-client.active small { color: #66808b; }
.rail-bottom { display: flex; justify-content: space-between; gap: 4px; margin-top: auto; color: #cae1e6; font-size: 7px; }
.app-main { min-width: 0; background: #f3f6f7; }
.app-toolbar { height: 31px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; border-bottom: 1px solid #d9e2e6; background: #fff; }
.app-menu { display: flex; align-items: center; gap: 10px; color: #34454e; }
.app-menu b { color: var(--teal-dark); font-size: 9px; }
.saved-pill { color: var(--success); font-size: 7px; font-weight: 700; }
.client-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 14px 10px; }
.client-head .small-label { color: #829098; font-size: 6px; font-weight: 700; letter-spacing: .08em; }
.client-head h3 { margin: 2px 0 2px; font-size: 18px; color: #1e3039; letter-spacing: -.03em; }
.client-head p { margin: 0; color: #6e7e86; font-size: 7px; }
.quick-actions { display: flex; gap: 4px; }
.quick-actions button { padding: 5px 7px; border: 1px solid #bdccd2; border-radius: 4px; background: #fff; color: #2e4651; font-size: 7px; font-weight: 700; }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 14px 9px; }
.metric-row > div { display: grid; gap: 2px; padding: 7px 8px; border: 1px solid #d6e0e4; border-radius: 5px; background: #fff; }
.metric-row span { color: #7d8b91; font-size: 6px; }
.metric-row b { color: #29434f; font-size: 8px; }
.app-cards { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7px; padding: 0 14px 14px; }
.app-card { border: 1px solid #d6e0e4; border-radius: 6px; background: #fff; overflow: hidden; }
.card-title { padding: 7px 8px; border-bottom: 1px solid #e2e8eb; color: var(--teal-dark); font-size: 8px; font-weight: 800; }
.contact-card { min-height: 128px; }
.contact-person { display: flex; align-items: center; gap: 7px; padding: 8px; }
.contact-person .avatar { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); font-size: 8px; font-weight: 800; }
.contact-person div:last-child { display: grid; gap: 2px; }
.contact-person b { color: #283b44; font-size: 8px; }
.contact-person small { color: #788890; font-size: 6px; }
.contact-line { display: grid; grid-template-columns: 35px 1fr; gap: 5px; padding: 5px 8px; border-top: 1px solid #edf1f2; }
.contact-line span { color: #839097; font-size: 6px; }
.contact-line b { overflow: hidden; color: #3b515b; font-size: 7px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px; }
.field-grid label { display: grid; gap: 3px; }
.field-grid label > span { color: #75858c; font-size: 6px; }
.field-grid label > div { display: flex; justify-content: space-between; padding: 6px; border: 1px solid #d5e0e4; border-radius: 4px; color: #344b55; font-size: 7px; }
.field-grid i { color: #778990; font-style: normal; }
.notes-card { grid-column: 1 / -1; }
.note-entry { display: grid; grid-template-columns: 42px 1fr; gap: 7px; padding: 7px 8px; border-bottom: 1px solid #edf1f2; color: #425761; }
.note-entry:last-child { border-bottom: 0; }
.note-entry b { color: var(--teal-dark); font-size: 7px; }
.note-entry span { font-size: 7px; }
.note-entry.faded { opacity: .64; }
.floating-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid #d1e0e5; border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(20,55,68,.13); color: #29404a; font-size: 11px; }
.floating-chip span { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); font-weight: 900; }
.floating-chip b { font-size: 11px; }
.chip-one { right: -18px; bottom: 30px; }
.chip-two { left: -22px; top: 85px; }

.section-kicker { margin-bottom: 13px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.problem { background: #fff; }
.problem h2, .benefits h2, .product-story h2, .audience h2, .feature-wall h2, .founder-note h2, .faq h2 { margin: 0; color: #16252c; font-size: clamp(35px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.problem .center-copy > p { max-width: 720px; margin: 22px auto 0; color: #5f7078; font-size: 18px; line-height: 1.65; }
.problem .center-copy .strong-line { margin-top: 12px; color: var(--teal-dark); font-weight: 800; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 58px; }
.pain-card { min-height: 280px; padding: 28px 24px 24px; border: 1px solid #dde5e8; border-radius: 14px; background: #fbfcfc; transition: transform .18s ease, box-shadow .18s ease, border .18s ease; }
.pain-card:hover { transform: translateY(-3px); border-color: #c2d6dd; box-shadow: 0 18px 45px rgba(13,70,96,.08); }
.pain-icon { display: grid; place-items: center; width: 35px; height: 35px; margin-bottom: 43px; border-radius: 8px; background: var(--teal-soft); color: var(--teal-dark); font-size: 11px; font-weight: 900; }
.pain-card h3 { margin: 0 0 12px; color: #21343d; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.pain-card p { margin: 0; color: #687880; font-size: 14px; line-height: 1.6; }

.statement-band { padding: 74px 0; background: var(--teal-dark); color: #fff; }
.statement-inner { position: relative; display: grid; grid-template-columns: 95px 1fr; gap: 18px; align-items: start; max-width: 1020px; }
.quote-mark { margin-top: -28px; color: #5ea6bb; font-family: Georgia, serif; font-size: 112px; line-height: 1; }
.statement-inner p { margin: 0; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.25; letter-spacing: -.035em; font-weight: 430; }
.statement-inner b { color: #bfe6ef; }

.benefits { background: var(--bg); }
.split-heading { display: grid; grid-template-columns: 1.08fr .72fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 5px; color: #60727b; font-size: 16px; line-height: 1.7; }
.benefit-list { margin-top: 58px; border-top: 1px solid #d7e0e4; }
.benefit-row { display: grid; grid-template-columns: 55px .9fr .8fr; gap: 34px; align-items: center; min-height: 210px; padding: 34px 8px; border-bottom: 1px solid #d7e0e4; }
.benefit-number { align-self: start; color: #8ea4ad; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.benefit-copy h3 { margin: 0 0 9px; color: #22343d; font-size: 27px; letter-spacing: -.035em; }
.benefit-copy p { max-width: 560px; margin: 0; color: #61727b; font-size: 15px; line-height: 1.68; }
.benefit-demo { justify-self: end; width: min(100%, 390px); border: 1px solid #cadbe1; border-radius: 11px; background: #fff; box-shadow: 0 10px 30px rgba(13,70,96,.07); }
.compact-demo { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; padding: 12px; }
.demo-company { display: flex; align-items: center; gap: 9px; }
.demo-company > span { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 9px; background: var(--teal-soft); color: var(--teal-dark); font-size: 11px; font-weight: 850; }
.demo-company > div { display: grid; gap: 3px; }
.demo-company b { color: #2a414b; font-size: 12px; }
.demo-company small { color: #819198; font-size: 9px; }
.demo-next { display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 10px; padding: 8px 10px; border-left: 1px solid #e0e7e9; }
.demo-next small { grid-column: 1 / -1; color: #89989f; font-size: 7px; }
.demo-next b { color: var(--teal-dark); font-size: 11px; }
.demo-next span { color: var(--teal); font-weight: 900; }
.notes-demo { overflow: hidden; }
.notes-demo > div { display: grid; grid-template-columns: 52px 1fr; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #e8edef; }
.notes-demo > div:last-child { border: 0; opacity: .62; }
.notes-demo b { color: var(--teal-dark); font-size: 10px; }
.notes-demo p { margin: 0; color: #4e626c; font-size: 11px; }
.follow-demo { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px 15px; }
.follow-demo div:first-child { display: grid; gap: 3px; }
.follow-demo small { color: #84949b; font-size: 8px; }
.follow-demo b { color: #2b434e; font-size: 13px; }
.follow-tag { padding: 7px 9px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); font-size: 10px; font-weight: 800; }
.action-demo { display: flex; gap: 7px; padding: 13px; }
.action-demo button { flex: 1; padding: 9px 8px; border: 1px solid #c5d5db; border-radius: 7px; background: #fff; color: #32505c; font-size: 10px; font-weight: 800; }
.action-demo button:last-child { border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; }

.mid-cta { position: relative; overflow: hidden; padding: 78px 0; background: linear-gradient(125deg, #0d4660 0%, #0b536f 56%, #156082 100%); color: #fff; }
.mid-cta::before { content: ""; position: absolute; width: 540px; height: 540px; right: -240px; top: -220px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.mid-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: 75px; align-items: center; }
.section-kicker.light { color: #a8dce8; }
.mid-cta h2 { margin: 0; color: #fff; font-size: clamp(35px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.mid-cta p { margin: 18px 0 0; color: #d4e8ee; font-size: 16px; line-height: 1.65; }
.dark-form { max-width: 520px; }
.dark-form input[type="email"] { border-color: rgba(255,255,255,.22); }
.dark-form button { background: #fff; color: var(--teal-dark); box-shadow: none; }
.dark-form button:hover { background: #eaf5f7; }
.dark-form .form-status.success { color: #d0f0da; }
.dark-form .form-status.error { color: #ffd0d0; }
.light-note { color: #bad4dc; }

.product-story { background: #fff; }
.product-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.story-copy .lead-p { margin: 20px 0 31px; color: #60727b; font-size: 17px; line-height: 1.65; }
.story-point { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 19px 0; border-top: 1px solid #e0e7e9; }
.story-point > span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); font-size: 11px; font-weight: 900; }
.story-point h3 { margin: 0 0 5px; color: #2b414b; font-size: 16px; }
.story-point p { margin: 0; color: #6d7c83; font-size: 14px; line-height: 1.55; }
.sheet-visual { position: relative; display: grid; grid-template-columns: 1.2fr 44px .9fr; align-items: center; }
.sheet-card, .scope-card { border: 1px solid #ccdce1; border-radius: 12px; background: #fff; box-shadow: 0 20px 60px rgba(13,70,96,.11); overflow: hidden; }
.sheet-top, .scope-top { height: 42px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border-bottom: 1px solid #e1e7e9; background: #f9fbfb; color: #3b4d55; font-size: 11px; }
.sheet-top span { margin-left: auto; color: #98a6ac; }
.sheets-icon { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 5px; background: #188038; color: #fff; font-size: 12px; }
.sheet-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .9fr; font-family: Arial, sans-serif; font-size: 8px; }
.sheet-grid > div { min-width: 0; padding: 9px 7px; border-right: 1px solid #e6ebed; border-bottom: 1px solid #e6ebed; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #50616a; }
.sheet-grid .sheet-head { background: #f4f7f8; color: #53656e; font-weight: 700; }
.transform-arrow { display: grid; place-items: center; width: 42px; height: 42px; justify-self: center; border-radius: 50%; background: var(--teal-dark); color: #fff; font-size: 20px; box-shadow: 0 8px 25px rgba(13,70,96,.17); }
.scope-card { transform: scale(1.04); }
.scope-top { justify-content: space-between; background: var(--teal-dark); color: #fff; }
.scope-top span { color: #bfe4ec; font-size: 8px; }
.scope-person { display: flex; align-items: center; gap: 9px; padding: 14px 13px; }
.scope-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: var(--teal-soft); color: var(--teal-dark); font-size: 11px; font-weight: 900; }
.scope-person > div:last-child { display: grid; gap: 3px; }
.scope-person b { color: #27404a; font-size: 12px; }
.scope-person small { color: #84949b; font-size: 8px; }
.scope-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 0 13px 11px; }
.scope-fields > div, .scope-note { display: grid; gap: 4px; padding: 9px; border: 1px solid #dbe5e8; border-radius: 6px; }
.scope-fields span, .scope-note span { color: #87959c; font-size: 7px; text-transform: uppercase; letter-spacing: .06em; }
.scope-fields b { color: var(--teal-dark); font-size: 10px; }
.scope-note { margin: 0 13px 13px; }
.scope-note p { margin: 0; color: #4f626b; font-size: 9px; line-height: 1.45; }

.audience { background: var(--teal-pale); }
.audience .center-copy { max-width: 900px; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.audience-card { padding: 28px 23px 27px; border: 1px solid #d5e3e7; border-radius: 13px; background: rgba(255,255,255,.82); }
.audience-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 34px; border-radius: 9px; background: var(--teal-dark); color: #fff; font-size: 16px; font-weight: 800; }
.audience-card h3 { margin: 0 0 10px; color: #263c45; font-size: 19px; letter-spacing: -.025em; }
.audience-card p { margin: 0; color: #687a82; font-size: 14px; line-height: 1.58; }

.feature-wall { background: #fff; }
.feature-heading { align-items: end; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.feature-card { min-height: 225px; padding: 23px; border: 1px solid #dce5e8; border-radius: 12px; background: #fbfcfc; }
.feature-symbol { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 38px; border-radius: 8px; background: var(--teal-soft); color: var(--teal-dark); font-size: 12px; font-weight: 900; }
.feature-card h3 { margin: 0 0 9px; color: #29404a; font-size: 17px; }
.feature-card p { margin: 0; color: #6b7b82; font-size: 13px; line-height: 1.55; }

.founder-note { padding: 90px 0; background: #17262d; color: #fff; }
.founder-inner { display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: start; max-width: 1030px; }
.founder-brand-lockup { display: grid; gap: 18px; justify-items: start; }
.founder-brand-lockup img { display: block; width: 200px; border-radius: 18px; box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.founder-badge { display: inline-block; width: max-content; padding: 8px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #a8dce8; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.founder-copy h2 { color: #fff; font-size: clamp(34px, 4vw, 50px); }
.founder-copy p { max-width: 760px; margin: 23px 0 0; color: #c5d0d5; font-size: 16px; line-height: 1.72; }
.founder-copy p b { color: #bfe6ef; }

.faq { background: #f7f9fa; }
.faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 90px; align-items: start; }
.faq-title { position: sticky; top: 115px; }
.faq-list { border-top: 1px solid #d6e0e4; }
.faq details { border-bottom: 1px solid #d6e0e4; }
.faq summary { position: relative; padding: 25px 42px 25px 0; color: #283f49; font-size: 18px; font-weight: 800; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 5px; top: 20px; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid #cad9de; border-radius: 50%; color: var(--teal-dark); font-size: 18px; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 700px; margin: -5px 0 26px; color: #65767e; font-size: 15px; line-height: 1.68; }

.final-cta { position: relative; overflow: hidden; padding: 116px 0 124px; background: #eef7f8; text-align: center; }
.final-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-one { width: 520px; height: 520px; left: -300px; top: -220px; border: 1px solid #c9e0e6; box-shadow: 0 0 0 75px rgba(21,96,130,.025), 0 0 0 150px rgba(21,96,130,.018); }
.orb-two { width: 380px; height: 380px; right: -220px; bottom: -210px; border: 1px solid #c9e0e6; box-shadow: 0 0 0 65px rgba(21,96,130,.025); }
.final-inner { position: relative; z-index: 1; max-width: 900px; }
.dark-eyebrow { margin-left: auto; margin-right: auto; }
.final-cta h2 { margin: 0; color: #18282f; font-size: clamp(42px, 5vw, 66px); line-height: 1.03; letter-spacing: -.052em; }
.final-cta h2 span { color: var(--teal); }
.final-cta > .shell > p { max-width: 680px; margin: 24px auto 26px; color: #5d7079; font-size: 18px; line-height: 1.6; }
.final-form { margin: 0 auto; }
.final-cta .form-note { text-align: center; }
.final-cta .form-status { width: 100%; text-align: center; }

.site-footer { padding: 31px 0; border-top: 1px solid #dce4e7; background: #fff; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: #74838a; font-size: 12px; }
.footer-inner p { margin: 0; }
.footer-inner p:last-child { justify-self: end; }
.footer-brand { color: var(--text); }
.footer-brand .brand-name { font-size: 17px; }
.footer-brand .brand-mark { transform: scale(.8); transform-origin: left center; width: 18px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.footer-links a { color: #5c7079; font-weight: 700; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(900px, 100%); margin: 0 auto; }
  .browser-shell { transform: none; }
  .pain-grid, .audience-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-row { grid-template-columns: 45px 1fr; }
  .benefit-demo { grid-column: 2; justify-self: stretch; width: 100%; }
  .product-story-grid { grid-template-columns: 1fr; gap: 55px; }
  .sheet-visual { max-width: 850px; }
}

@media (max-width: 800px) {
  .section-pad { padding: 82px 0; }
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { position: absolute; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(38px, 8vw, 52px); }
  .hero-sub { font-size: 18px; }
  .split-heading, .mid-cta-inner, .faq-grid, .founder-inner { grid-template-columns: 1fr; gap: 35px; }
  .faq-title { position: static; }
  .statement-inner { grid-template-columns: 52px 1fr; }
  .quote-mark { font-size: 76px; }
  .sheet-visual { grid-template-columns: 1fr; gap: 18px; }
  .transform-arrow { transform: rotate(90deg); }
  .scope-card { transform: none; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner p:last-child { justify-self: center; }
  .footer-brand { justify-self: center; }
}

@media (max-width: 610px) {
  .header-inner { height: 64px; }
  .brand-name { font-size: 19px; }
  .header-cta { padding: 9px 12px; font-size: 12px; }
  .hero { padding-top: 108px; padding-bottom: 75px; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { margin-top: 22px; font-size: 17px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .waitlist-form button { width: 100%; }
  .form-status { top: calc(100% + 31px); }
  .form-note { margin-top: 10px; }
  .mini-proof { display: grid; gap: 10px; }
  .browser-shell { border-radius: 11px; }
  .browser-top { grid-template-columns: 60px 1fr 60px; }
  .app-window { grid-template-columns: 32% 68%; min-height: 355px; }
  .app-rail { padding: 9px 7px 8px; }
  .app-wordmark { font-size: 10px; }
  .rail-client:nth-of-type(n+8) { display: none; }
  .client-head { padding: 9px; }
  .client-head h3 { font-size: 13px; }
  .quick-actions { display: none; }
  .metric-row { grid-template-columns: 1fr 1fr; padding: 0 9px 7px; }
  .app-cards { grid-template-columns: 1fr; padding: 0 9px 9px; }
  .follow-card { display: none; }
  .notes-card { grid-column: 1; }
  .contact-card { min-height: auto; }
  .floating-chip { display: none; }
  .pain-grid, .audience-grid, .feature-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 0; }
  .pain-icon, .audience-icon, .feature-symbol { margin-bottom: 23px; }
  .statement-band { padding: 58px 0; }
  .statement-inner { grid-template-columns: 1fr; gap: 0; }
  .quote-mark { height: 55px; }
  .benefit-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .benefit-demo { grid-column: 1; }
  .benefit-number { margin-bottom: -5px; }
  .compact-demo { grid-template-columns: 1fr; }
  .demo-next { border-top: 1px solid #e0e7e9; border-left: 0; }
  .action-demo { flex-wrap: wrap; }
  .action-demo button { min-width: 80px; }
  .sheet-grid { font-size: 7px; }
  .founder-note { padding: 76px 0; }
  .final-cta { padding: 90px 0 105px; }
  .final-cta h2 { font-size: 36px; }
}
