:root {
  --bg: #0c0c0e;
  --bg-2: #141416;
  --ink: #f4efe4;
  --muted: #c4bdb0;
  --gold: #d4af37;
  --gold-2: #efd389;
  --line: rgba(239, 211, 137, 0.42);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --rail: 1.55rem;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --brand: "Cinzel", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: calc(5.4rem + var(--safe-bottom));
}
img { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 80;
  background: var(--gold); color: #111; padding: 0.7rem 1rem; font-weight: 700;
}
.skip-link:focus { top: calc(var(--safe-top) + var(--rail) + 0.6rem); }
.wrap { width: min(1100px, calc(100% - 2rem)); margin-inline: auto; }

.rail {
  position: fixed; inset: 0 0 auto; z-index: 41;
  display: flex; justify-content: center; align-items: center; gap: 1.25rem;
  height: calc(var(--rail) + var(--safe-top));
  padding: var(--safe-top) 1rem 0;
  background: linear-gradient(180deg, #0c0a06, #080808);
  border-bottom: 1px solid var(--line);
  color: var(--gold-2);
  font-family: var(--brand);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.rail span + span::before { content: "กค"; margin-right: 1.25rem; opacity: 0.7; }
.rail span:nth-child(n + 3) { display: none; }

.site-header {
  position: fixed;
  top: calc(var(--rail) + var(--safe-top));
  left: 0; right: 0; z-index: 40;
  padding-top: 0.5rem;
}
.header-inner {
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
  min-height: 3.15rem;
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.3rem 0.45rem 0.3rem 0.7rem;
  background: rgba(10, 10, 12, 0.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-mark {
  width: 2rem; height: 2rem; display: grid; place-items: center;
  border: 1px solid #f3e2a0;
  background: linear-gradient(180deg, #f6e7b4, #c9a227);
  color: #171208;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 0 16px rgba(212,175,55,.35);
  font-family: var(--brand); font-size: 0.58rem; letter-spacing: 0.08em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--brand); font-weight: 600; letter-spacing: 0.2em; font-size: 0.7rem; }
.brand-sub { font-family: var(--brand); font-size: 0.52rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-2); }

.nav-desktop {
  display: none; gap: 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.nav-desktop a { position: relative; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.32rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav-desktop a:hover { color: var(--gold-2); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.7rem; padding: 0.7rem 1.15rem;
  font-weight: 600; letter-spacing: 0.08em;
}
.btn-header {
  display: inline-flex; min-height: 2.4rem;
  border: 1px solid #f6e7b4;
  color: #171208;
  padding-inline: 0.9rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: linear-gradient(180deg, #fff1b8 0%, #e4c14a 45%, #b8891e 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 8px 22px rgba(212,175,55,.38);
}
.btn-gold {
  background: linear-gradient(180deg, #fff1b8, #e4c14a 48%, #b8891e);
  color: #17120a;
  border: 1px solid #f6e7b4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 12px 32px rgba(212,175,55,.4);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.btn-xl { min-height: 3.3rem; padding: 0.9rem 1.4rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.btn-block { width: 100%; }
.icon { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.btn-shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255,255,255,.45) 50%, transparent 68%);
  transform: translateX(-120%);
  animation: shine 3.8s ease-in-out 4.2s infinite;
  pointer-events: none;
}

.menu-toggle {
  width: 2.5rem; height: 2.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid var(--line);
}
.menu-toggle span { width: 1rem; height: 1.5px; background: var(--ink); }
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.menu-panel {
  position: fixed; z-index: 50;
  top: calc(var(--rail) + var(--safe-top) + 4.1rem);
  left: 0.7rem; right: 0.7rem; padding: 1.2rem;
  background: rgba(12,12,14,.97); border: 1px solid var(--line);
}
.menu-kicker { margin: 0 0 0.85rem; color: var(--gold-2); font-family: var(--brand); font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; }
.menu-links a {
  min-height: 2.9rem; display: flex; align-items: center;
  letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--line);
}
.menu-backdrop { position: fixed; inset: 0; z-index: 45; background: rgba(0,0,0,.5); }

.hero {
  position: relative; min-height: 100dvh; overflow: hidden;
  display: grid; align-items: end;
  padding: calc(var(--rail) + 4.4rem + var(--safe-top)) 1.1rem 2rem;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% 48%;
  filter: brightness(1.02) contrast(1.06) saturate(1.02);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 78%, rgba(212,175,55,.22), transparent 42%),
    linear-gradient(180deg, rgba(8,8,10,.38) 0%, rgba(8,8,10,.06) 22%, rgba(8,8,10,.1) 52%, rgba(8,8,10,.68) 100%),
    linear-gradient(90deg, rgba(8,8,10,.58) 0%, rgba(8,8,10,.2) 42%, transparent 70%);
}
.hero-frame { display: none; }
.hero-copy { position: relative; z-index: 2; width: min(36rem, 100%); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0 0 0.6rem; color: var(--gold-2);
  font-family: var(--brand); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.dot { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.18); }
h1, h2, h3 { font-family: var(--display); margin: 0; font-weight: 500; line-height: 0.92; }
h1 { font-size: clamp(3rem, 12vw, 5.6rem); letter-spacing: -0.03em; }
h1 em {
  display: block;
  font-style: italic;
  background: linear-gradient(180deg, #f8ecc0, #c8a24a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { margin: 0.9rem 0 1.25rem; font-size: 1.05rem; color: var(--muted); max-width: 30rem; }
.lead strong { color: var(--ink); font-weight: 600; }
.cred {
  margin: 0.55rem 0 0;
  color: var(--gold-2);
  font-family: var(--brand);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
}
.hero-actions { display: grid; gap: 0.75rem; justify-items: start; max-width: 34rem; }
.cta-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 5rem;
  padding: 0.95rem 1.05rem 0.95rem 0.95rem;
  color: #171208;
  background:
    linear-gradient(180deg, #fff6cc 0%, #f0d56a 16%, #e0b83a 46%, #c4921c 78%, #f4e08a 100%);
  border: 1px solid #ffe9a8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    inset 0 -10px 18px rgba(120,72,8,.22),
    0 0 0 1px rgba(90,60,8,.45),
    0 16px 44px rgba(212,175,55,.42),
    0 0 70px rgba(239,211,137,.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px) scale(0.94);
  animation: luxuryCta 1.4s cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
}
.cta-glow {
  position: absolute; inset: -40% -20%;
  background: radial-gradient(circle, rgba(255,236,160,.55), transparent 62%);
  animation: goldPulse 2.4s ease-in-out 4.2s infinite;
  pointer-events: none;
}
.cta-sparks {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cta-sparks i {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #fff6c8; box-shadow: 0 0 8px #ffe08a;
  animation: spark 2.8s ease-in-out infinite;
}
.cta-sparks i:nth-child(1) { left: 12%; top: 18%; animation-delay: 0s; }
.cta-sparks i:nth-child(2) { left: 78%; top: 22%; animation-delay: .4s; }
.cta-sparks i:nth-child(3) { left: 22%; bottom: 16%; animation-delay: .8s; }
.cta-sparks i:nth-child(4) { left: 88%; bottom: 28%; animation-delay: 1.1s; }
.cta-sparks i:nth-child(5) { left: 54%; top: 10%; animation-delay: 1.5s; }
.cta-wealth {
  position: relative; z-index: 1;
  width: 2.55rem; height: 2.35rem; flex: 0 0 auto;
}
.coin {
  position: absolute; left: 0; top: 0.15rem;
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--brand); font-size: 0.52rem; font-weight: 700; color: #5c430c;
  background: radial-gradient(circle at 32% 28%, #fff8d4, #efd056 40%, #b8891e 78%, #f3e08a 100%);
  box-shadow: inset 0 1px 0 #fff, 0 0 0 1px #8a6414, 0 4px 8px rgba(0,0,0,.28);
  z-index: 2;
}
.ingot {
  position: absolute; right: 0; bottom: 0.05rem;
  width: 1.55rem; height: 0.85rem;
  background: linear-gradient(180deg, #fff1b0, #d4af37 55%, #8e6914);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
  box-shadow: 0 3px 6px rgba(0,0,0,.28);
  z-index: 1;
}
.cta-main.is-ready {
  animation: goldIdle 2.8s ease-in-out infinite;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  filter: none;
}
.cta-main.is-ready:hover {
  animation: none;
  filter: brightness(1.08) saturate(1.08);
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 0 0 1px rgba(90,60,8,.5),
    0 22px 50px rgba(212,175,55,.55),
    0 0 90px rgba(239,211,137,.5);
}
.cta-ico { width: 1.7rem; height: 1.7rem; flex: 0 0 auto; position: relative; z-index: 2; }
.cta-copy { display: flex; flex-direction: column; text-align: left; line-height: 1.05; position: relative; z-index: 2; }
.cta-copy span {
  font-family: var(--brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}
.cta-copy strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta-arrow { width: 1.35rem; height: 1.35rem; margin-left: auto; flex: 0 0 auto; position: relative; z-index: 2; }
.cta-note,
.hero-fine,
.hero-actions .btn-ghost {
  opacity: 0;
  animation: fadeNote 0.9s ease 3.2s forwards;
}
.cta-note {
  margin: 0;
  font-family: var(--brand);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,228,.82);
}
.hero-fine {
  margin: 0.7rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.trust {
  display: grid; grid-template-columns: 1fr; gap: 0.5rem;
  margin: 1.15rem 0 0; padding: 0; list-style: none;
}
.trust li {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(239, 211, 137, 0.55);
  color: var(--gold-2);
  background: rgba(212,175,55,.08);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}

.access, .socials, .criterio, .site-footer { background: var(--bg); position: relative; z-index: 3; }
.access { padding: 3.6rem 0 2rem; border-top: 1px solid var(--line); }
.socials { padding: 1rem 0 4rem; }
.section-head { margin-bottom: 1.7rem; max-width: 38rem; }
.section-head h2 { font-size: clamp(2.2rem, 7vw, 3.5rem); margin: 0.2rem 0 0.65rem; }
.section-head p:last-child { margin: 0; color: var(--muted); }

.step-grid, .social-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.step-grid li, .social-card {
  padding: 1.3rem 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.num, .social-meta, .social-go {
  display: block; color: var(--gold-2);
  font-family: var(--brand); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.step-grid h3, .social-name { font-size: 1.7rem; margin-bottom: 0.4rem; }
.step-grid p, .social-handle { margin: 0; color: var(--muted); }
.social-card { display: grid; min-height: 8.2rem; }
.social-card:hover { border-color: var(--gold); }
.social-go { margin-top: 0.85rem; }

.site-footer { padding: 0 0 calc(1.5rem + var(--safe-bottom)); color: var(--muted); text-align: center; font-size: 0.88rem; }
.footer-inner { border-top: 1px solid var(--line); padding-top: 1.7rem; }
.footer-inner .brand-name { color: var(--gold-2); font-family: var(--brand); letter-spacing: 0.18em; margin-bottom: 0.35rem; }
.footer-inner p { margin: 0 0 0.3rem; }
.legal { opacity: 0.4; font-size: 0.58rem; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  padding: 0.65rem 0.85rem calc(0.65rem + var(--safe-bottom));
  background: linear-gradient(to top, rgba(8,8,10,.96), rgba(8,8,10,.7) 75%, transparent);
  transition: transform .28s ease;
}
.sticky-cta.is-hidden { transform: translateY(120%); pointer-events: none; }
body.menu-open { overflow: hidden; }

@keyframes shine {
  0%, 58% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}
@keyframes luxuryCta {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
    filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 0 0 0 rgba(212,175,55,0);
  }
  48% {
    opacity: 1;
    filter: blur(0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 0 64px 16px rgba(239,211,137,.62);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
    pointer-events: auto;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.8),
      0 16px 44px rgba(212,175,55,.42),
      0 0 70px rgba(239,211,137,.32);
  }
}
@keyframes goldIdle {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 44px rgba(212,175,55,.4), 0 0 54px rgba(239,211,137,.28); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 20px 52px rgba(212,175,55,.55), 0 0 86px rgba(255,228,140,.48); }
}
@keyframes goldPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.06); }
}
@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(.4) translateY(0); }
  40% { opacity: 1; transform: scale(1) translateY(-6px); }
  80% { opacity: 0; transform: scale(.3) translateY(-12px); }
}
@keyframes fadeNote {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.criterio { padding: 2.4rem 0 3rem; border-top: 1px solid var(--line); }
.rule-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.rule-grid li {
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.rule-grid h3 { font-size: 1.45rem; margin: 0 0 0.4rem; }
.rule-grid p { margin: 0; color: var(--muted); }

.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem 0.75rem;
  margin: 0.55rem 0 0.25rem;
  font-size: 0.58rem;
  opacity: 0.42;
  letter-spacing: 0.04em;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-2); opacity: 1; }

.cookie-bar {
  position: fixed; left: 0.7rem; right: 0.7rem; bottom: calc(0.7rem + var(--safe-bottom));
  z-index: 55;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem;
  padding: 0.9rem 1rem;
  background: #101012;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; flex: 1 1 14rem; color: var(--muted); font-size: 0.82rem; }
.cookie-bar a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar .btn { min-height: 2.4rem; padding: 0.4rem 1rem; }
body.has-cookies { padding-bottom: calc(8.2rem + var(--safe-bottom)); }
body.has-cookies .sticky-cta { display: none; }

.legal-page { padding: calc(var(--rail) + 5.6rem) 0 4rem; }
.legal-page .wrap { width: min(760px, calc(100% - 2rem)); }
.legal-page h1 { font-size: clamp(2.2rem, 7vw, 3.4rem); margin: 0 0 0.5rem; }
.legal-page .lead { font-size: 1.15rem; }
.legal-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem;
  margin: 1.3rem 0 2rem; padding: 0; list-style: none;
}
.legal-nav a {
  color: var(--gold-2); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.legal-nav a:hover, .legal-nav a.is-on { border-color: var(--gold); }
.legal-block { margin: 0 0 2.2rem; padding-top: 0.4rem; scroll-margin-top: 6.5rem; }
.legal-block h2 { font-size: 1.7rem; margin: 0 0 0.7rem; }
.legal-block h3 { font-size: 1.05rem; color: var(--gold-2); margin: 1.1rem 0 0.35rem; }
.legal-nav a { color: var(--gold-2); }
.legal-block ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.legal-block li { margin: 0.35rem 0; }
.legal-cta h2 { font-size: 1.7rem; margin: 0.35rem 0 0.5rem; }
.legal-cta p { color: var(--muted); }
.legal-cta .btn { margin-top: 0.4rem; }

@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .rail span:nth-child(n + 3) { display: inline; }
  .nav-desktop { display: inline-flex; }
  .menu-toggle, .sticky-cta { display: none; }
  .hero {
    align-items: center;
    padding: calc(var(--rail) + 4.6rem) 2rem 2.2rem max(2rem, calc((100% - 1180px) / 2));
  }
  .hero-media img { object-position: 72% 50%; }
  .hero-shade {
    background:
      radial-gradient(ellipse at 22% 70%, rgba(212,175,55,.16), transparent 46%),
      linear-gradient(90deg, rgba(8,8,10,.76) 0%, rgba(8,8,10,.36) 36%, rgba(8,8,10,.08) 58%, rgba(8,8,10,.1) 100%),
      linear-gradient(180deg, rgba(8,8,10,.26) 0%, transparent 26%, rgba(8,8,10,.26) 100%);
  }
  .hero-copy { width: min(32rem, 46%); }
  .hero-actions { max-width: 36rem; }
  .cta-main { min-height: 5.4rem; padding: 1.05rem 1.35rem 1.05rem 1.15rem; gap: 1rem; }
  .cta-wealth { width: 2.9rem; height: 2.55rem; }
  .coin { width: 1.9rem; height: 1.9rem; font-size: 0.58rem; }
  .ingot { width: 1.75rem; height: 0.95rem; }
  .cta-ico { width: 1.9rem; height: 1.9rem; }
  .trust { grid-template-columns: repeat(3, auto); width: max-content; }
  .hero-frame {
    display: block; position: absolute;
    inset: calc(var(--rail) + 4.4rem) 1.35rem 1.35rem;
    pointer-events: none; z-index: 2;
  }
  .corner {
    position: absolute; width: 1.45rem; height: 1.45rem;
    border: 1.5px solid rgba(239, 211, 137, 0.85);
  }
  .tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
  .tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
  .bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
  .br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
  .step-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .rule-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .step-grid li + li { position: relative; }
  .step-grid li + li::before {
    content: ""; position: absolute; top: 1.7rem; right: calc(100% + 1px);
    width: 1rem; height: 1px; background: var(--line);
  }
  h1 { font-size: 5.6rem; }
  h1 em { display: block; }
}

@media (min-width: 1100px) {
  h1 { font-size: 6.4rem; }
  .hero-media img { object-position: 70% 48%; }
}

@media (max-width: 380px) {
  .brand-text { display: none; }
  h1 { font-size: 2.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta-main,
  .cta-note,
  .hero-fine,
  .hero-actions .btn-ghost {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
    animation: none !important;
  }
  .cta-glow,
  .cta-sparks,
  .btn-shine { animation: none !important; }
  .cta-main.is-ready { animation: none !important; }
}
