/* ============================================================
   Zeus Virtue — Promo website styles
   Mirrors the app design system (see ../docs/design_system.md)
   ============================================================ */

:root {
  --bg-base:           #0A1430;
  --bg-surface:        #162555;
  --bg-surface-accent: #1F2F6B;
  --outline:           #3A4D8A;
  --outline-soft:      #1F2F6B;

  --olympian-gold: #D4A02B;
  --pale-gold:     #F0CB6F;
  --marble-ivory:  #F1ECDC;
  --lightning-blue:#5BB5F0;
  --sandstone-warm:#C7B58F;

  --sapphire: #1A5BB5;
  --ruby:     #B5172E;
  --emerald:  #1F7A5E;
  --citrine:  #D4A02B;

  --text-primary:   #F1ECDC;
  --text-secondary: #C7B58F;
  --text-tertiary:  #8E8474;

  --shadow-temple: 0 12px 28px 0 rgba(5, 10, 31, 0.40);
  --shadow-gold:   0 0 24px 1px rgba(212, 160, 43, 0.22);

  --font-display: 'Cinzel', serif;
  --font-quote:   'Cormorant Garamond', serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ----- Base ----- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  /* Subtle Greek-key meander tile background */
  background:
    radial-gradient(circle at 20% 0%, rgba(31,47,107,0.6) 0%, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(26,91,181,0.25) 0%, transparent 50%),
    url('images/tile_meander.webp') center / 200px 200px repeat,
    var(--bg-base);
  background-blend-mode: normal, normal, soft-light, normal;
}

a { color: var(--olympian-gold); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--pale-gold); }

img { max-width: 100%; display: block; }

/* ----- Typography utilities ----- */
.font-display { font-family: var(--font-display); }
.font-quote   { font-family: var(--font-quote); }
.font-body    { font-family: var(--font-body); }

.t-gold      { color: var(--olympian-gold); }
.t-ivory     { color: var(--marble-ivory); }
.t-secondary { color: var(--text-secondary); }

/* Hero treatment: small caps, mixed weight, italic accent */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: 1.2px;
  color: var(--marble-ivory);
  text-shadow: 0 8px 36px rgba(0,0,0,0.55);
}
.hero-headline em {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  color: var(--pale-gold);
  letter-spacing: 0;
  background: linear-gradient(180deg, #F0CB6F 0%, #D4A02B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olympian-gold);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  letter-spacing: 1px;
  color: var(--marble-ivory);
  margin: 12px 0 16px;
}
.section-title .accent {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, #F0CB6F 0%, #D4A02B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.section-lead {
  font-family: var(--font-quote);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--sandstone-warm);
  font-style: italic;
  max-width: 560px;
}

/* Body text inside containers — left-aligned */
.prose {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  text-align: left;
  max-width: 720px;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.75px;
  color: var(--marble-ivory);
  margin: 36px 0 12px;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--olympian-gold);
  margin: 28px 0 8px;
}
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 16px; padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; }
.prose strong { color: var(--marble-ivory); font-weight: 700; }

/* ----- Layout ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; position: relative; }
@media (max-width: 640px) { section { padding: 64px 0; } }

/* ----- Top nav ----- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10,20,48,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline-soft);
}
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.topnav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--marble-ivory);
}
.topnav-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: radial-gradient(circle at 50% 35%, rgba(240,203,111,0.6) 0%, rgba(212,160,43,0.18) 55%, var(--bg-base) 100%);
  border: 1.5px solid var(--olympian-gold);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(212,160,43,0.35);
}
.topnav-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.topnav-links { display: flex; align-items: center; gap: 22px; }
.topnav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
}
.topnav-links a:hover { color: var(--marble-ivory); }
.topnav-cta {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--olympian-gold);
  color: var(--bg-base);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0;
  cursor: pointer;
}
.topnav-cta:hover { background: var(--pale-gold); color: var(--bg-base); }

@media (max-width: 720px) {
  .topnav-links { display: none; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 120px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/hero_bg.webp') center / cover no-repeat;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,48,0.30) 0%, rgba(10,20,48,0.55) 50%, rgba(10,20,48,0.95) 100%),
    linear-gradient(90deg, rgba(10,20,48,0.85) 0%, rgba(10,20,48,0.55) 35%, rgba(10,20,48,0.18) 60%, transparent 80%);
  z-index: 1;
}
@media (max-width: 880px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(10,20,48,0.55) 0%, rgba(10,20,48,0.78) 50%, rgba(10,20,48,0.97) 100%);
  }
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-phone { display: none; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241,236,220,0.08);
  border: 1px solid rgba(212,160,43,0.4);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pale-gold);
}
.hero-eyebrow::before {
  content: '✦';
  color: var(--pale-gold);
  font-size: 14px;
}
.hero-sub {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--sandstone-warm);
  line-height: 1.5;
  max-width: 540px;
  margin: 22px 0 32px;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-gold {
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F0CB6F 0%, #D4A02B 100%);
  color: var(--bg-base);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-temple), var(--shadow-gold);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: var(--shadow-temple), 0 0 32px 2px rgba(212,160,43,0.35); color: var(--bg-base); }

.btn-ghost {
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: transparent;
  color: var(--marble-ivory);
  border: 1.5px solid rgba(241,236,220,0.35);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(241,236,220,0.06); color: var(--marble-ivory); }

.hero-badges {
  display: flex; gap: 18px; align-items: center; margin-top: 32px;
  color: var(--text-secondary); font-size: 13px;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; }
.hero-badges .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pale-gold); display: inline-block; }

/* Hero phone (right column) — uses CSS device frame */
.hero-phone {
  display: flex; justify-content: center; align-items: center;
  perspective: 1200px;
}
.phone-frame {
  width: 280px;
  aspect-ratio: 420 / 912;
  border-radius: 38px;
  background: #000;
  padding: 10px;
  box-shadow:
    0 0 0 2px rgba(212,160,43,0.4),
    0 30px 80px rgba(5,10,31,0.65),
    0 0 60px rgba(91,181,240,0.25);
  transform: rotate(-3deg);
}
.phone-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

/* ----- Section: Pillars (4 virtue cards) ----- */
.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-header .section-lead { margin: 12px auto 0; }

.virtue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .virtue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .virtue-grid { grid-template-columns: 1fr; } }

.virtue-card {
  background: linear-gradient(180deg, rgba(22,37,85,0.85) 0%, rgba(10,20,48,0.85) 100%);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.virtue-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-temple);
  border-color: rgba(212,160,43,0.45);
}
.virtue-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(212,160,43,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.virtue-card img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1.5px solid rgba(212,160,43,0.4);
  box-shadow: 0 0 28px rgba(91,181,240,0.18);
}
.virtue-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--marble-ivory);
  margin: 0 0 6px;
}
.virtue-card .gem {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.virtue-card.wisdom .gem    { color: #5BB5F0; }
.virtue-card.courage .gem   { color: #D43A4F; }
.virtue-card.justice .gem   { color: #3FB489; }
.virtue-card.temperance .gem{ color: #F0CB6F; }
.virtue-card p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* ----- Section: Features (alternating rows) ----- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 840px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .feature-row.reverse { direction: ltr; }
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.75px;
  color: var(--marble-ivory);
  margin: 14px 0 14px;
  line-height: 1.2;
}
.feature-text h3 em {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  color: var(--olympian-gold);
}
.feature-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 14px;
  max-width: 480px;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.feature-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: var(--font-body);
}
.feature-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olympian-gold);
  font-size: 14px;
}

.feature-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 300px;
}
.feature-art img {
  border-radius: 24px;
  box-shadow: var(--shadow-temple);
  border: 1.5px solid rgba(212,160,43,0.25);
  max-width: 100%;
}

/* ----- Section: App preview (Swiper carousel) ----- */
.preview-section { background: linear-gradient(180deg, transparent 0%, rgba(22,37,85,0.45) 50%, transparent 100%); }
.swiper-wrap {
  padding: 16px 0 56px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.swiper { padding: 24px 16px 48px !important; overflow: visible !important; }
.swiper-slide {
  display: flex; justify-content: center;
  width: auto;
}
.preview-frame {
  width: 280px;
  aspect-ratio: 420 / 912;
  background: #000;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(212,160,43,0.35),
    0 30px 60px rgba(5,10,31,0.55);
}
.preview-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.swiper-pagination-bullet {
  background: var(--text-tertiary) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--olympian-gold) !important;
}

/* ----- Section: Stats / proof ----- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: rgba(22,37,85,0.65);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 28px 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  background: linear-gradient(180deg, #F0CB6F 0%, #D4A02B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* ----- Section: CTA ----- */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/cta_bg.webp') center / cover;
  opacity: 0.55;
  z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,48,0.7) 0%, rgba(10,20,48,0.55) 50%, rgba(10,20,48,0.92) 100%);
  z-index: 1;
}
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--marble-ivory);
  margin: 0 0 16px;
  line-height: 1.1;
}
.cta-section h2 em {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  color: var(--pale-gold);
}
.cta-section p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--sandstone-warm);
  margin: 0 auto 36px;
  max-width: 540px;
  line-height: 1.5;
}

/* ----- Footer ----- */
.footer {
  border-top: 1px solid var(--outline-soft);
  padding: 56px 0 28px;
  background: rgba(10,20,48,0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olympian-gold);
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
}
.footer a:hover { color: var(--marble-ivory); }
.footer-brand p {
  color: var(--text-tertiary);
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 320px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--outline-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.5px;
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ----- Sub-page hero (privacy / terms / contact) ----- */
.subpage-hero {
  padding: 140px 0 56px;
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--outline-soft);
}
.subpage-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(91,181,240,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(212,160,43,0.18) 0%, transparent 55%);
  z-index: 0;
}
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--marble-ivory);
  margin: 0 0 12px;
}
.subpage-hero h1 em {
  font-family: var(--font-quote);
  font-style: italic;
  color: var(--olympian-gold);
}
.subpage-hero .lead {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 18px;
  color: var(--sandstone-warm);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}
.subpage-content { padding: 64px 0 96px; }

/* ----- Contact form ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.75px;
  color: var(--marble-ivory);
  margin: 0 0 12px;
}
.contact-info p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 14px;
}
.contact-info a { font-weight: 500; }

.field-group { margin-bottom: 18px; }
.field-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.field {
  width: 100%;
  background: var(--bg-surface-accent);
  border: 1.5px solid var(--outline);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 120ms ease;
}
.field:focus { border-color: var(--olympian-gold); }
.field::placeholder { color: var(--text-tertiary); }
textarea.field { min-height: 140px; resize: vertical; }

input[type="file"].field { padding: 10px; }
.field-note { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }

/* ----- Privacy acceptance button (REQUIRED) ----- */
.privacy-accept-btn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 16px 22px;
  display: flex; justify-content: center;
  background: linear-gradient(180deg, transparent 0%, rgba(10,20,48,0.92) 35%, rgba(10,20,48,0.98) 100%);
  pointer-events: none;
}
.privacy-accept-btn.hidden { display: none; }
.accept-btn {
  pointer-events: auto;
  width: 100%;
  max-width: 480px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F0CB6F 0%, #D4A02B 100%);
  color: var(--bg-base);
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(5,10,31,0.6), 0 0 24px rgba(212,160,43,0.35);
}
.accept-btn:hover { background: var(--pale-gold); }

/* AOS fade-up reset for users without JS */
[data-aos] { opacity: 1; transform: none; }
.aos-init { opacity: 0; }
.aos-init.aos-animate { opacity: 1; }
