/* ============================================================
   BridgeForward — Brand stylesheet
   Navy #1E3250 · Gold #F0BE64 · Plus Jakarta Sans
   ============================================================ */

:root {
  --navy: #1E3250;
  --navy-700: #16263d;
  --navy-900: #0f1b2d;
  --gold: #F0BE64;
  --gold-soft: #f7d99a;
  --white: #FFFFFF;
  --surface: #F7F8FA;
  --text: #2C3E50;
  --muted: #6B7A8D;
  --border: #E2E6ED;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 6px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(30,50,80,.06), 0 4px 14px rgba(30,50,80,.05);
  --shadow-md: 0 12px 34px rgba(30,50,80,.10), 0 2px 8px rgba(30,50,80,.06);
  --shadow-lg: 0 30px 70px rgba(15,27,45,.18), 0 8px 24px rgba(15,27,45,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 84px); }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy); color: #e8edf5; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px;
}
.eyebrow--plain::before { display: none; }

h1, h2, h3, h4 { color: var(--navy); font-weight: 700; margin: 0; line-height: 1.12; letter-spacing: -.018em; }

.h-display {
  font-size: clamp(2.6rem, 6.4vw, 4.7rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.03em;
  text-wrap: balance;
}
.h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 700; line-height: 1.25; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.6; color: var(--muted); font-weight: 400; text-wrap: pretty; }
.bg-navy .lead { color: #aab8cc; }
.muted { color: var(--muted); }
.accent-gold { color: var(--gold); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn .arw { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover .arw { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 22px rgba(240,190,100,.32); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,190,100,.42); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.bg-navy .btn-ghost, .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.bg-navy .btn-ghost:hover, .hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 15px; }
.btn-link .arw { transition: transform .3s var(--ease); }
.btn-link:hover { color: var(--navy-700); }
.btn-link:hover .arw { transform: translateX(4px); }
.bg-navy .btn-link { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav .logo img { height: 40px; width: auto; transition: opacity .3s var(--ease); }
.nav .logo-navy { display: none; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.btn) {
  font-size: 15px; font-weight: 600; color: #cdd7e6; padding: 9px 15px; border-radius: 6px;
  transition: color .2s var(--ease), background .2s var(--ease); position: relative;
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav-cta { margin-left: 10px; }
/* scrolled state: light bg */
.nav.scrolled { background: rgba(255,255,255,.86); backdrop-filter: saturate(150%) blur(14px); box-shadow: 0 1px 0 rgba(30,50,80,.07), 0 10px 30px rgba(30,50,80,.06); border-bottom-color: var(--border); }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-navy { display: block; }
.nav.scrolled .nav-links a:not(.btn) { color: var(--text); }
.nav.scrolled .nav-links a:not(.btn):hover { color: var(--navy); background: var(--surface); }
.nav-toggle { display: none; }

/* mobile nav */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--navy); padding: 96px var(--gut) 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; font-size: 1.6rem; font-weight: 700; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: #e8edf5; position: relative; overflow: hidden; padding-top: 150px; padding-bottom: clamp(80px, 12vw, 150px); }
.hero-glow { position: absolute; pointer-events: none; }
.hero-glow.g1 { top: -10%; right: -8%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(240,190,100,.18), rgba(240,190,100,0) 62%); }
.hero-glow.g2 { bottom: -25%; left: -12%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(120,160,220,.14), rgba(120,160,220,0) 62%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 78%); }
.hero-inner { position: relative; z-index: 2; max-width: 960px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 26px; }
.hero h1 .em { color: var(--gold); font-style: italic; font-weight: 700; }
.hero-sub { font-size: clamp(1.08rem, 1.55vw, 1.32rem); line-height: 1.6; color: #b8c4d6; max-width: 56ch; margin: 0 0 36px; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 52px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-meta .hm { }
.hero-meta .hm b { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero-meta .hm span { font-size: 13.5px; color: #8d9cb2; }

/* animated bridge motif */
.hero-bridge { position: absolute; left: 0; right: 0; bottom: 0; height: 220px; z-index: 1; pointer-events: none; opacity: .9; }
.hero-bridge svg { width: 100%; height: 100%; }
.bridge-arc { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; }
.bridge-cable { stroke: rgba(240,190,100,.5); stroke-width: 2; }
.bridge-deck { stroke: rgba(255,255,255,.12); stroke-width: 2; }

/* ---------- Trust strip ---------- */
.trust { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 80px); flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 14px; }
.trust-badge .seal { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1.5px solid var(--border); color: var(--navy); flex: none; }
.trust-badge .seal svg { width: 28px; height: 28px; }
.trust-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.trust-label b { display: block; color: var(--navy); font-size: 15px; font-weight: 700; }
.trust-note { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* ---------- Generic grids / cards ---------- */
.grid { display: grid; gap: clamp(20px, 2.6vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }

.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .fx { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; transition: transform .3s var(--ease); }
.feature:hover .fx { transform: translateY(-3px) rotate(-4deg); }
.feature .fx svg { width: 23px; height: 23px; }
.feature h4 { font-size: 1.08rem; font-weight: 700; margin: 2px 0 6px; }
.feature p { margin: 0; font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.bg-navy .feature .fx { background: rgba(240,190,100,.14); }
.bg-navy .feature h4 { color: #fff; }
.bg-navy .feature p { color: #aab8cc; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { position: relative; padding-left: 26px; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; border-radius: 4px; background: var(--gold); }
.stat b { display: block; font-size: clamp(2.8rem, 5.4vw, 4.1rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.bg-navy .stat b { color: #fff; }
.stat span { display: block; margin-top: 12px; font-size: 15px; color: var(--muted); line-height: 1.45; max-width: 22ch; }
.bg-navy .stat span { color: #aab8cc; }

/* ---------- Pricing card ---------- */
.price-card { background: var(--navy); color: #e8edf5; border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 52px); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.price-card::after { content: ""; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(240,190,100,.18), transparent 65%); pointer-events: none; }
.price-card .pc-top { position: relative; z-index: 1; }
.price-tag { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 18px 0 6px; }
.price-tag b { font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.price-tag span { color: #9fb0c6; font-size: 15px; font-weight: 500; }
.price-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: #cdd7e6; line-height: 1.5; }
.price-list li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 1px; }
.price-aside { display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.price-aside .quote-num { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 700; color: var(--navy); line-height: 1.35; letter-spacing: -.02em; text-wrap: balance; }
.price-aside .quote-num em { color: var(--gold); font-style: normal; background: linear-gradient(transparent 62%, rgba(240,190,100,.42) 0); }

/* ---------- Steps (How Decode works) ---------- */
.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease); }
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #d4dbe6; }
.step-num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--gold); writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Decode interactive demo ---------- */
.demo {
  border-radius: var(--radius-xl); background: var(--white);
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border);
}
.demo-chrome { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-chrome .dots { display: flex; gap: 7px; }
.demo-chrome .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.22); display: block; }
.demo-chrome .url { margin-left: 10px; font-size: 13px; color: #9fb0c6; display: flex; align-items: center; gap: 7px; font-weight: 500; }
.demo-chrome .url svg { width: 13px; height: 13px; color: var(--gold); }
.demo-body { display: grid; grid-template-columns: 320px 1fr; min-height: 460px; }
.demo-panel { padding: 26px; border-right: 1px solid var(--border); background: var(--surface); }
.demo-panel .pl { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 13px; }
.demo-panel .pl:not(:first-child) { margin-top: 28px; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg button {
  font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--text);
  padding: 11px 10px; border-radius: 9px; border: 1.5px solid var(--border); background: #fff;
  cursor: pointer; transition: all .22s var(--ease); text-align: left; line-height: 1.2;
}
.seg button:hover { border-color: var(--navy); }
.seg button.active { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 6px 16px rgba(30,50,80,.22); }
.seg button .sub { display: block; font-size: 11px; font-weight: 500; opacity: .65; margin-top: 2px; }
.demo-select { width: 100%; font-family: var(--font); font-size: 14.5px; font-weight: 600; color: var(--navy); padding: 12px 14px; border-radius: 9px; border: 1.5px solid var(--border); background: #fff; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E3250' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.demo-select:focus { outline: none; border-color: var(--navy); }
.demo-out { padding: 26px 28px; display: flex; flex-direction: column; gap: 18px; }
.demo-q { display: flex; gap: 12px; align-items: flex-start; }
.demo-q .av { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--border); display: grid; place-items: center; font-weight: 800; color: var(--navy); font-size: 14px; }
.demo-q .bub { background: var(--surface); border-radius: 4px 14px 14px 14px; padding: 12px 16px; font-size: 14.5px; color: var(--navy); font-weight: 600; }
.demo-a .av { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.demo-a .bub { background: #fff; border: 1px solid var(--border); border-radius: 14px 4px 14px 14px; box-shadow: var(--shadow-sm); color: var(--text); font-weight: 400; font-size: 14.5px; line-height: 1.6; }
.demo-a .bub .cite { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--muted); background: var(--surface); padding: 4px 10px; border-radius: 20px; }
.demo-a .bub .cite svg { width: 12px; height: 12px; color: var(--gold); }
.demo-check { margin-top: 2px; }
.demo-check .ck-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.demo-check .ck-title .pill { background: var(--gold); color: var(--navy); padding: 3px 9px; border-radius: 20px; font-size: 11px; letter-spacing: .02em; }
.demo-check ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.demo-check li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--text); line-height: 1.45; padding: 10px 13px; background: var(--surface); border-radius: 10px; border: 1px solid transparent; transition: border-color .2s; }
.demo-check li:hover { border-color: var(--border); }
.demo-check li .cx { flex: none; width: 19px; height: 19px; border-radius: 50%; background: #fff; border: 1.5px solid var(--gold); display: grid; place-items: center; margin-top: 1px; }
.demo-check li .cx svg { width: 11px; height: 11px; color: var(--gold); }
.demo-check li b { font-weight: 700; color: var(--navy); }
.fade-swap { animation: fadeSwap .45s var(--ease); }
.no-motion .fade-swap { animation: none !important; }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.demo-disc { font-size: 12px; color: var(--muted); line-height: 1.5; padding: 14px 20px; border-top: 1px solid var(--border); background: var(--surface); }

/* ---------- Decode start-page screenshot (static) ---------- */
.shot-frame { margin: 0; border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.shot { background: linear-gradient(180deg, #fbfcfe 0%, var(--surface) 100%); }
.shot-bar { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--border); background: #fff; }
.shot-bar .shot-logo { height: 26px; width: auto; }
.shot-bar .shot-tag { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--surface); border: 1px solid var(--border); padding: 4px 10px; border-radius: 6px; }
.shot-bar .shot-step { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.shot-body { padding: clamp(24px, 3vw, 38px); }
.shot-body .eyebrow { margin-bottom: 14px; }
.shot-h { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.12; letter-spacing: -.025em; margin-bottom: 14px; }
.shot-accent { background: linear-gradient(100deg, #8a6a2a 0%, var(--gold) 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.shot-sub { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 24px; max-width: 46ch; }
.shot-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow-sm); }
.shot-label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.shot-label:not(:first-child) { margin-top: 22px; }
.shot-select { display: flex; align-items: center; justify-content: space-between; font-size: 14.5px; font-weight: 600; color: var(--navy); padding: 12px 15px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--surface); }
.shot-select svg { width: 15px; height: 15px; color: var(--muted); }
.shot-select-wrap { position: relative; }
.shot-select-el { width: 100%; font-family: var(--font); font-size: 14.5px; font-weight: 600; color: var(--navy); padding: 12px 38px 12px 15px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--surface); cursor: pointer; appearance: none; -webkit-appearance: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7A8D' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.shot-select-el:hover { border-color: #cdd5e1; }
.shot-select-el:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(30,50,80,.07); }
.shot-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.shot-tile { font-family: var(--font); text-align: left; cursor: pointer; width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 13px; background: #fff; line-height: 1.25; transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.shot-tile:hover { border-color: var(--navy); }
.shot-tile b { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.shot-tile i { font-style: normal; font-size: 11px; color: var(--muted); }
.shot-tile.active { background: var(--navy); border-color: var(--navy); box-shadow: 0 6px 16px rgba(30,50,80,.22); }
.shot-tile.active b { color: #fff; }
.shot-tile.active i { color: rgba(255,255,255,.72); }
.shot-btn { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 24px; background: var(--gold); color: var(--navy); font-size: 14.5px; font-weight: 700; padding: 14px; border-radius: var(--radius); box-shadow: 0 8px 22px rgba(240,190,100,.32); text-decoration: none; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
a.shot-btn:hover { transform: translateY(-2px); background: var(--gold-soft); box-shadow: 0 14px 30px rgba(240,190,100,.42); }
.shot-btn .arw { transition: transform .3s var(--ease); }
a.shot-btn:hover .arw { transform: translateX(4px); }

/* ---------- Session mode cards ---------- */
.ssn-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 4px 0 6px; }
.ssn-help { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0 0 16px; max-width: 56ch; }
.ssn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ssn-card { position: relative; cursor: pointer; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 18px 18px 20px; background: #fff; transition: border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease); }
.ssn-card:hover { border-color: #cdd5e1; transform: translateY(-2px); }
.ssn-card .ssn-ico { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); color: var(--navy); margin-bottom: 16px; transition: all .22s var(--ease); }
.ssn-card .ssn-ico svg { width: 18px; height: 18px; }
.ssn-card b { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ssn-card i { display: block; font-style: normal; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.ssn-radio { position: absolute; top: 16px; right: 16px; width: 19px; height: 19px; border-radius: 50%; border: 2px solid #cdd5e1; background: #fff; transition: all .22s var(--ease); }
.ssn-card.active { border-color: var(--gold); background: linear-gradient(180deg, #fff8ec 0%, #fffdf8 100%); box-shadow: 0 10px 26px rgba(240,190,100,.18); }
.ssn-card.active .ssn-ico { background: #fbe6c6; border-color: #f3d79a; color: #9a7322; }
.ssn-card.active .ssn-radio { border-color: var(--gold); box-shadow: inset 0 0 0 4px var(--gold); }
.ssn-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.ssn-meta { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--muted); }
.ssn-meta svg { width: 15px; height: 15px; flex: none; }
.ssn-start { display: inline-flex; align-items: center; gap: 9px; background: var(--navy); color: #fff; font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: var(--radius); text-decoration: none; box-shadow: 0 8px 22px rgba(30,50,80,.26); transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
a.ssn-start:hover { transform: translateY(-2px); background: #16263e; box-shadow: 0 14px 30px rgba(30,50,80,.34); }
.ssn-start .arw { transition: transform .3s var(--ease); }
a.ssn-start:hover .arw { transform: translateX(4px); }
@media (max-width: 560px) { .ssn-grid { grid-template-columns: 1fr; } }

/* ---------- Topic chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 14px; font-weight: 600; color: var(--navy); background: #fff; border: 1.5px solid var(--border); padding: 9px 16px; border-radius: 30px; transition: all .25s var(--ease); cursor: default; }
.chip:hover { border-color: var(--gold); background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(240,190,100,.3); }
.bg-navy .chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); color: #dbe4f0; }
.bg-navy .chip:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---------- Supporters ---------- */
.supporters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.supporter { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.supporter:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.supporter .ab { font-size: 1.55rem; font-weight: 800; color: var(--navy); letter-spacing: .02em; }
.supporter .ab .dot { color: var(--gold); }
.supporter p { margin: 8px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---------- Testimonial ---------- */
.quote { max-width: 60ch; }
.quote .mark { font-size: 5rem; line-height: .6; color: var(--gold); font-weight: 800; display: block; height: 38px; }
.quote blockquote { margin: 0; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.32; color: #fff; letter-spacing: -.02em; text-wrap: balance; }
.quote cite { display: block; margin-top: 26px; font-style: normal; font-size: 15px; color: var(--gold); font-weight: 600; }
.quote cite span { color: #8d9cb2; font-weight: 500; }

/* ---------- Photo / image slots ---------- */
.photo-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(155deg, #eaeef4 0%, #dfe5ee 55%, #d6dde8 100%); }
.photo-frame::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(ellipse 60% 40% at 70% 18%, rgba(240,190,100,.22), transparent 70%); pointer-events: none; }
.photo-frame::after { content: ""; position: absolute; left: 8%; right: 8%; top: 32%; height: 120px; z-index: 0; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 120'%3E%3Cpath d='M10 96 C140 28 260 28 390 96' fill='none' stroke='%231E3250' stroke-width='3' stroke-linecap='round' opacity='.15'/%3E%3Cline x1='120' y1='40' x2='120' y2='96' stroke='%231E3250' stroke-width='3' opacity='.15'/%3E%3Cline x1='280' y1='40' x2='280' y2='96' stroke='%231E3250' stroke-width='3' opacity='.15'/%3E%3C/svg%3E"); pointer-events: none; }
image-slot { display: block; width: 100%; position: relative; z-index: 1; }
.founder-photo { display: block; width: 100%; height: 520px; object-fit: cover; position: relative; z-index: 1; }
.photo-badge { position: absolute; left: 22px; bottom: 22px; z-index: 3; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); }
.photo-badge .pin { width: 36px; height: 36px; border-radius: 10px; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: none; }
.photo-badge .pin svg { width: 18px; height: 18px; }
.photo-badge b { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.photo-badge span { font-size: 12.5px; color: var(--muted); }

/* ---------- Contact form ---------- */
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--text);
  padding: 13px 15px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--surface);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(30,50,80,.07); }
.field textarea { resize: vertical; min-height: 96px; }
.field.error input, .field.error select, .field.error textarea { border-color: #d9534f; background: #fdf3f3; }
.field .err-msg { display: none; font-size: 12.5px; color: #d9534f; margin-top: 5px; font-weight: 600; }
.field.error .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; animation: fadeSwap .5s var(--ease); }
.form-ok .ok-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; margin: 0 auto 18px; }
.form-ok .ok-ic svg { width: 32px; height: 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aab8cc; padding-block: clamp(56px, 7vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .logo img { height: 46px; margin-bottom: 20px; }
.footer p { font-size: 14.5px; line-height: 1.65; color: #8d9cb2; max-width: 38ch; margin: 0 0 18px; }
.footer h5 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #6f8099; margin: 0 0 16px; font-weight: 700; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: 14.5px; color: #b8c4d6; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(40px, 5vw, 60px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: flex-start; }
.footer-bottom small { font-size: 12.5px; color: #6f8099; line-height: 1.6; max-width: 70ch; }
.disclaimer { font-size: 12px; color: #6B7A8D; line-height: 1.55; }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
/* Default: fully visible (works with no JS or frozen compositor). */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
/* Only when JS confirms a live animation pipeline do we hide + animate. */
.has-motion .reveal { opacity: 0; transform: translateY(26px); }
.has-motion .reveal.in { opacity: 1; transform: none; }
.no-motion .reveal, .no-motion .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .fade-swap { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 40px; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-panel { border-right: none; border-bottom: 1px solid var(--border); }
  .price-grid { grid-template-columns: 1fr !important; }
  .supporters { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .seg { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Leela chat widget
   ============================================================ */
.leela { position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 200; font-family: var(--font); }
.leela-fab { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; border: none; cursor: pointer; padding: 13px 20px 13px 16px; border-radius: 999px; font-family: var(--font); font-size: 15px; font-weight: 700; box-shadow: 0 12px 30px rgba(15,27,45,.34); transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.leela-fab:hover { transform: translateY(-3px); background: var(--navy-700); box-shadow: 0 18px 40px rgba(15,27,45,.42); }
.leela-fab-ico { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--navy); }
.leela-fab-ico svg { width: 17px; height: 17px; }
.leela-fab-label { white-space: nowrap; }
.leela.open .leela-fab { transform: scale(.6); opacity: 0; pointer-events: none; }

.leela-panel { position: absolute; right: 0; bottom: 0; width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 64px)); background: #fff; border-radius: 22px; box-shadow: 0 30px 70px rgba(15,27,45,.34); border: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; transform-origin: bottom right; opacity: 0; transform: translateY(14px) scale(.96); transition: opacity .28s var(--ease), transform .28s var(--ease); }
.leela.open .leela-panel { opacity: 1; transform: translateY(0) scale(1); }
.leela-panel[hidden] { display: none; }

.leela-head { display: flex; align-items: center; gap: 12px; padding: 16px 16px 16px 18px; background: var(--navy); color: #fff; }
.leela-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 19px; flex: none; }
.leela-id { display: flex; flex-direction: column; line-height: 1.3; margin-right: auto; }
.leela-id b { font-size: 16px; font-weight: 700; }
.leela-id span { font-size: 11.5px; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 6px; }
.leela-dot { width: 7px; height: 7px; border-radius: 50%; background: #5fd08a; box-shadow: 0 0 0 3px rgba(95,208,138,.25); }
.leela-close { background: rgba(255,255,255,.12); border: none; color: #fff; width: 32px; height: 32px; border-radius: 9px; cursor: pointer; display: grid; place-items: center; transition: background .2s var(--ease); }
.leela-close:hover { background: rgba(255,255,255,.24); }
.leela-close svg { width: 16px; height: 16px; }

.leela-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--surface); }
.leela-msg { max-width: 88%; }
.leela-msg p { margin: 0; font-size: 14px; line-height: 1.55; padding: 11px 14px; border-radius: 14px; }
.leela-msg.bot { align-self: flex-start; }
.leela-msg.bot p { background: #fff; color: var(--navy); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.leela-msg.user { align-self: flex-end; }
.leela-msg.user p { background: var(--navy); color: #fff; border-bottom-right-radius: 5px; }
.leela-msg.bot p b { color: var(--navy); }
.leela-chips { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 2px; }
.leela-chips button { font-family: var(--font); text-align: left; font-size: 13px; font-weight: 600; color: var(--navy); background: #fff; border: 1.5px solid var(--border); padding: 9px 13px; border-radius: 11px; cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease); }
.leela-chips button:hover { border-color: var(--gold); background: #fff8ec; }
.leela-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 12px 15px; background: #fff; border: 1px solid var(--border); border-radius: 14px; border-bottom-left-radius: 5px; }
.leela-typing i { width: 7px; height: 7px; border-radius: 50%; background: #b8c2d2; animation: leelaBounce 1s infinite; }
.leela-typing i:nth-child(2) { animation-delay: .15s; }
.leela-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes leelaBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }

.leela-input { display: flex; align-items: center; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.leela-input input { flex: 1; font-family: var(--font); font-size: 14px; color: var(--navy); border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px; outline: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.leela-input input:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(30,50,80,.07); }
.leela-input button { flex: none; width: 44px; height: 44px; border-radius: 12px; border: none; background: var(--gold); color: var(--navy); cursor: pointer; display: grid; place-items: center; transition: transform .2s var(--ease), background .2s var(--ease); }
.leela-input button:hover { background: var(--gold-soft); transform: translateY(-1px); }
.leela-input button svg { width: 18px; height: 18px; }
.leela-disc { margin: 0; padding: 0 14px 12px; font-size: 11px; color: var(--muted); background: #fff; line-height: 1.4; }

@media (prefers-reduced-motion: reduce) {
  .leela-fab, .leela-panel { transition: none; }
}
