/* ============================================================
   index.css — page-scoped styles for the baked homepage.
   Extracted from the inline <style> blocks + style="" attrs of the
   legacy website/index.html (the G9 "big debt"): hero arrows/zoom,
   quote-band, source duo, the two fully-inline sections (Know Your
   Enemy + Vote CTA), countdown, BTS grid, panoramic, trust row.
   4-layer: design layer only. Base classes (hero-slider/hero-card/
   products-grid/signup/sticky/panoramic) live in u.min.css; this file
   carries ONLY the homepage-specific styling. No inline style/JS output.
   ============================================================ */

/* ---- hero slider: zoom kenburns + arrows + per-slide title fade ---- */
.hero-slide .bg { transition: transform 8s ease-out; }
.hero-slide .bg.zoom-in { transform: scale(1); }
.hero-slide.active .bg.zoom-in { transform: scale(1.08); }
.hero-slide .bg.zoom-out { transform: scale(1.08); }
.hero-slide.active .bg.zoom-out { transform: scale(1); }
.title-fade { opacity: 0; transition: opacity 1s ease; }
.title-fade.visible { opacity: 1; }
.hero-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; padding: 0 8px; }
.hero-arrow { font-size: 2rem; padding: 0; min-width: 44px; min-height: 44px; width: auto; opacity: .35; pointer-events: auto; background: none; border: none; color: rgba(255,255,255,.8); line-height: 1; font-weight: 200; letter-spacing: 0; text-shadow: 0 1px 4px rgba(0,0,0,.4); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { opacity: .7; }
@media (max-width: 768px) { .hero-arrow { font-size: 1.5rem; } }

/* ---- quote section: navy gradient framing a central Goliath band ---- */
.quote-section { background: linear-gradient(180deg, var(--navy), var(--navy-mid)); position: relative; overflow: hidden; padding-top: 34px; }
.quote-section::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: clamp(150px, 40%, 240px); background: url(../images/goliath/goliath-badguy.webp) no-repeat; background-size: 135%; background-position: 59% 15%; opacity: .5; z-index: 0; pointer-events: none; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 30%, #000 88%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0, #000 30%, #000 88%, transparent 100%); }
.quote-section > .container { position: relative; z-index: 1; }
.quote-section .section-eyebrow, .quote-section .section-title, .quote-section .quote-text { text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.quote-section .cta-btn { background: rgba(11,18,32,.5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
@media (max-width: 768px) { .quote-section::before { height: clamp(140px, 34%, 190px); background-size: 300%; background-position: 76% 10%; } }
.quote-text--mt { margin-top: 24px; }
.quote-text--mt-sm { margin-top: 20px; }
.cta-btn--mt { margin-top: 30px; }
.cta-btn--mt-sm { margin-top: 28px; }

/* ---- heroes hub: 2-up grid + centered CTA ---- */
.heroes-grid--duo { grid-template-columns: 1fr 1fr; max-width: 700px; margin-left: auto; margin-right: auto; }
.heroes-cta-wrap { text-align: center; margin-top: 30px; }
.hero-card-img .img-p25 { object-position: center 25%; }
.hero-card-img .img-p20 { object-position: center 20%; }
.hero-card-img .img-top { object-position: center top; }

/* ---- source section (light "breather" zone): heading + 2 parallel images ---- */
.source-section { background: radial-gradient(120% 100% at 50% 40%, #ffffff 0%, #ffffff 60%, #f4f1ea 100%); padding: 80px 5% 72px; overflow: hidden; position: relative; }
.source-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.source-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.source-col { display: flex; flex-direction: column; gap: 22px; justify-content: space-between; }
.source-head { font-family: var(--font-hero); font-size: clamp(1.9rem, 3.3vw, 2.8rem); color: var(--text-dark); line-height: 1.15; letter-spacing: .5px; text-align: start; margin: 0; }
.source-head .hl { color: var(--gold); }
.source-duo .source-img { margin: 0; }
.source-duo .source-img img { width: 100%; display: block; border-radius: 4px; box-shadow: 0 16px 44px rgba(0,0,0,.14); }
.source-cta-wrap { text-align: center; margin-top: 38px; }
.source-cta { display: inline-block; }
@media (max-width: 768px) { .source-section { padding: 54px 22px; } .source-col { display: contents; } .source-duo { display: flex; flex-direction: column; gap: 22px; align-items: stretch; } .source-head { order: 1; font-size: 1.55rem; text-align: center; } .source-img--david { order: 2; } .source-img--prod { order: 3; } .source-duo .source-img { width: 100%; margin: 0; } .source-duo .source-img img { max-width: 100%; margin: 0 auto; } }

/* ---- "Know Your Enemy" — Goliath + Philistines (was fully inline) ---- */
.enemy-section { padding: 100px 5%; background: linear-gradient(180deg, var(--dark-warm), var(--dark-warm-mid), var(--dark-warm)); }
.enemy-inner { max-width: 1100px; margin: 0 auto; }
.enemy-header { text-align: center; margin-bottom: 60px; }
.enemy-eyebrow { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600; letter-spacing: 5px; color: var(--crimson-light); text-transform: uppercase; margin-bottom: 12px; }
.enemy-title { font-family: var(--font-hero); font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 2px; text-transform: uppercase; color: var(--cream-light); margin-bottom: 10px; }
.enemy-title-accent { color: var(--bronze); }
.enemy-rule { width: 150px; height: 2px; margin: 0 auto; background: linear-gradient(90deg, transparent, var(--crimson), transparent); }
.enemy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 700px; margin: 0 auto; }
.hero-card--villain { border-color: var(--crimson-alpha-15); }
.hero-card--faction { border-color: var(--faction-blue-alpha-15); }
.hero-card-label--villain { color: var(--crimson-light); }
.hero-card-label--faction { color: var(--faction-blue); }
.hero-card-cta--villain { border-color: var(--crimson-alpha-30); color: var(--crimson-light); }
.hero-card-cta--faction { border-color: var(--faction-blue-alpha-30); color: var(--faction-blue); }

/* ---- character reveal: captioned image duo ---- */
.inside-img--captioned { position: relative; }
.inside-img--captioned img { border-radius: 2px; }
.inside-caption { position: absolute; bottom: 16px; inset-inline-start: 16px; font-family: var(--font-heading); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); background: var(--navy-alt-alpha-75); padding: 6px 14px; }
.inside-header { margin-top: 50px; margin-bottom: 0; }

/* ---- products: countdown + trust row + scarcity ---- */
.countdown-bar { display: flex; flex-direction: column; align-items: center; margin: 0 auto 10px; padding: 12px 20px; max-width: 600px; background: var(--gold-alpha-06); border: 1px solid var(--gold-alpha-15); }
.cd-title { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.cd-clock { display: flex; justify-content: center; align-items: center; gap: 16px; }
.cd-block { text-align: center; }
.cd-num { font-family: var(--font-hero); font-size: 1.5rem; color: var(--gold); display: block; line-height: 1; }
.cd-label { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; display: block; }
.cd-sep { font-family: var(--font-hero); font-size: 1.3rem; color: var(--gold-alpha-30); padding-bottom: 14px; }
.cd-noscript { text-align: center; color: var(--gold); font-weight: 700; font-size: 1.1rem; margin-top: 0.5rem; }
@media (max-width: 768px) { .cd-clock { gap: 10px; } }
[dir="rtl"] .countdown-bar { direction: rtl; }
[dir="rtl"] .cd-clock { direction: ltr; }
.section-eyebrow--link { text-decoration: none; display: block; }
.prod-trust-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 20px 0 0; padding: 16px; background: var(--gold-alpha-04); border: 1px solid var(--gold-alpha-08); }
.prod-trust-item { font-family: var(--font-heading); font-size: 0.72rem; color: var(--text-light); letter-spacing: 1px; }
.bundle-banner { display: block; margin: 24px auto 0; max-width: 540px; padding: 18px 24px; background: linear-gradient(135deg, var(--gold-alpha-12), var(--gold-alpha-03)); border: 1px solid var(--gold-alpha-25); text-align: center; text-decoration: none; transition: var(--ease); }
.bundle-banner:hover { border-color: var(--gold); }
.bundle-text { font-family: var(--font-heading); font-size: 0.82rem; letter-spacing: 1.5px; color: var(--gold); display: block; }
.bundle-save { font-family: var(--font-heading); font-size: 0.68rem; letter-spacing: 1px; color: var(--text-light); margin-top: 4px; display: block; }

/* ---- world teaser panoramic ---- */
.panoramic--home { height: 600px; }
.panoramic-img { object-fit: cover; object-position: center top; width: 100%; height: 100%; }
.panoramic-content { text-align: center; max-width: 700px; padding: 0 20px; }
.panoramic-title { text-shadow: 0 2px 20px rgba(0,0,0,0.7); }
.panoramic-text { color: var(--cream); font-size: 1rem; font-weight: 300; letter-spacing: 0.5px; line-height: 1.8; margin: 20px 0 30px; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }

/* ---- behind the scenes ---- */
.bts-section { padding: 80px 0; background: var(--navy-mid); position: relative; z-index: 1; }
.bts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 40px; }
.bts-p { color: var(--text-light); font-size: 0.95rem; line-height: 1.9; font-weight: 300; }
.bts-p + .bts-p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-top: 16px; }
.bts-img { text-align: center; }
.bts-img img { width: 100%; border: 1px solid var(--gold-alpha-10); max-width: 500px; }
[dir="rtl"] .bts-grid { direction: rtl; }
@media (max-width: 768px) { .bts-grid { grid-template-columns: 1fr; } }

/* ---- vote CTA banner (was fully inline) ---- */
@keyframes votePulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); } 50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74,222,128,0); } }
.vote-section { padding: 30px 24px 40px; }
.vote-cta-link { position: relative; max-width: 700px; margin: 0 auto; text-align: center; display: block; padding: 28px 30px; border-radius: 14px; text-decoration: none; background: linear-gradient(160deg, rgba(18,18,28,0.9), var(--gold-alpha-06), rgba(12,12,18,0.95)); border: 1px solid var(--gold-alpha-15); overflow: hidden; transition: all 0.4s cubic-bezier(0.19,1,0.22,1); }
.vote-cta-link::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; transition: opacity 0.4s ease; }
.vote-cta-link:hover { border-color: var(--gold-alpha-40); box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 50px var(--gold-alpha-08); transform: translateY(-3px); }
.vote-cta-link:hover::before { opacity: 1; }
[dir="rtl"] .vote-cta-link { direction: rtl; }
.vote-live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--success-green); margin-bottom: 10px; }
.vote-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success-green); display: inline-block; animation: votePulse 2s infinite; }
.vote-title { display: block; font-family: var(--font-hero); font-size: clamp(1.2rem, 3vw, 1.7rem); letter-spacing: 4px; text-transform: uppercase; color: var(--white); margin-bottom: 8px; text-shadow: 0 0 40px var(--gold-alpha-20); }
.vote-sub { display: block; font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 2px; color: var(--text-muted); }

/* a11y — reduced motion: stop kenburns + vote pulse */
@media (prefers-reduced-motion: reduce) {
  .hero-slide .bg, .hero-slide.active .bg { transition: none; transform: none; }
  .vote-dot { animation: none; }
}
