/* =================================================================
   AI Business Summit Live — design system
   Premium dark "live event" aesthetic · gold accent · editorial serif
   ================================================================= */

:root {
  /* Surfaces (base → elevated → floating) */
  --ink:        #0c0d12;
  --ink-2:      #12141b;
  --ink-3:      #1a1d27;
  --ink-4:      #232733;
  --line:       rgba(245, 240, 230, 0.10);
  --line-strong:rgba(245, 240, 230, 0.18);

  /* Text */
  --text:       #f5f1e8;
  --dim:        #c6c2b8;
  --muted:      #8d8a82;

  /* Gold accent + cool counterpoint */
  --gold:       #e9b653;
  --gold-2:     #f6d690;
  --gold-deep:  #b6842c;
  --teal:       #57c9b4;

  /* Shadows — layered, gold-tinted, low opacity */
  --sh-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.25);
  --sh-md: 0 6px 18px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.3);
  --sh-lg: 0 24px 60px rgba(0,0,0,.5), 0 8px 22px rgba(0,0,0,.35);
  --glow:  0 0 0 1px rgba(233,182,83,.35), 0 14px 40px rgba(233,182,83,.18);

  /* Spacing scale */
  --sp-1: 6px; --sp-2: 12px; --sp-3: 20px; --sp-4: 32px;
  --sp-5: 52px; --sp-6: 80px; --sp-7: 120px;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* atmosphere: layered radial gradients + fine grain */
  background-image:
    radial-gradient(1100px 520px at 78% -8%, rgba(233,182,83,.16), transparent 60%),
    radial-gradient(900px 600px at 8% 4%, rgba(87,201,180,.07), transparent 55%),
    radial-gradient(700px 700px at 50% 120%, rgba(233,182,83,.06), transparent 60%);
  background-attachment: fixed;
}

/* subtle grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035;
  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='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 1; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 600; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; line-height: 1.2; }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
p { color: var(--dim); }
a { color: var(--gold-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
strong { color: var(--text); font-weight: 700; }

.kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.kicker.boxed {
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 7px 16px; background: rgba(233,182,83,.06);
  color: var(--gold-2); letter-spacing: .12em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease;
  line-height: 1; text-align: center;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2a1d05; box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(233,182,83,.5), 0 20px 48px rgba(233,182,83,.28); color: #2a1d05; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: rgba(245,240,230,.04); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(245,240,230,.09); transform: translateY(-2px); color: var(--text); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ---------- Header / nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,13,18,.72); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--text); letter-spacing: -0.02em; }
.brand:hover { color: var(--text); }
.brand-mark { flex: 0 0 auto; border-radius: 9px; box-shadow: var(--sh-sm); }
.brand .tld { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--dim); font-weight: 600; font-size: .95rem; padding: 8px 13px; border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(245,240,230,.06); }
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 11px 20px; font-size: .94rem; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line-strong); color: var(--text); font-size: 1.3rem; width: 44px; height: 44px; border-radius: 11px; cursor: pointer; }

/* ---------- Sections ---------- */
section { padding: var(--sp-6) 0; position: relative; }
.section-alt { background: rgba(0,0,0,.22); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto var(--sp-5); text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 12px; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.prose p { margin-bottom: 18px; font-size: 1.06rem; }
.prose h2 { margin: 38px 0 16px; }
.prose h3 { margin: 30px 0 12px; color: var(--gold-2); }
.prose ul { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--dim); }
.prose ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Inner-page hero + breadcrumb ---------- */
.page-hero { padding: 54px 0 40px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .container { max-width: 820px; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 16px; }
.page-hero .lead { font-size: 1.12rem; color: var(--dim); max-width: 660px; margin: 0 auto; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: .45; }
.factbox { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin: 8px 0 24px; }
.factbox h3 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.factbox dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; margin: 0; }
.factbox dt { color: var(--muted); font-size: .95rem; }
.factbox dd { color: var(--text); font-weight: 600; font-size: .95rem; margin: 0; }

/* ---------- Hero ---------- */
.hero { padding: clamp(64px, 11vw, 130px) 0 var(--sp-6); text-align: center; }
.hero .container { max-width: 920px; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--dim); max-width: 660px; margin: 0 auto 30px; }
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-bottom: 26px; color: var(--text); font-weight: 600; font-size: .98rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-note { font-size: .9rem; color: var(--muted); margin-top: 16px; }

/* Countdown */
.countdown { display: inline-flex; gap: 10px; margin: 4px auto 28px; flex-wrap: wrap; justify-content: center; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 66px; padding: 12px 8px; background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--sh-sm); }
.cd-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--gold-2); line-height: 1; }
.cd-lbl { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.cd-live { color: var(--teal); font-weight: 700; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--sh-md);
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--sh-lg); }
.card .ic { font-size: 1.7rem; display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 13px; background: rgba(233,182,83,.10); border: 1px solid var(--line-strong); margin-bottom: 16px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .98rem; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.step::before { counter-increment: step; content: counter(step); flex: 0 0 auto; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #2a1d05; background: linear-gradient(180deg, var(--gold-2), var(--gold)); border-radius: 50%; }
.step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step p { font-size: .97rem; margin: 0; }

/* Speaker cards */
.speaker { text-align: center; }
.speaker .avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--gold-2); background: radial-gradient(circle at 30% 25%, var(--ink-4), var(--ink-3)); border: 1px solid var(--line-strong); box-shadow: var(--sh-sm); }
.speaker h3 { font-size: 1.12rem; margin-bottom: 3px; }
.speaker .role { font-size: .88rem; color: var(--muted); }

/* Pills / chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { padding: 8px 16px; border-radius: 100px; background: rgba(245,240,230,.04); border: 1px solid var(--line); font-size: .9rem; font-weight: 600; color: var(--dim); }

/* Callout box */
.callout { background: linear-gradient(180deg, rgba(233,182,83,.08), rgba(233,182,83,.03)); border: 1px solid var(--line-strong); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 22px 26px; }
.callout p { margin: 0; color: var(--text); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 700; font-family: var(--font-body); color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; flex: 0 0 auto; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > div { padding: 0 24px 22px; color: var(--dim); font-size: 1rem; }
.faq-item > div a { text-decoration: underline; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .container { max-width: 760px; }
.final-cta .panel { background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line-strong); border-radius: 22px; padding: clamp(40px, 6vw, 68px) 28px; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.final-cta .panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 240px at 50% -10%, rgba(233,182,83,.18), transparent 65%); pointer-events: none; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { font-size: 1.12rem; color: var(--dim); max-width: 540px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.footer { background: #08090d; border-top: 1px solid var(--line); padding: var(--sp-6) 0 40px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--dim); font-size: .95rem; }
.footer ul a:hover { color: var(--gold); }
.footer .blurb { color: var(--muted); font-size: .92rem; max-width: 360px; margin-top: 14px; }
.disclaimer { border-top: 1px solid var(--line); padding-top: 26px; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.disclaimer strong { color: var(--dim); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none; flex-direction: column; align-items: center; gap: 1px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #2a1d05;
  padding: 12px 18px; border-radius: 14px; box-shadow: var(--sh-lg); text-align: center;
}
.sticky-cta strong { color: #2a1d05; font-size: 1rem; }
.sticky-cta .sticky-sub { font-size: .76rem; color: #4a360f; font-weight: 600; }
.sticky-cta:hover { color: #2a1d05; }
/* .sticky-cta + .has-sticky-cta padding shown only on mobile (see media query) */

/* ---------- Animations (transform + opacity only) ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.fade-in { opacity: 0; animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .18s; } .d3 { animation-delay: .3s; } .d4 { animation-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 8px; max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .nav.open .nav-links { max-height: 420px; }
  .nav-links a { padding: 13px 14px; border-radius: 9px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { padding: 18px; }
  .sticky-cta { display: flex; }
  .has-sticky-cta { padding-bottom: 84px; }
}

/* ---------- Hero 2-column + original event-pass visual + credibility strip ---------- */
.hero .container.hero-grid { max-width: 1140px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero-copy { text-align: left; }
.hero-copy .hero-meta { justify-content: flex-start; }
.hero-copy .hero-sub { margin-left: 0; margin-right: 0; }
.hero-copy .hero-cta { justify-content: flex-start; }
.hero-copy .countdown { margin-left: 0; margin-right: auto; }
.hero-benefit { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.95rem); font-weight: 500; color: var(--text); margin: 2px 0 22px; line-height: 1.18; }
.hero-benefit em { font-style: italic; color: var(--gold); }

.hero-visual { display: flex; justify-content: center; }
.pass { width: 100%; max-width: 372px; background: linear-gradient(155deg, var(--ink-4), var(--ink-2)); border: 1px solid var(--line-strong); border-radius: 20px; padding: 26px 26px 22px; box-shadow: var(--sh-lg); position: relative; overflow: hidden; transform: rotate(-2.2deg); }
.pass::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 200px at 78% -12%, rgba(233,182,83,.20), transparent 62%); pointer-events: none; }
.pass-row { display: flex; justify-content: space-between; align-items: center; position: relative; }
.pass-brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; }
.pass-tag { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #2a1d05; background: linear-gradient(180deg, var(--gold-2), var(--gold)); padding: 5px 11px; border-radius: 100px; }
.pass h3 { font-size: 1.55rem; margin: 18px 0 2px; }
.pass-sub { color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.pass dl { display: grid; grid-template-columns: auto 1fr; gap: 9px 14px; margin: 18px 0; padding: 16px 0; border-top: 1px dashed var(--line-strong); border-bottom: 1px dashed var(--line-strong); }
.pass dt { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.pass dd { margin: 0; text-align: right; color: var(--text); font-weight: 700; font-size: .86rem; }
.pass-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pass-bars { flex: 1; height: 30px; background-image: repeating-linear-gradient(90deg, var(--text) 0 2px, transparent 2px 4px, var(--text) 4px 5px, transparent 5px 9px); opacity: .5; border-radius: 2px; }
.pass-admit { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.cred-strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(0,0,0,.18); text-align: center; }
.cred-label { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cred-names { color: var(--dim); font-size: 1.02rem; margin: 0; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-meta, .hero-copy .hero-cta { justify-content: center; }
  .hero-copy .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-copy .countdown { margin-left: auto; margin-right: auto; }
  .hero-visual { order: 2; }
  .pass { transform: rotate(-1.5deg); max-width: 350px; }
  /* collapse to hamburger here so the full desktop nav never overflows on tablets */
  .nav-links { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 8px; max-height: 0; overflow: hidden; transition: max-height .28s ease; }
  .nav.open .nav-links { max-height: 460px; }
  .nav-links a { padding: 13px 14px; border-radius: 9px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
}

/* ---------- Conversion popup ---------- */
.abs-pop-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(6,7,10,.74); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; animation: popFade .25s ease; }
.abs-pop-card { width: 100%; max-width: 440px; background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line-strong); border-radius: 20px; overflow: hidden; box-shadow: var(--sh-lg); position: relative; animation: popUp .35s cubic-bezier(.2,.8,.2,1); }
.abs-pop-close { position: absolute; top: 11px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid var(--line-strong); color: var(--text); font-size: 1.2rem; line-height: 1; cursor: pointer; transition: background .2s ease; }
.abs-pop-close:hover { background: rgba(0,0,0,.8); }
.abs-pop-img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); }
.abs-pop-body { padding: 24px 26px 26px; text-align: center; }
.abs-pop-kicker { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.abs-pop-body h3 { font-size: 1.45rem; margin: 0 0 8px; }
.abs-pop-body > p { font-size: .96rem; color: var(--dim); margin: 0 0 18px; }
.btn-secure { display: flex; flex-direction: column; gap: 2px; width: 100%; padding: 15px 20px; border: none; border-radius: 12px; cursor: pointer; background: linear-gradient(180deg, #f7b652, #e8851c); box-shadow: 0 10px 26px rgba(232,133,28,.35); transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease; }
.btn-secure:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(232,133,28,.46); color: #fff; }
.btn-secure:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.btn-secure strong { color: #fff; font-size: 1.1rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; text-shadow: 0 1px 1px rgba(0,0,0,.28); }
.btn-secure span { color: rgba(255,255,255,.92); font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.abs-pop-fine { margin-top: 12px; font-size: .76rem; color: var(--muted); }
body.abs-pop-open { overflow: hidden; }
@keyframes popFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes popUp { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .abs-pop-overlay, .abs-pop-card { animation: none; } }

/* ---------- Small-screen fixes (keep header controls on-screen, no horizontal spill) ---------- */
@media (max-width: 760px) {
  .pass { transform: none; }
  .sticky-cta { left: 10px; right: 10px; }
}
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .brand { font-size: .98rem; gap: 9px; }
  .nav-inner { gap: 8px; }
  .cd-unit { min-width: 58px; padding: 11px 6px; }
  .cd-num { font-size: 1.5rem; }
}

/* ---------- Home page only: orange accent to match the official event theme ---------- */
body.home-theme {
  --gold: #f7951d;
  --gold-2: #ffb24d;
  --gold-deep: #c96a10;
  background-image:
    radial-gradient(1100px 520px at 78% -8%, rgba(247,149,29,.18), transparent 60%),
    radial-gradient(900px 600px at 8% 4%, rgba(247,149,29,.06), transparent 55%),
    radial-gradient(700px 700px at 50% 120%, rgba(247,149,29,.07), transparent 60%);
}
