/* ICOS Studio · Direction B, light institutional */
:root {
  --ink: #0f172a;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --teal: #0d9488;
  --indigo: #6366f1;
  --violet: #a855f7;
  --footer-bg: #0b1220;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.logo { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-img { height: 34px; width: auto; display: block; }
.logo-mark-img { height: 28px; width: auto; display: inline-block; }
.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.site-nav a { text-decoration: none; font-size: 15px; color: var(--slate); font-weight: 500; }
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; margin-left: auto; }
.site-nav a.btn {
  background: #fff; color: #00795D; border: 1.5px solid #00B389; box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.site-nav a.btn:hover { background: #00B389; color: #fff; }

/* ---------- buttons & badges ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid #cbd5e1; }
.btn-teal {
  background: #00B389; color: #fff; border: 1.5px solid #00B389; box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn-teal:hover { background: #fff; color: #00795D; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.badge {
  display: inline-block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 26px;
  background: #eef2ff; color: #4f46e5; font-weight: 600;
}

/* ---------- animated mesh background ---------- */
.mesh-wrap { position: relative; overflow: hidden; }
.mesh { position: absolute; inset: 0; pointer-events: none; }
.mesh::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 65% 55% at 60% 20%, black, transparent);
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.30; }
.blob-teal { width: 620px; height: 620px; background: #00B389; bottom: -20%; right: -6%; animation: drift1 19s ease-in-out infinite; }
.blob-indigo { width: 620px; height: 620px; background: #092C7B; top: -20%; left: -8%; animation: drift2 23s ease-in-out infinite; }
.blob-violet { width: 380px; height: 380px; background: #00B389; top: 34%; left: 40%; opacity: 0.10; animation: drift1 26s ease-in-out infinite reverse; }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-50px, 36px) scale(1.08); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(44px, -30px) scale(0.94); } }
.hero-bg {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.76)), url('/assets/hero-bg.jpg');
  background-size: cover; background-position: center;
}
.hero-bg .mesh { display: none; }

.gradient-rule { height: 4px; background: linear-gradient(90deg, var(--teal), var(--indigo), var(--violet)); border: none; }

/* ---------- hero ---------- */
.hero { padding: 80px 24px 90px; }
.hero-head { position: relative; z-index: 2; text-align: center; max-width: 940px; margin: 0 auto 52px; }
.hero-ctas {
  position: relative; z-index: 2; justify-content: center;
  max-width: 1200px; margin: 48px auto 0;
}
.hero-ctas .btn { min-width: 340px; max-width: 100%; text-align: center; }
@media (max-width: 780px) {
  .hero-ctas .btn { min-width: 0; flex: 1 1 100%; }
}

.hero-points-row {
  list-style: none; position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px;
  max-width: 1200px; margin: 56px auto 0; padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.hero-points-row li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--ink); }
.hero-points-row li::before {
  content: '✓'; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--indigo)); color: #fff;
  font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 5vw; align-items: stretch;
}
.hero-inner > div:first-child { display: flex; flex-direction: column; justify-content: flex-start; gap: 26px; }
.hero-inner > div:first-child .sub { margin: auto; text-align: center; }
.hero-inner > div:first-child .ctas { margin-top: 0; }
h1 { font-size: clamp(38px, 4.8vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.hero .sub { font-size: 19px; color: var(--slate); max-width: 560px; margin-top: 22px; }
.speech { display: flex; flex-direction: column; gap: 14px; margin-top: 0; max-width: 100%; }
.chat-row { display: flex; gap: 10px; align-items: flex-end; }
.chat-row.chat-right { flex-direction: row-reverse; }
.chat-av {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  object-fit: cover; border: 1px solid var(--line);
}
.bubble { position: relative; padding: 15px 20px; border-radius: 18px; font-size: 17px; line-height: 1.55; }
.bubble-problem {
  background: #fff; border: 1px solid var(--line); color: var(--slate);
  border-bottom-left-radius: 4px; max-width: 88%;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  animation: bubblePop 0.45s ease both 0.4s;
}
.bubble-problem::after {
  content: ''; position: absolute; left: -6px; bottom: 8px;
  border: 6px solid transparent; border-right-color: #fff; border-left: 0;
}
.bubble-solution {
  background: #0f766e; color: #fff; font-weight: 600;
  border-bottom-right-radius: 4px; max-width: 80%;
  animation: bubblePop 0.45s ease both 2.5s;
}
.bubble-solution::after {
  content: ''; position: absolute; right: -6px; bottom: 8px;
  border: 6px solid transparent; border-left-color: #0f766e; border-right: 0;
}
@keyframes bubblePop {
  0% { opacity: 0; transform: scale(0.7) translateY(10px); }
  70% { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.typing-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.8);
  display: inline-block; margin-right: 4px; animation: dotBlink 1s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
.bubble-solution .reply-msg { display: none; }
.bubble-solution.replied .typing-dots { display: none; }
.bubble-solution.replied .reply-msg { display: inline; }
@media (prefers-reduced-motion: reduce) {
  .bubble-problem, .bubble-solution { animation: none; }
  .bubble-solution .typing-dots { display: none; }
  .bubble-solution .reply-msg { display: inline; }
}
.hero .speech + .sub { font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.6; }
.ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 13px; color: var(--muted); }
.hero-points { list-style: none; margin-top: 24px; }
.hero-points li { padding: 9px 0; font-size: 16.5px; color: var(--ink); font-weight: 500; display: flex; align-items: center; gap: 12px; }
.hero-points li::before {
  content: '✓'; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--indigo)); color: #fff;
  font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- case card ---------- */
.case-card {
  border-radius: 16px; padding: 26px; width: 100%; max-width: 440px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10), 0 2px 8px rgba(15, 23, 42, 0.05);
  font-size: 14px; justify-self: end;
}
.cc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cc-title { font-weight: 700; font-size: 16px; }
.cc-status {
  font-size: 11px; padding: 4px 10px; border-radius: 100px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; background: #eef2ff; color: #4f46e5;
}
.cc-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.case-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.case-row:last-of-type { border-bottom: none; }
.chip { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.chip-ok { background: #ecfdf5; color: #059669; }
.chip-warn { background: #fffbeb; color: #b45309; }
.chip-run { background: #eff6ff; color: #2563eb; }
.progress-track { height: 6px; border-radius: 100px; background: var(--line-soft); margin: 16px 0 10px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--teal), var(--indigo)); animation: fill 2.2s ease-out forwards; }
@keyframes fill { to { width: 72%; } }
.cc-foot { font-size: 12px; color: var(--muted); }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ---------- hero demo rotator ---------- */
.hero-demo {
  position: relative; width: 100%; max-width: 440px; justify-self: end;
  display: grid; grid-template-columns: minmax(0, 1fr); align-content: start;
}
.demo-panel {
  grid-area: 2 / 1; visibility: hidden; border-radius: 16px; padding: 26px; background: #fff;
  border: 1px solid var(--line); font-size: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10), 0 2px 8px rgba(15, 23, 42, 0.05);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.demo-panel.active { visibility: visible; animation: panelIn 0.5s ease; }
.demo-caption, .demo-dots { grid-column: 1; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.demo-caption { grid-row: 1; grid-column: 1; text-align: center; font-size: 17.5px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 14px; }
.demo-dots { grid-row: 3; grid-column: 1; display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; border: none; cursor: pointer; padding: 0; transition: all 0.2s; }
.demo-dot.active { background: linear-gradient(135deg, var(--teal), var(--indigo)); width: 22px; border-radius: 100px; }
.chip-fail { background: #fee2e2; color: #b91c1c; }
.cc-status.chip-ok-bg { background: #ecfdf5; color: #059669; }
.cc-status.chip-warn-bg { background: #fffbeb; color: #b45309; }
.mini-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 6px 0 10px; }
.mini-kpi { background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 8px; padding: 8px 6px; text-align: center; }
.mini-kpi strong { display: block; font-size: 19px; font-weight: 800; }
.mini-kpi span { font-size: 10.5px; color: var(--muted); }
.mini-node { position: relative; border-radius: 10px; padding: 10px 14px; border: 1px solid var(--line); }
.mini-node strong { display: block; font-size: 14.5px; }
.mini-node.person { background: #faf5ff; border-color: #e9d5ff; }
.mini-node.company { background: #f0fdfa; border-color: #99f6e4; }
.mini-tag { position: absolute; top: 9px; right: 12px; font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.mini-loc { font-size: 12px; color: var(--muted); }
.mini-link { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 2px 0; }
.mini-branch { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-branch .mini-col { display: flex; flex-direction: column; }
.mini-branch .mini-node { flex: 1; }
.mini-branch .mini-node strong { font-size: 13px; }
.mini-branch .mini-loc { font-size: 11px; }
.mini-branch .mini-tag { display: none; }
.mini-line { width: 2px; height: 10px; background: var(--teal); }
.mini-pct { font-size: 11.5px; font-weight: 700; border: 1px solid var(--line); border-radius: 100px; padding: 1px 10px; }
.mini-dot { display: inline-flex; width: 18px; height: 18px; border-radius: 50%; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; margin-right: 8px; }
.mini-dot.pass { background: #dcfce7; color: #15803d; }
.mini-dot.fail { background: #fee2e2; color: #b91c1c; }
.mini-doc { position: relative; border: 2px double #94a3b8; border-radius: 6px; padding: 16px 14px; text-align: center; margin: 8px 0 4px; overflow: hidden; }
.specimen { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 800; color: rgba(185, 28, 28, 0.10); transform: rotate(-18deg); letter-spacing: 0.16em; pointer-events: none; }
.mini-doc-title { font-size: 14px; font-weight: 800; letter-spacing: 0.05em; }
.mini-doc-line { font-size: 12px; color: var(--slate); margin-top: 5px; }
.mini-actions { display: flex; gap: 8px; margin-top: 14px; }
.mini-btn { flex: 1; text-align: center; font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); border-radius: 100px; padding: 8px 4px; color: var(--ink); }
.mini-btn.primary { background: #0f766e; border-color: #0f766e; color: #fff; }
.mini-declare { background: var(--bg-soft); border-radius: 10px; padding: 14px 16px; margin-top: 8px; }
.mini-declare p { font-size: 13px; color: var(--slate); }
.mini-label { font-size: 11.5px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 12px; }
.mini-input { border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px 12px; font-size: 14px; background: #fff; margin-top: 5px; }
.mini-send { background: #0f766e; color: #fff; border-radius: 100px; text-align: center; padding: 11px; font-weight: 600; font-size: 14px; margin-top: 16px; }
.portal-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; }
.portal-logo { width: 26px; height: 26px; border-radius: 7px; background: #092C7B; color: #fff; font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.portal-secure { margin-left: auto; font-size: 11.5px; color: #0f766e; font-weight: 600; }
.portal-title { font-size: 16.5px; font-weight: 800; line-height: 1.3; letter-spacing: -0.01em; }
.portal-sub { font-size: 12.5px; color: var(--muted); margin: 8px 0 6px; }
@media (max-width: 960px) { .hero-demo { justify-self: start; } }
@media (prefers-reduced-motion: reduce) { .demo-panel.active { animation: none; } }

/* ---------- sections ---------- */
section.band { padding: 88px 24px; }
section.band-soft { background: var(--bg-soft); }
.band-inner { max-width: 1200px; margin: 0 auto; }
.kicker { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 14px; }
h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; max-width: 720px; }
.lede { font-size: 18px; color: var(--slate); max-width: 660px; margin-top: 18px; }

/* cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.card .kicker { margin-bottom: 10px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--slate); }
.card .num { font-size: 13px; font-weight: 800; color: var(--indigo); margin-bottom: 12px; }

/* before / after strip */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.contrast-panel { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); }
.contrast-before { background: #fafafa; }
.contrast-before h3 { color: #9f1239; }
.contrast-after { background: #fff; box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08); position: relative; overflow: hidden; }
.contrast-after::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--indigo)); }
.contrast-after h3 { color: #047857; }
.contrast-panel h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.contrast-panel ul { list-style: none; }
.contrast-panel li { padding: 8px 0; font-size: 15px; color: var(--slate); border-bottom: 1px solid var(--line-soft); }
.contrast-panel li:last-child { border-bottom: none; }
.contrast-panel li strong { display: block; color: var(--ink); font-size: 15.5px; }
.contrast-panel li span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.contrast-before li { min-height: 62px; display: flex; align-items: center; }

/* pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; margin-top: 48px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; }
.plan.featured { border: 2px solid var(--indigo); box-shadow: 0 18px 50px rgba(99, 102, 241, 0.14); position: relative; }
.plan-flag {
  position: absolute; top: -13px; left: 28px; background: var(--indigo); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.plan h3 { font-size: 20px; font-weight: 800; }
.plan .price { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; margin: 14px 0 2px; }
.plan .price small { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan .alt-price { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.plan .for { font-size: 14.5px; color: var(--slate); margin: 12px 0 18px; }
.plan ul { list-style: none; margin-bottom: 26px; flex: 1; }
.plan li { padding: 8px 0; font-size: 14.5px; color: var(--slate); border-bottom: 1px solid var(--line-soft); }
.plan li::before { content: '✓  '; color: var(--teal); font-weight: 700; }
.small-print { font-size: 13px; color: var(--muted); margin-top: 34px; max-width: 820px; }
.small-print a { color: var(--indigo); }

/* steps */
.steps { counter-reset: step; margin-top: 48px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.steps.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* legal prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 10px; }
.prose .updated { color: var(--muted); font-size: 14.5px; margin-bottom: 40px; }
.prose h2 { font-size: 22px; margin: 40px 0 12px; max-width: none; }
.prose p { color: var(--slate); font-size: 16px; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; color: var(--slate); font-size: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--indigo); }

/* forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 34px; max-width: 520px; box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07); }
.form-card label.field-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-card input[type='email'] {
  width: 100%; padding: 13px 14px; border: 1px solid #cbd5e1; border-radius: 10px;
  font-size: 15px; margin-bottom: 18px; font-family: inherit;
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--slate); margin-bottom: 20px; }
.consent input { margin-top: 3px; }

/* auth pages */
.btn-oauth {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #fff; border: 1px solid #cbd5e1; border-radius: 100px;
  font-size: 15px; font-weight: 600; padding: 12px; cursor: pointer; font-family: inherit;
}
.auth-divider { text-align: center; font-size: 12.5px; color: var(--muted); margin: 16px 0; }
.form-card input[type='password'] {
  width: 100%; padding: 13px 14px; border: 1px solid #cbd5e1; border-radius: 10px;
  font-size: 15px; margin-bottom: 18px; font-family: inherit;
}

.auth-forward-page {
  min-height: calc(100vh - 73px);
  padding: 80px 24px;
  display: grid;
  place-items: center;
}
.auth-forward-card {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}
.auth-forward-card h1 { font-size: clamp(30px, 4vw, 42px); }
.auth-forward-card p:not(.kicker) { margin: 12px 0 24px; color: var(--slate); }

/* free account points */
.free-points { display: flex; justify-content: center; gap: 26px; margin-top: 24px; flex-wrap: wrap; }
.free-points span { font-size: 15px; font-weight: 600; color: var(--ink); }

/* cta band */
.cta-band { text-align: center; padding: 96px 24px; }
.cta-band .ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: #cbd5e1; padding: 64px 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 44px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14.5px; color: #94a3b8; max-width: 260px; }
.footer-cols h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; margin-bottom: 14px; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a { color: #cbd5e1; text-decoration: none; font-size: 14.5px; }
.footer-cols a:hover { color: #fff; }
.footer-legal { border-top: 1px solid #1e293b; padding-top: 28px; font-size: 13px; color: #94a3b8; }
.footer-legal p { margin-bottom: 6px; }

/* cookie notice */
#cookie-notice {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 100;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  padding: 16px 20px; max-width: 560px; width: calc(100% - 40px);
  display: flex; gap: 16px; align-items: center; font-size: 13.5px; color: var(--slate);
}
#cookie-notice a { color: var(--indigo); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .progress-fill, .pulse { animation: none; }
  .progress-fill { width: 72%; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .case-card { justify-self: start; }
  .card-grid, .card-grid.cols-3, .steps, .steps.cols-4 { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .contrast { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .card-grid, .card-grid.cols-2, .card-grid.cols-3, .steps, .steps.cols-4 { grid-template-columns: 1fr; }
}
