/* ============================================================
   MĪHARO — Brand / Marketing Stylesheet
   Loads standalone on: index, success, help, terms
   Loads alongside style.css on: play.html
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Manrope:wght@400;500;600;700&display=swap');

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --site-gutter: clamp(16px, 5vw, 48px);
  --site-max:    1160px;
  --section-pad: clamp(64px, 9vw, 112px);
  --nav-h:       68px;

  --void:      #030508;
  --deep:      #060b14;
  --panel:     rgba(12, 20, 38, 0.75);
  --line:      rgba(0, 240, 200, 0.10);
  --line-w:    rgba(255, 255, 255, 0.07);

  --teal:      #00f0c8;
  --teal-soft: #57ffd9;
  --gold:      #f4c046;
  --gold-soft: #ffd97a;
  --text:      #eaf2ff;
  --dim:       rgba(234, 242, 255, 0.55);
  --faint:     rgba(234, 242, 255, 0.30);

  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --glow-t:    0 0 40px rgba(0,240,200,0.22), 0 0 80px rgba(0,143,120,0.10);
  --glow-g:    0 0 40px rgba(244,192,70,0.22);
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--void);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.25;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.08 0 0 0 0 0.12 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.rv.in-view  { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.10s; }
.rv-d2 { transition-delay: 0.18s; }
.rv-d3 { transition-delay: 0.26s; }
.rv-d4 { transition-delay: 0.34s; }
.rv-d5 { transition-delay: 0.42s; }
.rv-d6 { transition-delay: 0.50s; }

/* ── Utility ────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden  { display: none !important; }
.wrap {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  position: relative; z-index: 1;
}

/* ── Nav ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--site-gutter);
  background: rgba(3,5,8,0.40);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,240,200,0.07);
  transition: background 300ms;
}
.site-nav--solid { background: rgba(3,5,8,0.96); border-bottom-color: var(--line); }

.site-nav__logo {
  font-family: 'Cinzel', serif; font-weight: 900;
  letter-spacing: 0.24em; font-size: 17px; margin-right: auto; flex-shrink: 0;
  background: linear-gradient(160deg, #fff, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-nav__links { display: flex; gap: 28px; margin-right: 28px; }
.site-nav__links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); transition: color 180ms;
}
.site-nav__links a:hover { color: var(--teal); }

.site-nav__cta { display: flex; gap: 10px; align-items: center; }
.nav-btn {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 8px; border: 1px solid transparent;
  transition: all 200ms var(--ease);
}
.nav-btn--buy {
  background: linear-gradient(160deg, rgba(244,192,70,0.20), rgba(180,130,30,0.15));
  border-color: rgba(244,192,70,0.50); color: var(--gold-soft);
}
.nav-btn--buy:hover {
  background: linear-gradient(160deg, rgba(244,192,70,0.32), rgba(180,130,30,0.24));
  box-shadow: var(--glow-g); transform: translateY(-1px);
}
.nav-btn--play { border-color: rgba(0,240,200,0.28); color: rgba(0,240,200,0.75); }
.nav-btn--play:hover { border-color: rgba(0,240,200,0.55); color: var(--teal); }

/* Burger */
.site-nav__burger {
  display: none; background: none; border: none;
  color: var(--faint); padding: 8px; margin-left: 6px; transition: color 180ms;
}
.site-nav__burger:hover { color: var(--text); }

.site-nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199;
  background: rgba(3,5,8,0.98); border-bottom: 1px solid var(--line);
  padding: 20px var(--site-gutter) 28px; flex-direction: column; gap: 2px;
}
.site-nav__mobile.is-open { display: flex; }
.site-nav__mobile a {
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  padding: 14px 0; color: var(--dim); border-bottom: 1px solid var(--line-w);
  transition: color 180ms;
}
.site-nav__mobile a:last-child { border-bottom: none; }
.site-nav__mobile a:hover { color: var(--teal); }
.site-nav__mobile .nav-btn { margin-top: 14px; display: block; text-align: center; padding: 14px; border-radius: 10px; }

@media (max-width: 860px) {
  .site-nav__links, .site-nav__cta { display: none; }
  .site-nav__burger { display: flex; align-items: center; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-m {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Cinzel', serif; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px;
  padding: 15px 30px; border-radius: 10px; border: 1px solid transparent;
  transition: all 220ms var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-m--gold {
  background: linear-gradient(160deg, rgba(244,192,70,0.22), rgba(180,130,30,0.15));
  border-color: rgba(244,192,70,0.52); color: var(--gold-soft);
}
.btn-m--gold:hover {
  background: linear-gradient(160deg, rgba(244,192,70,0.34), rgba(180,130,30,0.26));
  box-shadow: var(--glow-g), 0 10px 28px rgba(0,0,0,0.4); transform: translateY(-2px);
}
.btn-m--teal {
  background: linear-gradient(160deg, rgba(0,240,200,0.18), rgba(0,143,120,0.12));
  border-color: rgba(0,240,200,0.42); color: var(--teal-soft);
}
.btn-m--teal:hover {
  background: linear-gradient(160deg, rgba(0,240,200,0.28), rgba(0,143,120,0.20));
  box-shadow: var(--glow-t), 0 10px 28px rgba(0,0,0,0.4); transform: translateY(-2px);
}
.btn-m--ghost { background: transparent; border-color: rgba(234,242,255,0.18); color: var(--dim); }
.btn-m--ghost:hover { border-color: rgba(0,240,200,0.40); color: var(--teal-soft); transform: translateY(-1px); }
.btn-m--lg  { font-size: 13px; padding: 18px 40px; }
.btn-m--sm  { font-size: 10px; padding: 11px 22px; }
.btn-m--full { width: 100%; }

/* ── Sections ───────────────────────────────────────────────── */
.section { position: relative; z-index: 1; padding: var(--section-pad) 0; }
.section--alt  { background: rgba(6,10,20,0.70); }
.section--dark { background: rgba(3,5,8,0.90); }

.section-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.section-eye {
  display: inline-block; margin-bottom: 14px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 0.55em; text-transform: uppercase; color: var(--teal);
}
.section-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(24px, 4.5vw, 44px); letter-spacing: 0.06em; line-height: 1.15;
  background: linear-gradient(180deg, #fff, rgba(176,200,228,0.85));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(14px, 1.5vw, 16px); color: var(--dim);
  line-height: 1.65; max-width: 580px; margin: 0 auto;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) var(--site-gutter) 80px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(3,5,8,0.30) 0%, rgba(3,5,8,0.88) 85%),
    url('assets/global/portal-open.png') center 35% / cover no-repeat,
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(0,100,80,0.35), transparent 65%),
    var(--void);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,240,200,0.07) 3px, rgba(0,240,200,0.07) 4px
  );
}

.hero__content { position: relative; z-index: 2; max-width: 700px; }
.hero__brand {
  display: block; margin-bottom: 14px;
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: 0.55em; text-transform: uppercase; color: var(--teal);
}
.hero__title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(44px, 9vw, 96px);
  letter-spacing: 0.10em; line-height: 0.95;
  color: #fff;
  text-shadow: 0 0 60px rgba(0,240,200,0.25), 0 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 22px;
  animation: hero-glow 7s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  from { text-shadow: 0 0 40px rgba(0,240,200,0.18), 0 2px 8px rgba(0,0,0,0.8); }
  to   { text-shadow: 0 0 80px rgba(0,240,200,0.40), 0 2px 8px rgba(0,0,0,0.8); }
}
.hero__sub {
  font-size: clamp(15px, 1.8vw, 19px); line-height: 1.65;
  color: rgba(234,242,255,0.75); max-width: 540px; margin-bottom: 36px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__pill {
  font-size: 10px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.11);
  color: var(--faint);
}

/* ── Intro block ────────────────────────────────────────────── */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.intro-text {}
.intro-text__eye {
  display: block; margin-bottom: 14px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 0.55em; text-transform: uppercase; color: var(--teal);
}
.intro-text__title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(22px, 3.5vw, 38px); letter-spacing: 0.07em; line-height: 1.2;
  background: linear-gradient(180deg, #fff, rgba(176,200,228,0.85));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.intro-text__body { font-size: 15px; color: var(--dim); line-height: 1.75; margin-bottom: 24px; }
.intro-img {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,240,200,0.10);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Highlights cards ───────────────────────────────────────── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.h-card {
  padding: 26px 22px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--line-w);
  border-radius: 14px; transition: border-color 220ms, background 220ms, transform 220ms;
}
.h-card:hover {
  border-color: rgba(0,240,200,0.22); background: rgba(0,240,200,0.025);
  transform: translateY(-3px);
}
.h-card__icon { font-size: 26px; margin-bottom: 14px; line-height: 1; }
.h-card__title {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; color: rgba(234,242,255,0.88); margin-bottom: 8px;
}
.h-card__desc { font-size: 13px; color: var(--faint); line-height: 1.6; }

/* ── Character section ──────────────────────────────────────── */
.char-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 900px; margin: 0 auto;
}
.char-card {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 2/3; max-height: 500px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: default;
}
.char-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 500ms var(--ease);
}
.char-card:hover .char-card__bg { transform: scale(1.04); }
.char-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,5,8,0.95) 0%, rgba(3,5,8,0.55) 45%, rgba(3,5,8,0.10) 100%);
}
.char-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px;
}
.char-card__role {
  font-size: 9px; letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(234,242,255,0.38); margin-bottom: 6px; display: block;
}
.char-card__name {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(22px, 3vw, 32px); letter-spacing: 0.12em; margin-bottom: 10px;
  display: block;
}
.char-card--maui .char-card__name {
  background: linear-gradient(180deg, #fff, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.char-card--hine .char-card__name {
  background: linear-gradient(180deg, #fff, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.char-card__desc { font-size: 13px; color: rgba(234,242,255,0.58); line-height: 1.6; }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-panel {
  border-radius: 12px; overflow: hidden; position: relative;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--deep);
}
.gallery-panel--wide { grid-column: span 2; aspect-ratio: 8/3; }
.gallery-panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 450ms var(--ease);
}
.gallery-panel:hover img { transform: scale(1.06); }
.gallery-panel__label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(3,5,8,0.88), transparent);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(234,242,255,0.50); font-weight: 600;
  opacity: 0; transition: opacity 280ms;
}
.gallery-panel:hover .gallery-panel__label { opacity: 1; }

/* ── How it works (3 steps) ─────────────────────────────────── */
.steps-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; position: relative;
}
.steps-3::before {
  content: ''; position: absolute; top: 26px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,200,0.25) 20%, rgba(0,240,200,0.25) 80%, transparent);
}
.step-item { text-align: center; padding: clamp(20px,3vw,36px) 20px; }
.step-item__num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(0,240,200,0.14), rgba(0,143,120,0.07));
  border: 1px solid rgba(0,240,200,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 17px; color: var(--teal);
  position: relative; z-index: 1;
}
.step-item__title {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; color: rgba(234,242,255,0.88); margin-bottom: 10px;
}
.step-item__desc { font-size: 13px; color: var(--faint); line-height: 1.6; }

/* ── Buy CTA block ──────────────────────────────────────────── */
.buy-block {
  background: linear-gradient(135deg, rgba(0,143,120,0.10) 0%, rgba(244,192,70,0.04) 100%);
  border: 1px solid rgba(0,240,200,0.14); border-radius: 20px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.buy-block::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(0,143,120,0.22), transparent 65%);
}
.buy-block__game {
  display: block; margin-bottom: 14px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 0.55em; text-transform: uppercase; color: var(--teal);
}
.buy-block__title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(22px, 4vw, 40px); letter-spacing: 0.08em;
  color: #fff; margin-bottom: 12px;
}
.buy-block__sub {
  font-size: 15px; color: var(--dim); margin-bottom: 8px; line-height: 1.65;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.buy-block__detail {
  font-size: 13px; color: var(--faint); margin-bottom: 36px;
}
.buy-block__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 740px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line-w); border-radius: 12px;
  background: rgba(255,255,255,0.020); overflow: hidden; transition: border-color 200ms;
}
.faq-item[open] { border-color: rgba(0,240,200,0.22); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 600; font-size: 15px;
  color: rgba(234,242,255,0.80);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none; transition: color 180ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--text); }
.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300;
  color: rgba(0,240,200,0.55); flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-ans { padding: 0 24px 22px; font-size: 14px; color: var(--dim); line-height: 1.68; }
.faq-ans a { color: var(--teal); }
.faq-ans a:hover { text-decoration: underline; }

/* ── Game catalogue ─────────────────────────────────────────── */
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.game-card {
  background: linear-gradient(155deg, rgba(14,22,44,0.72), rgba(5,9,20,0.90));
  border: 1px solid rgba(120,200,220,0.11); border-radius: 16px; padding: 26px 22px;
  display: flex; flex-direction: column;
  transition: transform 220ms var(--ease), border-color 220ms, box-shadow 220ms;
}
.game-card:not(.game-card--dim):hover {
  transform: translateY(-4px); border-color: rgba(0,240,200,0.32);
  box-shadow: var(--glow-t), 0 20px 40px rgba(0,0,0,0.35);
}
.game-card--dim { opacity: 0.45; }
.game-card__badge { margin-bottom: 14px; }
.game-card__title {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 17px;
  letter-spacing: 0.07em; line-height: 1.25; color: rgba(234,242,255,0.88); margin-bottom: 10px;
}
.game-card__desc { font-size: 13px; color: var(--faint); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.game-card__meta { font-size: 11px; color: var(--faint); margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.game-card__meta span {
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
}

/* ── Status badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  font-family: 'Cinzel', serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
}
.badge--available { background: rgba(0,240,200,0.09); border: 1px solid rgba(0,240,200,0.30); color: var(--teal); }
.badge--soon      { background: rgba(244,192,70,0.09); border: 1px solid rgba(244,192,70,0.30); color: var(--gold); }
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:.4;transform:scale(.75)} 50%{opacity:1;transform:scale(1)} }

/* ── Site footer ────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: clamp(40px,6vw,68px) var(--site-gutter) clamp(24px,4vw,40px);
  background: rgba(3,5,8,0.97);
}
.site-footer__grid {
  width: min(100%, var(--site-max)); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.footer-brand__logo {
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 19px;
  letter-spacing: 0.24em; display: block; margin-bottom: 10px;
  background: linear-gradient(160deg, #fff, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-brand p { font-size: 13px; color: var(--faint); line-height: 1.6; }
.footer-col h4 {
  font-size: 9px; letter-spacing: 0.45em; text-transform: uppercase;
  color: rgba(234,242,255,0.28); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: var(--dim); transition: color 180ms; }
.footer-col li a:hover { color: var(--teal); }
.footer-contact a { font-size: 14px; color: rgba(0,240,200,0.65); transition: color 180ms; }
.footer-contact a:hover { color: var(--teal); }

.site-footer__bottom {
  width: min(100%, var(--site-max)); margin: clamp(28px,4vw,48px) auto 0;
  padding-top: 20px; border-top: 1px solid var(--line-w);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: rgba(234,242,255,0.22); letter-spacing: 0.04em;
}
.site-footer__bottom a { color: rgba(234,242,255,0.28); transition: color 180ms; }
.site-footer__bottom a:hover { color: var(--teal); }

/* ── Play page ──────────────────────────────────────────────── */
.play-wrap {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + clamp(24px, 4vh, 48px)) var(--site-gutter) clamp(48px, 6vh, 80px);
  position: relative; z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(0,143,120,0.18), transparent 60%),
    var(--void);
}
.play-shell { width: 100%; max-width: 480px; display: flex; flex-direction: column; gap: 18px; }
.play-head  { text-align: center; margin-bottom: 6px; }
.play-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(28px, 6vw, 44px); letter-spacing: 0.16em;
  background: linear-gradient(180deg, #fff, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.play-sub  { font-size: 14px; color: var(--dim); line-height: 1.6; }
.play-note { font-size: 12px; color: var(--faint); text-align: center; line-height: 1.55; }
.play-links { display: flex; justify-content: center; gap: 24px; }
.play-links a { font-size: 12px; color: rgba(0,240,200,0.55); transition: color 180ms; }
.play-links a:hover { color: var(--teal); }

/* ── Success page ───────────────────────────────────────────── */
.success-wrap {
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px var(--site-gutter); position: relative; z-index: 1; text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(0,143,120,0.18), transparent 60%),
    var(--void);
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  background: linear-gradient(135deg, rgba(0,240,200,0.18), rgba(0,143,120,0.09));
  border: 1px solid rgba(0,240,200,0.38);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; box-shadow: 0 0 48px rgba(0,240,200,0.18);
}
.success-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(22px, 4vw, 36px); letter-spacing: 0.10em;
  background: linear-gradient(180deg, #fff, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.success-sub  { font-size: 17px; color: rgba(234,242,255,0.68); margin-bottom: 10px; }
.success-note { font-size: 14px; color: var(--faint); margin-bottom: 32px; line-height: 1.65; }
.success-actions { display: flex; flex-direction: column; gap: 11px; width: 100%; max-width: 340px; margin: 0 auto; }
.success-help { font-size: 13px; color: var(--faint); margin-top: 22px; }
.success-help a { color: rgba(0,240,200,0.60); }
.success-help a:hover { text-decoration: underline; }

/* ── Prose pages (help, terms) ──────────────────────────────── */
.page-wrap { position: relative; z-index: 1; padding: clamp(48px,7vw,88px) var(--site-gutter) clamp(60px,8vw,100px); }
.prose { width: min(100%, 740px); margin: 0 auto; }
.prose-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(26px, 4.5vw, 44px); letter-spacing: 0.09em; line-height: 1.15;
  background: linear-gradient(180deg, #fff, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.prose-lead { font-size: 16px; color: var(--dim); margin-bottom: 44px; line-height: 1.6; }
.prose-section { margin-bottom: 36px; }
.prose-section h2 {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.12em; color: rgba(0,240,200,0.80);
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,240,200,0.10);
}
.prose-section p,
.prose-section li { font-size: 14px; color: var(--dim); line-height: 1.72; margin-bottom: 9px; }
.prose-section ul { padding-left: 18px; }
.prose-section a { color: var(--teal); }
.prose-section a:hover { text-decoration: underline; }
.contact-box {
  margin-top: 48px; padding: 28px 24px; text-align: center;
  background: rgba(0,240,200,0.04); border: 1px solid rgba(0,240,200,0.18); border-radius: 14px;
}
.contact-box p { font-size: 14px; color: var(--dim); margin-bottom: 8px; }
.contact-box a { font-size: 15px; font-weight: 600; color: var(--teal); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid       { grid-template-columns: 1fr; }
  .intro-grid      { grid-template-columns: 1fr; }
  .intro-img       { display: none; }
}
@media (max-width: 760px) {
  .char-grid       { grid-template-columns: 1fr; }
  .char-card       { aspect-ratio: 3/2; max-height: 280px; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-panel--wide { grid-column: span 2; aspect-ratio: 4/3; }
  .steps-3         { grid-template-columns: 1fr; }
  .steps-3::before { display: none; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .hero__btns      { flex-direction: column; }
  .hero__btns .btn-m { width: 100%; }
  .highlights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-panel--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .buy-block__btns { flex-direction: column; }
  .buy-block__btns .btn-m { width: 100%; }
}

/* ============================================================
   Premium Miharo Homepage
   ============================================================ */

.home-page {
  background:
    radial-gradient(circle at 16% 9%, rgba(0, 240, 200, 0.16), transparent 32rem),
    radial-gradient(circle at 84% 28%, rgba(244, 192, 70, 0.10), transparent 28rem),
    linear-gradient(180deg, #020409 0%, #08101b 42%, #030508 100%);
}

.home-page main {
  position: relative;
  z-index: 1;
}

.home-nav .site-nav__logo,
.premium-footer .footer-brand__logo {
  letter-spacing: 0.18em;
}

.home-nav .site-nav__links {
  gap: 22px;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 44px) var(--site-gutter) clamp(64px, 8vw, 112px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.95) 0%, rgba(3, 5, 8, 0.73) 42%, rgba(3, 5, 8, 0.20) 76%, rgba(3, 5, 8, 0.78) 100%),
    radial-gradient(circle at 68% 42%, rgba(0, 240, 200, 0.26), transparent 26rem);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/level10/06-task6-mirror-arcade-scene.png") center / cover no-repeat;
  filter: saturate(1.22) contrast(1.08);
  transform: scale(1.03);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(0deg, #030508 0%, rgba(3, 5, 8, 0) 100%);
}

.home-hero__stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.home-hero__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.home-hero__portal {
  position: absolute;
  right: clamp(-80px, 4vw, 72px);
  top: 16%;
  width: min(48vw, 620px);
  min-width: 300px;
  opacity: 0.72;
  filter: drop-shadow(0 0 42px rgba(0, 240, 200, 0.42));
  animation: portal-float 6s ease-in-out infinite alternate;
}

.home-hero__maui,
.home-hero__hine {
  position: absolute;
  bottom: clamp(20px, 5vw, 76px);
  width: clamp(92px, 14vw, 190px);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.62));
}

.home-hero__maui {
  right: clamp(220px, 24vw, 430px);
}

.home-hero__hine {
  right: clamp(70px, 10vw, 220px);
}

@keyframes portal-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -12px, 0) scale(1.025); }
}

/* ── Hero Slideshow (desktop right column) ─────────────────── */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(0, 240, 200, 0.28),
    0 0 160px rgba(0, 240, 200, 0.10),
    0 24px 64px rgba(0, 0, 0, 0.60);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide--active {
  opacity: 1;
  animation: hero-kenburns 5s ease-in-out forwards;
}

@keyframes hero-kenburns {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}

.hero-slideshow__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 240, 200, 0.07) 0%, transparent 55%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28) 0%, transparent 35%);
  z-index: 2;
  pointer-events: none;
}

.home-hero__content {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--teal);
}

.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(0, 240, 200, 0.8);
}

.home-hero h1 {
  max-width: 820px;
  font-family: "Cinzel", serif;
  font-size: clamp(54px, 9.5vw, 128px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 54px rgba(0, 240, 200, 0.30), 0 8px 34px rgba(0, 0, 0, 0.8);
}

.home-hero__lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(234, 242, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 720px;
  margin-top: 28px;
}

.hero-facts span,
.price-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(234, 242, 255, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.cinema-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px;
  background: #030508;
  border-top: 1px solid rgba(0, 240, 200, 0.14);
  border-bottom: 1px solid rgba(0, 240, 200, 0.14);
}

.cinema-strip img {
  width: 100%;
  height: clamp(120px, 15vw, 210px);
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.12) contrast(1.08);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.copy-block p {
  margin-top: 16px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.78;
}

.feature-frame,
.premium-card,
.character-panel,
.showcase-tile,
.buy-experience {
  border: 1px solid rgba(0, 240, 200, 0.14);
  background: linear-gradient(145deg, rgba(18, 31, 55, 0.82), rgba(4, 8, 16, 0.92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.feature-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.feature-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 560ms var(--ease);
}

.feature-frame:hover img {
  transform: scale(1.035);
}

.feature-frame figcaption,
.showcase-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(3, 5, 8, 0.92), rgba(3, 5, 8, 0));
  color: rgba(234, 242, 255, 0.70);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-card {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.premium-card:hover,
.showcase-tile:hover,
.character-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 200, 0.34);
  box-shadow: var(--glow-t), 0 34px 70px rgba(0, 0, 0, 0.48);
}

.premium-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.premium-card div {
  padding: 24px 22px 26px;
}

.premium-card h3,
.character-panel h3 {
  font-family: "Cinzel", serif;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: #fff;
}

.premium-card p,
.character-panel p {
  margin-top: 10px;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.65;
}

.character-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.character-panel {
  position: relative;
  min-height: clamp(440px, 54vw, 680px);
  overflow: hidden;
  border-radius: 8px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.character-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 560ms var(--ease);
}

.character-panel:hover img {
  transform: scale(1.035);
}

.character-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.54) 42%, rgba(3, 5, 8, 0.04) 100%);
}

.character-panel__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 42px);
}

.character-panel__body span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.character-panel--maui .character-panel__body span {
  color: var(--gold-soft);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 19vw, 260px);
  gap: 12px;
}

.showcase-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.showcase-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.showcase-tile--wide {
  grid-column: span 2;
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease);
}

.showcase-tile:hover img {
  transform: scale(1.06);
}

.home-steps .step-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.device-note {
  max-width: 760px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  text-align: center;
  color: rgba(234, 242, 255, 0.48);
  font-size: 13px;
  line-height: 1.65;
}

.buy-section {
  padding-top: 0;
}

.buy-experience {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 66px);
}

.buy-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 48%, rgba(0, 240, 200, 0.22), transparent 21rem),
    radial-gradient(circle at 80% 12%, rgba(244, 192, 70, 0.12), transparent 18rem);
  pointer-events: none;
}

.buy-experience__media,
.buy-experience__copy {
  position: relative;
  z-index: 1;
}

.buy-experience__media {
  display: grid;
  place-items: center;
  min-height: 310px;
}

.buy-experience__media img:first-child {
  width: min(62%, 230px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(0, 240, 200, 0.46));
}

.buy-experience__media img:last-child {
  position: absolute;
  width: min(90%, 360px);
  opacity: 0.55;
  animation: portal-float 6s ease-in-out infinite alternate;
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 30px;
}

.footer-publisher {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(234, 242, 255, 0.34);
}

.footer-publisher a,
.footer-contact a + a {
  color: rgba(0, 240, 200, 0.68);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a + a {
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .home-hero__portal {
    right: -110px;
    opacity: 0.48;
  }

  .home-hero__maui,
  .home-hero__hine {
    opacity: 0.46;
  }

  .premium-grid,
  .split-layout,
  .buy-experience {
    grid-template-columns: 1fr;
  }

  .buy-experience__media {
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding-top: calc(var(--nav-h) + 36px);
    background:
      linear-gradient(180deg, rgba(3, 5, 8, 0.72) 0%, rgba(3, 5, 8, 0.88) 50%, rgba(3, 5, 8, 0.97) 100%),
      radial-gradient(circle at 50% 34%, rgba(0, 240, 200, 0.14), transparent 22rem);
  }

  .home-hero__scene {
    opacity: 0.22;
  }

  .home-hero h1 {
    font-size: clamp(48px, 16vw, 84px);
    text-shadow: 0 0 54px rgba(0, 240, 200, 0.32), 0 6px 24px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 1);
  }

  .home-hero__lead {
    font-size: 16px;
  }

  .home-hero__actions,
  .buy-block__btns {
    flex-direction: column;
  }

  .home-hero__actions .btn-m,
  .buy-block__btns .btn-m {
    width: 100%;
  }

  .home-hero__portal {
    top: 24%;
    right: -150px;
    width: 520px;
    opacity: 0.32;
  }

  .home-hero__maui,
  .home-hero__hine {
    display: none;
  }

  .cinema-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cinema-strip img:last-child {
    grid-column: span 2;
  }

  .character-showcase,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .character-panel {
    min-height: 380px;
  }

  .showcase-grid {
    grid-auto-rows: 240px;
  }

  .showcase-tile--large,
  .showcase-tile--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 520px) {
  .kicker {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .kicker::before {
    width: 22px;
  }

  .hero-facts span,
  .price-stack span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cinema-strip img {
    height: 124px;
  }

  .feature-frame figcaption,
  .showcase-tile figcaption {
    font-size: 10px;
    padding: 14px;
  }

  .buy-experience {
    padding: 24px 18px;
  }

  /* Glass panel behind hero text on small mobile */
  .home-hero__content {
    background: rgba(3, 5, 8, 0.52);
    padding: clamp(20px, 5vw, 30px) clamp(18px, 4vw, 26px);
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 200, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* Bolder button contrast on small mobile */
  .btn-m--gold {
    background: linear-gradient(160deg, rgba(244, 192, 70, 0.36), rgba(180, 130, 30, 0.28));
    border-color: rgba(244, 192, 70, 0.78);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.60), 0 0 18px rgba(244, 192, 70, 0.18);
    color: #ffd97a;
  }

  .btn-m--teal {
    background: linear-gradient(160deg, rgba(0, 240, 200, 0.28), rgba(0, 143, 120, 0.22));
    border-color: rgba(0, 240, 200, 0.68);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.60), 0 0 18px rgba(0, 240, 200, 0.14);
    color: #57ffd9;
  }
}

/* ============================================================
   REDESIGN ADDITIONS
   ============================================================ */

/* ── Hero: tagline + price line ─────────────────────────────── */
.home-hero__tagline {
  max-width: 620px;
  margin-top: 14px;
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 1.9vw, 20px);
  letter-spacing: 0.04em;
  line-height: 1.40;
  color: rgba(234, 242, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.90), 0 1px 4px rgba(0,0,0,1);
}

.home-hero__price-line {
  margin-top: 18px;
  font-family: 'Cinzel', serif;
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 2px 10px rgba(0,0,0,0.80);
}

/* ── Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  position: relative; z-index: 2;
  background: rgba(6, 10, 20, 0.95);
  border-top:    1px solid rgba(0, 240, 200, 0.12);
  border-bottom: 1px solid rgba(0, 240, 200, 0.08);
  padding: clamp(24px, 3.5vw, 40px) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 16px 10px;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  text-align: center;
  transition: border-color 220ms, background 220ms;
}

.trust-badge:hover {
  border-color: rgba(0,240,200,0.22);
  background: rgba(0,240,200,0.025);
}

.trust-badge__value {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(14px, 2vw, 20px);
  color: var(--teal);
  line-height: 1;
}

.trust-badge__lock {
  font-size: 18px; line-height: 1;
}

.trust-badge__label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(234,242,255,0.40);
  line-height: 1.3;
}

@media (max-width: 820px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Featured game CTA ───────────────────────────────────────── */
.featured-cta {
  margin-top: 26px;
}

/* ── 4-step process ──────────────────────────────────────────── */
.steps-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; position: relative;
}
.steps-4::before {
  content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,200,0.25) 10%, rgba(0,240,200,0.25) 90%, transparent);
}

@media (max-width: 860px) {
  .steps-4 { grid-template-columns: 1fr 1fr; }
  .steps-4::before { display: none; }
}
@media (max-width: 520px) {
  .steps-4 { grid-template-columns: 1fr; }
}

/* ── Platform teaser ─────────────────────────────────────────── */
.platform-teaser {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(3,5,8,0) 0%, rgba(0,80,65,0.10) 50%, rgba(3,5,8,0) 100%),
    rgba(6,10,20,0.80);
}

.platform-inner {
  max-width: 700px; margin: 0 auto;
}

/* ============================================================
   POLISH PASS — June 2026
   ============================================================ */

/* ── Solid gold primary CTA button ──────────────────────────── */
.btn-m--cta {
  background: linear-gradient(160deg, #b87800, #f4c046 48%, #b87800);
  border-color: rgba(244,192,70,0.85);
  color: #0d0700;
  text-shadow: none;
  box-shadow: 0 4px 22px rgba(244,192,70,0.38), 0 2px 8px rgba(0,0,0,0.55);
}
.btn-m--cta:hover {
  background: linear-gradient(160deg, #cc8a00, #ffd060 48%, #cc8a00);
  border-color: #f4c046;
  color: #090400;
  box-shadow: 0 6px 32px rgba(244,192,70,0.58), 0 4px 14px rgba(0,0,0,0.50);
  transform: translateY(-2px);
}

/* ── CTA stack — button + sub-copy line ─────────────────────── */
.cta-stack {
  display: inline-flex; flex-direction: column; align-items: center; gap: 9px;
}
.cta-stack__sub {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(234,242,255,0.40);
}

/* ── Trust strip head label ──────────────────────────────────── */
.trust-strip__head {
  text-align: center; margin-bottom: 18px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 0.44em; text-transform: uppercase;
  color: rgba(234,242,255,0.26);
}

/* ── Section backgrounds — visual variety ────────────────────── */
.section--warm {
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(50,28,5,0.32), transparent 58%),
    rgba(10,7,3,0.98);
  border-top:    1px solid rgba(244,192,70,0.09);
  border-bottom: 1px solid rgba(244,192,70,0.07);
}

.section--pounamu {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,80,65,0.24), transparent 58%),
    rgba(4,8,12,0.98);
}

.section--mist {
  background: rgba(10,16,30,0.94);
  border-top:    1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ── Perfect for grid ────────────────────────────────────────── */
.for-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}

.for-card {
  padding: 28px 20px; text-align: center;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: border-color 220ms, background 220ms, transform 220ms;
}
.for-card::before {
  content: ''; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(0,240,200,0.70);
  margin: 0 auto 18px;
}
.for-card:hover {
  border-color: rgba(0,240,200,0.24);
  background: rgba(0,240,200,0.025);
  transform: translateY(-3px);
}
.for-card__label {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.10em;
  color: rgba(234,242,255,0.88); margin-bottom: 10px;
}
.for-card__desc {
  font-size: 13px; color: var(--faint); line-height: 1.60;
}

@media (max-width: 760px) {
  .for-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .for-grid { grid-template-columns: 1fr; }
}

/* ── Value comparison list ───────────────────────────────────── */
.value-list {
  list-style: none;
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.value-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: rgba(0,240,200,0.04);
  border: 1px solid rgba(0,240,200,0.10);
  border-radius: 10px;
}
.value-row__check {
  color: var(--teal); font-size: 15px; line-height: 1.55; flex-shrink: 0;
}
.value-row__text {
  font-size: 14px; color: rgba(234,242,255,0.68); line-height: 1.58;
}
.value-row__text strong {
  color: rgba(234,242,255,0.90);
}

/* ── Testimonials placeholder ────────────────────────────────── */
.testimonial-coming {
  max-width: 580px; margin: 0 auto; text-align: center;
  padding: clamp(32px,5vw,52px) clamp(24px,4vw,44px);
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; position: relative; overflow: hidden;
}
.testimonial-coming::before {
  content: '\201C';
  position: absolute; top: 10px; left: 22px;
  font-family: 'Cinzel', serif; font-size: 72px; line-height: 1;
  color: rgba(0,240,200,0.10); pointer-events: none; user-select: none;
}
.testimonial-coming__status {
  display: inline-block; margin-bottom: 18px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 0.44em; text-transform: uppercase; color: var(--teal);
  padding: 5px 16px; border: 1px solid rgba(0,240,200,0.30); border-radius: 999px;
  background: rgba(0,240,200,0.06);
}
.testimonial-coming p {
  font-size: 15px; color: var(--dim); line-height: 1.68; margin-top: 10px;
}
.testimonial-coming p:first-of-type { margin-top: 0; }

/* ── Gallery figcaption — always visible, stronger ───────────── */
.showcase-tile figcaption {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(234,242,255,0.78);
  padding: 16px 18px;
}

/* ── Mobile adjustments for new elements ─────────────────────── */
@media (max-width: 820px) {
  .home-hero__actions .cta-stack,
  .buy-block__btns .cta-stack { width: 100%; }
  .cta-stack__sub { text-align: center; }
}

@media (max-width: 520px) {
  .for-card { padding: 22px 16px; }
  .value-row { padding: 14px 16px; gap: 12px; }
  .testimonial-coming { padding: 28px 20px; }
}

/* ============================================================
   HERO READABILITY FIX
   ============================================================ */

/* ── Glass reading panel ─────────────────────────────────────── */
.hero-panel {
  max-width: 600px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 42px);
  background: rgba(5, 10, 16, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.50),
    inset 0 0 0 1px rgba(0, 240, 200, 0.05);
}

/* ── Text within the panel — panel provides contrast, simplify shadows ── */
.home-hero h1 {
  text-shadow: 0 0 36px rgba(0, 240, 200, 0.20), 0 2px 6px rgba(0, 0, 0, 0.55);
}

.home-hero__tagline {
  color: rgba(234, 242, 255, 0.98);
  text-shadow: none;
}

.home-hero__lead {
  color: rgba(234, 242, 255, 0.90);
  text-shadow: none;
}

.home-hero__price-line {
  color: var(--gold-soft);
  text-shadow: none;
}

/* ── Neutralise the old mobile-only panel on .home-hero__content ── */
@media (max-width: 520px) {
  .home-hero__content {
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .hero-panel {
    border-radius: 18px;
    padding: 22px 18px;
  }
}

/* ============================================================
   LIFESTYLE / PLAY-TOGETHER SECTION
   ============================================================ */

/* Mechanic pill row — reinforces the two-player mechanic */
.play-mechanics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 22px;
}

.play-mechanic {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(0, 240, 200, 0.06);
  border: 1px solid rgba(0, 240, 200, 0.22);
  color: rgba(0, 240, 200, 0.72);
  white-space: nowrap;
}

/* 2×2 image card grid */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.lifestyle-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 200, 0.10);
  background: rgba(8, 13, 26, 0.90);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.lifestyle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 200, 0.30);
  box-shadow: 0 0 42px rgba(0, 240, 200, 0.14), 0 22px 52px rgba(0, 0, 0, 0.44);
}

.lifestyle-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(6, 10, 20, 0.95);
}

.lifestyle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms var(--ease);
}

.lifestyle-card:hover .lifestyle-card__img img {
  transform: scale(1.05);
}

/* Subtle teal gradient overlay on image bottom */
.lifestyle-card__img::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(3, 5, 8, 0.75) 0%, transparent 100%);
  pointer-events: none;
}

.lifestyle-card__body {
  padding: 22px 24px 26px;
}

.lifestyle-card__title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.09em;
  color: rgba(234, 242, 255, 0.92);
  margin-bottom: 9px;
}

.lifestyle-card__text {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.65;
}

/* Placeholder style — shown when image fails to load */
.lifestyle-card__img--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(234, 242, 255, 0.20);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(6, 10, 20, 0.95);
}

@media (max-width: 720px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lifestyle-card__body {
    padding: 18px 20px 22px;
  }
}

@media (max-width: 480px) {
  .play-mechanics {
    gap: 7px;
  }
  .play-mechanic {
    font-size: 9px;
    padding: 6px 13px;
  }
}

/* ============================================================
   HERO DESKTOP TWO-COLUMN  (≥ 900px)
   ============================================================ */

/* Portal column — hidden on mobile, shown on desktop */
.home-hero__portal-col {
  display: none;
}

@media (min-width: 900px) {
  /* Two-column grid: glass card left, portal image right */
  .home-hero__content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
  }

  /* Stronger glass card — more background shows behind the two-column layout */
  .hero-panel {
    max-width: none;
    background: rgba(3, 5, 12, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(0, 240, 200, 0.18);
    box-shadow:
      0 0 70px rgba(0, 240, 200, 0.12),
      0 24px 64px rgba(0, 0, 0, 0.60),
      inset 0 0 0 1px rgba(0, 240, 200, 0.06);
  }

  /* Scale h1 to fit the narrower text column */
  .home-hero h1 {
    font-size: clamp(48px, 4.8vw, 76px);
    line-height: 0.95;
    max-width: none;
  }

  /* Show the desktop portal column */
  .home-hero__portal-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  /* Hide the absolutely-positioned stage images — replaced by portal-col on desktop */
  .home-hero__portal,
  .home-hero__maui,
  .home-hero__hine {
    display: none;
  }
}

/* ============================================================
   PHASE 3 — CINEMATIC REDESIGN ADDITIONS
   ============================================================ */

/* ── Prefers-reduced-motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  .rv.in-view { opacity: 1; transform: none; }
  .hero-slide--active  { animation: none !important; }
  .home-hero h1        { animation: none !important; }
  .home-hero__portal   { animation: none !important; }
  .badge .dot          { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ── Video-ready hero slot ───────────────────────────────────── */
.hero-video-slot {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 200, 0.20);
  box-shadow:
    0 0 80px rgba(0, 240, 200, 0.26),
    0 0 160px rgba(0, 240, 200, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.60);
}

.hero-video-slot img,
.hero-video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-slot::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,240,200,0.06) 0%, transparent 55%, rgba(0,0,0,0.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.24) 0%, transparent 30%);
  pointer-events: none; z-index: 2;
}

/* ── Film one-sheet (Featured section) ──────────────────────── */
.onesheet {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.onesheet__poster {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(0, 240, 200, 0.14);
  box-shadow:
    0 0 60px rgba(0, 240, 200, 0.12),
    0 40px 80px -16px rgba(0, 0, 0, 0.82),
    0 0 0 1px rgba(0, 240, 200, 0.06);
  transition: box-shadow 360ms var(--ease);
}

.onesheet__poster:hover {
  box-shadow:
    0 0 80px rgba(0, 240, 200, 0.22),
    0 40px 80px -16px rgba(0, 0, 0, 0.82),
    0 0 0 1px rgba(0, 240, 200, 0.12);
}

.onesheet__poster img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 560ms var(--ease);
}

.onesheet__poster:hover img { transform: scale(1.04); }

.onesheet__title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.92; letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff 30%, var(--teal-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 12px 0 22px;
}

.onesheet__logline {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--dim); line-height: 1.75;
  max-width: 520px; margin-bottom: 32px;
}

.onesheet__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

@media (max-width: 800px) {
  .onesheet { grid-template-columns: 1fr; }
  .onesheet__poster { aspect-ratio: 16 / 9; max-height: 300px; }
  .onesheet__title { font-size: clamp(32px, 8vw, 56px); line-height: 1.0; }
}

/* ── Lifestyle card overlay modifier ─────────────────────────── */
.lifestyle-card--overlay { position: relative; }
.lifestyle-card--overlay .lifestyle-card__img { aspect-ratio: 4 / 3; }

.lifestyle-card--overlay .lifestyle-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 18px 20px 22px;
  background: linear-gradient(
    0deg,
    rgba(3, 5, 8, 0.97) 0%,
    rgba(3, 5, 8, 0.84) 48%,
    transparent 100%
  );
}

.lifestyle-card--overlay .lifestyle-card__img::after { display: none; }
.lifestyle-card--overlay .lifestyle-card__title { color: rgba(234, 242, 255, 0.96); }

/* ── Studio note section ─────────────────────────────────────── */
.studio-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(0,143,120,0.06) 0%, rgba(244,192,70,0.03) 100%),
    rgba(255,255,255,0.018);
  border: 1px solid rgba(0,240,200,0.10);
  border-radius: 20px;
  overflow: hidden; position: relative;
}

.studio-block::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 8% 50%, rgba(0,143,120,0.14), transparent 55%);
}

.studio-block__eye {
  display: block; margin-bottom: 12px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 0.55em; text-transform: uppercase; color: var(--teal);
}

.studio-block__title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(22px, 3.5vw, 40px); letter-spacing: 0.06em; line-height: 1.15;
  background: linear-gradient(180deg, #fff, rgba(176,200,228,0.85));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}

.studio-block__body { font-size: 15px; color: var(--dim); line-height: 1.75; margin-bottom: 12px; }

.studio-block__link {
  display: inline-block; margin-top: 8px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(0,240,200,0.68);
  border-bottom: 1px solid rgba(0,240,200,0.28); padding-bottom: 3px;
  transition: color 180ms, border-color 180ms;
}
.studio-block__link:hover { color: var(--teal); border-color: var(--teal); }

.studio-block__logo-col {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.studio-block__logo-col img {
  width: min(90%, 220px); opacity: 0.78;
  filter: drop-shadow(0 0 28px rgba(0,240,200,0.28));
  transition: opacity 300ms, filter 300ms;
}
.studio-block:hover .studio-block__logo-col img {
  opacity: 0.95;
  filter: drop-shadow(0 0 40px rgba(0,240,200,0.48));
}

@media (max-width: 760px) {
  .studio-block { grid-template-columns: 1fr; }
  .studio-block__logo-col { display: none; }
}

/* ── Testimonials (reserved — shipped commented out) ─────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 960px; margin: 0 auto;
}

.testimonial-card {
  padding: 28px 26px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; position: relative; overflow: hidden;
  transition: border-color 220ms, background 220ms;
}
.testimonial-card:hover { border-color: rgba(0,240,200,0.20); background: rgba(0,240,200,0.018); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 8px; left: 18px;
  font-family: 'Cinzel', serif; font-size: 64px; line-height: 1;
  color: rgba(0,240,200,0.09); pointer-events: none; user-select: none;
}
.testimonial-card p {
  font-size: 14px; color: rgba(234,242,255,0.72); line-height: 1.72;
  position: relative; z-index: 1; margin-bottom: 18px;
}
.testimonial-card footer {
  font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--teal); opacity: 0.72;
}

@media (max-width: 760px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE CINEMATIC HERO  ≤ 820px
   ============================================================ */
@media (max-width: 820px) {

  /* Viewport-fill hero, content anchored to bottom third */
  .home-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: 0 var(--site-gutter) calc(env(safe-area-inset-bottom, 0px) + 36px);
    background:
      linear-gradient(
        180deg,
        rgba(3,5,8,0.08) 0%,
        rgba(3,5,8,0.08) 34%,
        rgba(3,5,8,0.76) 60%,
        rgba(3,5,8,0.97) 100%
      );
  }

  /* Scene: clearly visible for a cinematic poster feel */
  .home-hero__scene {
    opacity: 0.58;
    object-position: center 18%;
  }

  /* Portal: hide so the scene image is uncluttered */
  .home-hero__portal {
    display: none;
  }

  /* Content block: full width, no glass wrapping */
  .home-hero__content {
    display: block;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  /* Remove the glass reading panel — text reads over the gradient */
  .hero-panel {
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
  }

  /* Hide clutter above and around the core offer */
  .kicker,
  .home-hero__price-line,
  .home-hero__2p-note,
  .cta-stack__sub {
    display: none;
  }

  /* Title: large and punchy, within safe bounds for 360px+ */
  .home-hero h1 {
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-shadow:
      0 0 40px rgba(0,240,200,0.28),
      0 4px 20px rgba(0,0,0,0.95),
      0 2px 6px rgba(0,0,0,1);
  }

  /* Lead / sales line */
  .home-hero__lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(234,242,255,0.90);
    text-shadow: 0 1px 8px rgba(0,0,0,0.90);
    max-width: 100%;
  }

  /* CTA row: vertical stack, generous tap targets */
  .home-hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .home-hero__actions .btn-m {
    width: 100%;
    min-height: 52px;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    white-space: normal;
    text-align: center;
  }

  /* Gold primary CTA — solid, high-contrast */
  .home-hero__actions .btn-m--cta {
    background: linear-gradient(180deg, #f4c046 0%, #d4950c 100%);
    border-color: rgba(244,192,70,0.65);
    color: #120500;
    text-shadow: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.50), 0 0 24px rgba(244,192,70,0.24);
  }

  /* Teal secondary CTA — ghost border */
  .home-hero__actions .btn-m--teal {
    background: rgba(0,240,200,0.08);
    border: 1.5px solid rgba(0,240,200,0.45);
    color: var(--teal-soft);
    box-shadow: none;
    text-shadow: none;
  }
}
