/* ===== Design tokens ===== */
:root {
  --ink:        #0D1117;
  --ink-soft:   #161B22;
  --paper:      #ffffff;
  --bg:         #F5F8FD;
  --bg-alt:     #E9F0FB;
  --text:       #18212E;
  --text-soft:  #51607A;
  --muted:      #8A95AB;
  --line:       #E2E8F0;
  --line-dark:  #232B36;

  --brand:      #1D4ED8;
  --brand-2:    #60A5FA;
  --brand-ink:  #1E40AF;
  --accent:     #60A5FA;

  --risk-high:  #e0354a;
  --risk-med:   #e8920a;
  --risk-low:   #16a06a;

  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 2px rgba(11,15,31,.06), 0 2px 8px rgba(11,15,31,.05);
  --shadow:     0 8px 30px rgba(11,15,31,.08);
  --shadow-lg:  0 24px 60px rgba(11,15,31,.16);

  --font-body:  'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head:  'Sora', var(--font-body);

  --container:  1140px;
}

/* ===== Self-hosted font (no third-party requests) ===== */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.13; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 800px; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 300; }
.skip-link:focus { left: 16px; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s, border-color .18s; white-space: nowrap; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: #fff; box-shadow: 0 6px 18px rgba(29,78,216,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,78,216,.40); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-2); color: var(--brand); }
.play { font-size: 11px; }

/* ===== Scroll progress ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--brand-2), var(--accent)); z-index: 200; transition: width .1s linear; }

/* ===== Floating Header ===== */
.fh-wrap {
  position: sticky; top: 20px; z-index: 100;
  height: 0; overflow: visible;
  padding-inline: 16px;
  pointer-events: none;
}
.fh {
  max-width: 768px; margin-inline: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(245,248,253,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(11,15,31,.10), 0 1px 2px rgba(11,15,31,.06);
  pointer-events: auto;
  transition: box-shadow .25s, border-color .25s;
}
.fh:hover { box-shadow: 0 8px 32px rgba(11,15,31,.14); }

.fh-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 6px 8px;
}

/* Brand */
.fh-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: 8px;
  transition: background .15s;
  text-decoration: none;
}
.fh-brand:hover { background: var(--bg-alt); }
.fh-brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  letter-spacing: -0.04em; color: var(--ink);
}

/* Desktop links */
.fh-links {
  display: flex; align-items: center; gap: 2px;
}
.fh-link {
  font-size: 14px; font-weight: 500; color: var(--text-soft);
  padding: 7px 12px; border-radius: 8px;
  transition: background .15s, color .15s;
  text-decoration: none; white-space: nowrap;
}
.fh-link:hover { background: var(--bg-alt); color: var(--text); }

/* Actions */
.fh-actions { display: flex; align-items: center; gap: 6px; }
.fh-btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--text);
  background: none; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 8px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.fh-btn-ghost:hover { background: var(--bg-alt); border-color: var(--brand-2); }
.fh-btn-outline {
  background: none; border: 1px solid var(--line);
  color: var(--text); font-weight: 600; font-size: 14px;
}
.fh-btn-outline:hover { border-color: var(--brand-2); color: var(--brand); }
.fh-btn-block { width: 100%; justify-content: center; }

/* Mobile menu button - hidden on desktop */
.fh-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--line); background: none; cursor: pointer;
  color: var(--text); transition: background .15s;
}
.fh-menu-btn:hover { background: var(--bg-alt); }

/* Mobile sheet overlay */
.fh-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.35); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.fh-overlay.open { display: block; opacity: 1; }

/* Mobile sheet drawer */
.fh-sheet {
  position: fixed; inset-y: 0; left: 0; z-index: 201;
  width: min(300px, 80vw);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-right: 1px solid var(--line);
  box-shadow: 4px 0 32px rgba(11,15,31,.14);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.fh-sheet.open { transform: translateX(0); }
.fh-sheet-body {
  flex: 1; overflow-y: auto;
  padding: 48px 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.fh-sheet-link {
  display: block; font-size: 15px; font-weight: 500; color: var(--text-soft);
  padding: 12px 14px; border-radius: 10px; text-decoration: none;
  transition: background .15s, color .15s;
}
.fh-sheet-link:hover { background: var(--bg-alt); color: var(--text); }
.fh-sheet-footer {
  padding: 16px; border-top: 1px solid var(--line);
  background: var(--bg-alt);
  display: flex; flex-direction: column; gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .fh-links { display: none; }
  .fh-btn-ghost { display: none; }
  .fh-menu-btn { display: flex; }
}

/* ===== Hero ===== */
.hero { position: relative; padding-bottom: 40px; overflow: hidden; }
.hero-bg { position: absolute; inset: -10% -10% auto -10%; height: 780px; z-index: 0; background: radial-gradient(55% 60% at 78% 0%, rgba(96,165,250,.22), transparent 60%), radial-gradient(45% 50% at 8% 8%, rgba(96,165,250,.14), transparent 55%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(29,78,216,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(29,78,216,.05) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(80% 70% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(80% 70% at 50% 0%, #000, transparent 75%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; padding-block: 56px 50px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--brand-ink); background: rgba(29,78,216,.08); padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--risk-low); box-shadow: 0 0 0 0 rgba(22,160,106,.5); animation: pulse-green 1.8s infinite; }
@keyframes pulse-green { 0%{box-shadow:0 0 0 0 rgba(22,160,106,.5);} 70%{box-shadow:0 0 0 7px rgba(22,160,106,0);} 100%{box-shadow:0 0 0 0 rgba(22,160,106,0);} }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 .grad-text { font-weight: 400; }
.grad-text { background: linear-gradient(120deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.18rem; color: var(--text-soft); max-width: 44ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-checks li { font-size: 14px; color: var(--text-soft); font-weight: 500; position: relative; padding-left: 24px; }
.hero-checks li::before { content: '✓'; position: absolute; left: 0; color: var(--risk-low); font-weight: 700; }

/* App window mockup */
.hero-visual { position: relative; }
.app-window { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(.5deg); transition: transform .4s ease; }
.hero-visual:hover .app-window { transform: rotate(0) translateY(-4px); }
.aw-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #f1f2f7; border-bottom: 1px solid var(--line); }
.aw-dot { width: 11px; height: 11px; border-radius: 50%; background: #d4d8e4; }
.aw-dot:nth-child(1){background:#ff5f57;} .aw-dot:nth-child(2){background:#febc2e;} .aw-dot:nth-child(3){background:#28c840;}
.aw-url { margin-left: 12px; font-size: 12px; color: var(--muted); background: #fff; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--line); }
.aw-body { padding: 20px; }
.aw-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.aw-file { display: block; font-weight: 600; font-size: 14px; }
.aw-meta { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.aw-score { text-align: center; }
.score-ring { position: relative; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); background: conic-gradient(var(--risk-med) calc(var(--p)*1%), #eceef5 0); }
.score-ring::before { content: ''; position: absolute; inset: 5px; background: #fff; border-radius: 50%; z-index: 0; }
.score-ring b { position: relative; z-index: 1; }
.score-cap { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; }
.aw-row { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: start; padding: 11px; border-radius: 11px; margin-bottom: 7px; }
.aw-row strong { font-size: 13.5px; }
.aw-row p { font-size: 12.5px; color: var(--text-soft); margin-top: 2px; line-height: 1.4; }
.aw-bullet { width: 9px; height: 9px; border-radius: 50%; margin-top: 5px; }
.risk-high { background: rgba(224,53,74,.06); } .risk-high .aw-bullet { background: var(--risk-high); }
.risk-med  { background: rgba(232,146,10,.07); } .risk-med .aw-bullet  { background: var(--risk-med); }
.risk-low  { background: rgba(22,160,106,.06); } .risk-low .aw-bullet  { background: var(--risk-low); }
.aw-tag, .tag-high, .tag-med, .tag-low { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap; height: fit-content; }
.tag-high { background: var(--risk-high); color: #fff; }
.tag-med  { background: var(--risk-med); color: #fff; }
.tag-low  { background: var(--risk-low); color: #fff; }

.float-card { position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 12px; padding: 10px 14px; font-size: 13.5px; font-weight: 600; animation: floaty 4s ease-in-out infinite; }
.float-1 { top: 16%; left: -34px; }
.float-2 { bottom: 12%; right: -26px; animation-delay: 1.4s; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }

/* Trust bar */
/* trust-bar styles moved to Ironclad-style section below */

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--ink); color: #e8ecf6; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.kicker-light { color: var(--brand-2); }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.65rem); margin-bottom: 16px; }
.lede { font-size: 1.12rem; color: var(--text-soft); }
.section-dark .lede { color: #aeb6cf; }

/* Problem */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prob { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; transition: transform .2s, box-shadow .2s; }
.prob:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prob-emoji { font-size: 38px; margin-bottom: 14px; }
.prob h3 { font-size: 1.2rem; margin-bottom: 10px; }
.prob p { font-size: 15px; color: var(--text-soft); }

/* Steps */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step { flex: 1; min-width: 230px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; position: relative; box-shadow: var(--shadow-sm); }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; font-size: 14px; box-shadow: 0 4px 12px rgba(29,78,216,.35); }
.step-icon { font-size: 40px; margin: 10px 0 14px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-soft); }
.step-arrow { display: grid; place-items: center; font-size: 26px; color: var(--brand-2); font-weight: 700; padding: 0 4px; }

/* Demo */
.demo-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; max-width: 920px; margin-inline: auto; }
.demo-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.demo-label { font-size: 14px; font-weight: 600; color: var(--text-soft); }
.demo-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-tab { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--text-soft); background: var(--bg); border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; cursor: pointer; transition: all .18s; }
.demo-tab:hover { border-color: var(--brand-2); color: var(--brand); }
.demo-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.demo-run { margin-left: auto; }
.demo-screen { min-height: 280px; background: var(--bg); border-radius: var(--radius); padding: 22px; }
.demo-idle { height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--text-soft); text-align: center; }
.demo-doc { font-size: 50px; opacity: .7; }
.demo-disclaimer { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* Demo: scanning */
.demo-scan { height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.scan-doc { font-size: 50px; animation: pulse-scale 1.2s ease-in-out infinite; }
@keyframes pulse-scale { 0%,100%{transform:scale(1);opacity:.8;} 50%{transform:scale(1.08);opacity:1;} }
.scan-text { font-weight: 600; color: var(--text); }
.scan-bar { width: 240px; max-width: 70%; height: 8px; background: #e3e6f0; border-radius: 999px; overflow: hidden; }
.scan-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--brand-2), var(--accent)); border-radius: 999px; transition: width .1s linear; }
.scan-step { font-size: 13px; color: var(--muted); }

/* Demo: result */
.demo-result { animation: fadeUp .5s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px);} to{opacity:1;transform:none;} }
.dr-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.dr-title { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.dr-title span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); }
.dr-score { display: flex; align-items: center; gap: 10px; }
.dr-score b { font-family: var(--font-head); font-size: 1.4rem; }
.dr-score-cap { font-size: 12px; color: var(--muted); }
.dr-pill { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; color: #fff; }
.dr-finding { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: start; padding: 14px; border-radius: 12px; margin-top: 10px; opacity: 0; transform: translateY(8px); animation: findIn .45s ease forwards; }
@keyframes findIn { to { opacity: 1; transform: none; } }
.dr-finding .aw-bullet { margin-top: 6px; }
.dr-finding strong { font-size: 14.5px; }
.dr-finding p { font-size: 13.5px; color: var(--text-soft); margin-top: 3px; line-height: 1.45; }
.dr-foot { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 13.5px; color: var(--text-soft); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dr-cta { margin-left: auto; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .22s, box-shadow .22s, border-color .22s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(29,78,216,.25); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 23px; background: linear-gradient(135deg, rgba(96,165,250,.14), rgba(96,165,250,.14)); margin-bottom: 16px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--text-soft); }

/* Use cases chips */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin-inline: auto; }
.chip { font-size: 15px; font-weight: 500; color: var(--text); background: var(--paper); border: 1px solid var(--line); padding: 11px 20px; border-radius: 999px; box-shadow: var(--shadow-sm); transition: transform .18s, border-color .18s, color .18s; }
.chip:hover { transform: translateY(-3px); border-color: var(--brand-2); color: var(--brand); }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--ink-soft); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 28px; transition: transform .22s, border-color .22s; }
.why-card:hover { transform: translateY(-5px); border-color: var(--brand-2); }
.why-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; background: linear-gradient(120deg, var(--brand-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; letter-spacing: -.02em; }
.why-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: #aeb6cf; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.quote blockquote { font-size: 15.5px; line-height: 1.55; color: var(--text); flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-soft); }
.q-avatar { width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--brand-2), var(--brand)); font-size: 14px; }
img.q-avatar { object-fit: cover; display: block; }
.quote figcaption strong { color: var(--text); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan-featured { border-color: var(--brand); box-shadow: 0 16px 40px rgba(29,78,216,.18); transform: translateY(-8px); }
.plan-featured:hover { transform: translateY(-12px); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; }
.plan-name { font-size: 1.2rem; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-price .amount { font-family: var(--font-head); font-weight: 700; font-size: 2rem; letter-spacing: -.02em; }
.plan-price .per { color: var(--muted); font-size: 14px; }
.plan-desc { font-size: 13.5px; color: var(--text-soft); margin-bottom: 20px; }
.plan-feats { display: grid; gap: 10px; margin-bottom: 24px; flex: 1; }
.plan-feats li { position: relative; padding-left: 26px; font-size: 14.5px; }
.plan-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--risk-low); font-weight: 700; }
.price-note { text-align: center; margin-top: 24px; font-size: 13.5px; color: var(--muted); }

/* FAQ */
.faq-list { display: grid; gap: 8px; }
.faq-item { background: var(--paper); border: 1px solid transparent; border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--line); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 20px; font-family: var(--font-head); font-weight: 500; font-size: .925rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { text-decoration: underline; }
.faq-item summary:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(29,78,216,.25); border-radius: var(--radius); }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--text-soft); transition: transform .2s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--brand); }
.faq-body { padding: 0 20px 18px; }
.faq-body p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }

/* CTA */
.cta-section { padding: 84px 0; background: var(--bg); }
.cta-box { background: linear-gradient(135deg, var(--ink), #1c2547); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 90% at 50% 0%, rgba(96,165,250,.4), transparent 60%); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.85rem, 3.8vw, 2.7rem); margin-bottom: 14px; color: #fff; }
.cta-box > p { color: #c3cae0; font-size: 1.1rem; max-width: 54ch; margin: 0 auto 28px; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 540px; margin: 0 auto; }
.cta-form input { flex: 1; min-width: 240px; padding: 15px 20px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.08); color: #fff; font-size: 15px; font-family: var(--font-body); }
.cta-form input::placeholder { color: #9aa3c0; }
.cta-form input:focus { outline: none; border-color: var(--brand-2); background: rgba(255,255,255,.12); }
.cta-note { margin-top: 18px; color: #8ee6c0; font-weight: 600; }
.cta-fineprint { margin-top: 42px; font-size: 13px; color: #8a92ab; }

/* ── efferd/footer-section ───────────────────────────────────── */
/* Full-width floor - same color as page bg so the card rests on it */
.ef-footer-wrap {
  background: var(--bg);
  width: 100%;
}

.ef-footer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  border-radius: 40px 40px 0 0;
  background: none;
  padding: 56px 32px 36px;
  overflow: hidden;
  color: #aeb6cf;
  outline: 1px solid rgba(255,255,255,0.07);
  outline-offset: 0;
}

/* Solid background */
.ef-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0F0F11;
  pointer-events: none;
}

.ef-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  width: 100%;
}

/* Brand column */
.ef-brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ef-brand-col .brand { display: inline-flex; align-items: center; gap: 11px; }
.ef-brand-col .brand-name { color: #fff; }
.ef-copy {
  font-size: 13.5px;
  color: #6b7280;
  margin-top: 8px;
}

/* Link columns grid */
.ef-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ef-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}

.ef-col ul { display: flex; flex-direction: column; gap: 10px; }
.ef-col a {
  font-size: 14px;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s, gap .25s;
}
.ef-col a:hover { color: #fff; gap: 10px; }
.ef-icon { width: 15px; height: 15px; flex: none; }

/* Disclaimer */
.ef-disclaimer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: #4b5563;
  text-align: center;
}

/* Scroll-in animation (efferd AnimatedContainer) */
.ef-anim {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-8px);
  transition: opacity .8s ease, filter .8s ease, transform .8s ease;
}
.ef-anim.ef-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 900px) {
  .ef-inner { grid-template-columns: 1fr; }
  .ef-cols  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .ef-cols  { grid-template-columns: 1fr 1fr; }
  .ef-footer { padding: 40px 20px 28px; }
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.brand-footer .brand-name { color: #fff; }
.footer-tag { font-size: 14px; max-width: 34ch; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a { display: block; font-size: 14.5px; color: #aeb6cf; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--muted); }
.disclaimer { max-width: 62ch; }

/* Legal pages */
.legal { padding: 60px 0 80px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 24px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--brand); }
.legal .back { display: inline-block; margin-bottom: 24px; font-weight: 600; color: var(--brand); }
.legal .note { background: rgba(232,146,10,.08); border: 1px solid rgba(232,146,10,.25); border-radius: 12px; padding: 16px 18px; font-size: 14px; color: var(--text); }

/* Resource article pages — shared components */
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; color: var(--text-soft); font-size: 14px; }
.article-badge { background: rgba(96,165,250,.12); color: var(--brand); border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.article-cta { background: linear-gradient(135deg, rgba(96,165,250,.1), rgba(29,78,216,.06)); border: 1px solid rgba(96,165,250,.25); border-radius: 16px; padding: 32px; margin-top: 48px; text-align: center; }
.article-cta h3 { margin-bottom: 8px; font-size: 1.2rem; }
.article-cta p { margin-bottom: 20px; }
.article-cta .btn-primary { color: #fff; }

/* Reveal */
.reveal {
  opacity: 0;
  filter: blur(var(--reveal-blur, 4px));
  transform: translate3d(0, var(--reveal-y, 22px), 0) scale(var(--reveal-scale, .985));
  transform-origin: center bottom;
  transition:
    opacity 1.05s cubic-bezier(.16, 1, .3, 1),
    filter 1.05s cubic-bezier(.16, 1, .3, 1),
    transform 1.05s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}
.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 36px; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .float-1 { left: 0; } .float-2 { right: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; } .plan-featured:hover { transform: translateY(-5px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero h1 { font-size: 2.2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .demo-run { margin-left: 0; width: 100%; }
  .demo-controls { flex-direction: column; align-items: stretch; }
  .demo-tabs { justify-content: stretch; }
}

/* =====================================================================
   IRONCLAD-STYLE LAYOUT  (Klaro brand)
   ===================================================================== */

.container { max-width: 1200px; }
.section { padding: 104px 0; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }

/* Buttons - flatter / editorial */
.btn-primary { background: var(--brand); box-shadow: 0 4px 14px rgba(29,78,216,.26); }
.btn-primary:hover { background: var(--brand-ink); box-shadow: 0 8px 22px rgba(29,78,216,.32); }
.btn-line { background: transparent; color: var(--ink); border-color: rgba(13,17,23,.22); }
.btn-line:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* Nav dropdowns */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--text-soft); background: none; border: 0; cursor: pointer; padding: 4px 0; display: inline-flex; align-items: center; gap: 6px; }
.nav-link:hover { color: var(--ink); }
.caret { font-size: 10px; transition: transform .2s; }
.nav-item:hover .caret, .nav-item:focus-within .caret { transform: rotate(180deg); }
.nav-link-plain { font-size: 15px; font-weight: 500; color: var(--text-soft); }
.nav-link-plain:hover { color: var(--ink); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px); min-width: 290px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 60; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 6px); }
.dropdown a { display: block; padding: 11px 13px; border-radius: 11px; }
.dropdown a::after { content: none !important; }
.dropdown a strong { display: block; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.dropdown a span { font-size: 13px; color: var(--text-soft); }
.dropdown a:hover { background: var(--bg); }

/* ── Ethereal shadow background ─────────────────────────────── */
.ethereal-wrap {
  position: absolute;
  inset: -55px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ethereal-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ethereal-shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(29, 78, 216, 0.55);
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  filter: url(#ethereal-filter) blur(6px);
}

/* Hero - centered editorial (Ironclad-style) */
.hero { position: relative; padding-top: 72px; padding-bottom: 0; background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); overflow: hidden; }
.hero-inner { position: relative; z-index: 1; display: block; text-align: center; padding-bottom: 48px; }
.hero-screen-wrap { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.03; max-width: 16ch; margin-inline: auto; margin-bottom: 22px; }
.hero h1 .grad-text { font-weight: 600; }
.hero-sub { font-size: 1.2rem; max-width: 52ch; margin-inline: auto; }
.hero-actions { justify-content: center; }
.hero-checks { justify-content: center; }

/* Wide app screenshot below the hero copy */
.hero-screen-wrap { width: 100%; padding: 0 24px; overflow: hidden; }
.hero-screen { transform: none; border-radius: 20px 20px 0 0; border-bottom: none; box-shadow: 0 -2px 0 var(--line), 12px 0 0 var(--line), -12px 0 0 var(--line), 0 40px 80px rgba(13,17,23,.14); max-width: 1100px; margin-inline: auto; }
.hero-shot-body {
  padding: 0;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
}
.hero-product-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.aw-body-wide { display: grid; grid-template-columns: 220px 1fr; min-height: 340px; }
.aw-sidebar { border-right: 1px solid var(--line); padding: 16px 12px; background: var(--bg); display: flex; flex-direction: column; gap: 4px; }
.aw-sidebar-item { padding: 10px 12px; border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--text-soft); cursor: default; }
.aw-sidebar-item.active { background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--shadow-sm); }
.aw-main { padding: 20px 24px; }
@media (max-width: 820px) {
  .hero-shot-body { aspect-ratio: 4 / 3; }
  .hero-product-shot { object-position: 32% top; }
  .aw-body-wide { grid-template-columns: 1fr; }
  .aw-sidebar { display: none; }
}

/* Trust bar */
.trustbar-sec { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
}
.trust-item { font-size: 20px; font-weight: 600; color: #8a95ab; letter-spacing: -0.01em; padding: 0 30px; }
.trust-sep { color: #d1d8e6; font-size: 22px; line-height: 1; }
@media (max-width: 700px) {
  .trust-item { font-size: 16px; padding: 0 16px; }
}

/* Statement */
.statement-sec { padding: 40px 0 0; }
.hw-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 60px;
}
.statement { font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 400; line-height: 1.32; letter-spacing: -.02em; max-width: 820px; color: var(--muted); }
.statement span { color: var(--ink); }
.statement-center { margin: 0 auto; text-align: center; }

/* Bento Features */
.bento-sec { padding: 40px 0 72px; }
.bento-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.bento-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -.03em; margin: 10px 0 14px; }
.bento-head p { font-size: 1.08rem; color: var(--text-soft); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(180px, auto); gap: 16px; }
.bc { background: var(--paper, #fff); border: 1px solid var(--line); border-radius: 20px; padding: 28px; overflow: hidden; position: relative; }
.bc-tall { grid-row: span 3; }
.bc-wide { grid-column: span 2; }
.bc-dots::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,0,0,.07) 1px, transparent 1px); background-size: 16px 16px; pointer-events: none; border-radius: inherit; }
.bc-kicker { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); background: rgba(29,78,216,.08); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.bc-title { font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 8px; }
.bc-text { font-size: 14px; color: var(--text-soft); line-height: 1.55; }
.bc-num { font-size: 3.2rem; font-weight: 700; line-height: 1; letter-spacing: -.04em; color: var(--ink); margin-bottom: 8px; }
.bc-num-unit { font-size: 1.4rem; font-weight: 600; }
.bc-mock { margin-top: 20px; display: flex; flex-direction: column; gap: 7px; }
.bc-archive { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.bc-archive .mock-trow { font-size: 13px; padding: 10px 14px; grid-template-columns: 1.2fr 1fr auto; }
.bc-wide-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bc-tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bc-wide, .bc-tall { grid-column: span 1; grid-row: span 1; }
  .bc-wide-inner { grid-template-columns: 1fr; }
}

/* Feature rows */
.feature-rows { padding-top: 32px; padding-bottom: 60px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.frow.reverse .frow-copy { order: 2; }
.frow.reverse .frow-visual { order: 1; }
.frow-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.03em; margin: 12px 0 16px; }
.frow-copy > p { font-size: 1.08rem; color: var(--text-soft); margin-bottom: 22px; }
.frow-list { display: grid; gap: 13px; margin-bottom: 26px; }
.frow-list li { position: relative; padding-left: 32px; color: var(--text); font-size: 15.5px; }
.frow-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; background: rgba(29,78,216,.12); color: var(--brand); font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand); transition: gap .2s; }
.link-arrow:hover { gap: 13px; }

/* Platform orbital timeline */
.platform-orbit {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0 72px;
}
.platform-orbit-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.03em;
  margin: 12px 0 18px;
}
.platform-orbit-copy p {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 46ch;
}
.orbit-panel {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(240px, .72fr);
  gap: 28px;
  align-items: center;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 34% 38%, rgba(96,165,250,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(245,248,253,.88));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.orbit-stage {
  position: relative;
  aspect-ratio: 1;
  min-width: 310px;
}
.orbit-ring {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(29,78,216,.16);
  border-radius: 50%;
}
.orbit-ring-lg::before,
.orbit-ring-sm::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  border-top-color: rgba(29,78,216,.42);
  animation: orbit-spin 16s linear infinite;
}
.orbit-ring-sm {
  inset: 29%;
  border-color: rgba(13,17,23,.10);
}
.orbit-ring-sm::before {
  border-top-color: rgba(96,165,250,.5);
  animation-duration: 11s;
  animation-direction: reverse;
}
.orbit-line {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,78,216,.18), transparent);
}
.orbit-line-2 { transform: rotate(90deg); }
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 1px solid rgba(29,78,216,.24);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(29,78,216,.16);
  transform: translate(-50%, -50%);
}
.orbit-core span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.orbit-core strong {
  color: var(--ink);
  font-size: 17px;
}
.orbit-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 118px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.orbit-node-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(29,78,216,.16);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}
.orbit-node-label {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-soft);
  text-align: center;
}
.orbit-node:hover .orbit-node-icon,
.orbit-node.active .orbit-node-icon {
  transform: translateY(-3px) scale(1.08);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(29,78,216,.3);
}
.orbit-node.active .orbit-node-label { color: var(--ink); }
.orbit-detail {
  border: 1px solid rgba(29,78,216,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.orbit-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(29,78,216,.09);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.orbit-detail h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.orbit-detail p {
  color: var(--text-soft);
  font-size: 14.5px;
}
.orbit-energy {
  height: 8px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  overflow: hidden;
}
.orbit-energy span {
  display: block;
  width: var(--energy);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transition: width .35s ease;
}
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

/* Mock panels */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 16px; }
.mock-head { display: flex; justify-content: space-between; align-items: center; padding: 6px 8px 14px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.mock-pad { padding: 26px; }
.mock-clause { font-size: 15px; line-height: 1.6; color: var(--text); background: var(--bg); border-left: 3px solid var(--muted); border-radius: 0 10px 10px 0; padding: 16px 18px; font-style: italic; }
.mock-explain { margin-top: 18px; }
.mock-ai { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--brand); background: rgba(29,78,216,.08); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.mock-ai-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.mock-explain p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }
.mock-explain strong { color: var(--text); }
.redline-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.redline { font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
.del { background: rgba(224,53,74,.10); color: #9b2230; text-decoration: line-through; padding: 3px 6px; border-radius: 6px; }
.ins { background: rgba(22,160,106,.12); color: #0f7a50; padding: 3px 6px; border-radius: 6px; }
.mock-tip { margin-top: 16px; font-size: 13.5px; color: var(--text-soft); background: rgba(29,78,216,.05); border: 1px solid rgba(29,78,216,.14); border-radius: 10px; padding: 12px 14px; }
.mock-trow { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 12px; align-items: center; padding: 13px 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
.mock-trow:last-child { border-bottom: none; }
.mock-trow.head { font-weight: 600; color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; }
.st { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; text-align: center; }
.st-ok { background: rgba(22,160,106,.12); color: #0f7a50; }
.st-warn { background: rgba(232,146,10,.14); color: #9a6206; }
.st-risk { background: rgba(224,53,74,.12); color: #9b2230; }

/* Stats ribbon */
.ribbon { background: var(--ink); color: #fff; padding: 64px 0; }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ribbon-item { text-align: center; }
.ribbon-num { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(2.2rem, 4.2vw, 3.1rem); letter-spacing: -.03em; background: linear-gradient(120deg, #93c5fd, #60A5FA); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ribbon-key { display: block; color: #aeb8cf; font-size: 14.5px; margin-top: 8px; }

/* Solutions / display-card stack */
.solutions { padding-bottom: 72px; }
/* Feature with Advantages layout */
.fa-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.fa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 52px; }
.fa-item { display: flex; gap: 16px; align-items: flex-start; }
.fa-icon { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(29,78,216,.1); color: var(--brand); font-size: 13px; font-weight: 700; display: grid; place-items: center; margin-top: 2px; }
.fa-item h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.fa-item p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }
@media (max-width: 860px) { .fa-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; } }
@media (max-width: 480px) { .fa-grid { grid-template-columns: 1fr; gap: 24px; } }
.solutions .section-head {
  margin-inline: auto;
  text-align: center;
}
.cases {
  --stack-x: 56px;
  --stack-y: 42px;
  --stack-width: 598px;
  display: grid;
  grid-template-areas: 'stack';
  align-items: start;
  justify-content: start;
  width: min(100%, var(--stack-width));
  min-height: 392px;
  margin: 18px auto 0;
  padding: 8px 0 28px;
}
.case {
  position: relative;
  z-index: calc(10 - var(--i));
  grid-area: stack;
  width: min(100%, 430px);
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(29,78,216,.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,248,253,.94)),
    radial-gradient(circle at 18% 0%, rgba(96,165,250,.16), transparent 34%);
  box-shadow: 0 18px 44px rgba(13,17,23,.08), 0 2px 8px rgba(29,78,216,.06);
  filter: grayscale(.82);
  translate: calc(var(--i) * var(--stack-x)) calc(var(--i) * var(--stack-y));
  transition:
    opacity 1.05s cubic-bezier(.16, 1, .3, 1),
    transform 1.05s cubic-bezier(.16, 1, .3, 1),
    filter .65s cubic-bezier(.16, 1, .3, 1),
    scale .65s cubic-bezier(.16, 1, .3, 1),
    translate .65s cubic-bezier(.16, 1, .3, 1),
    box-shadow .65s cubic-bezier(.16, 1, .3, 1),
    border-color .65s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms, 0ms, 0ms;
  outline: none;
}
.case::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(245,248,253,.48);
  transition: opacity .65s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.case:hover,
.case:focus-visible {
  z-index: 30;
  filter: grayscale(0);
  scale: 1.02;
  translate: calc(var(--i) * var(--stack-x)) calc((var(--i) * var(--stack-y)) - 18px);
  border-color: rgba(29,78,216,.36);
  box-shadow: 0 26px 70px rgba(13,17,23,.14), 0 12px 34px rgba(29,78,216,.16);
}
.case:hover::before,
.case:focus-visible::before { opacity: 0; }
.case:focus-visible { box-shadow: 0 0 0 4px rgba(96,165,250,.18), 0 26px 70px rgba(13,17,23,.14), 0 12px 34px rgba(29,78,216,.16); }
.case-ic {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.12);
  font-size: 28px;
}
.case h3,
.case p {
  position: relative;
  z-index: 1;
}
.case h3 { font-size: 1.22rem; margin-bottom: 10px; }
.case p { font-size: 15px; color: var(--text-soft); }
.case.reveal { filter: grayscale(.82) blur(var(--reveal-blur, 4px)); }
.case.reveal.in { filter: grayscale(.82) blur(0); }
.case.reveal:hover,
.case.reveal:focus-visible { filter: grayscale(0) blur(0); }

/* Wave Path Divider */
.wave-wrap { display: flex; justify-content: center; padding: 8px 0; }
.wave-area { position: relative; height: 1px; width: 70vw; }
.wave-hit  { position: absolute; top: -150px; left: 0; right: 0; height: 300px; z-index: 10; cursor: default; }
.wave-svg  { position: absolute; top: -100px; height: 300px; width: 100%; overflow: visible; pointer-events: none; stroke: var(--line); stroke-width: 1.5; }

/* Big quote */
.bigquote-sec { padding: 76px 0 100px; }
.bigquote { max-width: 920px; margin-inline: auto; text-align: center; }
.bigquote .stars { color: #f5a623; letter-spacing: 3px; font-size: 18px; margin-bottom: 22px; }
.bigquote blockquote { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; line-height: 1.4; letter-spacing: -.02em; color: var(--ink); margin-bottom: 36px; }
.bigquote figcaption { display: flex; align-items: center; justify-content: center; gap: 24px; }
.q-attribution { border-left: 1px solid rgba(0,0,0,.12); padding-left: 24px; display: flex; flex-direction: column; gap: 3px; text-align: left; }
.q-name { font-size: 15px; font-weight: 600; color: var(--ink); font-style: normal; }
.q-role { font-size: 13.5px; color: var(--text-soft); }

/* Resources */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res-card { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; min-height: 200px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(29,78,216,.25); }
.res-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); }
.res-card h3 { font-size: 1.2rem; line-height: 1.3; flex: 1; }
.res-meta { font-size: 13px; color: var(--muted); }

/* Responsive - Ironclad layout */
@media (max-width: 980px) {
  .platform-orbit { grid-template-columns: 1fr; gap: 28px; padding-bottom: 52px; }
  .orbit-panel { grid-template-columns: 1fr; }
  .orbit-stage { width: min(440px, 100%); min-width: 0; margin-inline: auto; }
  .frow { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .frow.reverse .frow-copy { order: 1; }
  .frow.reverse .frow-visual { order: 2; }
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .cases {
    --stack-x: 36px;
    --stack-y: 32px;
    --stack-width: 498px;
    min-height: 356px;
    padding: 8px 0 24px;
  }
  .case {
    width: min(100%, 390px);
    min-height: 220px;
  }
  .res-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .platform-orbit { padding-top: 12px; }
  .orbit-panel { padding: 20px; border-radius: 18px; }
  .orbit-stage { min-height: 310px; }
  .orbit-node { width: 92px; }
  .orbit-node-icon { width: 46px; height: 46px; font-size: 14px; }
  .orbit-node-label { font-size: 11.5px; }
  .orbit-core { width: 102px; height: 102px; }
  .solutions { overflow: visible; }
  .cases {
    display: grid;
    grid-template-areas: none;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    min-height: 0;
    margin-top: 24px;
    padding: 0;
  }
  .case {
    grid-area: auto;
    width: 100%;
    min-height: 0;
    filter: none;
    scale: 1;
    translate: 0 0;
  }
  .case.reveal,
  .case.reveal.in { filter: none; }
  .case::before { display: none; }
  .case:hover,
  .case:focus-visible {
    scale: 1;
    translate: 0 -6px;
  }
  .logos-row { gap: 18px 32px; }
  .logo-item { font-size: 18px; }
  .statement { font-size: 1.5rem; }
}
