/* ═══════════════════════════════════════
   GoalsXio Dark — Premium Navy/Gold Theme
   v1.0.0
═══════════════════════════════════════ */

:root {
  --navy:        #050d1f;
  --navy-2:      #0a1628;
  --navy-3:      #0f1f38;
  --navy-4:      #162440;
  --navy-5:      #1e3050;
  --gold:        #c9a84c;
  --gold-lt:     #e8c97a;
  --gold-dk:     #a07830;
  --gold-bg:     rgba(201,168,76,0.08);
  --gold-border: rgba(201,168,76,0.25);
  --white:       #ffffff;
  --text:        #c8d8ec;
  --text-muted:  #7a94b4;
  --text-dim:    #3d5470;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.2);
  --card-bg:     rgba(255,255,255,0.03);
  --card-hover:  rgba(255,255,255,0.06);
  --shadow:      0 8px 40px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --font:        'Inter', sans-serif;
  --font-display:'Cormorant Garamond', serif;
  --max:         1240px;
  --transition:  all 0.3s cubic-bezier(0.22,1,0.36,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--navy); color: var(--text); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.gxd-gold { color: var(--gold); }

/* ── CONTAINER ── */
.gxd-container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.gxd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 30px; border-radius: 6px; font-family: var(--font);
  font-weight: 600; font-size: 14px; cursor: pointer; border: none;
  transition: var(--transition); letter-spacing: 0.02em; white-space: nowrap;
}
.gxd-btn--gold { background: var(--gold); color: var(--navy); }
.gxd-btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.gxd-btn--ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold-border); }
.gxd-btn--ghost:hover { background: var(--gold-bg); border-color: var(--gold); }
.gxd-btn--lg { padding: 16px 40px; font-size: 15px; }

/* ── SECTION ── */
.gxd-section { padding: 120px 0; }
.gxd-section__header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.gxd-section__header h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.gxd-section__header p { font-size: 17px; color: var(--text-muted); line-height: 1.8; }
.gxd-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.gxd-line { display: inline-block; width: 40px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.gxd-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,13,31,0.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.gxd-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.gxd-logo { display: flex; align-items: center; gap: 14px; }
.gxd-logo__mark {
  width: 40px; height: 40px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 800; font-size: 13px; color: var(--navy);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.gxd-logo__name { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); line-height: 1; }
.gxd-logo__tag { display: block; font-size: 10px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }
.gxd-nav__list { display: flex; align-items: center; gap: 40px; }
.gxd-nav__list a { font-size: 13px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; transition: color 0.2s; }
.gxd-nav__list a:hover { color: var(--gold); }
.gxd-header__actions { display: flex; align-items: center; gap: 16px; }
.gxd-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.gxd-hamburger span { display: block; width: 22px; height: 1px; background: var(--text); transition: var(--transition); }

/* ══════════════════════════════════════
   HERO — Full screen split
══════════════════════════════════════ */
.gxd-hero { display: grid; grid-template-columns: 1fr 1fr; }
.gxd-hero__left {
  background: var(--navy);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
}
.gxd-hero__left::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}
.gxd-hero__left-inner { padding: 0 60px 0 32px; max-width: 620px; margin: 0 auto; }
.gxd-hero__pretitle { display: flex; align-items: center; gap: 0; margin-bottom: 32px; font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.gxd-hero__title {
  font-family: var(--font-display); font-size: clamp(52px, 6vw, 80px);
  font-weight: 600; line-height: 1.05; color: var(--white); margin-bottom: 28px;
}
.gxd-hero__sub { font-size: 17px; color: var(--text-muted); line-height: 1.8; max-width: 480px; margin-bottom: 48px; }
.gxd-hero__stats { display: flex; align-items: center; gap: 0; margin-bottom: 48px; }
.gxd-hero__stat { display: flex; flex-direction: column; padding: 0 32px; }
.gxd-hero__stat:first-child { padding-left: 0; }
.gxd-hero__stat-val { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--white); line-height: 1; }
.gxd-hero__stat-lbl { font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; margin-top: 6px; text-transform: uppercase; }
.gxd-hero__stat-div { width: 1px; height: 48px; background: var(--border); }
.gxd-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Picks Feed ── */
.gxd-hero__right { background: var(--navy-2); display: flex; align-items: center; justify-content: center; padding: 120px 32px 80px; min-height: 100%; }
.gxd-hero__right-inner { width: 100%; max-width: 480px; }
.gxd-picks-feed { background: var(--navy-3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.gxd-picks-feed__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.gxd-picks-feed__title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.gxd-picks-feed__live { font-size: 12px; color: #22c55e; font-weight: 600; }
.gxd-pick-card { padding: 18px 24px; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.gxd-pick-card:hover { background: var(--card-hover); }
.gxd-pick-card__league { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.gxd-pick-card__match { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.gxd-pick-card__footer { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gxd-pick-card__market { font-size: 12px; font-weight: 700; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-border); padding: 3px 10px; border-radius: 100px; }
.gxd-pick-card__conf { font-size: 12px; color: var(--text-muted); flex: 1; }
.gxd-pick-card__result { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.gxd-pick-card__result--win { background: rgba(34,197,94,0.1); color: #22c55e; }
.gxd-pick-card__result--pending { background: rgba(234,179,8,0.1); color: #eab308; }
.gxd-picks-feed__footer { padding: 16px 24px; text-align: center; }
.gxd-picks-feed__footer a { font-size: 13px; color: var(--gold); font-weight: 600; }
.gxd-picks-feed__footer a:hover { color: var(--gold-lt); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.gxd-marquee { background: var(--navy-4); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.gxd-marquee__track { display: inline-flex; gap: 32px; animation: marquee 30s linear infinite; font-size: 13px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
.gxd-marquee__track .gxd-gold { font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   ABOUT — Split layout
══════════════════════════════════════ */
.gxd-about { background: var(--navy-2); }
.gxd-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gxd-split__content h2 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.gxd-split__content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.gxd-about__pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.gxd-pillar { display: flex; gap: 16px; align-items: flex-start; }
.gxd-pillar__icon { color: var(--gold); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.gxd-pillar h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.gxd-pillar p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Process card */
.gxd-process-card { background: var(--navy-3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.gxd-process-card__title { padding: 20px 24px; font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.gxd-process-step { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.gxd-process-step:last-child { border-bottom: none; }
.gxd-process-step:hover { background: var(--card-hover); }
.gxd-process-step__num { font-family: var(--font-display); font-size: 28px; color: var(--text-dim); font-weight: 600; min-width: 36px; }
.gxd-process-step__text { flex: 1; }
.gxd-process-step__text strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.gxd-process-step__text span { font-size: 13px; color: var(--text-muted); }
.gxd-process-step__check { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.gxd-process-step__check--done { background: rgba(34,197,94,0.1); color: #22c55e; }
.gxd-process-step__check--gold { background: var(--gold-bg); color: var(--gold); }

/* ══════════════════════════════════════
   PERFORMANCE
══════════════════════════════════════ */
.gxd-performance { background: var(--navy); }
.gxd-perf__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.gxd-perf-big { background: var(--gold-bg); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 60px 48px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.gxd-perf-big__num { font-family: var(--font-display); font-size: clamp(72px, 10vw, 110px); font-weight: 600; color: var(--gold); line-height: 1; }
.gxd-perf-big__num span { font-size: 0.5em; }
.gxd-perf-big__lbl { font-size: 16px; font-weight: 700; color: var(--white); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.gxd-perf-big__sub { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.gxd-perf__right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gxd-perf-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: var(--transition); }
.gxd-perf-card:hover { background: var(--card-hover); border-color: var(--gold-border); }
.gxd-perf-card--gold { background: var(--gold-bg); border-color: var(--gold-border); }
.gxd-perf-card__val { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.gxd-perf-card__lbl { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.gxd-monthly { background: var(--navy-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; display: flex; flex-direction: column; gap: 20px; }
.gxd-monthly__item { display: grid; grid-template-columns: 160px 1fr 80px; align-items: center; gap: 20px; }
.gxd-monthly__label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.gxd-monthly__bar { background: var(--navy-4); border-radius: 100px; height: 6px; overflow: hidden; }
.gxd-monthly__fill { height: 100%; background: linear-gradient(90deg, var(--gold-dk), var(--gold)); border-radius: 100px; }
.gxd-monthly__val { font-size: 15px; font-weight: 700; color: var(--gold); text-align: right; }

/* ══════════════════════════════════════
   COVERAGE
══════════════════════════════════════ */
.gxd-coverage { background: var(--navy-2); }
.gxd-coverage__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.gxd-region { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.gxd-region:hover { border-color: var(--gold-border); background: var(--card-hover); }
.gxd-region__header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.gxd-region__flag { font-size: 28px; }
.gxd-region__header h3 { font-size: 16px; font-weight: 700; color: var(--white); }
.gxd-region__leagues { display: flex; flex-wrap: wrap; gap: 8px; }
.gxd-region__leagues span { font-size: 13px; color: var(--text-muted); background: var(--navy-4); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; transition: var(--transition); }
.gxd-region__leagues span:hover { border-color: var(--gold-border); color: var(--gold); }
.gxd-coverage__total { text-align: center; font-family: var(--font-display); font-size: 28px; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════════════════════
   FOLLOW CTA
══════════════════════════════════════ */
.gxd-follow { background: var(--navy-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gxd-follow__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gxd-follow__left h2 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.gxd-follow__left p { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.gxd-follow__platforms { display: flex; flex-direction: column; gap: 14px; }
.gxd-platform-card { display: flex; align-items: center; gap: 16px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; transition: var(--transition); cursor: pointer; }
.gxd-platform-card:hover { background: var(--card-hover); border-color: var(--gold-border); transform: translateX(4px); }
.gxd-platform-card--gold { border-color: var(--gold-border); background: var(--gold-bg); }
.gxd-platform-card--gold:hover { background: rgba(201,168,76,0.12); }
.gxd-platform-card__icon { font-size: 22px; width: 44px; text-align: center; flex-shrink: 0; }
.gxd-platform-card div { flex: 1; }
.gxd-platform-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.gxd-platform-card span { font-size: 13px; color: var(--text-muted); }
.gxd-platform-card__arrow { color: var(--gold); font-size: 18px; }

/* ══════════════════════════════════════
   FAQ — Two column
══════════════════════════════════════ */
.gxd-faq { background: var(--navy); }
.gxd-faq__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.gxd-faq__item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; }
.gxd-faq__q { width: 100%; text-align: left; padding: 18px 22px; font-size: 15px; font-weight: 600; background: var(--card-bg); border: none; cursor: pointer; color: var(--white); display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; font-family: var(--font); }
.gxd-faq__q:hover { background: var(--card-hover); }
.gxd-faq__q::after { content: '+'; font-size: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.gxd-faq__item.active .gxd-faq__q::after { transform: rotate(45deg); }
.gxd-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--navy-3); }
.gxd-faq__a p { padding: 0 22px 18px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.gxd-faq__item.active .gxd-faq__a { max-height: 200px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.gxd-footer { background: var(--navy-2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.gxd-footer__top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.gxd-footer__brand p { margin-top: 20px; font-size: 14px; color: var(--text-muted); line-height: 1.8; max-width: 320px; }
.gxd-footer__social { display: flex; gap: 10px; margin-top: 24px; }
.gxd-footer__social a { width: 36px; height: 36px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted); transition: var(--transition); }
.gxd-footer__social a:hover { border-color: var(--gold-border); color: var(--gold); }
.gxd-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.gxd-footer__cols h4 { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.gxd-footer__cols ul { display: flex; flex-direction: column; gap: 10px; }
.gxd-footer__cols li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.gxd-footer__cols li a:hover { color: var(--gold); }
.gxd-footer__bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.gxd-footer__bottom p { font-size: 13px; color: var(--text-dim); }
.gxd-footer__disclaimer { font-size: 12px !important; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .gxd-hero { grid-template-columns: 1fr; min-height: auto; }
  .gxd-hero__left { padding: 120px 32px 60px; }
  .gxd-hero__left::after { display: none; }
  .gxd-hero__left-inner { padding: 0; max-width: 100%; }
  .gxd-hero__right { padding: 40px 32px 80px; }
  .gxd-split { grid-template-columns: 1fr; gap: 48px; }
  .gxd-perf__grid { grid-template-columns: 1fr; }
  .gxd-coverage__grid { grid-template-columns: 1fr; }
  .gxd-follow__inner { grid-template-columns: 1fr; gap: 48px; }
  .gxd-faq__cols { grid-template-columns: 1fr; }
  .gxd-footer__top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .gxd-section { padding: 80px 0; }
  .gxd-container { padding: 0 20px; }
  .gxd-hero__stats { flex-wrap: wrap; gap: 24px; }
  .gxd-hero__stat { padding: 0; }
  .gxd-hero__stat-div { display: none; }
  .gxd-perf__right { grid-template-columns: 1fr 1fr; }
  .gxd-monthly__item { grid-template-columns: 120px 1fr 60px; }
  .gxd-footer__cols { grid-template-columns: 1fr 1fr; }
  .gxd-nav { display: none; }
  .gxd-hamburger { display: flex; }
  .gxd-nav.open { display: block; position: fixed; top: 76px; left: 0; right: 0; background: var(--navy-2); border-bottom: 1px solid var(--border); padding: 24px 32px; }
  .gxd-nav.open .gxd-nav__list { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .gxd-hero__ctas { flex-direction: column; }
  .gxd-perf__right { grid-template-columns: 1fr; }
  .gxd-footer__cols { grid-template-columns: 1fr; }
}
