/* =====================================================================
   YONO GAMES — "Midnight Table" redesign
   Mood: dark, premium, playful-vibrant casino night
   Accent: single jade/emerald. Gold used only on chip/suit ornaments.
   Type: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   Theme: DARK, locked (no section inversion)
   Radius rule: cards 16px · inputs 10px · buttons/pills full · media 20px
   Section rhythm: 80px between sections (padding-block 40px)
   Widths: header + hero span full width; content sections cap at 1200
   ===================================================================== */

:root {
  /* base surfaces (dark, green-black undertone) */
  --bg:          #070b09;
  --bg-2:        #0b1210;
  --surface:     #0f1814;
  --surface-2:   #14211b;
  --surface-3:   #1a2a22;

  /* single accent = jade; gold reserved for casino-chip ornament only */
  --brand:       #1fe08c;
  --brand-2:     #12b874;
  --brand-dim:   #0e6b47;
  --gold:        #f2c14e;
  --red:         #ff5d6c;

  /* text */
  --text:        #eaf3ec;
  --text-muted:  #9fb4a6;
  --text-dim:    #6d8377;
  --on-brand:    #05130c;

  /* lines */
  --line:        rgba(233,247,236,.09);
  --line-2:      rgba(233,247,236,.16);
  --glow:        0 0 0 1px rgba(31,224,140,.0), 0 18px 50px -20px rgba(31,224,140,.28);

  /* type */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* radius */
  --r-card: 16px; --r-input: 10px; --r-media: 20px; --r-pill: 999px;

  /* shadows (tinted to the dark base) */
  --sh-1: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px -12px rgba(0,0,0,.6);
  --sh-2: 0 2px 6px rgba(0,0,0,.5), 0 30px 60px -24px rgba(0,0,0,.7);

  /* layout widths */
  --edge:      clamp(1.25rem, 4vw, 3.5rem);
  --container: 1200px;
  --wide:      1400px;
  --header-h:  68px;
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .18s ease; }
a:hover { color: #6bf0b6; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin: 0 0 .5em; color: var(--text); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin: .35rem 0; }
strong { color: #f4faf5; font-weight: 700; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--brand); color: var(--on-brand); }

/* ambient atmosphere */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70vw 60vw at 82% -10%, rgba(31,224,140,.10), transparent 55%),
    radial-gradient(60vw 50vw at -8% 8%, rgba(18,184,116,.08), transparent 55%),
    radial-gradient(50vw 40vw at 50% 120%, rgba(242,193,78,.05), transparent 60%);
}
/* fine film grain over everything, pointer-safe */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- widths */
.shell { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--edge); }
.section-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--edge); }
.section { padding-block: 40px; }                 /* -> 80px between sections */
.section-head { margin: 0 0 1.75rem; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); margin: 0 0 .5rem; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; margin: 0; max-width: none; }
.section-head.center { text-align: center; }
.highlight { color: var(--brand); font-style: normal; }

/* eyebrow / kicker (used sparingly) */
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: .5rem;
}
.eyebrow::before, .kicker::before { content: ""; width: 20px; height: 2px; border-radius: 2px; background: var(--brand); }

/* --------------------------------------------------------------- buttons */
.btn, .btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; line-height: 1;
  padding: .85rem 1.5rem; border-radius: var(--r-pill); border: 1.5px solid transparent;
  white-space: nowrap; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn-primary { background: var(--brand); color: var(--on-brand); box-shadow: 0 10px 30px -8px rgba(31,224,140,.5); }
.btn-primary:hover { color: var(--on-brand); background: #35e99b; transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(31,224,140,.6); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-secondary:hover { color: var(--text); border-color: var(--brand); background: rgba(31,224,140,.08); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border-color: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,.12); }
.btn:active, .btn-primary:active, .btn-secondary:active { transform: translateY(0) scale(.98); }
.actions, .hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.actions.center, .hero-actions.center { justify-content: center; }

/* --------------------------------------------------------------- header (full-bleed) */
.site-header { position: sticky; top: 0; z-index: 100; }
.header-top { background: linear-gradient(90deg, var(--brand-dim), transparent 60%); border-bottom: 1px solid var(--line); }
.header-top .shell { max-width: none; display: flex; align-items: center; justify-content: space-between; height: 30px; gap: 1rem; }
.trust-flag { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 700; letter-spacing: .04em; color: #cfe9db; text-transform: uppercase; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 0 rgba(31,224,140,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(31,224,140,.5);} 70%{box-shadow:0 0 0 7px rgba(31,224,140,0);} 100%{box-shadow:0 0 0 0 rgba(31,224,140,0);} }
.util-nav { display: flex; gap: 1.1rem; }
.util-nav a { color: #9fb4a6; font-size: .78rem; font-weight: 600; }
.util-nav a:hover { color: var(--brand); }

.header-main { background: rgba(9,14,11,.72); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); transition: background .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled .header-main { background: rgba(7,11,9,.9); box-shadow: 0 12px 30px -14px rgba(0,0,0,.8); }
.header-main .shell { max-width: none; display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand-lockup { display: inline-flex; align-items: center; gap: .6rem; }
.brand-lockup img { height: 40px; width: auto; object-fit: contain; border-radius: 11px; box-shadow: 0 6px 18px -6px rgba(31,224,140,.5); }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: #fff; letter-spacing: -.02em; }
.brand-word em { font-style: normal; color: var(--brand); }

.primary-nav { position: relative; display: flex; align-items: center; gap: .15rem; margin-inline-start: auto; }
.primary-nav a { position: relative; color: #c4d5c9; font-weight: 600; font-size: .93rem; padding: .5rem .68rem; border-radius: 8px; }
.primary-nav a:hover { color: #fff; }
.primary-nav a.active { color: var(--brand); }
.nav-indicator { position: absolute; bottom: 2px; height: 2px; border-radius: 2px; background: var(--brand); transition: left .25s ease, width .25s ease; opacity: 0; }
.header-cta { margin-inline-start: .3rem; padding: .6rem 1.15rem; font-size: .9rem; }

.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 11px; margin-inline-start: auto; }
.burger span { display: block; height: 2px; border-radius: 2px; background: #fff; transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 5px; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { position: fixed; inset: 0; z-index: 99; display: none; flex-direction: column; padding: calc(var(--header-h) + 2rem) var(--edge) 2rem; background: rgba(7,11,9,.94); backdrop-filter: blur(18px); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--brand); }
.mobile-nav .btn-primary { margin-top: 1.4rem; align-self: flex-start; }

/* --------------------------------------------------------------- home hero (asymmetric, full-width) */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,9,.55), var(--bg) 88%), linear-gradient(90deg, var(--bg) 8%, transparent 60%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--edge);
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-content .eyebrow { margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); line-height: .98; margin: 0 0 1.1rem; letter-spacing: -.03em; }
.hero h1 .highlight { position: relative; color: var(--brand); }
.hero h1 .highlight::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .12em; background: var(--brand); opacity: .35; border-radius: 3px; }
.hero .lead { font-size: 1.16rem; color: var(--text-muted); margin: 0 0 1.7rem; max-width: 52ch; }
.hero-actions { margin-bottom: 1.5rem; }
.hero-proof { display: inline-flex; align-items: center; gap: .75rem; padding: .5rem .9rem .5rem .55rem; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--r-pill); }
.hero-proof .stack { display: inline-flex; }
.hero-proof .chip { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -9px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.hero-proof .chip:first-child { margin-left: 0; }
.hero-proof .chip:nth-child(2){ background: linear-gradient(135deg, var(--gold), #e0952f); }
.hero-proof .chip:nth-child(3){ background: linear-gradient(135deg, var(--red), #c93b4a); }
.hero-proof .text { font-size: .9rem; color: var(--text-muted); }
.hero-proof .text strong { color: var(--text); }

/* hero visual: framed generated image + floating chip */
.hero-art { position: relative; min-height: 340px; }
.hero-figure { position: relative; border-radius: var(--r-media); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--sh-2); aspect-ratio: 4/5; transform: rotate(2.5deg); background: var(--surface); }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); border-radius: inherit; }
.hero-art-chip { position: absolute; z-index: 3; right: -6%; top: 6%; width: 116px; height: 116px; border-radius: 50%;
  background: conic-gradient(from 210deg, var(--gold), #e0952f, var(--gold)); color: #3a2a05; display: grid; place-content: center; text-align: center;
  border: 3px dashed rgba(255,255,255,.55); box-shadow: 0 16px 40px -10px rgba(242,193,78,.6); transform: rotate(-6deg); }
.hero-art-chip .num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.hero-art-chip .lbl { font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-art-badge { position: absolute; z-index: 3; left: -5%; bottom: 8%; display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem; background: rgba(9,14,11,.85); border: 1px solid var(--line-2); border-radius: var(--r-pill); backdrop-filter: blur(8px); font-weight: 700; font-size: .82rem; }
.hero-art-badge .suit { color: var(--brand); font-size: 1.1rem; }
.hero-art-spark { position: absolute; color: var(--gold); font-size: 1.3rem; animation: twinkle 3s infinite ease-in-out; z-index: 3; }
.hero-art-spark--a { top: 2%; left: 8%; } .hero-art-spark--b { bottom: 6%; right: 18%; animation-delay: .7s; } .hero-art-spark--c { top: 40%; right: -2%; animation-delay: 1.3s; }
@keyframes twinkle { 0%,100%{opacity:.35; transform: scale(.85);} 50%{opacity:1; transform: scale(1.15);} }

/* stat strip */
.hero-bridge { position: relative; z-index: 3; margin-top: 8px; }
.hero-bridge .container { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--edge); }
.hero-stats-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.stat-cell { background: var(--surface); padding: 1.3rem 1.2rem; text-align: center; }
.stat-cell .stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; line-height: 1; }
.stat-cell .stat-num em { font-style: normal; color: var(--brand); }
.stat-cell .stat-label { display: block; margin-top: .4rem; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

/* --------------------------------------------------------------- cards / surfaces */
.plain-card, .floor-tile, .bento-tile, .rich-tile, .sec-tile, .support-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--sh-1); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plain-card::before, .floor-tile::before, .bento-tile::before, .rich-tile::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--brand), transparent 70%); opacity: .8;
}
.floor-tile:hover, .bento-tile:hover, .rich-tile:hover, .sec-tile:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--sh-2), var(--glow); }
.wm { position: absolute; right: .5rem; bottom: -.6rem; font-family: var(--font-display); font-weight: 800; font-size: 4.5rem; line-height: 1; color: rgba(31,224,140,.07); pointer-events: none; user-select: none; transition: color .25s ease; }
.floor-tile:hover .wm, .bento-tile:hover .wm { color: rgba(242,193,78,.12); }

.plain-card { padding: clamp(1.7rem, 3.4vw, 2.5rem); }
.plain-card > *:last-child { margin-bottom: 0; }
.plain-card h3, .plain-card h4 { color: #fff; }

/* intro / lede */
.intro-block { padding-block: 40px 8px; }
.intro-block .intro-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--edge); }
.intro-block p { font-size: 1.16rem; color: var(--text-muted); max-width: none; }
.intro-block p:first-of-type { font-size: 1.3rem; color: var(--text); }

/* floor grids */
.floor-grid { display: grid; gap: 1.15rem; }
.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.6rem 1.55rem; }
.floor-tile h3 { font-size: 1.16rem; color: #fff; margin-bottom: .5rem; }
.floor-tile p { color: var(--text-muted); margin-bottom: 0; font-size: .98rem; }

/* rich variant */
.floor-grid--rich { grid-template-columns: 1fr; gap: 1.25rem; }
.floor-grid--rich .rich-tile { padding: 2.2rem; }
.floor-grid--rich .rich-tile h3 { font-size: 1.4rem; color: #fff; margin-bottom: .9rem; }
.floor-grid--rich h4 { margin: 1.5rem 0 .9rem; padding-top: .8rem; border-top: 2px solid var(--brand); font-family: var(--font-body); font-weight: 800; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); }
.floor-grid--rich ul, .floor-grid--rich ol { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.floor-grid--rich li { position: relative; margin: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-input); padding: .9rem 1.1rem .9rem 1.4rem; color: var(--text-muted); overflow: hidden; }
.floor-grid--rich li::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--brand), var(--gold)); }

/* feature check-list */
.feature-check-list { list-style: none; padding: clamp(1.5rem, 3vw, 2.1rem); margin: 0; background: linear-gradient(160deg, rgba(31,224,140,.08), rgba(255,255,255,.02)); border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--r-card); display: grid; gap: .85rem; }
.feature-check-list li { position: relative; margin: 0; padding-left: 2.2rem; color: var(--text-muted); }
.feature-check-list li strong { color: var(--text); }
.feature-check-list li::before { content: ""; position: absolute; left: 0; top: .18rem; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/64% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/64% no-repeat; }

/* --------------------------------------------------------------- split-layout (home predictor) */
.split-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.split-media { position: relative; border-radius: var(--r-media); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--sh-2); aspect-ratio: 4/3; background: linear-gradient(140deg, var(--surface-2), var(--bg)); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after { content: "\2660"; position: absolute; right: 1rem; bottom: .4rem; font-family: var(--font-display); font-size: 4rem; color: rgba(31,224,140,.16); }
.split-body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* --------------------------------------------------------------- image slot 1: figure (builder) */
.image-figure { padding-block: 40px; }
.image-figure-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center; }
.image-figure--flip .image-figure-grid { grid-template-columns: .75fr 1.25fr; }
.image-figure--flip .image-figure-media { order: 2; }
.image-figure-media { margin: 0; border-radius: var(--r-media); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--sh-2); aspect-ratio: 16/10; background: var(--surface-2); }
.image-figure-media img { width: 100%; height: 100%; object-fit: cover; }
.image-figure-body h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); color: #fff; margin: .3rem 0 0; }

/* --------------------------------------------------------------- image slot 2: cta band */
.cta-band { position: relative; margin-block: 40px; padding-block: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.cta-band-media { position: absolute; inset: 0; z-index: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 8%, rgba(7,11,9,.7) 55%, rgba(7,11,9,.4)); }
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: #fff; margin: 0 0 1.25rem; max-width: 18ch; }
.cta-band .actions { gap: .8rem; }

/* --------------------------------------------------------------- home bespoke sections */
.bento-floor { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.15rem; }
.bento-tile { padding: 1.6rem 1.55rem; }
.bento-tile h3 { color: #fff; font-size: 1.16rem; margin-bottom: .45rem; }
.bento-tile p { color: var(--text-muted); margin-bottom: 0; }

.security-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.15rem; }
.sec-tile { padding: 1.6rem 1.4rem; text-align: center; }
.sec-tile::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--brand), transparent 70%); }
.sec-ico { width: 50px; height: 50px; margin: 0 auto .85rem; display: grid; place-items: center; border-radius: 14px; background: rgba(31,224,140,.1); color: var(--brand); }
.sec-ico svg { width: 24px; height: 24px; }
.sec-tile h3 { font-size: 1.02rem; color: #fff; margin-bottom: .35rem; }
.sec-tile p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.rewards-bento { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.15rem; }
.rewards-bento .reward-welcome { grid-column: 1 / 2; background: linear-gradient(150deg, var(--brand-2), var(--brand-dim)); border-color: transparent; }
.rewards-bento .reward-welcome::before { display: none; }
.rewards-bento .reward-welcome h3 { color: #fff; } .rewards-bento .reward-welcome p { color: rgba(255,255,255,.9); }
.rewards-bento .reward-vip { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; background: linear-gradient(120deg, rgba(242,193,78,.12), rgba(31,224,140,.06)); }
.rewards-bento .reward-vip h3 { margin: 0; color: #fff; }
.rewards-bento .reward-vip p { margin: .3rem 0 0; color: var(--text-muted); }

.support-card { padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center; }
.support-wm { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 20vw, 15rem); color: rgba(31,224,140,.05); pointer-events: none; }
.support-inner { position: relative; z-index: 1; max-width: 64ch; margin-inline: auto; }
.support-card h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; }
.support-card .eyebrow, .support-card .kicker { justify-content: center; }

/* --------------------------------------------------------------- inner page-hero */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 3.8rem); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,9,.4), var(--bg-2) 90%), linear-gradient(90deg, var(--bg-2) 6%, transparent 65%); }
.page-hero-inner { position: relative; z-index: 1; max-width: var(--wide); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .84rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); } .breadcrumb a:hover { color: var(--brand); }
.breadcrumb span[aria-current] { color: var(--brand); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero .page-sub { font-size: 1.14rem; color: var(--text-muted); max-width: 62ch; margin: .5rem 0 .75rem; }
.page-meta { font-size: .84rem; color: var(--text-dim); margin: 0; }
.page-meta .page-meta-author { color: var(--brand); font-weight: 700; }
.page-hero .actions { margin-top: 1.4rem; }

/* --------------------------------------------------------------- FAQ */
.faq-section { padding-block: 40px; }
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-input); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--line-2); box-shadow: var(--sh-1); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq-icon::before { left: 50%; top: 3px; width: 2px; height: 18px; transform: translateX(-50%); }
.faq-icon::after { top: 50%; left: 3px; height: 2px; width: 18px; transform: translateY(-50%); }
.faq-item[open] .faq-icon::before { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-answer { padding: 0 1.35rem 1.25rem; color: var(--text-muted); }
.faq-answer p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- footer (full-bleed) */
.site-footer { position: relative; margin-top: 40px; background: var(--bg-2); border-top: 1px solid var(--line); }
.footer-cta { position: relative; width: auto; max-width: var(--container); margin: 0 var(--edge); transform: translateY(-2rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem); background: linear-gradient(120deg, var(--brand-2), var(--brand-dim)); border-radius: var(--r-media);
  box-shadow: var(--sh-2); overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
@media (min-width: 1264px) { .footer-cta { margin-inline: auto; } }
.footer-cta .fc-wm { position: absolute; right: -1rem; bottom: -3rem; font-family: var(--font-display); font-weight: 800; font-size: 9rem; color: rgba(255,255,255,.12); pointer-events: none; }
.footer-cta .fc-body { position: relative; z-index: 1; }
.footer-cta h2 { color: #fff; margin: 0 0 .3rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.footer-cta p { color: rgba(255,255,255,.92); margin: 0; }
.footer-cta .fc-actions { position: relative; z-index: 1; display: flex; gap: .7rem; flex-wrap: wrap; }
.footer-cta .btn-primary { background: #06140d; color: #fff; box-shadow: none; }
.footer-cta .btn-primary:hover { background: #000; color: #fff; }
.footer-cta .btn-secondary { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); color: #fff; }
.footer-main { width: 100%; max-width: var(--container); margin: 0 auto; padding: 1rem var(--edge) 2.4rem; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.footer-brand p { margin: 1rem 0; max-width: 34ch; font-size: .94rem; color: var(--text-muted); }
.payment-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.payment-pills span { font-size: .7rem; font-weight: 700; letter-spacing: .04em; padding: .32rem .7rem; border-radius: var(--r-pill); background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--text-muted); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; margin: 0 0 1rem; }
.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 { width: 100%; max-width: var(--container); margin: 0 auto; padding: 1.2rem var(--edge); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .8rem; }
.footer-trust span { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--text-dim); }
.footer-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.footer-bottom { width: 100%; max-width: var(--container); margin: 0 auto; padding: 1.2rem var(--edge) 2rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .8rem; color: var(--text-dim); }

/* --------------------------------------------------------------- 404 */
.err-404 { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 4rem var(--edge); }
.err-404 .glyph { font-family: var(--font-display); font-weight: 800; font-size: clamp(7rem, 20vw, 16rem); line-height: .9; background: linear-gradient(120deg, var(--brand), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.err-404 h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 .5rem; }
.err-404 p { color: var(--text-muted); max-width: 44ch; margin: 0 auto 1.5rem; }

/* --------------------------------------------------------------- reveal / tilt */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-tilt] { transform: perspective(900px) rotateX(0) rotateY(0); transition: transform .2s ease; transform-style: preserve-3d; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot, .hero-art-spark { animation: none; }
  [data-tilt] { transform: none !important; }
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; margin-top: .5rem; max-width: 460px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .burger { display: block; }
  .floor-grid--cols-3, .floor-grid--cols-4, .bento-floor, .rewards-bento { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .image-figure-grid, .image-figure--flip .image-figure-grid { grid-template-columns: 1fr; }
  .image-figure--flip .image-figure-media { order: 0; }
  .rewards-bento .reward-welcome { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .util-nav { display: none; }
  .header-top .shell { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4, .bento-floor, .rewards-bento, .security-grid { grid-template-columns: 1fr; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
}
