/* ============================================================
   IPL LIVE — "Stadium Night" design system (v2, redesigned)
   Royal indigo-navy + rising gold→magenta swoosh on warm cream.
   Fraunces (display) + Plus Jakarta Sans (body).
   ------------------------------------------------------------
   SINGLE SHARED CONTENT WIDTH (hard rule, preserved):
   Every bounded element uses .container (max-width 1200px,
   side padding 1.5rem). Cards / grids / lists / dividers fill
   100% of that container. Full-bleed colour bands are allowed
   ONLY as backgrounds; their content still sits in .container.
   The only inner typographic cap is .section-head (720px).
   ============================================================ */

:root {
  --brand:        #1d2a8f;
  --brand-dark:   #121a55;
  --brand-light:  #3b4bd0;
  --accent:       #e6177f;
  --accent-warm:  #f9a826;
  --accent-soft:  #ffd6ea;
  --gold:         #f6b21b;

  --bg:           #fbf6ed;
  --bg-card:      #ffffff;
  --bg-elevated:  #ffffff;
  --bg-tint:      #f6efe2;
  --bg-panel:     #100e34;
  --bg-panel-2:   #181550;

  --text:         #1a1830;
  --text-muted:   #565474;
  --text-dim:     #8d8baa;
  --text-on-dark: #f3ecff;
  --text-on-dark-dim: rgba(243,236,255,.66);

  --border:       #ece4d6;
  --border-strong:#dcd2c0;
  --border-soft:  #f3ecdf;
  --border-dark:  rgba(255,255,255,.12);

  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;

  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --card-radius: 20px;

  --shadow-soft:        0 2px 10px rgba(28,22,60,.05);
  --shadow-card:        0 12px 30px -18px rgba(40,28,80,.28), 0 2px 8px -4px rgba(40,28,80,.10);
  --shadow-card-hover:  0 28px 54px -22px rgba(40,28,80,.42), 0 6px 16px -6px rgba(40,28,80,.16);
  --shadow-cta:         0 14px 30px -10px rgba(230,23,127,.5);
  --shadow-stage:       0 40px 90px -40px rgba(16,14,52,.7);

  --container: 1200px;
  --container-wide: 1320px;
  --pad-x: 1.5rem;
  --header-top-h: 2.4rem;
  --header-main-h: 4.4rem;
  --header-h: calc(var(--header-top-h) + var(--header-main-h));

  /* the rising motif */
  --grad-stripe: linear-gradient(90deg, var(--gold) 0%, var(--accent-warm) 40%, var(--accent) 100%);
  --grad-rise:   linear-gradient(120deg, var(--accent-warm), var(--accent) 55%, var(--brand-light));
  --grad-navy:   linear-gradient(135deg, #15123f 0%, #1d2a8f 56%, #2c1c70 100%);

  --section-pad: 2.5rem;   /* keeps inter-section gap at ~80px */
}

/* ---------- reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1100px 560px at 12% -10%, rgba(249,168,38,.10), transparent 60%),
    radial-gradient(900px 560px at 106% 2%, rgba(230,23,127,.08), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.2rem; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.1; font-weight: 600; color: var(--brand-dark); letter-spacing: -.01em; }
strong { font-weight: 700; }
::selection { background: var(--accent-soft); color: var(--brand-dark); }

/* THE shared content width */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* kicker / eyebrow */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .73rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
}
.kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-stripe); }
.kicker--light { color: var(--gold); }

/* ---------- section scaffolding (≤80px between sections) ---------- */
.section { position: relative; padding: var(--section-pad) 0; }
.section--tint { background: linear-gradient(180deg, rgba(29,42,143,.04), rgba(230,23,127,.03)); }
.section-head {
  max-width: 720px; margin: 0 auto 2rem; text-align: center;   /* only allowed inner cap */
}
.section-head .kicker { margin-bottom: .8rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.section-head h2 .highlight { font-style: italic; color: var(--accent); }
.section-head p { margin-top: .8rem; color: var(--text-muted); font-size: 1.04rem; }

/* ---------- buttons ---------- */
.btn-primary,.btn-secondary,.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .82rem 1.55rem; border-radius: var(--r-pill);
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { color: #fff; background: var(--grad-rise); background-size: 170% 170%; background-position: 0% 50%; box-shadow: var(--shadow-cta); }
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 18px 38px -10px rgba(230,23,127,.6); }
.btn-secondary { color: var(--brand-dark); background: #fff; border-color: var(--border-strong); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }
.btn-ghost { color: var(--text-on-dark); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ============================================================
   HEADER — "scoreboard" : dark stadium, white logo chip,
   gliding gold indicator, gradient CTA. Sticky, 2 tiers.
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }
.header-accent { height: 3px; background: var(--grad-stripe); }

.header-top {
  background: #0c0a2c; color: var(--text-on-dark-dim);
  font-size: .78rem; border-bottom: 1px solid var(--border-dark);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-top-h); gap: 1rem; }
.header-live { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; letter-spacing: .04em; }
.header-live .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(230,23,127,.6); animation: pulse 2.2s infinite; }
.header-live .live-tag { color: var(--gold); }
.header-live .live-sep { color: var(--text-on-dark-dim); font-weight: 500; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(230,23,127,.55)} 70%{box-shadow:0 0 0 7px rgba(230,23,127,0)} 100%{box-shadow:0 0 0 0 rgba(230,23,127,0)} }
.header-util { display: flex; align-items: center; gap: 1.25rem; }
.header-util a { transition: color .2s; }
.header-util a:hover { color: var(--accent-soft); }

.header-main {
  background: var(--grad-navy);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow .3s, height .3s;
}
.site-header.is-scrolled .header-main { box-shadow: 0 14px 34px -18px rgba(8,6,30,.7); }
.header-main .container { display: flex; align-items: center; gap: 1.4rem; height: var(--header-main-h); transition: height .3s; }
.site-header.is-scrolled .header-main .container { height: calc(var(--header-main-h) - .5rem); }

.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-chip { background: #fff; border-radius: 12px; padding: .35rem .6rem; display: inline-flex; box-shadow: 0 6px 16px -8px rgba(0,0,0,.5); }
.logo-chip img { height: 34px; width: auto; object-fit: contain; }

.primary-nav { position: relative; display: flex; align-items: center; gap: .2rem; margin-left: 1.4rem; }
.primary-nav a {
  position: relative; z-index: 1; padding: .5rem .8rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .94rem; color: rgba(243,236,255,.82); transition: color .2s;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--gold); }
.nav-indicator {
  position: absolute; bottom: 4px; height: 3px; border-radius: 3px; z-index: 0;
  background: var(--grad-stripe); transition: left .3s cubic-bezier(.2,.7,.3,1), width .3s; opacity: 0; pointer-events: none;
}
.header-cta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; margin-left: auto; }
.header-cta .btn-primary { padding: .65rem 1.25rem; }
.header-cta .btn-primary::after { content: "\2192"; font-weight: 800; transition: transform .25s; }
.header-cta .btn-primary:hover::after { transform: translateX(3px); }
.primary-nav .mobile-cta { display: none; }

/* burger */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border-dark);
  border-radius: var(--r-sm); background: rgba(255,255,255,.08); cursor: pointer; position: relative; flex-shrink: 0; margin-left: auto;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--text-on-dark); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s, opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after  { transform: translate(-50%,5px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ============================================================
   HOME HERO — contained dark "stadium stage" + app mockup
   ============================================================ */
.home-hero { padding: var(--section-pad) 0 0; }
.home-hero-stage {
  position: relative; overflow: hidden; color: var(--text-on-dark);
  border-radius: var(--r-xl);
  background: var(--grad-navy);
  box-shadow: var(--shadow-stage);
  padding: clamp(1.8rem, 4vw, 3.4rem);
  display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center;
}
.home-hero-stage::before { /* stadium light glow */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 320px at 88% -10%, rgba(249,168,38,.22), transparent 60%),
    radial-gradient(620px 320px at 6% 115%, rgba(230,23,127,.22), transparent 60%);
}
.home-hero-bg { position: absolute; inset: 0; z-index: 0; }
.home-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.hh-content { position: relative; z-index: 1; }
.hh-content h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.7rem); line-height: 1.05; margin: 1rem 0 1.1rem; letter-spacing: -.02em; overflow-wrap: break-word; }
.hh-content h1 .highlight { font-style: italic; color: var(--gold); position: relative; white-space: nowrap; }
.hh-content h1 .highlight::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: .08em; height: .32em; z-index: -1; background: linear-gradient(90deg, rgba(246,178,27,.4), rgba(230,23,127,.4)); border-radius: 4px; transform: rotate(-1deg); }
.hh-content .lead { color: var(--text-on-dark-dim); font-size: 1.12rem; max-width: 34rem; }
.hh-content .hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.3rem; }
.hh-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.hh-chip { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 700; color: var(--text-on-dark); padding: .4rem .8rem; border-radius: var(--r-pill); background: rgba(255,255,255,.07); border: 1px solid var(--border-dark); }
.hh-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* app phone mockup */
.hh-visual { position: relative; z-index: 1; display: grid; place-items: center; min-height: 340px; }
.phone {
  width: 234px; height: 466px; border-radius: 38px; background: #0b0928; padding: 9px;
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); position: relative; transform: rotate(-3deg);
}
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 84px; height: 6px; border-radius: 6px; background: rgba(255,255,255,.22); z-index: 2; }
.phone-screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: var(--bg); display: flex; flex-direction: column; }
.phone-top { background: var(--grad-rise); color: #fff; padding: 1.4rem 1rem .9rem; }
.phone-top .pt-k { font-size: .58rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .9; }
.phone-top .pt-h { font-family: var(--font-heading); font-style: italic; font-size: 1.25rem; margin-top: .15rem; }
.phone-rows { padding: .8rem; display: grid; gap: .6rem; }
.phone-row { display: flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: .55rem .65rem; }
.phone-row .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-rise); flex-shrink: 0; display: grid; place-items: center; color: #fff; font-size: 1rem; }
.phone-row .tx { display: grid; gap: .3rem; flex: 1; }
.phone-row .tx b { font-size: .72rem; color: var(--brand-dark); }
.phone-row .tx span { height: 6px; width: 70%; border-radius: 4px; background: var(--border); }
.hh-spark { position: absolute; color: var(--gold); font-size: 1.3rem; animation: twinkle 3s ease-in-out infinite; }
.hh-spark--a { top: 8%; left: 6%; } .hh-spark--b { bottom: 10%; right: 4%; color: var(--accent); animation-delay: .9s; }
@keyframes twinkle { 0%,100%{opacity:.3;transform:scale(.85)} 50%{opacity:1;transform:scale(1.15)} }

/* stat strip — light pill cards under the stage (shared width) */
.hero-bridge { margin-top: 1.25rem; }
.hero-stats-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.hero-stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
}
.hero-stat::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-stripe); }
.hero-stat .num { font-family: var(--font-heading); font-style: italic; font-size: 1.7rem; color: var(--accent); line-height: 1; }
.hero-stat .lbl { font-size: .82rem; color: var(--text-muted); margin-top: .35rem; }

/* ============================================================
   CARD SYSTEM (redesigned) — clean white surfaces, hairline
   border, soft shadow; gradient top edge + lift reveal on hover.
   No corner watermarks, no decorative numbers.
   ============================================================ */
.plain-card, .support-card, .floor-tile, .bento-cell, .security-cell, .rewards-cell, .split-copy, .split-media {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--card-radius); box-shadow: var(--shadow-card);
}
.floor-tile, .bento-cell, .security-cell, .rewards-cell { overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.floor-tile::after, .bento-cell::after, .security-cell::after, .rewards-cell::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--grad-stripe);
  transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.floor-tile:hover, .bento-cell:hover, .security-cell:hover, .rewards-cell:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: rgba(29,42,143,.28);
}
.floor-tile:hover::after, .bento-cell:hover::after, .security-cell:hover::after, .rewards-cell:hover::after { transform: scaleX(1); }

/* shared decorative mark replacing the old "01/02/03" numbers */
.sec-mark { display: inline-block; width: 16px; height: 16px; border-radius: 5px; background: var(--grad-rise); transform: rotate(45deg); box-shadow: var(--shadow-soft); }

/* plain-card / support-card */
.plain-card { width: 100%; margin: 0 auto; padding: clamp(1.7rem, 3.6vw, 2.8rem); overflow: hidden; }
.plain-card.is-centered { text-align: center; }
.plain-card h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.plain-card h3 { color: var(--brand-dark); }
.plain-card > p + p { margin-top: 1rem; }
.plain-card p { color: var(--text-muted); }
.plain-card .kicker { margin-bottom: .7rem; }

.support-card { width: 100%; margin: 0 auto; padding: clamp(2rem, 4.5vw, 3.2rem); text-align: center; overflow: hidden; }
.support-card .kicker { justify-content: center; margin-bottom: .7rem; }
.support-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.support-card p { color: var(--text-muted); max-width: 62ch; margin-inline: auto; }
.support-card p + p { margin-top: .9rem; }
.support-card .support-watermark { position: absolute; right: -1rem; bottom: -2.6rem; font-family: var(--font-heading); font-style: italic; font-size: 11rem; color: rgba(29,42,143,.04); pointer-events: none; line-height: 1; }

/* intro-block (leftover lede) */
.intro-block { width: 100%; margin: 0 auto; padding: clamp(1.5rem,3.2vw,2.4rem) clamp(1.6rem,3.6vw,2.8rem); background: linear-gradient(135deg,#fff,#fffaf2); border: 1px solid var(--border); border-radius: var(--card-radius); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.intro-block::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-stripe); }
.intro-block .kicker { margin-bottom: .6rem; }
.intro-block h2 { font-size: clamp(1.4rem,2.8vw,2rem); margin-bottom: .8rem; }
.intro-block p { font-size: 1.06rem; color: var(--text); }
.intro-block p + p { margin-top: .8rem; }

/* floor grids — column count follows item count (R3); full width */
.floor-grid { display: grid; gap: 1.3rem; width: 100%; }
.floor-grid--cols-1 { grid-template-columns: 1fr; }
.floor-grid--cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.floor-tile { padding: clamp(1.4rem, 2.4vw, 1.9rem); display: flex; flex-direction: column; gap: .65rem; }
.floor-tile h3 { font-size: 1.22rem; }
.floor-tile h3::before { content: ""; display: block; width: 30px; height: 3px; border-radius: 3px; background: var(--grad-stripe); margin-bottom: .7rem; }
.floor-tile p { color: var(--text-muted); font-size: .97rem; }
.floor-tile ul, .floor-tile ol { color: var(--text-muted); display: grid; gap: .4rem; }

/* rich variant — single column, sub-cards + bold dividers (R4b) */
.floor-grid--rich { width: 100%; grid-template-columns: 1fr; gap: 1.3rem; }
.floor-grid--rich .floor-tile { padding: clamp(1.7rem, 3vw, 2.3rem); }
.floor-grid--rich .floor-tile h3 { font-size: clamp(1.25rem,2.4vw,1.55rem); }
.floor-grid--rich h4 { margin: 1.5rem 0 1rem; padding-top: 1rem; border-top: 2px solid var(--brand); font-family: var(--font-body); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-dark); }
.floor-grid--rich .floor-tile > p { color: var(--text-muted); }
.floor-grid--rich .floor-tile > p + p { margin-top: .8rem; }
.floor-grid--rich ul, .floor-grid--rich ol { list-style: none; padding: 0; display: grid; gap: .7rem; margin-top: 1rem; }
.floor-grid--rich li { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: .95rem 1.1rem .95rem 1.4rem; overflow: hidden; color: var(--text); }
.floor-grid--rich li::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--gold), var(--accent)); }

/* split layout — list + paragraphs + image */
.split-layout { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3.2vw, 2.6rem); align-items: center; }
.split-layout.is-reverse .split-media { order: 2; }
.split-copy { padding: clamp(1.6rem,3vw,2.3rem); }
.split-copy .kicker { margin-bottom: .7rem; }
.split-copy h2, .split-copy h3 { font-size: clamp(1.4rem,2.6vw,1.95rem); margin-bottom: 1rem; }
.split-copy p { color: var(--text-muted); }
.split-copy p + p { margin-top: .9rem; }
.split-copy ul, .split-copy ol { margin-top: 1rem; display: grid; gap: .55rem; color: var(--text-muted); }
.split-media { padding: 0; overflow: hidden; }
.split-media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }

/* feature check list */
.feature-check-list { width: 100%; list-style: none; padding: clamp(1.6rem,3vw,2.3rem); margin: 0; display: grid; gap: .85rem; background: linear-gradient(135deg,#fffaf0,#fff5e2); border: 1px solid var(--border-strong); border-radius: var(--card-radius); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.feature-check-list::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-stripe); }
.feature-check-list li { position: relative; padding-left: 2.3rem; color: var(--text); }
.feature-check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 1.55rem; height: 1.55rem; border-radius: 50%; background: var(--grad-rise); color: #fff; font-size: .85rem; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.feature-check-list--plain { width: 100%; }

/* bento / security / rewards (home + about) */
.bento-floor { width: 100%; display: grid; gap: 1.3rem; grid-template-columns: repeat(3, minmax(0,1fr)); }
.bento-cell { padding: clamp(1.4rem,2.4vw,1.9rem); display: flex; flex-direction: column; gap: .55rem; }
.bento-cell h3 { font-size: 1.18rem; }
.bento-cell p { color: var(--text-muted); font-size: .95rem; }

.security-grid { width: 100%; display: grid; gap: 1.3rem; grid-template-columns: repeat(4, minmax(0,1fr)); }
.security-cell { padding: 1.7rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.security-cell h3 { font-size: 1.05rem; margin-top: .3rem; }
.security-cell p { font-size: .9rem; color: var(--text-muted); }

.rewards-bento { width: 100%; display: grid; gap: 1.3rem; grid-template-columns: repeat(3, minmax(0,1fr)); }
.rewards-cell { padding: clamp(1.4rem,2.4vw,1.9rem); display: flex; flex-direction: column; gap: .55rem; }
.rewards-cell h3 { font-size: 1.18rem; }
.rewards-cell p { color: var(--text-muted); font-size: .95rem; }

/* ============================================================
   IMAGE DIVIDER — contained two-column figure (R5b), no numbers
   ============================================================ */
.image-divider { width: 100%; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.2rem,3vw,2.2rem); align-items: center; }
.image-divider .img-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); aspect-ratio: 4 / 3; }
.image-divider .img-card img { width: 100%; height: 100%; object-fit: cover; }
.image-divider .img-aside .sec-mark { margin-bottom: .9rem; }
.image-divider .img-aside .kicker { margin-bottom: .5rem; }
.image-divider .img-aside h3 { font-size: clamp(1.2rem,2.4vw,1.7rem); color: var(--brand-dark); }

/* ============================================================
   FAQ accordion — full container width
   ============================================================ */
.faq-section .section-head { margin-bottom: 1.6rem; }
.faq-list { width: 100%; max-width: none; margin: 0 auto; display: grid; gap: .85rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-soft); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.faq-item[open] { box-shadow: var(--shadow-card); transform: translateY(-1px); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.3rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; color: var(--brand-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s, opacity .3s; }
.faq-icon::before { left: 0; top: 50%; width: 22px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; height: 22px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 1.3rem 1.15rem; }
.faq-answer p { color: var(--text-muted); }
.faq-answer p + p { margin-top: .8rem; }

/* ============================================================
   CONTENT (INNER) PAGE HERO — tinted panel, gradient rail
   ============================================================ */
.page-hero { padding: var(--section-pad) 0 0; }
.page-hero-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fff6ea 100%);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: clamp(1.8rem, 4vw, 3rem); padding-left: clamp(2rem, 4.2vw, 3.4rem);
}
.page-hero-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--grad-stripe); }
.page-hero-card::after { content: "\265F"; position: absolute; right: 1.5rem; bottom: -2rem; font-family: var(--font-heading); font-size: 12rem; line-height: 1; color: rgba(29,42,143,.05); pointer-events: none; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: .82rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-strong); }
.breadcrumb span[aria-current] { color: var(--accent); font-weight: 700; }
.page-hero-card .kicker { margin-bottom: .8rem; }
.page-hero-card h1 { font-size: clamp(1.9rem,4.4vw,3rem); max-width: 22ch; position: relative; }
.page-hero-card .page-sub { margin-top: 1rem; color: var(--text-muted); font-size: 1.1rem; max-width: 62ch; position: relative; }
.page-meta { margin-top: 1.1rem; display: inline-flex; flex-wrap: wrap; align-items: center; gap: .55rem; font-size: .82rem; color: var(--text-dim); background: rgba(255,255,255,.7); border: 1px solid var(--border); padding: .4rem .8rem; border-radius: var(--r-pill); }
.page-meta .page-meta-author { font-weight: 700; color: var(--brand); }
.page-meta time { color: var(--text-muted); }

/* ============================================================
   FOOTER (redesigned) — gradient "join" band + dark stadium map
   ============================================================ */
.site-footer { margin-top: var(--section-pad); }
.footer-join { background: var(--grad-rise); color: #fff; position: relative; overflow: hidden; }
.footer-join::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 240px at 90% 120%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.footer-join .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.4rem; padding-block: clamp(1.8rem, 3.5vw, 2.6rem); position: relative; }
.footer-join h2 { color: #fff; font-size: clamp(1.5rem,3.2vw,2.3rem); }
.footer-join h2 em { font-style: italic; }
.footer-join p { color: rgba(255,255,255,.9); margin-top: .35rem; }
.footer-join-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-join .btn-secondary { background: #fff; border-color: #fff; }
.footer-join .btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }

.footer-main { background: var(--bg-panel); color: var(--text-on-dark-dim); }
.footer-main .header-accent, .footer-accent { height: 3px; background: var(--grad-stripe); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; padding-block: clamp(2rem,4vw,3rem); }
.footer-brand .logo-chip { background: #fff; }
.footer-brand .logo-chip img { height: 36px; }
.footer-tagline { margin-top: 1rem; font-size: .92rem; max-width: 32ch; }
.footer-pay { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.footer-pay span { font-size: .7rem; font-weight: 700; letter-spacing: .03em; padding: .35rem .65rem; background: rgba(255,255,255,.07); border: 1px solid var(--border-dark); border-radius: var(--r-sm); }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; margin-bottom: 1rem; position: relative; padding-bottom: .55rem; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-stripe); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a { font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--accent-soft); padding-left: .25rem; }
.footer-trust { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; padding: 1.3rem 0; border-top: 1px solid var(--border-dark); }
.footer-trust span { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600; }
.footer-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem; padding: 1.1rem 0 1.7rem; border-top: 1px solid var(--border-dark); font-size: .82rem; }
.footer-bottom .rg { font-style: italic; color: rgba(243,236,255,.5); }

/* ============================================================
   404
   ============================================================ */
.err-404 { text-align: center; padding: clamp(3rem,8vw,6rem) 0; }
.err-404 .glyph { font-family: var(--font-heading); font-style: italic; font-weight: 600; line-height: .9; font-size: clamp(8rem, 22vw, 18rem); background: var(--grad-rise); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.err-404 h1 { font-size: clamp(1.6rem,3.4vw,2.4rem); margin: .5rem 0 1rem; }
.err-404 p { color: var(--text-muted); max-width: 46ch; margin: 0 auto 1.6rem; }
.err-404 .hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .home-hero-stage { grid-template-columns: 1.05fr .95fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav, .header-cta { display: none; }
  .primary-nav.is-open {
    display: flex; position: fixed; inset: var(--header-h) 0 0; z-index: 99; flex-direction: column; align-items: stretch; gap: .3rem; padding: 1.5rem var(--pad-x) 3rem; margin: 0;
    background: rgba(16,14,52,.98); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); overflow-y: auto;
  }
  body.nav-open { overflow: hidden; }
  .primary-nav.is-open a { color: var(--text-on-dark); font-size: 1.2rem; font-family: var(--font-heading); padding: .9rem .4rem; border-bottom: 1px solid var(--border-dark); }
  .primary-nav.is-open a:hover, .primary-nav.is-open a.active { color: var(--gold); }
  .primary-nav.is-open .mobile-cta { display: flex; gap: .7rem; margin-top: 1.2rem; }
  .primary-nav.is-open .mobile-cta .btn-primary { flex: 1; }
  .nav-indicator { display: none; }
  .home-hero-stage { grid-template-columns: 1fr; }
  .hh-visual { order: -1; margin-bottom: .5rem; min-height: 0; }
  .phone { width: 200px; height: 400px; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .security-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bento-floor, .rewards-bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout.is-reverse .split-media { order: 0; }
  .image-divider { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-brand { grid-column: 1 / -1; }
  .hh-content h1 .highlight { white-space: normal; }
  .page-hero-card::after { display: none; }
}
@media (max-width: 560px) {
  :root { --pad-x: 1.15rem; --section-pad: 2.1rem; }
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: 1fr; }
  .security-grid, .bento-floor, .rewards-bento { grid-template-columns: 1fr; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-join .container { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-stats-strip { grid-template-columns: 1fr; }
}

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