/* ================================================================
   SYRID — Marketing Landing Page Styles
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--f-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
}
[dir="rtl"] body { font-family: var(--f-sans); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--text); }
button { font-family: inherit; }
::selection { background: var(--accent); color: var(--accent-fg); }

@keyframes syridPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

/* ── theme tokens (JS applies these on <html>) ── */
:root {
  --bg: #cdd8e8; --surface: #bfcde0; --surface-2: #dbe4f2;
  --surface-2-a: rgba(219,228,242,.88); --border: #94aabf; --border-soft: rgba(6,11,28,.07);
  --text: #060b1c; --dim: #1a2c46; --hover: rgba(6,11,28,.05);
  --accent: #0c4ea6; --accent-fg: #ffffff; --accent-soft: rgba(12,78,166,.09); --accent-icon: #0c4ea6;
  --link: #2563eb; --grid: rgba(12,78,166,.10);
  --logo-bg: linear-gradient(155deg,#4c82c4,#0c4ea6); --logo-fg: #ffffff; --logo-border: rgba(6,11,28,.42);
  --shadow: 0 18px 44px -28px rgba(6,11,28,.35); --shadow-lg: 0 40px 80px -50px rgba(6,11,28,.5);
  --cta-bg: #0c4ea6; --cta-fg: #ffffff; --cta-grid: rgba(255,255,255,.08);
  --cta-border: rgba(255,255,255,.35); --cta-btn-bg: #ffffff; --cta-btn-fg: #0c4ea6;
  --ok: #2e9e5b; --pending: #b8860b; --info: #2563eb; --processing: #9333ea;
  --manual: #ea580c; --rejected: #c01818;
  --f-sans: 'Space Grotesk', 'IBM Plex Sans Arabic', sans-serif;
  --f-mono: 'JetBrains Mono', 'IBM Plex Sans Arabic', monospace;
}
html[data-theme="dark"] {
  --bg: #1a1a22; --surface: #222230; --surface-2: #1e1e28;
  --surface-2-a: rgba(30,30,40,.9); --border: #2e2e34; --border-soft: rgba(255,255,255,.05);
  --text: #f2f2f5; --dim: #b0b0c2; --hover: rgba(9,196,58,.07);
  --accent: #09c43a; --accent-fg: #030e07; --accent-soft: rgba(9,196,58,.14); --accent-icon: #09c43a;
  --link: #38bdf8; --grid: rgba(46,46,52,.45);
  --logo-bg: linear-gradient(155deg,#03130a,#0a2f16); --logo-fg: #09c43a; --logo-border: #07aa32;
  --shadow: 0 18px 44px -28px rgba(0,0,0,.9); --shadow-lg: 0 40px 80px -46px rgba(0,0,0,.95);
  --cta-bg: #1e1e28; --cta-fg: #f2f2f5; --cta-grid: rgba(255,255,255,.05);
  --cta-border: rgba(242,242,245,.28); --cta-btn-bg: #09c43a; --cta-btn-fg: #030e07;
  --ok: #3fb950; --pending: #d29922; --info: #38bdf8; --processing: #a855f7;
  --manual: #f97316; --rejected: #ff4545;
  --glow-soft: 0 0 0 1px rgba(9,196,58,.35), 0 0 22px -4px rgba(9,196,58,.55);
}
html[data-theme="dark"] .btn-solid,
html[data-theme="dark"] .hero-ctas .btn-solid,
html[data-theme="dark"] .plan-cta.solid,
html[data-theme="dark"] .cta-band .btn-white { box-shadow: 0 0 26px -6px rgba(9,196,58,.65); }
html[data-theme="dark"] .icon-btn:focus-visible,
html[data-theme="dark"] input:focus-visible { box-shadow: var(--glow-soft); }
[dir="rtl"] { --f-sans: 'IBM Plex Sans Arabic', 'Space Grotesk', sans-serif; --f-mono: 'IBM Plex Sans Arabic', 'JetBrains Mono', monospace; }

/* ── grid backgrounds ── */
.grid-bg {
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* ── header ── */
header.site-head {
  position: sticky; top: 0; z-index: 40;
  background: var(--surface-2-a); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.head-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px);
  height: 68px; display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center; flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-family: var(--f-mono); font-weight: 700; font-size: 17px; letter-spacing: .14em; line-height: 1.05; }
.brand-sub { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--dim); line-height: 1.05; }
nav.top-nav { margin-inline-start: auto; display: flex; align-items: center; gap: 4px; }
nav.top-nav a {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim); padding: 9px 12px; border-radius: 8px; transition: all .18s ease;
}
nav.top-nav a:hover { color: var(--text); background: var(--hover); }
.head-controls { margin-inline-start: 8px; display: flex; align-items: center; gap: 10px; }
.lang-pill { display: flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--surface); }
.lang-pill button {
  border: none; cursor: pointer; padding: 9px 13px; font-family: var(--f-mono); font-size: 11px;
  font-weight: 700; letter-spacing: .08em; transition: all .18s ease; background: transparent; color: var(--dim);
}
.lang-pill button.active { background: var(--accent); color: var(--accent-fg); }
.icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border);
  border-radius: 8px; background: var(--surface); color: var(--text); cursor: pointer; transition: all .18s ease;
}
.icon-btn:hover { border-color: var(--accent); }
.icon-btn svg { width: 17px; height: 17px; }
.btn-outline {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border); transition: all .18s ease;
}
.btn-outline:hover { border-color: var(--accent); color: var(--text); }
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--accent-fg);
  padding: 11px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 600; transition: filter .18s ease, transform .18s ease;
}
.btn-solid:hover { filter: brightness(1.12); color: var(--accent-fg); }
.arr { display: inline-block; font-family: var(--f-mono); }
[dir="rtl"] .arr { transform: scaleX(-1); }
.desktop-only { display: flex; }
.burger { display: none; }
@media (max-width: 939px) {
  .desktop-only { display: none !important; }
  .burger { display: grid !important; }
}
#mobile-menu {
  display: none; border-top: 1px solid var(--border); background: var(--surface);
  padding: 14px clamp(16px, 3vw, 32px) 20px; flex-direction: column; gap: 2px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); padding: 13px 10px; border-radius: 8px;
}
#mobile-menu .divider { height: 1px; background: var(--border); margin: 10px 0; }
#mobile-menu .m-signin { text-align: center; border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
#mobile-menu .m-start { text-align: center; background: var(--accent); color: var(--accent-fg); border-radius: 8px; padding: 15px; font-weight: 600; font-size: 14px; margin-top: 8px; }

/* ── hero ── */
section.hero { position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: clamp(48px, 8vw, 96px) clamp(16px, 3vw, 32px) clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center;
}

/* ── HUD decoration (dark theme only) ── */
.hero-hud { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: none; }
html[data-theme="dark"] .hero-hud { display: block; }
.hero-hud .beam {
  position: absolute; left: 0; right: 0; top: 44%; height: 140px;
  background: radial-gradient(60% 100% at 50% 50%, rgba(9,196,58,.16), transparent 72%);
}
.hero-hud .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(9,196,58,.4) 1px, transparent 1.6px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(65% 65% at 55% 45%, #000 35%, transparent 82%);
  mask-image: radial-gradient(65% 65% at 55% 45%, #000 35%, transparent 82%);
}
.hero-hud .star { position: absolute; color: var(--rejected); line-height: 1; opacity: .6; }
.hero-hud .tick {
  position: absolute; width: 14px; height: 14px; opacity: .55;
  background-image: linear-gradient(90deg, var(--accent) 2px, transparent 2px), linear-gradient(180deg, var(--accent) 2px, transparent 2px);
  background-size: 9px 2px, 2px 9px; background-position: center, center; background-repeat: no-repeat;
}
html[data-theme="dark"] .hud-frame {
  background-image:
    linear-gradient(90deg, var(--accent) 2px, transparent 2px), linear-gradient(180deg, var(--accent) 2px, transparent 2px),
    linear-gradient(90deg, var(--accent) 2px, transparent 2px), linear-gradient(180deg, var(--accent) 2px, transparent 2px),
    linear-gradient(90deg, var(--accent) 2px, transparent 2px), linear-gradient(180deg, var(--accent) 2px, transparent 2px),
    linear-gradient(90deg, var(--accent) 2px, transparent 2px), linear-gradient(180deg, var(--accent) 2px, transparent 2px);
  background-repeat: no-repeat;
  background-size: 20px 2px, 2px 20px, 20px 2px, 2px 20px, 20px 2px, 2px 20px, 20px 2px, 2px 20px;
  background-position: top left, top left, top right, top right, bottom right, bottom right, bottom left, bottom left;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .18em; color: var(--dim); border: 1px solid var(--border); background: var(--surface);
  padding: 7px 13px; border-radius: 999px;
}
.dot-ok { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: syridPulse 2.4s ease-in-out infinite; }
h1.hero-title { margin: 22px 0 0; font-size: clamp(34px, 5.2vw, 60px); line-height: 1.04; letter-spacing: -.025em; font-weight: 700; text-wrap: pretty; }
p.hero-sub { margin: 20px 0 0; font-size: clamp(15.5px, 1.4vw, 18px); line-height: 1.62; color: var(--dim); max-width: 52ch; text-wrap: pretty; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-ctas .btn-solid { padding: 15px 26px; font-size: 15px; border-radius: 9px; }
.btn-doc {
  display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 15px 24px; border-radius: 9px; font-weight: 600; font-size: 15px; transition: all .18s ease;
}
.btn-doc:hover { border-color: var(--accent); color: var(--text); }
.btn-doc svg { width: 17px; height: 17px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.hero-pills span.p {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--dim);
}
.hero-pills span.p b { color: var(--ok); font-weight: 400; }

.code-card { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.code-top { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.code-top .dot { width: 9px; height: 9px; border-radius: 50%; }
.code-body { padding: 20px 18px 22px; font-family: var(--f-mono); font-size: clamp(10.5px, 1.05vw, 12.4px); line-height: 1.9; overflow-x: auto; white-space: pre; }
.code-bottom { border-top: 1px solid var(--border); background: var(--surface-2); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim); }

/* ── section shells ── */
section.block { border-bottom: 1px solid var(--border); }
.block-inner { max-width: 1280px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 32px); }
.sec-kicker { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; color: var(--dim); }
.sec-head { max-width: 640px; margin-bottom: 40px; }
.sec-head h2 { margin: 14px 0 0; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; text-wrap: pretty; }
.sec-head p { margin: 14px 0 0; font-size: 16px; line-height: 1.62; color: var(--dim); text-wrap: pretty; }
.surface-2 { background: var(--surface-2); }

/* ── platform preview ── */
#platform { position: relative; z-index: 0; overflow: hidden; }
.brand-float-logo {
  position: absolute; z-index: -1; top: 2%; inset-inline-end: 12%; width: min(20vw, 260px); height: auto;
  opacity: .13; pointer-events: none;
  animation: brandFloatLogo 9s ease-in-out infinite;
}
html[data-theme="dark"] .brand-float-logo { opacity: .4; }
@keyframes brandFloatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(1.5deg); }
}
[dir="rtl"] .brand-float-logo { animation-name: brandFloatLogoRtl; }
@keyframes brandFloatLogoRtl {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
  50% { transform: scaleX(-1) translateY(-22px) rotate(-1.5deg); }
}
.app-frame { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--bg); box-shadow: var(--shadow-lg); }
.app-topbar { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.app-topbar .traffic { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.app-url { margin: 0 auto; font-family: var(--f-mono); font-size: 10.5px; color: var(--dim); border: 1px solid var(--border); background: var(--surface); border-radius: 6px; padding: 4px 14px; }
.app-body { display: flex; min-height: 420px; }
.app-sidebar { width: 226px; flex: none; display: flex; flex-direction: column; background: var(--surface-2); border-inline-end: 1px solid var(--border); padding: 16px 0; }
@media (max-width: 939px) { .app-sidebar { display: none; } }
.app-sidebar .sb-brand { display: flex; align-items: center; gap: 10px; padding: 0 16px 16px; }
.app-sidebar .sb-mark { width: 30px; height: 30px; display: grid; place-items: center; flex: none; }
.app-sidebar .sb-mark img { width: 100%; height: 100%; object-fit: contain; }
.app-sidebar .sb-group { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .18em; color: var(--dim); padding: 16px 16px 8px; }
.app-sidebar .sb-item { display: flex; align-items: center; gap: 11px; padding: 10px 16px; color: var(--dim); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .11em; }
.app-sidebar .sb-item.active { background: var(--accent-soft); border-inline-start: 3px solid var(--accent); color: var(--text); }
.app-sidebar .sb-item svg { width: 13px; height: 13px; flex: none; }
.app-main { flex: 1; min-width: 0; }
.app-main .am-bar { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--border); background: var(--surface-2-a); }
.app-main .am-bar span { margin: 0 auto; font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; font-weight: 700; }
.app-content { padding: 22px 20px; }
.am-head { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; justify-content: space-between; }
.am-head .t1 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.am-head .t2 { font-size: 12.5px; color: var(--dim); margin-top: 4px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(142px, 1fr)); gap: 12px; margin-top: 20px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 13px 14px; }
.stat-card.accent { border-inline-start: 3px solid var(--stat-c); }
.stat-card .label { display: flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 9px; letter-spacing: .13em; color: var(--dim); white-space: nowrap; }
.stat-card .label .d { width: 6px; height: 6px; border-radius: 50%; }
.stat-card .value { font-size: 26px; font-weight: 700; margin-top: 8px; }
.table-card { margin-top: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.table-card .th { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.table-card .th .tt { font-weight: 600; font-size: 14px; }
.table-card .th .va { font-family: var(--f-mono); font-size: 10.5px; color: var(--link); }
.row { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr) auto; gap: 12px; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border-soft); }
.row:last-child { border-bottom: none; }
.row .rid { font-family: var(--f-mono); font-size: 11.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; direction: ltr; text-align: start; }
.row .rtype { font-size: 12px; color: var(--dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row .rtime { font-family: var(--f-mono); font-size: 10.5px; color: var(--dim); }
.row .rstatus { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }

/* ── features ── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.feat-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.feat-card::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: bottom;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.feat-card:hover::before { transform: scaleY(1); }
.feat-icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-icon);
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.feat-icon svg { width: 19px; height: 19px; }
.feat-card:hover .feat-icon { background: var(--accent); color: var(--accent-fg); transform: scale(1.1); }
.feat-card h3 { margin: 18px 0 0; font-size: 17px; font-weight: 600; transition: color .2s ease; }
.feat-card:hover h3 { color: var(--accent); }
.feat-card p { margin: 9px 0 0; font-size: 14.2px; line-height: 1.6; color: var(--dim); text-wrap: pretty; }

/* ── how it works ── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 16px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 26px; border-inline-start: 3px solid var(--step-c); }
.step-card .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; color: var(--dim); }
.step-card h3 { margin: 14px 0 0; font-size: 18px; font-weight: 600; }
.step-card p { margin: 9px 0 0; font-size: 14.2px; line-height: 1.6; color: var(--dim); text-wrap: pretty; }
.pipeline-card { margin-top: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 22px 24px; }
.pipeline-card p { font-size: 14.5px; line-height: 1.62; color: var(--text); }
.pipeline-card .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; color: var(--dim); }
.pipeline-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px; }
.pipeline-row .chip { font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--border); }
.pipeline-row .sep { color: var(--dim); }

/* ── benefits ── */
.ben-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 5vw, 64px); }
.ben-grid p.sub { margin: 16px 0 0; font-size: 16px; line-height: 1.62; color: var(--dim); max-width: 46ch; text-wrap: pretty; }
.ben-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); }
.ben-item:last-child { border-bottom: 1px solid var(--border); }
.ben-item .idx { font-family: var(--f-mono); font-size: 11px; color: var(--dim); padding-top: 3px; }
.ben-item .t { font-size: 16px; font-weight: 600; }
.ben-item .d { font-size: 14.2px; line-height: 1.6; color: var(--dim); margin-top: 6px; }
.section-tagline { margin-top: 32px; font-size: 15.5px; font-weight: 600; color: var(--text); }
.section-tagline strong { color: var(--accent); font-weight: 700; }

/* ── pricing ── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.plan-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 30px 26px 28px; }
.plan-card.featured { border-color: var(--accent); border-width: 1.5px; box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -10px; inset-inline-start: 22px; background: var(--accent); color: var(--accent-fg); font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.plan-code { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; color: var(--dim); }
.plan-name { margin: 12px 0 0; font-size: 26px; font-weight: 700; letter-spacing: -.015em; }
.plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.plan-price { font-weight: 700; letter-spacing: -.02em; line-height: 1.05; }
.plan-period { font-size: 12.5px; color: var(--dim); }
.plan-quota-wrap { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 5px; }
.plan-quota-label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em; color: var(--dim); }
.plan-quota { font-size: 19px; font-weight: 600; }
.plan-overage { font-size: 12.5px; color: var(--dim); }
.plan-points { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; flex: 1; }
.plan-points span { display: flex; gap: 10px; font-size: 14.2px; line-height: 1.5; }
.plan-points b { flex: none; font-family: var(--f-mono); font-weight: 700; }
.plan-points b.ok { color: var(--ok); }
.plan-points b.no { color: var(--dim); }
.plan-cta { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 26px; padding: 14px 18px; border-radius: 9px; font-weight: 600; font-size: 15px; transition: filter .18s ease, transform .18s ease; }
.plan-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.plan-cta.solid { background: var(--accent); color: var(--accent-fg); border: 1px solid var(--accent); }
.plan-cta.outline { background: transparent; color: var(--text); border: 1px solid var(--border); }

/* ── trust ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.trust-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.trust-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border); color: var(--accent-icon); }
.trust-icon svg { width: 17px; height: 17px; }
.trust-card h3 { margin: 16px 0 0; font-size: 16px; font-weight: 600; }
.trust-card p { margin: 8px 0 0; font-size: 13.8px; line-height: 1.6; color: var(--dim); text-wrap: pretty; }
.trust-card .priv-link { display: inline-block; margin-top: 12px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--link); }

/* ── final cta ── */
.cta-band {
  position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 16px;
  background: var(--cta-bg); color: var(--cta-fg); padding: clamp(36px, 6vw, 68px) clamp(24px, 5vw, 64px);
  background-image: linear-gradient(var(--cta-grid) 1px, transparent 1px), linear-gradient(90deg, var(--cta-grid) 1px, transparent 1px);
  background-size: 34px 34px;
}
.cta-band .inner { max-width: 620px; }
.cta-band .kicker { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; opacity: .7; }
.cta-band h2 { margin: 16px 0 0; font-size: clamp(27px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; text-wrap: pretty; }
.cta-band p { margin: 16px 0 0; font-size: 16px; line-height: 1.62; opacity: .78; text-wrap: pretty; }
.cta-band .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-band .btn-white { display: inline-flex; align-items: center; gap: 10px; background: var(--cta-btn-bg); color: var(--cta-btn-fg); padding: 15px 26px; border-radius: 9px; font-weight: 600; font-size: 15px; transition: transform .18s ease; }
.cta-band .btn-white:hover { transform: translateY(-1px); color: var(--cta-btn-fg); }
.cta-band .btn-ghost { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--cta-border); color: var(--cta-fg); padding: 15px 24px; border-radius: 9px; font-weight: 600; font-size: 15px; transition: background .18s ease; }
.cta-band .btn-ghost:hover { background: var(--cta-grid); color: var(--cta-fg); }

/* ── partners ── */

/* ── footer ── */
footer.site-foot { background: var(--surface-2); }
.foot-cols { max-width: 1280px; margin: 0 auto; padding: clamp(44px, 6vw, 68px) clamp(16px, 3vw, 32px) 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 36px; }
.foot-brand { display: flex; align-items: center; gap: 11px; }
.foot-mark { width: 34px; height: 34px; display: grid; place-items: center; flex: none; }
.foot-mark img { width: 100%; height: 100%; object-fit: contain; }
.foot-blurb { margin: 16px 0 0; font-size: 13.6px; line-height: 1.62; color: var(--dim); max-width: 30ch; }
.foot-col-h { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .18em; color: var(--dim); }
.foot-links { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; font-size: 14px; }
.foot-bottom { max-width: 1280px; margin: 0 auto; padding: 20px clamp(16px, 3vw, 32px) 22px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.foot-bottom span { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: var(--dim); }
.foot-status { display: inline-flex; align-items: center; gap: 8px; }
.foot-attribution {
  max-width: 1280px; margin: 0 auto; padding: 18px clamp(16px, 3vw, 32px) 30px; border-top: 1px solid var(--border-soft);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: start; gap: 20px 56px;
}
.attribution-link { display: flex; align-items: flex-start; gap: 12px; min-width: 0; transition: opacity .18s ease; }
.attribution-link:hover { opacity: .82; }
.attribution-logo { height: 30px; width: auto; flex: none; margin-top: 1px; }
.attribution-text { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; min-width: 0; }
.attribution-name { font-size: 13px; font-weight: 700; color: var(--text); }
.attribution-desc { font-size: 11.5px; line-height: 1.55; color: var(--dim); max-width: 52ch; }

/* ── reveal-on-scroll ── */
[data-reveal] { opacity: 0; transform: translateY(18px); }
[data-reveal].revealed { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
