/* Wisky — marketing site
 * Theme port: izoiptvapp.com — amber on near-black, Inter.
 * Tokens mirror portal/public/app.css.
 */

:root {
  --bg:            #050507;
  --bg-elev:       #0b0b10;
  --bg-card:       #121220;
  --bg-inline:     #1a1a28;
  --border:        rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text:          #ececf4;
  --text-mute:     #c7c7d2;
  --text-dim:      #9090a0;

  --accent:        #d4a76a;
  --accent-hi:     #e2b87a;
  --accent-deep:   #8a6a3c;
  --accent-soft:   rgba(212, 167, 106, 0.12);
  --accent-mid:    rgba(212, 167, 106, 0.22);
  --accent-glow:   rgba(212, 167, 106, 0.35);
  --accent-line:   rgba(212, 167, 106, 0.28);

  --success:       #6fe39a;
  --warn:          #e9c46a;
  --err:           #f07167;

  --font-sans: 'Inter var', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 22px;

  --shadow-sm: 0 2px 8px -2px rgba(0,0,0,0.45);
  --shadow-md: 0 12px 28px -12px rgba(0,0,0,0.55), 0 4px 12px -4px rgba(212,167,106,0.08);
  --shadow-lg: 0 28px 60px -24px rgba(0,0,0,0.65), 0 8px 20px -8px rgba(212,167,106,0.14);
  --shadow-glow: 0 0 0 1px rgba(212,167,106,0.30), 0 12px 40px -8px var(--accent-glow);

  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@supports (font-variation-settings: normal) {
  :root { --font-sans: 'Inter var', 'Inter', system-ui, sans-serif; }
}

* { box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100dvh;
}
/* Warm amber atmospheric glow — same as izoiptvapp.com hero. */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 35% at 20% -5%, rgba(212, 167, 106, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 25% at 90% 0%, rgba(212, 167, 106, 0.04), transparent 60%);
}
body > * { position: relative; z-index: 1; }
/* Subtle film grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: var(--noise);
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--bg); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); letter-spacing: -0.034em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); letter-spacing: -0.024em; }
h3 { font-size: 1.25rem; letter-spacing: -0.016em; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 4px 10px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: var(--accent-soft);
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-mute);
  max-width: 62ch;
  line-height: 1.6;
  font-weight: 400;
}

.mono { font-family: var(--font-mono); font-feature-settings: 'tnum', 'zero'; }
.tabnum { font-variant-numeric: tabular-nums; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(120%);
  background: rgba(5, 5, 7, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--text); }
/* IZO mark — 8px amber dot inside soft amber ring */
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 9px, var(--accent-soft) 10px 13px, transparent 14px);
  position: relative;
  box-shadow: 0 0 0 1px var(--accent-line) inset, 0 6px 20px -6px var(--accent-glow);
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--text-mute);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--accent); color: #17120a !important;
  padding: 9px 18px; border-radius: 999px;
  font-weight: 500; font-size: .9rem;
  box-shadow: 0 8px 20px -8px var(--accent-glow);
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--accent-hi); color: #17120a !important; transform: translateY(-1px); box-shadow: 0 12px 28px -10px var(--accent-glow); }
.nav-cta::after { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; font-size: 1.3rem; }
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg-elev); border-bottom: 1px solid var(--border);
    padding: 18px 28px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, var(--accent-mid) 0%, transparent 58%);
  pointer-events: none;
  filter: blur(20px);
}
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 30%, var(--border-strong) 70%, transparent 100%);
}

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 { margin-bottom: 26px; }
.hero-accent { color: var(--accent); font-style: italic; font-weight: 500; }
.hero .lead { margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 28px;
  display: flex; gap: 24px; flex-wrap: wrap;
  color: var(--text-dim);
  font-size: .82rem;
  font-family: var(--font-mono);
}
.hero-meta span strong { color: var(--text); font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .18s ease;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: #17120a;
  box-shadow: 0 12px 28px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover { background: var(--accent-hi); color: #17120a; transform: translateY(-1px); box-shadow: 0 16px 34px -12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--accent-line); background: var(--bg-elev); color: var(--accent); }
.btn-link { color: var(--text-mute); font-weight: 500; background: transparent; padding: 12px 0; }
.btn-link:hover { color: var(--accent); }

/* ---------- Terminal mock ---------- */
.terminal {
  background: #08080d;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: .84rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.terminal::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,167,106,0.22), transparent 50%);
  z-index: -1;
  padding: 1px;
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: var(--err); }
.terminal-dot:nth-child(2) { background: var(--warn); }
.terminal-dot:nth-child(3) { background: var(--success); }
.terminal-title { margin-left: 10px; color: var(--text-dim); font-size: .72rem; font-weight: 500; }
.terminal-body { padding: 20px 22px; line-height: 1.75; }
.term-line { display: block; }
.term-prompt { color: var(--accent); }
.term-cmd { color: var(--text); }
.term-out { color: var(--text-mute); }
.term-ok { color: var(--success); }
.term-num { color: var(--accent-hi); }

/* ---------- Section ---------- */
.section { padding: 100px 0 88px; position: relative; }
.section-sm { padding: 72px 0 64px; }
.section-head { margin-bottom: 56px; max-width: 820px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .lead { margin-top: 14px; }
.section-head.centered .lead { margin-left: auto; margin-right: auto; }

/* ---------- Stats inline ---------- */
.stats-inline {
  display: flex; flex-wrap: wrap; gap: 0;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-inline {
  flex: 1;
  min-width: 180px;
  padding: 0 28px;
  position: relative;
}
.stat-inline + .stat-inline::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px; background: var(--border);
}
.stat-inline .num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-inline .lbl {
  margin-top: 8px;
  color: var(--text-mute);
  font-size: .82rem;
}

/* ---------- Pillars (asymmetric) ---------- */
.pillars-asym {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  margin-top: 20px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .22s ease, box-shadow .22s ease;
}
.pillar:hover { border-color: var(--accent-line); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pillar-primary {
  grid-row: span 2;
  background:
    radial-gradient(ellipse at top left, rgba(212,167,106,0.10) 0%, transparent 55%),
    var(--bg-card);
  min-height: 440px;
}
.pillar-num {
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: .78rem;
  letter-spacing: .1em;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.pillar-num::before { content: ''; width: 14px; height: 1px; background: var(--accent); }
.pillar h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pillar-primary h3 { font-size: 1.65rem; }
.pillar p { color: var(--text-mute); margin: 0 0 24px; max-width: 54ch; }
.pillar-link {
  color: var(--accent);
  font-weight: 500;
  font-size: .9rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease, color .2s ease;
}
.pillar-link:hover { gap: 10px; color: var(--accent-hi); }
@media (max-width: 900px) {
  .pillars-asym { grid-template-columns: 1fr; }
  .pillar-primary { grid-row: auto; min-height: auto; }
}

/* Small technical details inside pillar */
.pillar-tech {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pillar-tech code {
  background: var(--bg-inline);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .76rem;
  font-family: var(--font-mono);
  color: var(--text-mute);
}

/* ---------- Spec grid ---------- */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
@media (max-width: 760px) { .specs { grid-template-columns: 1fr; } }
.spec {
  padding: 32px 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .2s ease;
}
.spec:hover { background: rgba(212,167,106,0.03); }
.spec-tag {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.spec h4 { margin-bottom: 10px; font-size: 1.1rem; font-weight: 500; letter-spacing: -0.015em; }
.spec p { color: var(--text-mute); margin: 0; font-size: .94rem; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at top, var(--accent-mid) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-mute); max-width: 56ch; margin: 0 auto 30px; }
.cta-band .btn-primary { padding: 14px 28px; font-size: 1rem; }

/* ---------- Data table ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th, .data-table td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
}
.data-table th {
  font-weight: 500; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-dim);
  background: rgba(0,0,0,0.25);
  padding-top: 12px; padding-bottom: 12px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(212,167,106,0.03); }

.badge {
  display: inline-flex; align-items: center;
  padding: 2px 9px; border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .04em;
}
.badge-ok { background: rgba(111, 227, 154, 0.12); color: var(--success); }
.badge-beta { background: rgba(233, 196, 106, 0.12); color: var(--warn); }
.badge-dim { background: rgba(144, 144, 160, 0.10); color: var(--text-dim); }

/* ---------- Fieldset list ---------- */
.spec-list {
  list-style: none; padding: 0; margin: 24px 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.spec-list li {
  padding: 18px 0 18px 44px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text-mute);
  font-size: .96rem;
  line-height: 1.55;
}
.spec-list li::before {
  content: counter(spec-item, decimal-leading-zero);
  counter-increment: spec-item;
  position: absolute; left: 0; top: 19px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .08em;
}
.spec-list { counter-reset: spec-item; }
.spec-list li strong { color: var(--text); font-weight: 500; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 7px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: all .15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-row-block { display: block; }
.form-foot { font-size: .8rem; color: var(--text-dim); margin: 14px 0 0; text-align: center; }

.contact-direct {
  margin-top: 36px;
  padding: 22px 26px;
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
}
.contact-direct .label {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-direct .email { font-family: var(--font-mono); color: var(--accent); font-size: 1.02rem; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  margin-top: 120px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-about p { color: var(--text-mute); margin: 16px 0 0; font-size: .92rem; max-width: 38ch; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-mute); font-size: .92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  color: var(--text-dim); font-size: .82rem;
  font-family: var(--font-mono);
}
.footer-bottom .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-bottom .pulse::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(111, 227, 154, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 227, 154, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(111, 227, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 227, 154, 0); }
}

/* ---------- Legal doc pages ---------- */
.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 28px 96px;
}
.legal-doc h1 { font-size: 2.25rem; margin-bottom: 12px; }
.legal-doc .meta {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: .84rem;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-doc h2 {
  margin-top: 52px; margin-bottom: 18px;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.legal-doc h3 { margin-top: 32px; margin-bottom: 10px; font-size: 1.05rem; color: var(--text); }
.legal-doc p, .legal-doc li { color: var(--text-mute); margin-bottom: 14px; line-height: 1.7; }
.legal-doc ul, .legal-doc ol { padding-left: 22px; margin-bottom: 20px; }
.legal-doc li { margin-bottom: 10px; }
.legal-doc strong { color: var(--text); font-weight: 500; }
.legal-doc code {
  background: var(--bg-inline);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .88em;
  font-family: var(--font-mono);
  color: var(--text);
}
.legal-doc a { color: var(--accent); }
.legal-doc a:hover { color: var(--accent-hi); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.center-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
