/* Fonts */
@font-face { font-family: 'Rhymes Display Thin'; src: url('/fonts/Rhymes Display Thin.ttf') format('truetype'); font-weight: 100 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Rhymes Display Thin'; src: url('/fonts/Rhymes Display Thin Italic.ttf') format('truetype'); font-weight: 100 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'FK Grotesk Neue'; src: url('/fonts/FKGroteskNeue.ttf') format('truetype'); font-weight: 100 900; font-display: swap; }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'FK Grotesk Neue', 'Segoe UI', sans-serif; color: #0B1A2E; background: #fff; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button { font-family: inherit; }

/* Variables */
:root {
  --ink: #0B1A2E; --slate: #1E3354; --fog: #7A8DA3; --mist: #B0BFCF;
  --cloud: #DDE4EC; --pearl: #F0F3F7; --snow: #F8F9FB; --white: #FFFFFF;
  --patina: #3A7D6B; --patinaDk: #245149; --patinaMid: #6FA99A; --patinaLight: #E6F2EF; --patinaGlow: rgba(58,125,107,0.12);
  --orange: #EA521F; --blue: #4A8FE7; --amber: #F5A623;
  --display: 'Rhymes Display Thin', Georgia, serif;
  --body: 'FK Grotesk Neue', 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', Consolas, monospace;
}

/* Layout */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; transition: all 0.35s ease; }
.nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--cloud); }
.nav.nav-inner { background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--cloud); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--fog); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-cta { font-size: 14px; font-weight: 600; color: var(--white); background: var(--patina); padding: 8px 20px; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--patinaDk); }
.nav-toggle { display: none; }
.logo-text { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); text-decoration: none; }
.logo-text sup { color: var(--patina); font-size: 10px; font-weight: 600; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > .nav-link svg { transition: transform 0.2s; }
.nav-dropdown:hover > .nav-link svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 200px; background: var(--white); border: 1px solid var(--cloud); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; z-index: 110; margin-top: 8px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--fog); text-decoration: none; transition: color 0.15s, background 0.15s; }
.nav-dropdown-menu a:hover { color: var(--patina); background: var(--patinaLight); }

/* Buttons */
.btn-primary { font-size: 15px; font-weight: 600; color: var(--white); background: var(--patina); padding: 14px 28px; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 20px var(--patinaGlow); transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--patinaDk); }
.btn-secondary { font-size: 15px; font-weight: 500; color: var(--fog); text-decoration: none; padding: 14px 8px; border-bottom: 1px solid var(--cloud); transition: color 0.2s; }
.btn-secondary:hover { color: var(--ink); }

/* Hero */
.hero { background: var(--snow); position: relative; overflow: hidden; padding: 120px 0 60px; }
.hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.02; }
.hero-glow { position: absolute; top: -15%; right: -8%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, var(--patinaGlow) 0%, transparent 65%); filter: blur(40px); }
.hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.hero-content { text-align: left; }
.hero-label { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--patina); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
.hero h1 { font-family: var(--display); font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: var(--ink); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 24px 0; }
.hero h1 span { color: var(--patina); }
.hero-sub { font-size: 18px; color: var(--fog); line-height: 1.7; margin: 0 0 32px 0; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; align-items: center; }

/* Hero screenshot carousel */
.hero-screenshot { position: relative; z-index: 1; }
.hero-slide { width: 100%; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08); border: 1px solid var(--cloud); display: block; opacity: 0; transition: opacity 0.8s ease; position: absolute; top: 0; left: 0; }
.hero-slide:first-child { position: relative; }
.hero-slide.active { opacity: 1; }
.hero-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; position: relative; z-index: 2; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--cloud); transition: background 0.3s, transform 0.2s; }
.hero-dot.active { background: var(--patina); transform: scale(1.2); }
.hero-dot:hover { background: var(--patinaMid); }

/* Morning timeline (horizontal) */
.morning-timeline { padding: 80px 0; background: var(--white); }
.morning-timeline-title { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--fog); letter-spacing: 0.02em; margin-bottom: 32px; text-align: center; text-transform: uppercase; letter-spacing: 0.08em; }
.morning-timeline-track { display: flex; gap: 0; max-width: 900px; margin: 0 auto; position: relative; }
.morning-timeline-track::before { content: ''; position: absolute; top: 18px; left: 60px; right: 60px; height: 2px; background: var(--cloud); }
.morning-timeline-step { flex: 1; text-align: center; position: relative; padding: 0 8px; }
.morning-timeline-time { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--patina); background: var(--white); display: inline-block; padding: 4px 8px; position: relative; z-index: 1; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.morning-timeline-step--final .morning-timeline-time { background: var(--patina); color: var(--white); border-radius: 4px; }
.morning-timeline-label { display: block; font-size: 13px; color: var(--fog); line-height: 1.4; }
.morning-timeline-step--final .morning-timeline-label { color: var(--ink); font-weight: 600; }
.morning-timeline-punchline { text-align: center; margin-top: 32px; font-size: 15px; font-weight: 600; color: var(--ink); }

/* Pain section */
.pain { background: var(--ink); padding: 80px 0; }
.pain h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--white); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.pain-card { text-align: center; padding: 32px 20px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.pain-num { font-family: var(--display); font-size: 42px; font-weight: 700; color: var(--orange); line-height: 1; }
.pain-label { font-size: 14px; color: var(--mist); margin-top: 10px; line-height: 1.5; }

/* Before/After */
.ba { background: var(--snow); padding: 100px 0; }
.ba h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.ba-grid { display: grid; grid-template-columns: 1fr 48px 1fr; align-items: stretch; }
.ba-card { background: var(--white); border-radius: 14px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.ba-card.today { border: 1.5px solid rgba(239,100,97,0.13); }
.ba-card.future { border: 1.5px solid rgba(58,125,107,0.2); box-shadow: 0 4px 20px var(--patinaGlow); }
.ba-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.ba-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--pearl); }
.ba-row:last-child { border-bottom: none; }
.ba-row-label { font-size: 14px; color: var(--fog); }
.ba-row-val { font-family: var(--mono); font-size: 14px; font-weight: 600; }
.ba-arrow { display: flex; align-items: center; justify-content: center; }
.ba-note { font-size: 13px; color: var(--mist); text-align: center; font-style: italic; margin-top: 24px; }

/* Platform */
.platform { background: var(--white); padding: 100px 0; }
.platform h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.tab-bar { display: flex; justify-content: center; gap: 6px; margin-bottom: 48px; }
.tab-btn { font-size: 15px; font-weight: 600; padding: 10px 28px; border-radius: 8px; cursor: pointer; transition: all 0.25s; border: none; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mod-label { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; transition: color 0.3s; }
.mod-title { font-family: var(--display); font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.2; margin: 0 0 16px; }
.mod-desc { font-size: 16px; color: var(--fog); line-height: 1.7; margin: 0 0 24px; }
.mod-point { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--ink); }
.flywheel-wrap { display: flex; justify-content: center; align-items: center; }
.flywheel { position: relative; width: 300px; height: 300px; }
.flywheel svg { position: absolute; inset: 0; }
.flywheel-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.flywheel-center small { font-family: var(--mono); font-size: 9px; color: var(--mist); text-transform: uppercase; letter-spacing: 0.12em; display: block; }
.flywheel-center strong { font-family: var(--display); font-size: 18px; color: var(--ink); display: block; }
.flywheel-node { position: absolute; width: 64px; height: 64px; border-radius: 50%; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.platform-note { margin-top: 48px; padding: 16px 24px; background: var(--pearl); border-radius: 10px; text-align: center; border: 1px solid var(--cloud); font-size: 14px; color: var(--fog); }
.platform-note strong { color: var(--ink); }

/* Walkthrough */
.walk { background: var(--ink); padding: 100px 0; position: relative; overflow: hidden; }
.walk h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--white); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.walk-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
.walk-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px 20px; }
.walk-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.walk-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); }
.walk-mod { font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.walk-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin: 0 0 8px; }
.walk-card p { font-size: 13px; color: var(--mist); line-height: 1.6; margin: 0; }
.walk-punchline { margin-top: 40px; text-align: center; font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--patina); }

/* Tech */
.tech { background: var(--white); padding: 100px 0; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tech-label { font-family: var(--mono); font-size: 12px; color: var(--patina); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.tech h2 { font-family: var(--display); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1.15; margin: 0 0 20px; }
.tech-desc { font-size: 16px; color: var(--fog); line-height: 1.7; }
.tech-point { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--pearl); }
.tech-point:last-child { border-bottom: none; }
.tech-point-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.tech-point-desc { font-size: 13px; color: var(--fog); margin-top: 2px; }

/* Pilot */
.pilot { background: var(--snow); padding: 100px 0; }
.pilot h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.pilot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.pilot-card { text-align: center; padding: 28px 16px; background: var(--white); border-radius: 12px; border: 1px solid var(--cloud); box-shadow: 0 2px 12px rgba(0,0,0,0.03); }
.pilot-val { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--patina); line-height: 1; }
.pilot-label { font-size: 13px; color: var(--fog); margin-top: 8px; }
.pilot-quote { max-width: 720px; margin: 0 auto; padding: 28px 32px; background: var(--white); border-radius: 12px; border: 1px solid var(--cloud); border-left: 4px solid var(--patina); }
.pilot-quote blockquote { font-family: var(--display); font-size: 18px; font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.6; margin: 0 0 12px; }
.pilot-quote cite { font-family: var(--body); font-size: 13px; color: var(--fog); font-style: normal; }

/* How we fit */
.fit { background: var(--white); padding: 100px 0; }
.fit h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.15; margin: 0 0 12px; }
.fit-sub { font-size: 16px; color: var(--fog); text-align: center; line-height: 1.7; max-width: 680px; margin: 0 auto 48px; }
.fit-flow { display: grid; grid-template-columns: 1fr 40px 1.4fr 40px 1fr; align-items: center; }
.fit-col { display: flex; flex-direction: column; gap: 10px; }
.fit-box { background: var(--white); border-radius: 10px; padding: 14px 16px; border: 1px solid var(--cloud); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.fit-box.accent { border-color: rgba(58,125,107,0.25); }
.fit-box-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.fit-box-sub { font-size: 11px; color: var(--fog); margin-top: 2px; }
.fit-center { background: var(--ink); border-radius: 14px; padding: 24px 20px; text-align: center; }
.fit-center-title { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--patina); margin-bottom: 16px; }
.fit-mod { border-radius: 8px; padding: 8px 0; margin-bottom: 8px; font-size: 12px; font-weight: 700; color: var(--white); }
.fit-arrow { display: flex; justify-content: center; align-items: center; }

/* Getting started */
.start { background: var(--snow); padding: 100px 0; }
.start h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.start-row { display: grid; grid-template-columns: 80px 1fr 200px 200px; gap: 20px; align-items: start; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--cloud); }
.start-row:last-child { border-bottom: none; margin-bottom: 0; }
.start-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; background: var(--ink); color: var(--patina); padding: 4px 10px; border-radius: 4px; display: inline-block; }
.start-connector { width: 1px; height: 32px; background: var(--cloud); margin: 8px auto 0; }
.start-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.start-desc { font-size: 13px; color: var(--fog); line-height: 1.6; }
.start-box { background: var(--white); border-radius: 8px; padding: 10px 14px; border: 1px solid var(--cloud); }
.start-box.accent { border-color: rgba(58,125,107,0.2); }
.start-box-label { font-family: var(--mono); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }

/* CTA */
.cta { background: var(--ink); padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(58,125,107,0.06) 0%, transparent 70%); }
.cta h2 { font-family: var(--display); font-size: 40px; font-weight: 700; color: var(--white); line-height: 1.12; margin: 0 0 20px; position: relative; z-index: 1; }
.cta-sub { font-size: 17px; color: var(--mist); line-height: 1.7; max-width: 560px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta .btn-primary { position: relative; z-index: 1; }
.cta-contact { font-size: 13px; color: var(--fog); margin-top: 16px; position: relative; z-index: 1; }

/* Demo form */
.demo-form { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.demo-form-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.demo-field label { display: block; font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--fog); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.demo-field input { width: 100%; font-family: var(--body); font-size: 15px; color: var(--white); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.demo-field input::placeholder { color: var(--fog); }
.demo-field input:focus { border-color: var(--patina); box-shadow: 0 0 0 3px var(--patinaGlow); }
.demo-field input:invalid:not(:placeholder-shown) { border-color: var(--orange); }
.demo-submit { font-size: 15px; font-weight: 600; color: var(--white); background: var(--patina); padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer; box-shadow: 0 4px 20px var(--patinaGlow); transition: all 0.2s; width: auto; }
.demo-submit:hover { background: var(--patinaDk); }
.demo-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.demo-trust { font-size: 13px; color: var(--fog); margin-top: 16px; }
.demo-error { font-size: 13px; color: var(--orange); margin-top: 12px; display: none; }
.demo-error.visible { display: block; }
.demo-success { max-width: 480px; margin: 0 auto; padding: 36px 32px; background: rgba(58,125,107,0.08); border: 1px solid rgba(58,125,107,0.2); border-radius: 14px; position: relative; z-index: 1; animation: demoFadeIn 0.4s ease; }
.demo-success-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--patina); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.demo-success h3 { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--white); margin: 0 0 8px; }
.demo-success p { font-size: 15px; color: var(--mist); line-height: 1.6; margin: 0; }
.demo-fallback { font-size: 13px; color: var(--fog); margin-top: 24px; position: relative; z-index: 1; }
.demo-fallback a { color: var(--mist); text-decoration: underline; text-underline-offset: 2px; }
.demo-fallback a:hover { color: var(--white); }
@keyframes demoFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer { background: var(--ink); padding: 40px 0 28px; border-top: 1px solid rgba(58,125,107,0.1); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand p { font-size: 12px; color: var(--fog); max-width: 260px; line-height: 1.5; margin-top: 10px; }
.footer-cols { display: flex; gap: 56px; }
.footer-col-title { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--fog); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: var(--fog); text-decoration: none; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; font-size: 11px; color: var(--fog); }

/* Landing pages — shared */
.lp-hero { padding: 140px 0 80px; text-align: center; background: var(--snow); position: relative; }
.lp-hero .wrap { position: relative; z-index: 1; }
.lp-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--patinaLight); color: var(--patinaDk); padding: 6px 16px; border-radius: 100px; font-family: var(--mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; }
.lp-hero h1 { font-family: var(--display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; line-height: 1.1; color: var(--ink); max-width: 820px; margin: 0 auto 20px; }
.lp-hero h1 span { color: var(--patina); }
.lp-hero-sub { font-size: 18px; color: var(--fog); line-height: 1.7; max-width: 640px; margin: 0 auto 32px; }

.lp-stats { background: var(--ink); padding: 56px 0; }
.lp-stats-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.lp-stat-num { font-family: var(--display); font-size: 38px; font-weight: 700; color: var(--patinaMid); line-height: 1; margin-bottom: 6px; }
.lp-stat-desc { font-size: 13px; color: var(--mist); line-height: 1.5; }

.lp-section { padding: 100px 0; }
.lp-section.alt { background: var(--snow); }
.lp-section.dark { background: var(--ink); color: var(--white); }
.lp-section-label { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--patina); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.lp-section.dark .lp-section-label { color: var(--patinaMid); }
.lp-section-heading { font-family: var(--display); font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 16px; }
.lp-section.dark .lp-section-heading { color: var(--white); }
.lp-section-sub { font-size: 16px; color: var(--fog); line-height: 1.7; max-width: 600px; margin-bottom: 40px; }
.lp-section.dark .lp-section-sub { color: var(--mist); }

.lp-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.lp-card { background: var(--white); border: 1px solid var(--cloud); border-radius: 12px; padding: 28px 24px; transition: box-shadow 0.2s; }
.lp-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.lp-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.lp-card p { font-size: 15px; color: var(--fog); line-height: 1.7; }
.lp-card-badge { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 4px; margin-bottom: 14px; }
.lp-card-badge.scout { background: var(--patinaLight); color: var(--patinaDk); }
.lp-card-badge.studio { background: rgba(74,143,231,0.1); color: #2D6BC4; }
.lp-card-badge.survey { background: rgba(245,166,35,0.1); color: #B57D15; }

.lp-feature-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.lp-feature-list span { font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.lp-feature-list span::before { content: ''; display: inline-block; width: 18px; height: 18px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='rgba(58,125,107,0.09)'/%3E%3Cpath d='M5.5 9L8 11.5L12.5 6.5' stroke='%233A7D6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center; }

.lp-compare-table { width: 100%; border-collapse: collapse; border: 1px solid var(--cloud); border-radius: 12px; overflow: hidden; }
.lp-compare-table th, .lp-compare-table td { padding: 14px 20px; text-align: left; font-size: 14px; }
.lp-compare-table thead th { background: var(--ink); color: var(--white); font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-compare-table thead th:last-child { color: var(--patinaMid); }
.lp-compare-table tbody tr { border-bottom: 1px solid var(--pearl); }
.lp-compare-table tbody tr:last-child { border-bottom: none; }
.lp-compare-table tbody td { color: var(--fog); }
.lp-compare-table tbody td:first-child { font-weight: 600; color: var(--ink); }
.lp-compare-table tbody td:last-child { color: var(--patina); font-weight: 600; }

.lp-cta { padding: 100px 0; background: var(--patinaLight); text-align: center; }
.lp-cta h2 { font-family: var(--display); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.lp-cta p { font-size: 16px; color: var(--fog); line-height: 1.7; max-width: 560px; margin: 0 auto 32px; }

.lp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lp-two-col p { font-size: 16px; color: var(--fog); line-height: 1.8; margin-bottom: 20px; }
.lp-two-col strong { color: var(--ink); }

.lp-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.lp-timeline-step { background: var(--white); border: 1px solid var(--cloud); border-radius: 12px; padding: 28px; text-align: center; }
.lp-timeline-step .time { font-family: var(--display); font-size: 28px; font-weight: 700; color: var(--patina); margin-bottom: 8px; }
.lp-timeline-step h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.lp-timeline-step p { font-size: 13px; color: var(--fog); line-height: 1.6; }

/* Landing — homepage "Built for" section */
.built-for { background: var(--white); padding: 100px 0; }
.built-for h2 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.15; margin: 0 0 48px; }
.built-for-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.built-for-card { display: block; background: var(--white); border: 1px solid var(--cloud); border-radius: 14px; padding: 32px 28px; text-decoration: none; transition: all 0.2s; }
.built-for-card:hover { border-color: var(--patina); box-shadow: 0 4px 20px var(--patinaGlow); transform: translateY(-2px); }
.built-for-label { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--patina); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.built-for-card p { font-size: 16px; color: var(--fog); line-height: 1.6; margin-bottom: 16px; }
.built-for-link { font-size: 14px; font-weight: 600; color: var(--patina); }

/* Blog list */
.blog-header { padding: 120px 0 48px; text-align: center; }
.blog-header h1 { font-family: var(--display); font-size: 40px; font-weight: 700; color: var(--ink); margin: 0; }
.post-list { max-width: 720px; margin: 0 auto; padding-bottom: 80px; }
.post-item { padding: 32px 0; border-bottom: 1px solid var(--cloud); }
.post-item:last-child { border-bottom: none; }
.post-date { font-family: var(--mono); font-size: 12px; color: var(--fog); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.post-title { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1.25; margin: 0 0 10px; }
.post-title a { text-decoration: none; transition: color 0.2s; }
.post-title a:hover { color: var(--patina); }
.post-summary { font-size: 16px; color: var(--fog); line-height: 1.7; margin: 0 0 12px; }
.post-read { font-size: 14px; font-weight: 600; color: var(--patina); text-decoration: none; }
.post-read:hover { color: var(--patinaDk); }

/* Article */
.article-header { padding: 120px 0 32px; max-width: 720px; margin: 0 auto; }
.article-date { font-family: var(--mono); font-size: 12px; color: var(--fog); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.article-header h1 { font-family: var(--display); font-size: 40px; font-weight: 700; color: var(--ink); line-height: 1.15; margin: 0; }
.article-body { max-width: 720px; margin: 0 auto; padding-bottom: 80px; }
.article-body h2 { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.2; margin: 48px 0 16px; }
.article-body h3 { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.3; margin: 36px 0 12px; }
.article-body p { font-size: 17px; color: var(--slate); line-height: 1.8; margin: 0 0 20px; }
.article-body ul, .article-body ol { font-size: 17px; color: var(--slate); line-height: 1.8; margin: 0 0 20px; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--patina); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--patinaDk); }
.article-body blockquote { border-left: 3px solid var(--patina); padding: 4px 0 4px 20px; margin: 24px 0; }
.article-body blockquote p { font-style: italic; color: var(--fog); }
.article-body code { font-family: var(--mono); font-size: 0.9em; background: var(--pearl); padding: 2px 6px; border-radius: 4px; }
.article-body pre { background: var(--ink); color: var(--cloud); padding: 20px 24px; border-radius: 10px; overflow-x: auto; margin: 24px 0; }
.article-body pre code { background: none; padding: 0; font-size: 14px; color: var(--cloud); }
.article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 24px 0; }
.article-body hr { border: none; border-top: 1px solid var(--cloud); margin: 40px 0; }
.article-back { max-width: 720px; margin: 0 auto; padding-bottom: 60px; }
.article-back a { font-size: 14px; font-weight: 600; color: var(--patina); text-decoration: none; }
.article-back a:hover { color: var(--patinaDk); }

/* Utilities */
.check-icon { flex-shrink: 0; }
@keyframes fspin { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -695; } }

/* Mobile */
@media (max-width: 768px) {
  .hero-inner, .ba-grid, .platform-grid, .walk-grid, .tech-grid, .pilot-grid, .fit-flow, .start-row { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 36px; }
  .morning-timeline-track { flex-direction: column; gap: 16px; align-items: center; }
  .morning-timeline-track::before { display: none; }
  .morning-timeline-step { display: flex; align-items: center; gap: 12px; text-align: left; }
  .morning-timeline-time { margin-bottom: 0; }
  .ba-arrow, .fit-arrow { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 20px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: all 0.3s ease; }
  .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
  .nav-toggle span::before { top: -7px; }
  .nav-toggle span::after { top: 7px; }
  .nav-toggle.active span { background: transparent; }
  .nav-toggle.active span::before { top: 0; transform: rotate(45deg); background: var(--ink); }
  .nav-toggle.active span::after { top: 0; transform: rotate(-45deg); background: var(--ink); }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); padding: 20px 24px; gap: 0; border-bottom: 1px solid var(--cloud); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--cloud); }
  .nav-links .nav-link:last-of-type { border-bottom: none; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .nav-link { width: 100%; display: flex; justify-content: space-between; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 16px; margin-top: 0; min-width: 0; }
  .nav-dropdown-menu a { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--pearl); }
  .nav-dropdown-menu a:last-child { border-bottom: none; }
  .nav-dropdown-menu a:hover { background: none; }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; padding: 12px 20px; }
  .demo-form-fields { grid-template-columns: 1fr; }
  .demo-submit { width: 100%; }
  .blog-header h1 { font-size: 28px; }
  .article-header h1 { font-size: 28px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .lp-two-col, .lp-card-grid, .lp-timeline, .lp-stats-inner, .built-for-grid { grid-template-columns: 1fr !important; }
  .lp-hero h1 { font-size: 32px; }
  .lp-compare-table th, .lp-compare-table td { padding: 10px 12px; font-size: 13px; }
}
