/* ================================================================
   Kuziu Client — style.css
   ================================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0c10;
  --bg-alt:    #0d1016;
  --surface:   #12161e;
  --surface-2: #171c26;
  --line:      #232a36;
  --line-soft: #1b212b;

  --text:      #e8ecf3;
  --text-dim:  #98a2b3;
  --text-mut:  #6b7686;

  --acc:       #4ade80;
  --acc-2:     #22d3ee;
  --acc-dim:   #16351f;
  --danger:    #f87171;

  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 18px 50px -18px rgba(0, 0, 0, .8);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;

  --wrap: 1160px;
}

html[data-theme="light"] {
  --bg:        #f6f7f9;
  --bg-alt:    #eef0f4;
  --surface:   #ffffff;
  --surface-2: #f2f4f8;
  --line:      #dde1e9;
  --line-soft: #e7eaf0;

  --text:      #10141c;
  --text-dim:  #4d5666;
  --text-mut:  #79839a;

  --acc:       #16a34a;
  --acc-2:     #0891b2;
  --acc-dim:   #dcfce7;

  --shadow:    0 18px 44px -22px rgba(16, 24, 40, .35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

code, kbd {
  font-family: var(--mono);
  font-size: .875em;
}
code {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  padding: .1em .4em;
  color: var(--acc);
}
kbd {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: .12em .45em;
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.muted { color: var(--text-mut); font-size: .875rem; }

/* ---------- Background grid ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .5;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }

.brand-cube {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(140deg, var(--acc), var(--acc-2));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--acc) 40%, transparent),
              0 6px 18px -6px var(--acc);
  position: relative;
}
.brand-cube::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background: var(--bg);
  opacity: .65;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.06rem;
}
.brand-name span { color: var(--acc); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-right: auto;
}
.nav-links a {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.is-active { color: var(--acc); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  transition: color .18s, border-color .18s;
}
.icon-btn:hover { color: var(--acc); border-color: var(--acc); }

.burger {
  display: none;
  width: 36px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 9px;
  width: 16px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s, opacity .18s;
}
.burger span:nth-child(1) { top: 11px; }
.burger span:nth-child(2) { top: 16px; }
.burger span:nth-child(3) { top: 21px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ================================================================
   Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 7px 15px; font-size: .875rem; }
.btn-lg { padding: 13px 26px; font-size: 1rem; }

.btn-primary {
  background: var(--acc);
  color: #05140a;
  box-shadow: 0 10px 26px -12px var(--acc);
}
.btn-primary:hover {
  box-shadow: 0 14px 32px -10px var(--acc);
  filter: brightness(1.06);
}
html[data-theme="light"] .btn-primary { color: #fff; }

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--acc); color: var(--acc); }

.btn-ico { font-size: 1.05em; line-height: 1; }

/* ================================================================
   HERO
   ================================================================ */
.hero { padding: 80px 0 96px; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc) 18%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  margin-bottom: 22px;
}
.grad {
  background: linear-gradient(100deg, var(--acc), var(--acc-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.06rem;
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.hero-stats span { font-size: .82rem; color: var(--text-mut); }

/* ---------- Mock ClickGUI ---------- */
.hero-visual { perspective: 1400px; }

.gui {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-9deg) rotateX(4deg);
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.gui:hover { transform: rotateY(-3deg) rotateX(1deg); }

.gui-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.gui-dots { display: flex; gap: 5px; }
.gui-dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
}
.gui-dots i:first-child { background: var(--danger); opacity: .7; }
.gui-title {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-mut);
  letter-spacing: .02em;
}

.gui-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}
.gui-cat-name {
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mut);
  margin-bottom: 8px;
  padding-left: 2px;
}

.gmod {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 9px;
  margin-bottom: 5px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  font-size: .74rem;
  font-weight: 500;
  color: var(--text-mut);
  transition: color .2s, border-color .2s;
}
.gmod i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
}
.gmod.on {
  color: var(--text);
  border-color: color-mix(in srgb, var(--acc) 45%, transparent);
  background: color-mix(in srgb, var(--acc) 9%, var(--bg-alt));
}
.gmod.on i {
  background: var(--acc);
  box-shadow: 0 0 8px var(--acc);
}

.gui-foot {
  display: flex;
  gap: 16px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--text-mut);
}
.gui-foot .ver { margin-left: auto; color: var(--acc); }

/* ================================================================
   Sections
   ================================================================ */
.section { padding: 92px 0; }
.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line-soft);
}

.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--acc);
  margin-bottom: 12px;
}

.h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  margin-bottom: 42px;
  max-width: 20ch;
}

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--acc) 45%, var(--line));
}
.card-ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--acc-dim);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: .93rem; }

/* ---------- Filter chips ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.chip {
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: inherit;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .18s, border-color .18s, background .18s;
}
.chip:hover { color: var(--text); }
.chip.is-active {
  background: var(--acc);
  border-color: var(--acc);
  color: #05140a;
}
html[data-theme="light"] .chip.is-active { color: #fff; }

/* ---------- Module grid ---------- */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
  align-items: start;
}

.mod-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .18s, transform .18s;
}
.mod-item:hover {
  border-color: color-mix(in srgb, var(--acc) 50%, var(--line));
  transform: translateY(-2px);
}

.mod-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.mod-tag {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.mod-tag[data-cat="combat"]   { background: #f87171; }
.mod-tag[data-cat="movement"] { background: #60a5fa; }
.mod-tag[data-cat="render"]   { background: #c084fc; }
.mod-tag[data-cat="world"]    { background: #34d399; }

.mod-item-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.mod-item-cat {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .64rem;
  color: var(--text-mut);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mod-item-desc {
  font-size: .88rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.mod-item-opts-label {
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-mut);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 9px;
}
.mod-item-opts-label.is-empty { margin-bottom: 0; }

.mod-item-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.mod-item-opts li {
  padding: 3px 9px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.mod-note {
  margin-top: 24px;
  font-size: .85rem;
  color: var(--text-mut);
}

/* ---------- Download cards ---------- */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.dl-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .2s, transform .2s;
}
.dl-card:hover {
  border-color: color-mix(in srgb, var(--acc) 45%, var(--line));
  transform: translateY(-3px);
}
.dl-card.is-latest {
  border-color: color-mix(in srgb, var(--acc) 55%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--acc) 22%, transparent);
}

.dl-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.dl-ver { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }

.badge {
  padding: 2px 9px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.badge-latest { background: var(--acc); color: #05140a; }
.badge-loader {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
  margin-left: auto;
}
html[data-theme="light"] .badge-latest { color: #fff; }

.dl-sub {
  font-size: .85rem;
  color: var(--text-mut);
  margin-bottom: 16px;
}

.dl-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 12px 0;
  border-block: 1px solid var(--line-soft);
  margin-bottom: 16px;
  font-size: .8rem;
  color: var(--text-dim);
}
.dl-specs b {
  color: var(--text);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.dl-hash {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.dl-hash code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .7rem;
  color: var(--text-mut);
  background: var(--bg-alt);
}
.copy-btn {
  flex-shrink: 0;
  padding: 5px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text-dim);
  font-family: inherit;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .18s, border-color .18s;
}
.copy-btn:hover { color: var(--acc); border-color: var(--acc); }

.dl-card .btn { margin-top: auto; width: 100%; }

.dl-meta {
  margin-top: 26px;
  font-size: .85rem;
  color: var(--text-mut);
  max-width: 62ch;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 46px;
  counter-reset: step;
}
.steps li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.step-n {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--acc-dim);
  color: var(--acc);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.steps h3 { font-size: .98rem; margin-bottom: 7px; }
.steps p { font-size: .88rem; color: var(--text-dim); }

.req {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  max-width: 560px;
}
.req h3 { font-size: 1rem; margin-bottom: 14px; }
.req li {
  display: flex;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .88rem;
  color: var(--text-dim);
}
.req li:last-child { border-bottom: 0; padding-bottom: 0; }
.req li span {
  flex-shrink: 0;
  width: 74px;
  font-family: var(--mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-mut);
  padding-top: 2px;
}

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: color-mix(in srgb, var(--acc) 45%, var(--line)); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--acc);
  transition: transform .22s;
}
.faq details[open] summary::after { transform: rotate(45deg); }

.faq details > div {
  padding: 0 20px 18px;
  color: var(--text-dim);
  font-size: .92rem;
}

/* ---------- CTA ---------- */
.cta {
  padding: 88px 0;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse 55% 100% at 50% 100%,
      color-mix(in srgb, var(--acc) 12%, transparent), transparent 70%);
}
.cta-inner { text-align: center; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta p { color: var(--text-dim); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 44px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand .brand-name { font-size: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: .88rem;
  color: var(--text-dim);
  transition: color .18s;
}
.footer-links a:hover { color: var(--acc); }

.disclaimer {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
}
.disclaimer p:first-child {
  max-width: 68ch;
  font-size: .8rem;
  color: var(--text-mut);
  line-height: 1.6;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  z-index: 100;
  padding: 11px 20px;
  background: var(--surface);
  border: 1px solid var(--acc);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: .88rem;
  font-weight: 500;
  max-width: calc(100vw - 40px);
  text-align: center;
  opacity: 0;
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), opacity .3s;
  pointer-events: none;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .gui { transform: none; }
  .h2 { max-width: none; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 2px;
    padding: 12px 24px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 12px; font-size: .95rem; }

  .burger { display: block; }
  .nav-actions .btn-sm { display: none; }

  .hero { padding: 52px 0 68px; }
  .section { padding: 66px 0; }
  .hero-stats { gap: 26px; }
  .hero-stats strong { font-size: 1.4rem; }
  .hero-cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
