@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #071512;
  --ink-soft: #17302a;
  --night: #06100e;
  --night-2: #0b1b17;
  --paper: #f5f3ec;
  --paper-2: #ebe9df;
  --white: #fffefa;
  --mint: #8fffc1;
  --mint-bright: #56f39a;
  --aqua: #63e6dc;
  --lime: #d7ff64;
  --amber: #ffbd66;
  --muted: #5f706b;
  --line: rgba(7, 21, 18, 0.13);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(6, 25, 20, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--mint); color: var(--ink); }

.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 12px 18px; border-radius: 12px; background: var(--white); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin: 0 auto; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--night); color: var(--white); }
.section-ink { background: var(--ink-soft); color: var(--white); }
.section-white { background: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: #236f54; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.section-dark .eyebrow, .section-ink .eyebrow, .hero-dark .eyebrow { color: var(--mint); }
h1, h2, h3, h4 { margin: 0; font-family: 'Manrope', sans-serif; line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(3.25rem, 7.1vw, 7.25rem); }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -.025em; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.55vw, 1.28rem); line-height: 1.65; }
.section-dark .lead, .section-ink .lead, .hero-dark .lead { color: rgba(255,255,255,.66); }
.gradient-text { color: var(--mint-bright); background: linear-gradient(100deg, var(--mint), var(--aqua), var(--lime)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.max-copy { max-width: 690px; }
.max-copy-center { max-width: 760px; margin-inline: auto; }

.announcement { height: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; background: var(--mint); color: var(--ink); font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.announcement .pulse { width: 7px; height: 7px; border-radius: 50%; background: #087145; box-shadow: 0 0 0 5px rgba(8,113,69,.12); animation: pulse 2s infinite; }
.site-header { position: absolute; z-index: 100; top: 36px; left: 0; right: 0; height: 86px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); }
.site-header.light { color: var(--ink); border-bottom-color: var(--line); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.08); }
.light .brand-mark { border-color: var(--line); background: var(--white); }
.brand-mark svg { width: 22px; }
.brand small { display: block; margin-top: -2px; color: var(--mint); font-family: 'DM Sans', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.light .brand small { color: #2d765d; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav-links > a, .nav-dropdown > button { position: relative; padding: 30px 0; opacity: .78; color: inherit; background: none; border: 0; cursor: pointer; }
.nav-links > a:hover, .nav-links > a.active, .nav-dropdown > button:hover { opacity: 1; }
.nav-links > a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 21px; height: 2px; border-radius: 2px; background: var(--mint); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 6px; }
.nav-dropdown > button::after { content: ''; width: 5px; height: 5px; border: solid currentColor; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg) translateY(-2px); }
.dropdown-panel { position: absolute; visibility: hidden; opacity: 0; transform: translateY(8px); top: 74px; left: 50%; width: 510px; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); transition: .2s var(--ease); translate: -50% 0; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-link { display: flex; gap: 11px; align-items: flex-start; padding: 12px; border-radius: 12px; }
.dropdown-link:hover { background: var(--paper); }
.dropdown-icon { flex: 0 0 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: #e5f9ed; color: #1a7652; font-size: 13px; font-weight: 800; }
.dropdown-link strong { display: block; font-family: 'Manrope'; font-size: 13px; }
.dropdown-link span { display: block; color: var(--muted); font-size: 11px; font-weight: 400; }
.nav-cta { padding: 11px 17px !important; border: 1px solid rgba(255,255,255,.3) !important; border-radius: 11px; opacity: 1 !important; }
.light .nav-cta { border-color: var(--line) !important; background: var(--ink); color: var(--white); }
.nav-cta::after { display: none !important; }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid currentColor; border-radius: 12px; color: inherit; background: transparent; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 1.5px; background: currentColor; transition: .25s; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 13px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800; transition: transform .25s var(--ease), background .25s, color .25s, border .25s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mint); color: var(--ink); }
.btn-primary:hover { background: var(--lime); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #17362e; }
.btn-outline { border-color: rgba(255,255,255,.25); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--mint); color: var(--mint); }
.btn-outline-dark { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-arrow::after { content: '↗'; font-size: 17px; font-weight: 400; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button-row.center { justify-content: center; }

.hero { min-height: 790px; padding: 230px 0 100px; position: relative; overflow: hidden; }
.hero-dark { color: var(--white); background: var(--night); }
.hero-dark::before { content: ''; position: absolute; width: 760px; height: 760px; top: -330px; right: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(86,243,154,.19), rgba(99,230,220,.06) 40%, transparent 68%); filter: blur(8px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 60px; }
.hero-copy h1 { max-width: 890px; }
.hero-copy .lead { max-width: 650px; margin-top: 26px; }
.hero-kicker { margin-top: 40px; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.58); font-size: 13px; }
.avatar-stack { display: flex; }
.avatar { width: 34px; height: 34px; margin-left: -8px; display: grid; place-items: center; border: 2px solid var(--night); border-radius: 50%; color: var(--ink); background: var(--mint); font-size: 10px; font-weight: 800; }
.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2) { background: var(--aqua); }
.avatar:nth-child(3) { background: var(--lime); }
.voice-stage { position: relative; min-height: 510px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(143,255,193,.14); border-radius: 50%; }
.orbit.one { width: 490px; height: 490px; animation: spin 30s linear infinite; }
.orbit.two { width: 360px; height: 360px; border-style: dashed; animation: spin 22s linear infinite reverse; }
.orbit-dot { position: absolute; width: 10px; height: 10px; top: 30px; left: 92px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 25px var(--mint); }
.voice-core { position: relative; z-index: 2; width: 245px; height: 245px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: radial-gradient(circle at 35% 25%, rgba(143,255,193,.3), rgba(99,230,220,.08) 44%, rgba(255,255,255,.03) 70%); box-shadow: inset 0 0 70px rgba(143,255,193,.09), 0 0 90px rgba(60,220,150,.1); }
.wave-bars { height: 70px; display: flex; align-items: center; gap: 5px; }
.wave-bars i { width: 4px; height: 20%; border-radius: 10px; background: var(--mint); animation: wave 1.25s ease-in-out infinite; }
.wave-bars i:nth-child(2), .wave-bars i:nth-child(10) { animation-delay: -.2s; }
.wave-bars i:nth-child(3), .wave-bars i:nth-child(9) { animation-delay: -.4s; }
.wave-bars i:nth-child(4), .wave-bars i:nth-child(8) { animation-delay: -.6s; }
.wave-bars i:nth-child(5), .wave-bars i:nth-child(7) { animation-delay: -.8s; }
.wave-bars i:nth-child(6) { animation-delay: -1s; }
.floating-note { position: absolute; z-index: 4; min-width: 190px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(15,38,32,.78); box-shadow: 0 16px 45px rgba(0,0,0,.2); backdrop-filter: blur(14px); color: rgba(255,255,255,.65); font-size: 11px; }
.floating-note strong { display: block; color: var(--white); font-size: 13px; }
.floating-note.top { top: 85px; right: -10px; }
.floating-note.bottom { bottom: 78px; left: -20px; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--mint); }
.trust-strip { position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,.1); background: var(--night); color: rgba(255,255,255,.55); }
.trust-row { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.trust-row > span { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.trust-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 38px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-family: 'Manrope'; font-size: 12px; font-weight: 700; }
.trust-item b { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--mint); font-size: 10px; }

.page-hero { min-height: 650px; padding: 220px 0 100px; position: relative; overflow: hidden; }
.page-hero h1 { max-width: 980px; font-size: clamp(3.2rem, 6.6vw, 6.8rem); }
.page-hero .lead { max-width: 690px; margin-top: 26px; }
.page-hero-light { color: var(--ink); background: var(--paper); }
.page-hero-light::after { content: ''; position: absolute; width: 560px; height: 560px; right: -100px; bottom: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(99,230,220,.22), transparent 68%); }
.page-hero .container { position: relative; z-index: 2; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.meta-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; color: rgba(255,255,255,.7); font-size: 12px; }
.page-hero-light .meta-pill { border-color: var(--line); color: var(--muted); background: rgba(255,255,255,.5); }
.meta-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mint-bright); }

.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading .lead { max-width: 630px; justify-self: end; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.55); transition: transform .3s var(--ease), box-shadow .3s, background .3s; overflow: hidden; }
.card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.card-dark { border-color: var(--line-dark); background: rgba(255,255,255,.04); }
.card-dark:hover { background: rgba(255,255,255,.07); box-shadow: none; }
.card-number { color: #2a755c; font-family: 'Manrope'; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.card h3 { margin-top: 42px; }
.card p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card-dark p { color: rgba(255,255,255,.58); }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: #287659; font-size: 13px; font-weight: 700; }
.card-dark .card-link { color: var(--mint); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #dcf7e7; color: #1f7552; font-family: 'Manrope'; font-weight: 800; }
.card-icon svg { width: 23px; }
.product-card { min-height: 390px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); border: 0; background: var(--night-2); }
.product-card::before { content: ''; position: absolute; width: 240px; height: 240px; right: -100px; top: -100px; border-radius: 50%; background: radial-gradient(circle, var(--glow, rgba(143,255,193,.24)), transparent 70%); }
.product-card:nth-child(2) { --glow: rgba(99,230,220,.25); }
.product-card:nth-child(3) { --glow: rgba(215,255,100,.18); }
.product-card:nth-child(4) { --glow: rgba(255,189,102,.18); }
.product-card:nth-child(5) { --glow: rgba(156,140,255,.25); }
.product-card .card-icon { background: rgba(255,255,255,.08); color: var(--mint); }
.product-card p { color: rgba(255,255,255,.6); }
.product-card .card-link { color: var(--mint); }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-copy h2 { margin-bottom: 24px; }
.feature-copy .lead { margin-bottom: 30px; }
.feature-list { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.feature-list-item { display: grid; grid-template-columns: 36px 1fr; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.feature-list-item b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #dff7e8; color: #297657; font-size: 12px; }
.feature-list-item strong { display: block; font-family: 'Manrope'; font-size: 14px; }
.feature-list-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }
.visual-panel { min-height: 570px; position: relative; display: grid; place-items: center; padding: 50px; border-radius: var(--radius-lg); background: var(--ink-soft); color: var(--white); overflow: hidden; }
.visual-panel::before { content: ''; position: absolute; width: 420px; height: 420px; top: -180px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(143,255,193,.2), transparent 70%); }
.conversation { position: relative; z-index: 2; width: 100%; max-width: 420px; display: grid; gap: 14px; }
.message { width: 85%; padding: 16px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px 18px 18px 4px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.75); font-size: 14px; }
.message.ai { margin-left: auto; border-radius: 18px 18px 4px 18px; background: var(--mint); color: var(--ink); }
.message small { display: block; margin-bottom: 5px; opacity: .62; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.voice-line { display: flex; align-items: center; gap: 4px; height: 28px; }
.voice-line i { width: 3px; height: 8px; border-radius: 8px; background: currentColor; animation: softWave 1.4s infinite ease-in-out; }
.voice-line i:nth-child(2n) { animation-delay: -.5s; }
.voice-line i:nth-child(3n) { animation-delay: -.9s; }
.visual-stat { position: absolute; z-index: 3; right: 24px; bottom: 22px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(5,18,15,.8); backdrop-filter: blur(12px); }
.visual-stat strong { display: block; color: var(--mint); font-family: 'Manrope'; font-size: 22px; }
.visual-stat span { color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; }

.steps { counter-reset: steps; }
.step { display: grid; grid-template-columns: 82px 1fr 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before { counter-increment: steps; content: '0' counter(steps); color: #34785f; font-family: 'Manrope'; font-size: 12px; font-weight: 800; }
.step h3 { font-size: 1.3rem; }
.step p { color: var(--muted); font-size: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { padding: 7px 11px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-size: 11px; font-weight: 700; }

.quote-section { padding: 100px 0; background: var(--mint); color: var(--ink); }
.quote { max-width: 1000px; font-family: 'Manrope'; font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; line-height: 1.16; letter-spacing: -.045em; }
.quote-by { margin-top: 28px; display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; }
.quote-by::before { content: ''; width: 35px; height: 1px; background: currentColor; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: solid var(--line); border-width: 1px 0 1px 1px; }
.stat { padding: 32px; border-right: 1px solid var(--line); }
.stat strong { display: block; font-family: 'Manrope'; font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.06em; line-height: 1; }
.stat span { display: block; margin-top: 12px; color: var(--muted); font-size: 12px; }

.use-case { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-top: 1px solid var(--line); }
.use-case:last-child { border-bottom: 1px solid var(--line); }
.use-case-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #ddf7e7; font-weight: 800; }
.use-case h3 { margin-bottom: 7px; font-size: 16px; }
.use-case p { color: var(--muted); font-size: 13px; }

.countdown-wrap { position: relative; padding: 58px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); overflow: hidden; }
.countdown-wrap::before { content: ''; position: absolute; width: 500px; height: 500px; top: -320px; right: -150px; border-radius: 50%; background: rgba(143,255,193,.13); filter: blur(50px); }
.countdown { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 42px; }
.countdown-item { padding: 26px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(0,0,0,.12); text-align: center; }
.countdown-item strong { display: block; color: var(--mint); font-family: 'Manrope'; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; letter-spacing: -.06em; font-variant-numeric: tabular-nums; }
.countdown-item span { display: block; margin-top: 12px; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.launch-date { margin-top: 20px; color: rgba(255,255,255,.48); font-size: 12px; }

.timeline { position: relative; margin-top: 54px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 32px 110px 1fr; gap: 22px; padding-bottom: 40px; }
.timeline-dot { z-index: 2; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); }
.timeline-dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #2f775e; }
.timeline-date { padding-top: 5px; color: #2f775e; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.timeline-content h3 { margin-bottom: 8px; font-size: 17px; }
.timeline-content p { color: var(--muted); font-size: 13px; }

.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: solid var(--line); border-width: 1px 0 0 1px; }
.principle { min-height: 260px; padding: 34px; border: solid var(--line); border-width: 0 1px 1px 0; }
.principle span { color: #2c765a; font-family: 'Manrope'; font-size: 11px; font-weight: 800; }
.principle h3 { margin-top: 52px; }
.principle p { max-width: 440px; margin-top: 14px; color: var(--muted); font-size: 14px; }

.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-top: 1px solid var(--line); }
.company-table tr:last-child { border-bottom: 1px solid var(--line); }
.company-table th, .company-table td { padding: 20px 0; text-align: left; vertical-align: top; }
.company-table th { width: 36%; color: var(--muted); font-size: 12px; font-weight: 600; }
.company-table td { font-family: 'Manrope'; font-size: 14px; font-weight: 700; }
.notice { padding: 26px; border-left: 3px solid var(--mint-bright); background: rgba(255,255,255,.55); color: var(--muted); font-size: 13px; }
.notice strong { display: block; margin-bottom: 7px; color: var(--ink); font-family: 'Manrope'; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-methods { display: grid; gap: 14px; margin-top: 35px; }
.contact-method { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-method:last-child { border-bottom: 1px solid var(--line); }
.contact-method span { display: block; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-method a, .contact-method address { display: block; margin-top: 5px; font-family: 'Manrope'; font-size: 14px; font-style: normal; font-weight: 700; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 11px; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 11px; outline: 0; color: var(--ink); background: var(--paper); transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: #3ba878; box-shadow: 0 0 0 3px rgba(59,168,120,.1); }
.form-note { margin-top: 14px; color: var(--muted); font-size: 11px; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 9px; background: #e0f7e9; color: #195e43; font-size: 12px; font-weight: 700; }
.form-status.show { display: block; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; border: 0; color: var(--ink); background: none; text-align: left; font-family: 'Manrope'; font-weight: 700; cursor: pointer; }
.faq-question::after { content: '+'; color: #347a5f; font-size: 22px; font-weight: 400; transition: transform .25s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 52px 22px 0; color: var(--muted); font-size: 14px; }

.cta-band { padding: 84px 0; background: var(--mint); color: var(--ink); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-inner h2 { max-width: 750px; font-size: clamp(2.1rem, 4vw, 4rem); }
.cta-inner .btn { flex: 0 0 auto; }

.site-footer { padding: 80px 0 30px; background: var(--night); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 55px; padding-bottom: 60px; }
.footer-brand p { max-width: 340px; margin-top: 20px; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-col h4 { margin-bottom: 18px; color: rgba(255,255,255,.38); font-family: 'DM Sans'; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.36); font-size: 10px; }
.footer-bottom div { display: flex; gap: 24px; }

.no-js-shell { position: relative; z-index: 200; padding: 14px 20px; background: var(--night); color: var(--white); text-align: center; }
.no-js-shell a { display: inline-block; margin: 4px 9px; color: var(--mint); font-size: 13px; font-weight: 700; }
.no-js-shell strong { margin-right: 10px; font-family: 'Manrope'; }
.faq-answer[hidden] { display: none; }
.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(8,113,69,.12); } 50% { box-shadow: 0 0 0 8px rgba(8,113,69,.02); } }
@keyframes wave { 0%,100% { height: 15%; } 50% { height: 95%; } }
@keyframes softWave { 0%,100% { height: 6px; } 50% { height: 22px; } }

@media (max-width: 1050px) {
  .nav-links { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .voice-stage { min-height: 460px; }
  .feature-split { gap: 42px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 28px; }
}
@media (max-width: 860px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: grid; }
  .nav-links { position: fixed; z-index: 99; inset: 122px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 40px; color: var(--ink); background: var(--paper); transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
  .menu-open .nav-links { transform: translateX(0); }
  .nav-links > a, .nav-dropdown > button { width: 100%; padding: 16px 4px; border-bottom: 1px solid var(--line); text-align: left; }
  .nav-links > a.active::after { display: none; }
  .nav-dropdown > button { justify-content: space-between; }
  .dropdown-panel { position: static; display: none; visibility: visible; width: 100%; padding: 8px 0; border: 0; opacity: 1; transform: none; translate: none; box-shadow: none; background: transparent; }
  .nav-dropdown.open .dropdown-panel { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .nav-cta { margin-top: 14px; text-align: center !important; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .lead { justify-self: start; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-split, .contact-grid { grid-template-columns: 1fr; }
  .visual-panel { min-height: 500px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .announcement { height: 32px; font-size: 9px; }
  .site-header { top: 32px; height: 74px; }
  .nav-links { inset: 106px 0 0; }
  .brand { font-size: 13px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: auto; padding: 176px 0 70px; }
  .page-hero { min-height: auto; padding: 176px 0 72px; }
  h1, .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .voice-stage { min-height: 380px; transform: scale(.86); margin: -20px; }
  .orbit.one { width: 420px; height: 420px; }
  .orbit.two { width: 320px; height: 320px; }
  .floating-note.top { right: 0; }
  .floating-note.bottom { left: 0; }
  .trust-row { padding: 25px 0; align-items: flex-start; flex-direction: column; }
  .trust-items { justify-content: flex-start; gap: 16px 26px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-card { min-height: 330px; }
  .card { padding: 24px; }
  .visual-panel { min-height: 450px; padding: 24px; }
  .step { grid-template-columns: 50px 1fr; }
  .step p { grid-column: 2; }
  .stats-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .principles-grid { grid-template-columns: 1fr; }
  .countdown-wrap { padding: 28px 18px; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .countdown-item { padding: 20px 10px; }
  .timeline-item { grid-template-columns: 32px 1fr; gap: 16px; }
  .timeline-date { grid-column: 2; padding-top: 0; }
  .timeline-content { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .company-table th, .company-table td { display: block; width: 100%; padding: 8px 0; }
  .company-table th { padding-top: 17px; }
  .company-table td { padding-bottom: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
