
/* ─── DESIGN TOKENS ─── */
:root {
  --navy: #0b1623;
  --navy-mid: #0f1e30;
  --navy-soft: #142236;
  --sand: #e8e1d6;
  --sand-soft: #f4f0eb;
  --gold: #c4a96d;
  --green: #4e6b59;
  --white: #ffffff;
  --text: #0e1720;
  --text-soft: #5a6270;
  --line: rgba(14,23,32,0.09);
  --line-w: rgba(255,255,255,0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 24px 72px rgba(0,0,0,0.13);
  --container: 1260px;
  --font-main: Inter, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.56;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(var(--container), calc(100% - 52px)); margin: 0 auto; }
body::before {
  content: ""; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.015; pointer-events: none; z-index: 9999;
}
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: background .4s ease, backdrop-filter .4s ease; }
.site-header.scrolled { background: rgba(11,22,35,0.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--line-w); }
.site-header .container { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand { display:flex; align-items:center; gap:11px; color:var(--white); flex-shrink:0; }
.brand img { height:32px; width:auto; }
.brand-placeholder { height:32px; width:130px; border:1.5px dashed rgba(255,255,255,.4); border-radius:8px; display:grid; place-items:center; font-weight:700; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); }
.header-right { display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.pref-group { display:flex; align-items:center; gap:4px; }
.pref-pill, .login-pill { position:relative; }
.pref-pill-btn, .login-pill-btn { display:inline-flex; align-items:center; gap:6px; padding:0 11px; height:38px; border-radius:999px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.07); color:var(--white); font-size:13px; font-weight:500; white-space:nowrap; transition:background .2s, border-color .2s; }
.login-pill-btn { padding:0 14px; background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.22); font-size:14px; font-weight:600; }
.pref-pill-btn:hover, .login-pill-btn:hover { background:rgba(255,255,255,.13); border-color:rgba(255,255,255,.3); }
.pref-pill-btn .icon { font-size:15px; line-height:1; }
.pref-pill-btn .label { font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.chevron { font-size:10px; opacity:.6; }
.pref-dropdown-menu, .login-dropdown-menu { position:absolute; top:calc(100% + 10px); right:0; background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow), 0 0 0 1px rgba(0,0,0,.06); padding:8px; display:none; z-index:200; animation:dropIn .18s ease; }
.pref-dropdown-menu { min-width:200px; }
.login-dropdown-menu { width:240px; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px);} to { opacity:1; transform:translateY(0);} }
.pref-pill:hover .pref-dropdown-menu, .pref-pill:focus-within .pref-dropdown-menu, .login-pill:hover .login-dropdown-menu, .login-pill:focus-within .login-dropdown-menu { display:block; }
.pref-dropdown-menu a, .login-dropdown-menu a { display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:12px; font-size:14px; color:var(--text); transition:background .15s; }
.pref-dropdown-menu a:hover, .login-dropdown-menu a:hover { background:var(--sand-soft); }
.pref-dropdown-menu a.active { font-weight:600; color:var(--green); }
.dm-label { font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--text-soft); padding:8px 12px 4px; }
.dm-divider { height:1px; background:var(--line); margin:6px 0; }
.hero { position:relative; min-height:100vh; display:flex; align-items:center; background:var(--navy); color:var(--white); overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg video, .hero-bg .hero-bg-img { width:100%; height:100%; object-fit:cover; opacity:.28; }
.hero-bg::after { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 80% 60% at 50% 90%, rgba(11,22,35,.95) 0%, transparent 70%), linear-gradient(180deg, rgba(11,22,35,.5) 0%, rgba(11,22,35,.2) 40%, rgba(11,22,35,.6) 100%); }
.hero-orb { position:absolute; border-radius:50%; pointer-events:none; z-index:1; }
.hero-orb-1 { width:700px; height:700px; top:-200px; right:-180px; background:radial-gradient(circle, rgba(196,169,109,.05) 0%, transparent 70%); }
.hero-orb-2 { width:500px; height:500px; bottom:-120px; left:-80px; background:radial-gradient(circle, rgba(78,107,89,.07) 0%, transparent 70%); }
.hero-content { position:relative; z-index:2; width:100%; padding:130px 0 90px; }
.hero-inner { max-width:980px; margin:0 auto; text-align:center; }
.eyebrow-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; background:rgba(196,169,109,.12); border:1px solid rgba(196,169,109,.28); font-size:12px; letter-spacing:.1em; text-transform:uppercase; font-weight:600; color:var(--gold); margin-bottom:22px; }
.eyebrow-badge .dot { width:6px; height:6px; border-radius:50%; background:var(--gold); animation:pulse 2.4s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:.5; transform:scale(.7);} }
.hero-tagline { font-size:clamp(13px,1.5vw,16px); font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.78); margin-bottom:12px; }
.hero h1 { font-size:clamp(46px,8vw,84px); font-weight:800; line-height:.95; letter-spacing:-.045em; margin-bottom:18px; color:var(--white); }
.hero h1 em { font-style:normal; background:linear-gradient(135deg, var(--gold) 0%, #e8d5a0 50%, var(--gold) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { max-width:640px; margin:0 auto 34px; font-size:clamp(16px,2vw,18px); color:rgba(255,255,255,.72); font-weight:400; line-height:1.6; }
.prompt-shell { max-width:900px; margin:0 auto; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.13); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-radius:var(--radius-xl); padding:14px; box-shadow:0 30px 80px rgba(0,0,0,.25); }
.prompt-box { background:var(--white); border-radius:20px; padding:18px 20px 14px; }
.prompt-row { display:flex; align-items:flex-start; gap:14px; }
.prompt-textarea { flex:1; min-height:80px; border:0; resize:none; outline:none; font-family:var(--font-main); font-size:18px; font-weight:400; color:var(--text); background:transparent; line-height:1.5; }
.prompt-textarea::placeholder { color:rgba(14,23,32,.38); }
.prompt-actions-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; padding-top:4px; }
.prompt-submit { width:46px; height:46px; border-radius:50%; background:var(--navy); color:var(--white); display:grid; place-items:center; font-size:18px; transition:background .2s, transform .15s; }
.prompt-submit:hover { background:var(--green); transform:scale(1.05); }
.prompt-mic { width:34px; height:34px; border-radius:50%; border:1px solid var(--line); display:grid; place-items:center; font-size:15px; color:var(--text-soft); transition:background .2s; }
.prompt-mic:hover { background:var(--sand-soft); }
.prompt-footer { display:flex; align-items:center; justify-content:space-between; gap:14px; padding-top:12px; border-top:1px solid rgba(14,23,32,.07); margin-top:10px; flex-wrap:wrap; }
.suggestions { display:flex; flex-wrap:wrap; gap:8px; }
.suggestion-chip { display:inline-flex; align-items:center; gap:5px; padding:8px 13px; border-radius:999px; background:var(--sand-soft); border:1px solid rgba(14,23,32,.07); font-size:13px; color:var(--text); font-weight:500; transition:background .2s, border-color .2s, transform .15s; }
.suggestion-chip:hover { background:var(--sand); border-color:rgba(14,23,32,.14); transform:translateY(-1px); }
.guided-link-btn { font-size:13px; color:var(--green); font-weight:600; white-space:nowrap; display:flex; align-items:center; gap:5px; transition:opacity .2s; }
.guided-link-btn:hover { opacity:.75; }
.hero-quick-links { margin-top:20px; display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; color:rgba(255,255,255,.55); font-size:13px; }
.hero-quick-links .ql-label { font-weight:500; }
.hero-ql { padding:6px 12px; border-radius:999px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.11); font-size:13px; color:rgba(255,255,255,.78); transition:background .2s; }
.hero-ql:hover { background:rgba(255,255,255,.13); }
.guided-panel { display:none; margin-top:12px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.13); border-radius:var(--radius-lg); padding:22px; text-align:left; animation:dropIn .2s ease; }
.guided-panel.open { display:block; }
.guided-panel-title { font-size:15px; font-weight:700; color:var(--white); margin-bottom:16px; }
.guided-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.guided-field { display:flex; flex-direction:column; gap:7px; }
.guided-field label { font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.65); }
.guided-field input, .guided-field select { height:48px; border-radius:12px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.08); color:var(--white); padding:0 14px; font-family:var(--font-main); font-size:14px; outline:none; transition:border-color .2s; }
.guided-field input:focus, .guided-field select:focus { border-color:rgba(196,169,109,.5); }
.guided-field input::placeholder { color:rgba(255,255,255,.4); }
.guided-field select option { background:var(--navy-mid); color:var(--white); }
.guided-hint { margin-top:12px; font-size:12px; color:rgba(255,255,255,.5); }
.guided-submit { margin-top:16px; display:inline-flex; align-items:center; gap:8px; padding:0 22px; height:50px; border-radius:999px; background:var(--white); color:var(--navy); font-weight:700; font-size:15px; transition:opacity .2s, transform .15s; }
.guided-submit:hover { opacity:.9; transform:translateY(-1px); }
.scroll-hint { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.4); font-size:11px; letter-spacing:.1em; text-transform:uppercase; }
.scroll-hint-line { width:1px; height:42px; background:linear-gradient(to bottom, rgba(255,255,255,.3), transparent); animation:scrollLine 2s ease infinite; }
@keyframes scrollLine { 0% { transform:scaleY(0); transform-origin:top; opacity:0;} 50% { transform:scaleY(1); transform-origin:top; opacity:1;} 100% { transform:scaleY(1); transform-origin:bottom; opacity:0;} }
section { padding:96px 0; }
.section-label { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
.section-label::before { content:""; display:block; width:20px; height:1px; background:var(--green); }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:40px; }
.section-head-text h2 { font-size:clamp(32px,4vw,50px); font-weight:800; line-height:1.03; letter-spacing:-.038em; margin-bottom:10px; }
.section-head-text p { max-width:580px; color:var(--text-soft); font-size:16px; }
.section-cta { display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:600; color:var(--green); white-space:nowrap; transition:gap .2s; }
.section-cta:hover { gap:10px; }
.stats-strip { padding:32px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--sand-soft); }
.stats-inner { display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.stat-item { text-align:center; flex:1; min-width:130px; }
.stat-item strong { display:block; font-size:clamp(28px,4vw,40px); font-weight:800; letter-spacing:-.04em; color:var(--text); margin-bottom:5px; }
.stat-item span { font-size:13px; color:var(--text-soft); }
.stat-divider { width:1px; height:40px; background:var(--line); flex-shrink:0; }
.stats-cta-col { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.btn-dark { display:inline-flex; align-items:center; gap:8px; padding:0 20px; height:46px; border-radius:999px; background:var(--navy); color:var(--white); font-size:14px; font-weight:600; transition:background .2s, transform .15s; }
.btn-dark:hover { background:var(--green); transform:translateY(-1px); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; position:relative; }
.steps-grid::before { content:""; position:absolute; top:46px; left:calc(33.33% - 10px); right:calc(33.33% - 10px); height:1px; background:linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent); z-index:0; }
.step-card { position:relative; z-index:1; padding:32px 28px; border-radius:var(--radius-xl); background:var(--sand-soft); border:1px solid var(--line); transition:transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.step-num { display:inline-flex; width:48px; height:48px; border-radius:50%; background:var(--white); border:1px solid var(--line); align-items:center; justify-content:center; font-weight:800; font-size:16px; color:var(--navy); margin-bottom:22px; box-shadow:0 6px 20px rgba(0,0,0,.06); }
.step-card h3 { font-size:24px; font-weight:700; letter-spacing:-.02em; margin-bottom:10px; }
.step-card p { color:var(--text-soft); font-size:15px; }
.step-card .step-tag { display:inline-flex; margin-top:18px; padding:6px 12px; border-radius:999px; background:rgba(78,107,89,.08); color:var(--green); font-size:12px; font-weight:600; }
.steps-cta-bar { margin-top:32px; padding:22px 28px; border-radius:var(--radius-lg); background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.steps-cta-bar p { font-size:15px; color:rgba(255,255,255,.75); max-width:500px; }
.steps-cta-bar strong { color:var(--white); }
.btn-light { display:inline-flex; align-items:center; gap:8px; padding:0 20px; height:46px; border-radius:999px; background:var(--white); color:var(--navy); font-size:14px; font-weight:700; flex-shrink:0; transition:opacity .2s, transform .15s; }
.btn-light:hover { opacity:.9; transform:translateY(-1px); }
.ecosystem-section { background:var(--navy); color:var(--white); }
.ecosystem-section .section-label { color:var(--gold); }
.ecosystem-section .section-label::before { background:var(--gold); }
.ecosystem-section .section-head-text h2 { color:var(--white); }
.ecosystem-section .section-head-text p { color:rgba(255,255,255,.62); }
.ecosystem-link { color:var(--gold); }
.ecosystem-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:24px; align-items:start; }
.eco-pillars { display:grid; gap:16px; }
.eco-pillar { padding:26px 28px; border-radius:var(--radius-lg); background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); display:grid; grid-template-columns:52px 1fr; gap:16px; align-items:start; transition:background .25s; }
.eco-pillar:hover { background:rgba(255,255,255,.08); }
.eco-pillar-icon { width:52px; height:52px; border-radius:16px; background:rgba(196,169,109,.12); border:1px solid rgba(196,169,109,.22); display:grid; place-items:center; font-size:22px; flex-shrink:0; }
.eco-pillar h3 { font-size:18px; font-weight:700; letter-spacing:-.015em; margin-bottom:6px; color:var(--white); }
.eco-pillar p { font-size:14px; color:rgba(255,255,255,.62); line-height:1.5; }
.eco-pillar .eco-tag { display:inline-flex; margin-top:10px; padding:5px 10px; border-radius:999px; background:rgba(196,169,109,.1); border:1px solid rgba(196,169,109,.2); font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--gold); }
.eco-flow-panel { padding:28px; border-radius:var(--radius-xl); background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); position:sticky; top:100px; }
.eco-flow-panel h4 { font-size:14px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:20px; }
.eco-flow { display:grid; gap:10px; }
.eco-flow-node { padding:16px 18px; border-radius:var(--radius-md); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.09); display:flex; align-items:center; justify-content:space-between; gap:14px; transition:background .2s; }
.eco-flow-node:hover { background:rgba(255,255,255,.09); }
.eco-fn-left { display:flex; align-items:center; gap:12px; }
.eco-fn-icon { width:36px; height:36px; border-radius:10px; background:rgba(196,169,109,.1); display:grid; place-items:center; font-size:16px; flex-shrink:0; }
.eco-fn-title { font-size:14px; font-weight:600; color:var(--white); }
.eco-fn-sub { font-size:12px; color:rgba(255,255,255,.5); }
.eco-fn-num { font-size:22px; font-weight:800; color:rgba(255,255,255,.12); letter-spacing:-.03em; }
.eco-arrow { display:flex; justify-content:center; padding:4px 0; color:rgba(255,255,255,.2); font-size:14px; }
.eco-cta-bar { margin-top:20px; padding:18px; border-radius:var(--radius-md); background:rgba(196,169,109,.08); border:1px solid rgba(196,169,109,.18); }
.eco-cta-bar p { font-size:13px; color:rgba(255,255,255,.65); margin-bottom:12px; }
.btn-gold { display:inline-flex; align-items:center; gap:7px; padding:0 16px; height:42px; border-radius:999px; background:var(--gold); color:var(--navy); font-size:13px; font-weight:700; transition:opacity .2s, transform .15s; }
.btn-gold:hover { opacity:.9; transform:translateY(-1px); }
.location-section { background:var(--sand-soft); }
.location-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:24px; align-items:stretch; }
.location-left { padding:36px; border-radius:var(--radius-xl); background:var(--white); border:1px solid var(--line); }
.location-badge { display:inline-flex; align-items:center; gap:7px; padding:8px 13px; border-radius:999px; background:rgba(78,107,89,.08); border:1px solid rgba(78,107,89,.15); font-size:13px; font-weight:600; color:var(--green); margin-bottom:20px; }
.location-left h3 { font-size:clamp(22px,3vw,30px); font-weight:800; letter-spacing:-.03em; margin-bottom:8px; line-height:1.1; }
.location-left > p { font-size:14px; color:var(--text-soft); margin-bottom:22px; }
.prompt-tiles { display:grid; gap:12px; }
.prompt-tile { padding:18px 20px; border-radius:var(--radius-lg); background:var(--sand-soft); border:1px solid var(--line); cursor:pointer; transition:background .2s, transform .2s, border-color .2s; display:flex; align-items:flex-start; gap:14px; }
.prompt-tile:hover { background:var(--sand); border-color:rgba(14,23,32,.14); transform:translateX(4px); }
.pt-icon { width:40px; height:40px; border-radius:12px; background:var(--white); border:1px solid var(--line); display:grid; place-items:center; font-size:18px; flex-shrink:0; }
.pt-body strong { display:block; font-size:15px; margin-bottom:4px; }
.pt-body span { font-size:13px; color:var(--text-soft); }
.pt-arrow { margin-left:auto; font-size:14px; color:var(--text-soft); padding-top:4px; flex-shrink:0; }
.location-right { border-radius:var(--radius-xl); background:var(--navy); overflow:hidden; position:relative; min-height:480px; }
.location-right-inner { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; }
.lri-card { background:rgba(255,255,255,.92); border-radius:var(--radius-lg); padding:20px 22px; backdrop-filter:blur(10px); }
.lri-card strong { display:block; font-size:15px; margin-bottom:8px; }
.lri-flow { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.lri-chip { padding:6px 11px; border-radius:999px; background:var(--sand-soft); font-size:12px; font-weight:500; border:1px solid var(--line); }
.lri-chip.active { background:var(--navy); color:var(--white); border-color:transparent; }
.lri-arrow { font-size:12px; color:var(--text-soft); }
.location-right-bg { position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; opacity:.22; }
.proof-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:24px; align-items:start; }
.stats-cluster { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.stat-tile { padding:28px 24px; border-radius:var(--radius-xl); background:var(--sand-soft); border:1px solid var(--line); transition:transform .2s; }
.stat-tile:hover { transform:translateY(-2px); }
.stat-tile strong { display:block; font-size:clamp(28px,3vw,38px); font-weight:800; letter-spacing:-.04em; color:var(--text); margin-bottom:6px; }
.stat-tile span { font-size:13px; color:var(--text-soft); }
.reviews-stack { display:grid; gap:16px; }
.review-card { padding:24px 26px; border-radius:var(--radius-xl); background:var(--white); border:1px solid var(--line); transition:box-shadow .2s; }
.review-card:hover { box-shadow:var(--shadow); }
.review-stars { color:var(--gold); font-size:14px; margin-bottom:12px; }
.review-card blockquote { font-size:15px; color:var(--text); line-height:1.6; margin-bottom:16px; }
.reviewer { display:flex; align-items:center; gap:10px; }
.reviewer-avatar { width:36px; height:36px; border-radius:50%; background:var(--sand); display:grid; place-items:center; font-size:13px; font-weight:700; color:var(--text); }
.reviewer-name { font-weight:700; font-size:14px; }
.reviewer-loc { font-size:12px; color:var(--text-soft); }
.video-section { background:var(--navy); padding:80px 0; }
.video-wrap { border-radius:var(--radius-xl); overflow:hidden; position:relative; min-height:540px; background:var(--navy-soft); cursor:pointer; }
.video-bg-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.3; transition:opacity .4s; }
.video-wrap:hover .video-bg-img { opacity:.4; }
.video-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(11,22,35,.9) 0%, rgba(11,22,35,.2) 60%); }
.video-content { position:absolute; inset:0; display:flex; align-items:flex-end; padding:40px; gap:24px; justify-content:space-between; }
.video-text { max-width:600px; color:var(--white); }
.video-text h3 { font-size:clamp(28px,4vw,46px); font-weight:800; letter-spacing:-.04em; line-height:1.03; margin-bottom:10px; }
.video-text p { font-size:15px; color:rgba(255,255,255,.7); }
.play-btn { width:80px; height:80px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; backdrop-filter:blur(10px); color:var(--white); font-size:26px; flex-shrink:0; transition:background .2s, transform .2s; }
.play-btn:hover { background:rgba(255,255,255,.18); transform:scale(1.08); }
.video-badge { margin-bottom:16px; background:rgba(196,169,109,.15); border-color:rgba(196,169,109,.3); }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-card { border-radius:var(--radius-xl); overflow:hidden; background:var(--white); border:1px solid var(--line); transition:transform .25s, box-shadow .25s; display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.blog-thumb { height:220px; background-size:cover; background-position:center; flex-shrink:0; }
.blog-body { padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-tag { display:inline-flex; padding:5px 10px; border-radius:999px; background:var(--sand-soft); font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--text-soft); margin-bottom:12px; }
.blog-body h3 { font-size:19px; font-weight:700; letter-spacing:-.02em; line-height:1.2; margin-bottom:10px; }
.blog-body p { font-size:14px; color:var(--text-soft); flex:1; }
.blog-read { display:inline-flex; align-items:center; gap:5px; margin-top:16px; font-size:13px; font-weight:700; color:var(--green); transition:gap .2s; }
.blog-read:hover { gap:9px; }
.faq-section { background:var(--sand-soft); }
.faq-wrap { display:grid; grid-template-columns:.85fr 1.15fr; gap:32px; align-items:start; }
.faq-intro { padding:32px; border-radius:var(--radius-xl); background:var(--navy); color:var(--white); position:sticky; top:100px; }
.faq-intro h2 { font-size:clamp(26px,3vw,36px); font-weight:800; letter-spacing:-.035em; margin-bottom:12px; color:var(--white); }
.faq-intro p { font-size:14px; color:rgba(255,255,255,.62); margin-bottom:22px; }
.faq-link { display:inline-flex; align-items:center; gap:6px; padding:0 16px; height:42px; border-radius:999px; border:1px solid rgba(255,255,255,.2); color:var(--white); font-size:13px; font-weight:600; transition:background .2s; }
.faq-link:hover { background:rgba(255,255,255,.08); }
.faq-label { color:var(--gold); }
.faq-list { display:grid; gap:12px; }
.faq-item { border-radius:var(--radius-lg); background:var(--white); border:1px solid var(--line); overflow:hidden; transition:box-shadow .2s; }
.faq-item[open] { box-shadow:0 8px 32px rgba(0,0,0,.07); }
.faq-item summary { list-style:none; padding:20px 22px; font-weight:600; font-size:15px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:14px; user-select:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-toggle { width:28px; height:28px; border-radius:50%; background:var(--sand-soft); display:grid; place-items:center; font-size:14px; flex-shrink:0; transition:background .2s, transform .2s; }
.faq-item[open] .faq-toggle { background:var(--navy); color:var(--white); transform:rotate(45deg); }
.faq-item p { padding:0 22px 20px; font-size:14px; color:var(--text-soft); line-height:1.65; }
.footer-cta { padding:100px 0; background:var(--navy); color:var(--white); text-align:center; position:relative; overflow:hidden; }
.footer-cta-orb { position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle, rgba(196,169,109,.08) 0%, transparent 70%); top:50%; left:50%; transform:translate(-50%, -50%); pointer-events:none; }
.footer-cta-inner { position:relative; z-index:1; }
.footer-badge { margin:0 auto 20px; display:inline-flex; }
.footer-cta h2 { font-size:clamp(38px,6vw,68px); font-weight:800; letter-spacing:-.045em; line-height:.97; margin-bottom:18px; }
.footer-cta h2 em { font-style:normal; background:linear-gradient(135deg, var(--gold), #e8d5a0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-cta p { font-size:17px; color:rgba(255,255,255,.62); max-width:600px; margin:0 auto 36px; }
.btn-row { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; }
.btn-cta-primary { display:inline-flex; align-items:center; gap:8px; padding:0 26px; height:56px; border-radius:999px; background:var(--white); color:var(--navy); font-size:15px; font-weight:700; transition:opacity .2s, transform .15s; }
.btn-cta-primary:hover { opacity:.92; transform:translateY(-2px); }
.btn-cta-secondary { display:inline-flex; align-items:center; gap:8px; padding:0 22px; height:56px; border-radius:999px; border:1px solid rgba(255,255,255,.22); color:var(--white); background:rgba(255,255,255,.06); font-size:15px; font-weight:600; transition:background .2s, transform .15s; }
.btn-cta-secondary:hover { background:rgba(255,255,255,.1); transform:translateY(-2px); }
footer { background:var(--navy); color:rgba(255,255,255,.6); border-top:1px solid rgba(255,255,255,.07); padding:28px 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-links { display:flex; gap:20px; flex-wrap:wrap; font-size:13px; }
.footer-links a { transition:color .2s; }
.footer-links a:hover { color:var(--white); }
.footer-copy { font-size:13px; }
.footer-logo { border-color:rgba(255,255,255,.25); color:rgba(255,255,255,.6); }
.fade-in { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in-delay-1 { transition-delay:.1s; }
.fade-in-delay-2 { transition-delay:.2s; }
.fade-in-delay-3 { transition-delay:.3s; }
@media (max-width:1100px) {
  .ecosystem-grid, .location-grid, .proof-grid, .faq-wrap { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .steps-grid::before { display:none; }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
  .location-right { min-height:360px; }
  .eco-flow-panel { position:static; }
}
@media (max-width:760px) {
  .container { width:min(var(--container), calc(100% - 28px)); }
  .site-header .container { flex-wrap:wrap; gap:10px; }
  .header-right { width:100%; }
  .pref-group { flex-wrap:wrap; }
  .hero h1 { font-size:40px; }
  .prompt-textarea { font-size:16px; min-height:70px; }
  .prompt-row { flex-direction:column; }
  .prompt-actions-right { flex-direction:row; }
  .guided-grid { grid-template-columns:repeat(2,1fr); }
  .blog-grid { grid-template-columns:1fr; }
  .stats-cluster { grid-template-columns:1fr 1fr; }
  .stats-inner { justify-content:center; }
  .stat-divider { display:none; }
  section { padding:72px 0; }
  .video-content { flex-direction:column; align-items:flex-start; }
  .eco-pillar { grid-template-columns:1fr; }
}
@media (max-width:500px) {
  .hero h1 { font-size:34px; }
  .guided-grid { grid-template-columns:1fr; }
  .stats-cluster { grid-template-columns:1fr; }
}
