/* =========================================================
   Lucky 777 Sweets — Promo Site Styles
   Theme: deep royal blue velvet + crimson + warm gold marquee
   Typography: Bungee (display), Plus Jakarta Sans (body)
   ========================================================= */

:root {
  /* Brand */
  --blue-royal:    #1B1452;
  --blue-velvet:   #2A1F6E;
  --blue-midnight: #0E0A2E;
  --blue-deep:     #08051C;
  --red-crimson:   #C41E3A;
  --red-cherry:    #E53151;
  --gold-bright:   #FFCC33;
  --gold-deep:     #C68F1A;
  --cream:         #FFF1C2;

  /* Accent */
  --accent-electric: #FFE94A;
  --accent-magenta:  #E83AA0;
  --accent-teal:     #3DCFB6;
  --accent-coin:     #FFB627;
  --accent-violet:   #7B5CD9;

  /* Text */
  --text-primary:   #FFF8DC;
  --text-secondary: #D6CDA8;
  --text-tertiary:  #9E9576;
  --text-on-gold:   #0E0A2E;
  --text-on-light:  #1B1452;

  /* Tier */
  --tier-common:    #7B5CD9;
  --tier-rare:      #C41E3A;
  --tier-legendary: #FFCC33;

  /* Surfaces */
  --surface-1: rgba(27, 20, 82, 0.65);
  --surface-2: rgba(14, 10, 46, 0.75);
  --surface-edge: rgba(255, 204, 51, 0.18);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--blue-midnight);
  background-image:
    radial-gradient(1200px 700px at 18% -8%, rgba(255, 204, 51, 0.10) 0%, transparent 60%),
    radial-gradient(900px 600px at 110% 28%, rgba(196, 30, 58, 0.18) 0%, transparent 55%),
    radial-gradient(1100px 800px at 50% 110%, rgba(123, 92, 217, 0.18) 0%, transparent 60%),
    url('images/bg_velvet.webp');
  background-size: auto, auto, auto, 700px auto;
  background-attachment: fixed, fixed, fixed, fixed;
  background-position: top left, top right, bottom center, top center;
  background-color: var(--blue-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

[x-cloak] { display: none !important; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   Typography utilities
   ========================================================= */
.font-display { font-family: 'Bungee', system-ui, sans-serif; letter-spacing: 0.2px; }
.font-body    { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }

.t-display-xxl { font-family: 'Bungee', sans-serif; font-size: clamp(40px, 7vw, 72px); line-height: 1.05; letter-spacing: 0.5px; }
.t-display-xl  { font-family: 'Bungee', sans-serif; font-size: clamp(32px, 5.4vw, 52px); line-height: 1.1; }
.t-display-lg  { font-family: 'Bungee', sans-serif; font-size: clamp(26px, 4vw, 38px); line-height: 1.15; }
.t-heading-md  { font-family: 'Bungee', sans-serif; font-size: 22px; line-height: 1.25; }
.t-eyebrow     { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 12px; line-height: 1.2; letter-spacing: 2.4px; text-transform: uppercase; }
.t-body-xl     { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; }
.t-body-lg     { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 17px; line-height: 1.55; }
.t-body-md     { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; font-size: 15px; line-height: 1.6; }
.t-body-sm     { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; font-size: 13px; line-height: 1.55; }

.text-cream     { color: var(--cream); }
.text-gold      { color: var(--gold-bright); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary  { color: var(--text-tertiary); }
.text-crimson   { color: var(--red-crimson); }

/* Gold gradient fill */
.text-gold-grad {
  background: linear-gradient(180deg, #FFE07A 0%, #FFCC33 50%, #C68F1A 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35));
}
.text-cherry-grad {
  background: linear-gradient(180deg, #FF6B7E 0%, #E53151 60%, #8E1224 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Outlined display text */
.text-outline-gold {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-bright);
  text-shadow: 0 0 24px rgba(255,204,51,0.35);
}

/* Italic accent */
em.accent {
  font-style: italic;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--gold-bright);
}

/* =========================================================
   Layout primitives
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 18px; } }

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 56px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 40px 0; }
}

.section-heading { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.section-heading p { margin: 14px auto 0; color: var(--text-secondary); }

/* Decorative divider — gold marquee dots */
.divider-marquee {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 24px auto;
}
.divider-marquee::before,
.divider-marquee::after {
  content: ""; height: 1px; flex: 1; max-width: 120px;
  background: linear-gradient(90deg, transparent, rgba(255,204,51,0.5), transparent);
}
.divider-marquee .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(255,204,51,0.7), 0 0 4px rgba(255,204,51,1);
}

/* Marquee bulb top border (decorative section edge) */
.marquee-edge {
  position: relative;
  padding-top: 14px;
}
.marquee-edge::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background:
    radial-gradient(circle at 8px 2px, var(--gold-bright) 0 2px, transparent 2.5px) 0 0 / 24px 4px repeat-x;
  filter: drop-shadow(0 0 4px rgba(255,204,51,0.7));
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), filter 0.18s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(180deg, #FFE07A 0%, #FFCC33 50%, #C68F1A 100%);
  color: var(--text-on-gold);
  box-shadow:
    0 8px 24px rgba(255, 204, 51, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 14px 32px rgba(255,204,51,0.45), inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -2px 0 rgba(0,0,0,0.15); }

.btn-ghost {
  background: rgba(255, 248, 220, 0.06);
  color: var(--cream);
  border: 1.5px solid rgba(255, 204, 51, 0.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 204, 51, 0.10); border-color: var(--gold-bright); }

.btn-crimson {
  background: linear-gradient(180deg, #E53151 0%, #C41E3A 60%, #8E1224 100%);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-crimson:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(8,5,28,0.85), rgba(8,5,28,0.55));
  border-bottom: 1px solid rgba(255, 204, 51, 0.12);
}
.site-nav .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Bungee', sans-serif;
  color: var(--cream);
  font-size: 17px;
  letter-spacing: 0.5px;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.brand .brand-777 { color: var(--gold-bright); text-shadow: 0 0 12px rgba(255,204,51,0.5); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-out);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(255,204,51,0.7);
}

.menu-toggle {
  display: none;
  background: rgba(255,204,51,0.08);
  border: 1px solid rgba(255,204,51,0.4);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 12px;
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column; gap: 6px;
  padding: 14px 18px 18px;
  background: rgba(8,5,28,0.95);
  border-top: 1px solid rgba(255,204,51,0.18);
}
.mobile-menu a {
  font-family: 'Bungee', sans-serif;
  font-size: 15px;
  color: var(--cream);
  padding: 12px 8px;
  border-radius: 10px;
}
.mobile-menu a:hover { background: rgba(255,204,51,0.08); color: var(--gold-bright); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu.open { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 30%, transparent 0%, rgba(8,5,28,0.65) 100%),
    linear-gradient(180deg, rgba(8,5,28,0.4) 0%, rgba(8,5,28,0.85) 100%);
  z-index: -1;
}
.hero .copy { text-align: center; max-width: 880px; margin: 0 auto; }

.hero .eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 204, 51, 0.10);
  border: 1px solid rgba(255, 204, 51, 0.45);
  color: var(--gold-bright);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero .eyebrow-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-coin);
  box-shadow: 0 0 8px var(--accent-coin);
}

.hero h1 {
  margin: 0 0 18px;
  font-family: 'Bungee', sans-serif;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 1.0;
  color: var(--cream);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.hero h1 .lucky { display: block; font-size: 0.42em; letter-spacing: 4px; color: var(--text-secondary); margin-bottom: 6px; }
.hero h1 .seven { color: var(--gold-bright); text-shadow: 0 0 24px rgba(255,204,51,0.6), 0 4px 24px rgba(0,0,0,0.6); }
.hero h1 .sweets { display: block; font-style: italic; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.55em; color: var(--cream); letter-spacing: 0; margin-top: 4px; }

.hero .lede {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Tagline strip below hero */
.tagline-strip {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 204, 51, 0.15);
  border-bottom: 1px solid rgba(255, 204, 51, 0.15);
  background: rgba(8, 5, 28, 0.55);
}
.tagline-strip .item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.tagline-strip .item .icon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}

/* =========================================================
   Stat band
   ========================================================= */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 204, 51, 0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 204, 51, 0.20);
}
.stat-band .cell {
  background: linear-gradient(180deg, rgba(27,20,82,0.85), rgba(14,10,46,0.92));
  padding: 32px 18px;
  text-align: center;
}
.stat-band .num {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(32px, 4.4vw, 48px);
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,204,51,0.35);
  margin-bottom: 8px;
}
.stat-band .lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
@media (max-width: 720px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Feature cards
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(42, 31, 110, 0.55), rgba(14, 10, 46, 0.85));
  border: 1px solid rgba(255, 204, 51, 0.22);
  border-radius: var(--r-lg);
  padding: 28px 26px 32px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 51, 0.55);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,204,51,0.25);
}
.feature-card .illo {
  width: 100%; aspect-ratio: 1 / 1; max-height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(27,20,82,0.85), rgba(14,10,46,0.95));
  display: flex; align-items: center; justify-content: center;
}
.feature-card .illo img { width: 100%; height: 100%; object-fit: cover; }

.feature-card .tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(255, 204, 51, 0.10);
  border: 1px solid rgba(255, 204, 51, 0.4);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 10px;
  line-height: 1.2;
}
.feature-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}

/* =========================================================
   How-it-works (3 steps with vertical timeline)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,204,51,0.4) 18%, rgba(255,204,51,0.4) 82%, transparent);
  z-index: 0;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}
.step {
  position: relative; z-index: 1;
  padding: 0 12px;
  text-align: center;
}
.step .num {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold-deep) 100%);
  border: 2px solid rgba(255, 248, 220, 0.85);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bungee', sans-serif;
  font-size: 30px;
  color: var(--text-on-gold);
  box-shadow:
    0 0 0 6px rgba(8, 5, 28, 0.95),
    0 0 0 8px rgba(255, 204, 51, 0.35),
    0 12px 28px rgba(255, 204, 51, 0.35);
}
.step h4 {
  font-family: 'Bungee', sans-serif;
  font-size: 18px;
  color: var(--cream);
  margin: 0 0 8px;
}
.step p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 280px;
}

/* =========================================================
   Screenshots — phone frames carousel
   ========================================================= */
.shots-wrap {
  position: relative;
  padding: 40px 0 50px;
}
.shots-swiper { padding: 30px 10px 50px !important; }
.shots-swiper .swiper-slide {
  display: flex; justify-content: center; align-items: center;
  width: auto !important;
}

.phone-frame {
  width: 220px;
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  background: linear-gradient(180deg, #1a1340, #0a071f);
  padding: 9px;
  border: 1.5px solid rgba(255, 204, 51, 0.3);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.65),
    0 0 0 2px rgba(255,204,51,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  flex-shrink: 0;
}
.phone-frame::before {
  content: "";
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 18px;
  background: #000; border-radius: 12px;
  z-index: 2;
}
.phone-frame .screen {
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--blue-royal);
}
.phone-frame .screen img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 540px) {
  .phone-frame { width: 180px; border-radius: 30px; padding: 7px; }
  .phone-frame::before { width: 60px; height: 14px; top: 12px; }
  .phone-frame .screen { border-radius: 22px; }
}

.shots-swiper .swiper-pagination-bullet {
  background: rgba(255, 204, 51, 0.4);
  opacity: 1;
}
.shots-swiper .swiper-pagination-bullet-active {
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(255,204,51,0.7);
}

.shots-caption {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 12px;
}

/* =========================================================
   "Inside the cookbook" two-column showcase
   ========================================================= */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .showcase { grid-template-columns: 1fr; gap: 36px; }
}
.showcase .vault-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.showcase .vault-grid .tile {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(42,31,110,0.7), rgba(14,10,46,0.95));
  border: 1.5px solid rgba(255,204,51,0.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px;
  text-align: center;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.showcase .vault-grid .tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,51,0.55);
}
.showcase .vault-grid .tile .ico {
  font-family: 'Bungee', sans-serif;
  font-size: 28px;
  color: var(--gold-bright);
  line-height: 1; margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(255,204,51,0.5);
}
.showcase .vault-grid .tile.tier-rare    .ico { color: var(--red-cherry); text-shadow: 0 0 16px rgba(229,49,81,0.5); }
.showcase .vault-grid .tile.tier-common  .ico { color: var(--accent-violet); text-shadow: 0 0 16px rgba(123,92,217,0.5); }
.showcase .vault-grid .tile .lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.showcase .copy h2 { margin: 0 0 18px; }
.showcase .copy p  { margin: 0 0 14px; color: var(--text-secondary); text-align: left; }
.showcase .copy ul { margin: 18px 0 0; padding: 0; list-style: none; }
.showcase .copy ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.showcase .copy ul li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,204,51,0.7);
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  padding: 100px 0;
  isolation: isolate;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('images/cta_bg.webp');
  background-size: cover; background-position: center;
  opacity: 0.55;
  z-index: -2;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 70% at 50% 50%, transparent 0%, rgba(8,5,28,0.85) 100%);
  z-index: -1;
}
.cta-band h2 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(32px, 5.4vw, 56px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.cta-band p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid rgba(255, 204, 51, 0.18);
  background: linear-gradient(180deg, rgba(27,20,82,0.55), rgba(14,10,46,0.75));
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out);
}
.faq details[open] { border-color: rgba(255, 204, 51, 0.5); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Bungee', sans-serif;
  font-size: 22px;
  color: var(--gold-bright);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer {
  padding: 0 24px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.faq .answer p { margin: 0 0 10px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid rgba(255, 204, 51, 0.12);
  background: rgba(8, 5, 28, 0.85);
  padding: 60px 0 40px;
}
.site-footer .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .site-footer .row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer .row { grid-template-columns: 1fr; }
}
.site-footer h5 {
  font-family: 'Bungee', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold-bright);
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-out);
}
.site-footer ul a:hover { color: var(--gold-bright); }
.site-footer .legal {
  border-top: 1px solid rgba(255, 204, 51, 0.10);
  padding-top: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.55;
}
.site-footer .brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.site-footer .brand-row img { width: 40px; height: 40px; border-radius: 10px; }
.site-footer .brand-row .name {
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.site-footer .brand-row .name .gold { color: var(--gold-bright); }
.site-footer .blurb {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

/* =========================================================
   Legal pages (privacy, terms, contact)
   ========================================================= */
.legal-hero {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.legal-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(196, 30, 58, 0.18), transparent 60%);
  z-index: -1;
}
.legal-hero h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(34px, 5.4vw, 54px);
  color: var(--cream);
  margin: 0 0 12px;
}
.legal-hero h1 .gold { color: var(--gold-bright); }
.legal-hero .meta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  background: linear-gradient(180deg, rgba(27,20,82,0.55), rgba(14,10,46,0.75));
  border: 1px solid rgba(255, 204, 51, 0.15);
  border-radius: var(--r-lg);
  margin-bottom: 80px;
}
.legal-content h2 {
  font-family: 'Bungee', sans-serif;
  font-size: 22px;
  color: var(--gold-bright);
  margin: 38px 0 14px;
  letter-spacing: 0.5px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  color: var(--cream);
  margin: 24px 0 10px;
}
.legal-content p,
.legal-content li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { padding-left: 22px; margin: 6px 0 16px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--gold-bright);
  border-bottom: 1px dotted rgba(255,204,51,0.5);
}
.legal-content a:hover { color: var(--accent-electric); border-bottom-color: var(--accent-electric); }
.legal-content strong { color: var(--cream); font-weight: 700; }

/* Contact form */
.contact-form {
  display: grid; gap: 16px;
}
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.form-row input,
.form-row textarea,
.form-row select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  background: rgba(8, 5, 28, 0.6);
  border: 1.5px solid rgba(255, 204, 51, 0.2);
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold-bright);
  background: rgba(8, 5, 28, 0.85);
  box-shadow: 0 0 0 3px rgba(255,204,51,0.18);
}
.form-row textarea { min-height: 160px; resize: vertical; font-family: 'Plus Jakarta Sans', sans-serif; }
.form-row input[type="file"] { padding: 10px 12px; cursor: pointer; }
.contact-actions { display: flex; justify-content: flex-end; margin-top: 8px; }

/* =========================================================
   Privacy acceptance button (Flutter integration)
   ========================================================= */
.privacy-accept-btn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 5, 28, 0.92) 35%, rgba(8, 5, 28, 0.98) 100%);
  z-index: 9999;
  display: flex; justify-content: center;
  pointer-events: none;
}
.privacy-accept-btn .accept-btn { pointer-events: auto; }
.privacy-accept-btn.hidden { display: none; }

.accept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 18px 28px;
  border: none;
  border-radius: 999px;
  font-family: 'Bungee', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  background: linear-gradient(180deg, #FFE07A 0%, #FFCC33 50%, #C68F1A 100%);
  color: var(--text-on-gold);
  box-shadow:
    0 12px 32px rgba(255, 204, 51, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.18s var(--ease-out), filter 0.18s var(--ease-out);
}
.accept-btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.accept-btn:active { transform: translateY(0); }

/* =========================================================
   AOS-friendly initial state safety
   ========================================================= */
[data-aos] { will-change: transform, opacity; }
