/* =========================================================
   DiwaTop Game — shared stylesheet
   Theme: single dark gaming theme
   Accent (locked): emerald #2ee6a0  ·  Telegram blue only on TG buttons
   Radius system: buttons = pill, cards = 16px, inputs = 10px
   ========================================================= */

:root {
  --bg:        #0a0d16;
  --bg-2:      #0e1220;
  --surface:   #121826;
  --surface-2: #171f31;
  --line:      #232c42;
  --line-soft: #1b2336;

  --text:      #e7ecf7;
  --text-mid:  #b3bdd2;
  --text-dim:  #8390a9;

  --accent:      #2ee6a0;
  --accent-deep: #17c489;
  --accent-ink:  #04140d;   /* text on accent */
  --accent-glow: rgba(46, 230, 160, 0.18);

  --tg:      #229ed9;       /* Telegram — semantic only */
  --tg-deep: #1b86ba;

  --warn: #ffcf5c;          /* 18+ / caution accents, used sparingly */

  --radius-card: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 10px 30px -18px rgba(0, 0, 0, 0.65);

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.section { padding-block: clamp(56px, 9vw, 104px); position: relative; }
.section-tight { padding-block: clamp(40px, 6vw, 64px); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.h-lead { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.lead-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 60ch; margin-top: 16px; }

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.985); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 30px -12px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-primary:hover { background: #4cf0b1; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-tg {
  background: var(--tg);
  color: #fff;
  box-shadow: 0 10px 30px -14px rgba(34, 158, 217, 0.6);
}
.btn-tg:hover { background: var(--tg-deep); transform: translateY(-2px); }

.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.icon { width: 20px; height: 20px; flex: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 22, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 58px; width: auto; display: block; border-radius: 11px; }
.site-footer .brand-logo { height: 72px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, 0.04); }

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px; height: 42px;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

/* ---------- Age badge ---------- */
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--warn);
  border: 1px solid rgba(255, 207, 92, 0.32);
  background: rgba(255, 207, 92, 0.07);
  padding: 5px 12px;
  border-radius: 999px;
}
.age-badge b { color: var(--warn); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px, 7vw, 88px); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 12%, rgba(46, 230, 160, 0.16), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(34, 158, 217, 0.10), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}
.hero h1 .accent { display: inline; }
.hero-sub { color: var(--text-mid); font-size: clamp(1rem, 1.6vw, 1.16rem); margin-top: 20px; max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 26px; color: var(--text-dim); font-size: 0.9rem; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }

/* Device / app preview */
.hero-visual { position: relative; }
.device {
  position: relative;
  width: min(300px, 78vw);
  margin-inline: auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(160deg, #1c2438, #0c1120);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
.device-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(46, 230, 160, 0.22), transparent 55%),
    linear-gradient(180deg, #0f1626, #0a0f1c);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 14px;
}
.ds-top { display: flex; align-items: center; justify-content: space-between; color: var(--text-dim); font-size: 0.7rem; font-family: var(--font-display); }
.ds-hero { text-align: center; margin-top: 6px; }
.ds-logo { width: 54px; height: 54px; margin: 0 auto 10px; }
.ds-hero h3 { font-size: 1.1rem; }
.ds-hero span { color: var(--text-dim); font-size: 0.74rem; }
.ds-bonus {
  margin: 4px auto 0;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-glow); color: var(--accent);
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  padding: 5px 12px; border-radius: 999px;
}
.ds-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.ds-tile { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-soft); border-radius: 12px; height: 46px; display: grid; place-items: center; }
.ds-tile svg { width: 22px; height: 22px; color: var(--accent); opacity: 0.85; }
.ds-cta { background: var(--accent); color: var(--accent-ink); text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; padding: 11px; border-radius: 999px; }

.device-badge {
  position: absolute;
  padding: 9px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 0.76rem;
  display: flex; align-items: center; gap: 8px;
}
.device-badge b { font-size: 0.9rem; }
.device-badge svg { width: 18px; height: 18px; color: var(--accent); }
.db-1 { top: 12%; left: -34px; }
.db-2 { bottom: 16%; right: -30px; }

/* ---------- Spec / stat tiles ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.spec {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.spec:hover { border-color: var(--line); transform: translateY(-3px); }
.spec .k { color: var(--text-dim); font-size: 0.74rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; }
.spec .v { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin-top: 8px; letter-spacing: -0.02em; }
.spec.is-accent { background: linear-gradient(160deg, rgba(46, 230, 160, 0.14), rgba(46, 230, 160, 0.03)); border-color: rgba(46, 230, 160, 0.28); }
.spec.is-accent .v { color: var(--accent); }

/* ---------- Section head ---------- */
.sec-head { max-width: 62ch; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.sec-head p { color: var(--text-mid); margin-top: 14px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- Feature bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: 26px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-4px); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-glow); color: var(--accent);
  margin-bottom: 18px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--text-mid); margin-top: 10px; font-size: 0.96rem; }

.bento .span-2 { grid-column: span 2; }
.card-feature {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 220px;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(46, 230, 160, 0.16), transparent 55%),
    var(--surface);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.step:nth-last-child(-n+2) { border-bottom: none; }
.step .n {
  flex: none;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  background: var(--surface-2); color: var(--accent);
  border: 1px solid var(--line);
}
.step h4 { font-size: 1.02rem; }
.step p { color: var(--text-mid); font-size: 0.92rem; margin-top: 5px; }

/* ---------- What's new / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-mid); }
.checklist svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.checklist b { color: var(--text); font-weight: 600; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 34px);
}
.panel h3 { font-size: 1.3rem; margin-bottom: 18px; }

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-item { display: flex; gap: 14px; padding: 20px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-card); }
.trust-item .ico { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-glow); color: var(--accent); }
.trust-item .ico svg { width: 22px; height: 22px; }
.trust-item h4 { font-size: 1.02rem; }
.trust-item p { color: var(--text-mid); font-size: 0.92rem; margin-top: 5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-card); overflow: hidden; transition: border-color 0.25s; }
.faq-item[open] { border-color: var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex: none; width: 24px; height: 24px; position: relative; transition: transform 0.3s var(--ease); color: var(--accent); }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item .a { padding: 0 22px 22px; color: var(--text-mid); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #10182a, #0b1020);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(34px, 5vw, 60px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(46, 230, 160, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta-band p { color: var(--text-mid); margin: 14px auto 0; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

/* ---------- Article (About / Disclaimer / Download prose) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 88px) clamp(20px, 3vw, 32px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 80% 0%, rgba(46, 230, 160, 0.12), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 20ch; }
.page-hero p { color: var(--text-mid); margin-top: 16px; max-width: 62ch; font-size: 1.06rem; }
.crumbs { color: var(--text-dim); font-size: 0.86rem; margin-bottom: 18px; font-family: var(--font-display); }
.crumbs a:hover { color: var(--accent); }

.prose { max-width: none; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 48px; margin-bottom: 14px; }
.prose h3 { font-size: 1.24rem; margin-top: 30px; margin-bottom: 10px; }
.prose p { color: var(--text-mid); margin-top: 14px; }
.prose ul { color: var(--text-mid); margin-top: 14px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { display: flex; gap: 11px; align-items: flex-start; }
.prose ul li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 10px; }
.prose a.inline { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Data table (used on Download page) */
.tbl-wrap { overflow-x: auto; margin-top: 22px; border: 1px solid var(--line-soft); border-radius: var(--radius-card); }
table.data { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 0.95rem; }
table.data th, table.data td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); }
table.data thead th { font-family: var(--font-display); color: var(--text); background: var(--surface); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.06em; }
table.data td { color: var(--text-mid); }
table.data tr:last-child td { border-bottom: none; }
table.data tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* ---------- Callout / disclaimer note ---------- */
.note {
  display: flex; gap: 14px;
  background: rgba(255, 207, 92, 0.06);
  border: 1px solid rgba(255, 207, 92, 0.24);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  margin-top: 26px;
}
.note svg { width: 22px; height: 22px; color: var(--warn); flex: none; margin-top: 2px; }
.note p { color: var(--text-mid); font-size: 0.94rem; }
.note b { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding-block: 56px 30px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot-about { max-width: 34ch; }
.foot-about p { color: var(--text-dim); font-size: 0.9rem; margin-top: 14px; }
.foot-col h4 { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text-mid); font-size: 0.93rem; padding: 5px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--accent); }
.foot-socials { display: flex; gap: 10px; margin-top: 18px; }
.foot-socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-mid); transition: all 0.2s; }
.foot-socials a:hover { color: var(--accent); border-color: var(--accent); }
.foot-socials svg { width: 19px; height: 19px; }
.foot-bottom { border-top: 1px solid var(--line-soft); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; color: var(--text-dim); font-size: 0.84rem; }
.foot-bottom .age-badge { font-size: 0.74rem; }

/* ---------- Hero background images ---------- */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}
.page-hero .hero-bg { opacity: 0.16; }
/* keep hero copy above the imagery + a readable scrim */
.hero::before, .page-hero::before { z-index: 1; }
.hero .wrap, .page-hero .wrap { position: relative; z-index: 2; }

/* ---------- Showcase image figures (content slots) ---------- */
.shot {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  transition: transform 0.6s var(--ease);
}
.shot:hover img { transform: scale(1.03); }
.shot.tall img { aspect-ratio: 16 / 10; }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  border-radius: inherit;
}
.section-shot { padding-block: clamp(8px, 2vw, 20px); }
.prose .shot { margin-top: 28px; }
@media (max-width: 720px) {
  .shot img { aspect-ratio: 16 / 10; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav panel ---------- */
.mobile-menu { display: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { margin-top: 12px; }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .spec:nth-child(4), .spec:nth-child(5) { grid-column: span 1; }
  .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .hero h1 { font-size: clamp(1.85rem, 8.2vw, 2.4rem); letter-spacing: -0.03em; }
  .hero-actions .btn { flex: 1 1 auto; }
  .device { width: min(250px, 68vw); }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    display: block;
    position: fixed; inset: 80px 0 auto 0; z-index: 49;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: 13px 6px; font-family: var(--font-display); font-weight: 500; color: var(--text-mid); border-bottom: 1px solid var(--line-soft); }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu .btn { margin-top: 16px; width: 100%; }

  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(5) { grid-column: 1 / -1; }
  .bento, .trust-grid { grid-template-columns: 1fr; }
  .bento .span-2 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .step:last-child { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .device-badge { display: none; }
}

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