/* =========================================================================
   WooHoo9 — Online Casino Australia · v2 redesign
   Light system · white base + single electric-blue accent (#2563eb)
   Type: Space Grotesk (display) + Plus Jakarta Sans (body)
   Mood: clean, bright, trust-forward, playfully modern
   -------------------------------------------------------------------------
   SHARED-WIDTH LAW (carried over, non-negotiable):
   Every bounded region shares the SAME edges as the header/footer row.
   All outer containers use --container (1200px) + 1.5rem padding.
   Cards, grids, lists, dividers, FAQ items fill 100% of that container.
   Headers and text are NOT width-limited either — they fill the full
   container (the container itself is the only 1200px cap).
   ACCENT LOCK: one accent (electric blue) across the whole page.
   SHAPE LOCK: cards 16px · buttons pill · inputs/inner 10-12px.
   ========================================================================= */

:root {
  /* Accent (single lock) */
  --brand:        #2563eb;
  --brand-dark:   #1d4ed8;
  --brand-deep:   #1e3a8a;
  --brand-light:  #60a5fa;
  --brand-tint:   #eef4ff;
  --accent:       #2563eb;   /* same family — accent lock */
  --accent-soft:  #dbe7ff;

  /* Surfaces (light) */
  --bg:           #ffffff;
  --bg-soft:      #f4f7fd;
  --bg-card:      #ffffff;
  --bg-elevated:  #ffffff;
  --bg-panel:     #ffffff;   /* header = #fff */
  --ink:          #0f172a;

  /* Text */
  --text:         #1e293b;
  --text-muted:   #55617a;
  --text-dim:     #8a94a8;
  --text-on-dark: #f8fafc;

  /* Lines */
  --border:        #e6ecf6;
  --border-strong: #d3ddee;
  --border-soft:   #eef2f8;

  /* Type */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radius (shape lock) */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-pill: 999px;
  --card-radius: 16px;

  /* Shadows — tinted blue, never pure black */
  --shadow-soft:       0 1px 2px rgba(15,23,42,.06);
  --shadow-card:       0 4px 18px rgba(37,99,235,.07), 0 1px 3px rgba(15,23,42,.05);
  --shadow-card-hover: 0 16px 38px rgba(37,99,235,.16), 0 3px 8px rgba(15,23,42,.07);
  --shadow-cta:        0 10px 24px rgba(37,99,235,.26);

  /* Gradients (one family) */
  --grad-brand:  linear-gradient(120deg, #3b82f6, #2563eb 55%, #1d4ed8);
  --grad-gold:   linear-gradient(120deg, #3b82f6, #2563eb 55%, #1d4ed8); /* legacy alias */
  --grad-stripe: linear-gradient(90deg, #2563eb, #60a5fa);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --pad-x: 1.5rem;
  --header-top-h: 2.25rem;
  --header-main-h: 4.5rem;
  --header-h: calc(var(--header-top-h) + var(--header-main-h));
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1000px 560px at 90% -10%, rgba(37,99,235,.08), transparent 60%),
    radial-gradient(760px 480px at -8% 4%, rgba(96,165,250,.10), transparent 58%);
  background-attachment: fixed;
  overflow-x: hidden;
  counter-reset: img-div;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin: .3rem 0; }
strong { color: var(--ink); font-weight: 700; }
::selection { background: var(--brand); color: #fff; }

/* ---------- shared container ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
/* 40px top + 40px bottom => 80px between adjacent sections */
.section { padding-block: 40px; }

/* Section head — headers/text are NOT width-limited; they fill the
   container (which itself caps at 1200px). No inner typographic max-width. */
.section-head { margin: 0 0 2.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker { margin-bottom: .85rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head p { color: var(--text-muted); font-size: 1.06rem; margin-bottom: 0; }

/* Kicker / eyebrow (rationed by usage, not styled away) */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
}
.kicker::before { content: ""; width: 1.5rem; height: 2px; background: var(--grad-stripe); border-radius: 2px; }
.section-head.center .kicker::before { display: none; }

/* Highlight — accent color + soft marker (same-family emphasis, no serif) */
.highlight { color: var(--brand); font-weight: 700; position: relative; white-space: nowrap; }
.highlight::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .04em; height: .30em;
  background: var(--accent-soft); border-radius: 3px; z-index: -1;
}

/* ---------- buttons (pill shape lock) ---------- */
.btn-primary, .btn-secondary, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .96rem; white-space: nowrap;
  padding: .8rem 1.5rem; border-radius: var(--r-pill); cursor: pointer;
  border: 1.5px solid transparent; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn-primary, .btn-gold {
  background: linear-gradient(120deg, #2563eb, #1d4ed8); color: #fff; box-shadow: var(--shadow-cta);
}
.btn-primary:hover, .btn-gold:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 34px rgba(37,99,235,.34); }
.btn-secondary {
  background: #fff; color: var(--ink); border-color: var(--border-strong);
}
.btn-secondary:hover { transform: translateY(-2px); color: var(--brand-dark); border-color: var(--brand); background: var(--brand-tint); }
.btn-primary:active, .btn-secondary:active, .btn-gold:active { transform: translateY(0) scale(.98); }
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-secondary:hover, .btn-gold:hover { transform: none; }
}

/* ============================ HEADER ============================ */
.site-header { position: sticky; top: 0; z-index: 100; }

.header-top { background: var(--bg-soft); border-bottom: 1px solid var(--border-soft); font-size: .78rem; }
.header-top .container { height: var(--header-top-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header-trust { display: inline-flex; align-items: center; gap: .55rem; color: var(--text-muted); font-weight: 600; }
.trust-dot { width: .5rem; height: .5rem; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5);} 70% { box-shadow: 0 0 0 7px rgba(34,197,94,0);} 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);} }
@media (prefers-reduced-motion: reduce) { .trust-dot { animation: none; } }
.header-util { display: inline-flex; gap: 1.15rem; }
.header-util a { color: var(--text-muted); font-weight: 600; }
.header-util a:hover { color: var(--brand); }

.header-main { background: var(--bg-panel); border-bottom: 1px solid var(--border); transition: box-shadow .25s ease; }
.header-main .container { height: var(--header-main-h); display: flex; align-items: center; gap: 1.5rem; }
.is-scrolled .header-main { box-shadow: 0 6px 24px rgba(15,23,42,.07); }

/* Logo lockup: blue icon + ink wordmark (works on white — R6 override:
   the raster wordmark is white-on-white, so an HTML wordmark is required) */
.brand-logo { display: inline-flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.brand-logo img { height: 34px; width: auto; object-fit: contain; }
.brand-word { font-family: var(--font-heading); font-weight: 700; font-size: 1.32rem; letter-spacing: -.03em; color: var(--ink); }

.main-nav { position: relative; display: flex; align-items: center; gap: .3rem; margin-inline-start: auto; }
.main-nav a { position: relative; padding: .5rem .85rem; border-radius: var(--r-sm); color: var(--text); font-weight: 600; font-size: .95rem; transition: color .16s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--brand); }
.nav-indicator { position: absolute; bottom: 0; height: 2px; border-radius: 2px; background: var(--grad-stripe); transition: left .28s cubic-bezier(.4,0,.2,1), width .28s cubic-bezier(.4,0,.2,1); opacity: 0; pointer-events: none; }
.header-cta { flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border-strong); border-radius: var(--r-sm); cursor: pointer; margin-inline-start: auto; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero { position: relative; padding-block: clamp(2.4rem, 5vw, 4rem) clamp(4.5rem, 7vw, 6rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .10; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,.9)); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-content .kicker { margin-bottom: 1.1rem; }
.hero-content h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 1.1rem; letter-spacing: -.035em; }
.hero-content .lead { font-size: 1.14rem; color: var(--text-muted); margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero-proof { display: inline-flex; align-items: center; gap: .8rem; padding: .5rem .95rem .5rem .55rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.hero-proof .stack { display: inline-flex; }
.hero-proof .chip { width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 2px solid #fff; margin-inline-start: -.55rem; background: var(--grad-brand); }
.hero-proof .chip:first-child { margin-inline-start: 0; background: linear-gradient(120deg,#60a5fa,#2563eb); }
.hero-proof .chip:nth-child(2) { background: linear-gradient(120deg,#93c5fd,#3b82f6); }
.hero-proof .text { font-size: .86rem; color: var(--text-muted); }
.hero-proof .text strong { color: var(--ink); }

/* Hero art — light playing cards + blue chip + sparkles */
.hero-art { position: relative; min-height: 360px; display: grid; place-items: center; }
.hero-art-card {
  position: absolute; width: 128px; height: 178px; border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #f2f6ff); color: var(--ink); display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 3.2rem;
  box-shadow: 0 24px 48px rgba(30,58,138,.24), 0 2px 6px rgba(15,23,42,.10);
  border: 1px solid var(--accent-soft); outline: 3px solid rgba(255,255,255,.9); outline-offset: -3px;
}
.hero-art-card::before, .hero-art-card::after { content: attr(data-corner); position: absolute; font-size: .9rem; font-family: var(--font-body); font-weight: 700; color: var(--brand); }
.hero-art-card::before { top: 8px; left: 11px; }
.hero-art-card::after { bottom: 8px; right: 11px; transform: rotate(180deg); }
.hero-art-card--c1 { transform: rotate(-15deg) translate(-64px, 14px); z-index: 1; }
.hero-art-card--c2 { transform: rotate(2deg) translate(0, -22px); z-index: 3; }
.hero-art-card--c3 { transform: rotate(16deg) translate(64px, 14px); z-index: 2; }
.hero-art-chip {
  position: absolute; right: 2%; bottom: 4%; z-index: 4; width: 118px; height: 118px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; display: grid; place-content: center; text-align: center;
  box-shadow: 0 16px 34px rgba(37,99,235,.4); border: 4px solid rgba(255,255,255,.8);
}
.hero-art-chip .num { font-family: var(--font-heading); font-weight: 600; font-size: 1.7rem; line-height: 1; }
.hero-art-chip .lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
.hero-art-spark { position: absolute; color: var(--brand-light); font-size: 1.4rem; animation: twinkle 3s ease-in-out infinite; }
.hero-art-spark--a { top: 6%; left: 12%; }
.hero-art-spark--b { top: 20%; right: 6%; animation-delay: .8s; font-size: 1.9rem; }
.hero-art-spark--c { bottom: 14%; left: 4%; animation-delay: 1.5s; }
@keyframes twinkle { 0%,100% { opacity: .3; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-art-spark { animation: none; } }

/* ---------- Hero bridge stat strip ---------- */
.hero-bridge { position: relative; z-index: 2; margin-top: -3.25rem; }
.hero-stats-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.stat-tile { background: #fff; padding: 1.5rem 1.2rem; text-align: center; }
.stat-tile .stat-num { font-family: var(--font-heading); font-weight: 600; font-size: 1.95rem; color: var(--brand); line-height: 1; letter-spacing: -.02em; }
.stat-tile .stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .4rem; }

/* ============================ CARDS ============================ */
.card, .plain-card, .support-card, .floor-tile, .rich-tile, .security-tile, .bento-tile, .rewards-tile {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--card-radius); box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* thin blue signature bar on feature tiles only */
.floor-tile::before, .rich-tile::before, .security-tile::before, .bento-tile::before, .rewards-tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-stripe);
}
.card-watermark {
  position: absolute; right: .6rem; bottom: -.4rem; font-family: var(--font-heading); font-weight: 700;
  font-size: 5rem; line-height: 1; color: rgba(37,99,235,.05); pointer-events: none; user-select: none; transition: color .25s ease;
}
.floor-tile:hover, .security-tile:hover, .bento-tile:hover, .rewards-tile:hover, .rich-tile:hover, .card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--border-strong);
}
.floor-tile:hover .card-watermark, .card:hover .card-watermark { color: rgba(37,99,235,.10); }
@media (prefers-reduced-motion: reduce) {
  .floor-tile:hover, .security-tile:hover, .bento-tile:hover, .rewards-tile:hover, .rich-tile:hover, .card:hover { transform: none; }
}

/* intro-block */
.intro-block .intro-inner {
  width: 100%; display: grid; gap: 1rem; background: var(--brand-tint); border: 1px solid var(--border);
  border-left: 4px solid var(--brand); border-radius: var(--card-radius); padding: clamp(1.6rem, 3vw, 2.4rem);
}
.intro-block p { color: var(--text-muted); margin: 0; }
.intro-block p:first-of-type { color: var(--ink); font-size: 1.1rem; }

/* plain-card */
.plain-card { width: 100%; padding: clamp(1.8rem, 3.4vw, 2.6rem); }
.plain-card h3 { font-size: 1.4rem; }
.plain-card p { color: var(--text-muted); }
.plain-card p:last-child { margin-bottom: 0; }

/* floor-grid */
.floor-grid { width: 100%; display: grid; gap: 1.25rem; }
.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: 1.7rem 1.6rem; }
.floor-tile h3 { color: var(--brand-dark); font-size: 1.26rem; }
.floor-tile p { color: var(--text-muted); font-size: .98rem; }
.floor-tile p:last-child { margin-bottom: 0; }

/* floor-grid--rich */
.floor-grid--rich { width: 100%; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.rich-tile { padding: 2.4rem; }
.rich-tile h3 { color: var(--brand-dark); font-size: 1.5rem; margin-bottom: 1rem; }
.rich-tile > p { color: var(--text-muted); }
.rich-tile h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--brand); border-top: 2px solid var(--brand); padding-top: 1rem; margin: 1.6rem 0 1rem; }
.rich-tile ul, .rich-tile ol { list-style: none; padding: 0; margin: 0 0 .5rem; display: grid; gap: .7rem; }
.rich-tile li { position: relative; background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 1rem 1.15rem 1rem 1.45rem; margin: 0; color: var(--text-muted); }
.rich-tile li::before { content: ""; position: absolute; left: 0; top: .55rem; bottom: .55rem; width: 3px; border-radius: 3px; background: var(--grad-stripe); }

/* split-layout */
.split-layout { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: center; }
.split-layout.reverse .split-media { order: -1; }
.split-body { color: var(--text-muted); }
.split-body p:last-child { margin-bottom: 0; }
.split-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* feature check-list */
.feature-check-list {
  width: 100%; list-style: none; padding: clamp(1.6rem, 3vw, 2.2rem); margin: 0; display: grid; gap: .9rem;
  background: var(--brand-tint); border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: var(--card-radius);
}
.feature-check-list li { position: relative; padding-left: 2.4rem; margin: 0; color: var(--text); }
.feature-check-list li::before {
  content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--grad-brand); color: #fff; font-weight: 800; font-size: .85rem; display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(37,99,235,.35);
}
.feature-check-list--plain { background: #fff; box-shadow: var(--shadow-card); }

/* security-grid (clean rounded icon tiles) */
.security-grid { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem; }
.security-tile { padding: 1.8rem 1.4rem; text-align: center; }
.security-tile .sec-icon { width: 3.4rem; height: 3.4rem; margin: 0 auto 1rem; border-radius: 14px; display: grid; place-items: center; background: var(--brand-tint); border: 1px solid var(--accent-soft); font-size: 1.5rem; }
.security-tile h3 { font-size: 1.1rem; color: var(--brand-dark); }
.security-tile p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* image divider (contained) */
.image-divider { width: 100%; counter-increment: img-div; }
.image-divider .divider-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: center; }
.image-divider .divider-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.image-divider .divider-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.image-divider .divider-kicker { margin: 0 0 .6rem; }
.image-divider .divider-aside h3 { font-size: 1.5rem; }

/* ============================ FAQ ============================ */
.faq-section { background: var(--bg-soft); }
.faq-section .faq-list { width: 100%; display: grid; gap: .8rem; }
.faq-item { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--border-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; padding: 1.1rem 1.4rem; list-style: none; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--font-heading); font-size: 1.1rem; }
.faq-icon { flex-shrink: 0; width: 1.6rem; height: 1.6rem; position: relative; color: var(--brand); transition: transform .25s ease; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-icon::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); transition: opacity .25s ease; }
.faq-item[open] .faq-icon { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-answer { padding: 0 1.4rem 1.3rem; color: var(--text-muted); }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================ BESPOKE HOME SECTIONS ============================ */
.bento-floor { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.bento-tile { padding: 1.8rem 1.6rem; }
.bento-tile h3 { color: var(--brand-dark); font-size: 1.26rem; }
.bento-tile p { color: var(--text-muted); font-size: .96rem; margin: 0; }
.bento-tile .bento-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); display: block; margin-bottom: .5rem; }

/* two top cards fill full width; VIP strip spans below (grid-column: 1 / -1) */
.rewards-bento { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.rewards-tile { padding: 1.8rem 1.6rem; }
.rewards-tile h3 { color: var(--brand-dark); font-size: 1.22rem; }
.rewards-tile p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.rewards-welcome { grid-column: span 1; background: linear-gradient(150deg, var(--brand-tint), #fff); }
.rewards-vip { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; background: var(--ink); border-color: var(--ink); }
.rewards-vip::before { background: var(--grad-stripe); }
.rewards-vip .vip-copy { flex: 1 1 320px; }
.rewards-vip h3 { color: #fff; }
.rewards-vip p { color: rgba(248,250,252,.82); }

.support-card { width: 100%; padding: clamp(2rem, 4vw, 3.2rem); text-align: center; background: var(--brand-tint); }
.support-card .support-watermark { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; font-size: clamp(6rem, 20vw, 13rem); color: rgba(37,99,235,.05); pointer-events: none; z-index: 0; }
.support-card > * { position: relative; z-index: 1; }
.support-card h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.support-card p { color: var(--text-muted); margin-inline: auto; }
.support-card .support-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

/* ============================ INNER PAGE HERO ============================ */
.page-hero { position: relative; padding-block: clamp(2.4rem, 5vw, 3.6rem) clamp(1.6rem, 3vw, 2.4rem); overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: .82rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.page-hero .page-sub { font-size: 1.12rem; color: var(--text-muted); }
.page-meta { font-size: .84rem; color: var(--text-dim); margin-top: .8rem; }
.page-meta-author { color: var(--brand-dark); font-weight: 600; }
.prose-section { padding-block: clamp(2rem, 4vw, 3.2rem); }

/* ============================ FOOTER (light) ============================ */
.site-footer { position: relative; margin-top: clamp(4rem, 7vw, 6.5rem); background: var(--bg-soft); border-top: 1px solid var(--border); }

.footer-cta-wrap { margin-top: -3.5rem; margin-bottom: 3rem; }
.footer-cta {
  position: relative; width: 100%; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2.2rem, 4vw, 3.4rem);
  background: var(--grad-brand); color: #fff; box-shadow: 0 24px 54px rgba(37,99,235,.30);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.footer-cta .cta-watermark { position: absolute; right: -1rem; bottom: -2.5rem; font-family: var(--font-heading); font-weight: 700; font-size: clamp(6rem, 16vw, 12rem); color: rgba(255,255,255,.10); pointer-events: none; z-index: 0; }
.footer-cta > * { position: relative; z-index: 1; }
.footer-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 0; }
.footer-cta .cta-buttons { display: flex; flex-wrap: wrap; gap: .8rem; }
.footer-cta .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: 0 10px 24px rgba(15,23,42,.18); }
.footer-cta .btn-primary:hover { color: var(--brand-deep); }
.footer-cta .btn-secondary { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); color: #fff; }
.footer-cta .btn-secondary:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }

.footer-main { padding-bottom: 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.6rem); }
.footer-brand .brand-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: .92rem; }
.pay-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.pay-pills span { font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); color: var(--text-muted); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.02rem; color: var(--ink); position: relative; padding-bottom: .5rem; margin-bottom: .9rem; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 1.8rem; height: 2px; background: var(--grad-stripe); border-radius: 2px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-col a { color: var(--text-muted); font-size: .93rem; }
.footer-col a:hover { color: var(--brand); }

.footer-trust-row { border-top: 1px solid var(--border); padding-block: 1.3rem; }
.footer-trust-row .trust-pills { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.footer-trust-row .trust-pills span { font-size: .78rem; font-weight: 600; padding: .4rem .9rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); color: var(--text-muted); }

.footer-bottom { border-top: 1px solid var(--border); padding-block: 1.3rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between; }
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--text-dim); }

/* ============================ 404 ============================ */
.err-404 { min-height: 60vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.err-404 .glyph { font-family: var(--font-heading); font-weight: 700; font-size: clamp(8rem, 22vw, 18rem); line-height: .9; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.04em; }
.err-404 h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.err-404 p { color: var(--text-muted); margin-inline: auto; }
.err-404 .err-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================ MOBILE NAV ============================ */
.mobile-overlay { position: fixed; inset: 0; z-index: 99; background: rgba(255,255,255,.98); backdrop-filter: blur(12px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.nav-open .mobile-overlay { opacity: 1; visibility: visible; }
.mobile-overlay a { font-family: var(--font-heading); font-size: 1.6rem; color: var(--ink); }
.mobile-overlay a:hover { color: var(--brand); }
.mobile-overlay .btn-primary { font-family: var(--font-body); font-size: 1rem; margin-top: 1rem; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1100px) { .hero-content h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); } }
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; margin-top: 1rem; }
  .hero-stats-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .floor-grid--cols-3, .floor-grid--cols-4, .security-grid, .bento-floor, .rewards-bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split-layout, .image-divider .divider-inner { grid-template-columns: 1fr; }
  .split-layout.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  body { font-size: .98rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .header-util { display: none; }
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4, .security-grid, .bento-floor, .rewards-bento { grid-template-columns: 1fr; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-art-card { width: 104px; height: 146px; font-size: 2.6rem; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .header-top .container { justify-content: center; }
}
