/* =========================================================
   ICE ANGLER CHAMPIONS — Promo Website Styles
   Deep-Lake Navy · Glacier Blue · Aurora Teal · Catch Gold
   Fredoka display · Open Sans body
   ========================================================= */

:root {
  /* Brand palette (from docs/ideas.md) */
  --glacier-blue: #5AA8D6;
  --glacier-bright: #7EC2E5;
  --deep-lake-navy: #1B3A5C;
  --deep-lake-darker: #0F2640;
  --aurora-teal: #3FCBB0;
  --aurora-glow: #6CDDC5;
  --catch-gold: #E6B448;
  --catch-gold-bright: #F0C84A;
  --burnished-gold: #B58A35;

  /* Surfaces */
  --snow-white: #F2F7FB;
  --frosted-steel: #DCE6EE;
  --night-water: #081A2C;       /* deepest bg */
  --night-water-2: #0A2238;     /* mid bg */
  --floe-stone: #15324F;        /* card bg */
  --ice-divider: #2A4E73;
  --ice-divider-faint: #1F3E5E40;

  /* Text */
  --cream: #F2F7FB;
  --cream-warm: #E6EEF6;
  --slate-ice: #22303B;
  --text-on-dark: #F2F7FB;
  --text-on-dark-muted: #BFD3E4;
  --text-on-dark-faded: #87A4BD;

  /* Fonts (from docs/ideas.md) */
  --font-display: 'Fredoka', 'Inter', system-ui, sans-serif;
  --font-heading: 'Fredoka', 'Inter', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --radius-card: 16px;
  --radius-btn: 12px;

  --grad-cta: linear-gradient(135deg, #1B3A5C 0%, #3FCBB0 100%);
  --grad-gold: linear-gradient(90deg, #B58A35 0%, #E6B448 50%, #F0C84A 100%);
  --grad-aurora: linear-gradient(120deg, #3FCBB0 0%, #5AA8D6 50%, #7752A8 100%);
  --grad-night-fade: linear-gradient(180deg, #0A2238 0%, #081A2C 100%);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--night-water);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--catch-gold); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--catch-gold-bright); }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.15;
  color: var(--cream);
  margin: 0;
}

.t-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--aurora-teal);
  margin-bottom: 14px;
}

.accent { color: var(--catch-gold); font-style: italic; font-weight: 600; }
.accent-aurora { color: var(--aurora-glow); font-style: italic; font-weight: 600; }
.accent-cream { color: var(--cream); }

.aurora-text {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.outlined-gold {
  -webkit-text-stroke: 1.5px var(--catch-gold);
  color: transparent;
}

/* Divider — snowflake-style horizontal */
.divider-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 16px;
}
.divider-glyph .line {
  height: 2px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--aurora-teal), transparent);
}
.divider-glyph .glyph {
  color: var(--aurora-teal);
  font-size: 20px;
  filter: drop-shadow(0 0 10px rgba(63,203,176,0.55));
  line-height: 1;
}

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 26, 44, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ice-divider);
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(63,203,176,0.5), 0 8px 22px rgba(8,26,44,0.7);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.nav-links a:hover { color: var(--aurora-teal); }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 12px;
    background: var(--floe-stone);
    border: 1px solid var(--ice-divider);
    border-radius: 14px;
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,26,44,0.55) 0%, rgba(8,26,44,0.92) 100%),
    var(--grad-night-fade);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
  z-index: 0;
  filter: contrast(1.05) saturate(1.1);
}

.hero::after {
  /* Aurora glow + glacier-blue accent */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 380px at 78% 18%, rgba(63,203,176,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 15% 85%, rgba(90,168,214,0.28) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(63, 203, 176, 0.13);
  border: 1px solid rgba(63, 203, 176, 0.45);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aurora-teal);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--aurora-teal);
  box-shadow: 0 0 12px var(--aurora-teal);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin: 0 0 22px 0;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 6px 32px rgba(8,26,44,0.7);
}

.hero-title .row { display: block; }
.hero-title .row.italic { font-style: italic; font-weight: 500; color: var(--catch-gold); }
.hero-title .row.outline { -webkit-text-stroke: 1.5px var(--catch-gold); color: transparent; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-on-dark-muted);
  max-width: 640px;
  margin: 0 0 36px 0;
  text-align: left;
  line-height: 1.6;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  min-height: 52px;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--deep-lake-darker);
  box-shadow: 0 8px 26px rgba(230, 180, 72, 0.42), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.07); color: var(--deep-lake-darker); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(63, 203, 176, 0.55);
}
.btn-ghost:hover { border-color: var(--aurora-teal); color: var(--aurora-teal); background: rgba(63,203,176,0.07); }

/* ---------- Sections ---------- */

section.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(34px, 5.4vw, 56px);
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  color: var(--cream);
  font-weight: 700;
}

.section-head p {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background:
    linear-gradient(135deg, rgba(63,203,176,0.08) 0%, rgba(90,168,214,0.10) 100%),
    var(--night-water);
  padding: 56px 0;
  border-top: 1px solid var(--ice-divider);
  border-bottom: 1px solid var(--ice-divider);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 58px);
  color: var(--catch-gold);
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(230,180,72,0.35);
}
.stat .num.aurora { color: var(--aurora-teal); text-shadow: 0 0 24px rgba(63,203,176,0.4); }
.stat .num.glacier { color: var(--glacier-bright); text-shadow: 0 0 24px rgba(126,194,229,0.4); }
.stat .lbl {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 12px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
}

/* ---------- Features grid ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(21,50,79,0.92) 0%, rgba(15,38,64,0.96) 100%);
  border: 1px solid var(--ice-divider);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-aurora);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63,203,176,0.55);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}
.feature-card:hover::before { opacity: 1; }

.feature-card .ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 180, 72, 0.14);
  border: 1px solid rgba(230, 180, 72, 0.45);
  color: var(--catch-gold);
  margin-bottom: 18px;
  font-size: 26px;
}
.feature-card.alt .ico {
  background: rgba(63, 203, 176, 0.16);
  border-color: rgba(63, 203, 176, 0.5);
  color: var(--aurora-teal);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  color: var(--cream);
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Trophy 5 grid ---------- */

.trophy-section {
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(63,203,176,0.18) 0%, transparent 70%),
    var(--night-water);
  position: relative;
}

.trophy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.trophy-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--floe-stone);
  border: 2px solid var(--catch-gold-bright);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 30px rgba(230,180,72,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trophy-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.65), 0 0 40px rgba(240,200,74,0.38); }

.trophy-card .img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse 80% 70% at 50% 35%, rgba(63,203,176,0.22) 0%, transparent 70%),
    linear-gradient(180deg, #1F4267 0%, #0F2640 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.trophy-card .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));
}

.trophy-card .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8,26,44,0.94) 65%);
  padding: 30px 12px 12px;
  text-align: center;
}
.trophy-card .label .name {
  font-family: var(--font-heading);
  font-size: 13.5px;
  letter-spacing: 0.4px;
  color: var(--cream);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.trophy-card .label .domain {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--catch-gold);
  margin-top: 4px;
  display: block;
}

@media (max-width: 920px) {
  .trophy-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .trophy-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Rank ladder ---------- */

.rank-ladder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 980px;
}

.rank-pill {
  position: relative;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1.5px solid rgba(63, 203, 176, 0.35);
  transition: all 0.25s ease;
}
.rank-pill .num {
  display: inline-block;
  color: var(--aurora-teal);
  margin-right: 8px;
  font-size: 12px;
  opacity: 0.85;
}
.rank-pill.active {
  background: var(--deep-lake-navy);
  color: var(--cream);
  border-color: var(--aurora-teal);
  box-shadow: 0 0 18px rgba(63,203,176,0.45);
}
.rank-pill.divine {
  background: var(--grad-gold);
  color: var(--deep-lake-darker);
  border-color: var(--catch-gold-bright);
  box-shadow: 0 0 24px rgba(240,200,74,0.55);
}

/* ---------- Screenshots Swiper ---------- */

.screens-wrap {
  position: relative;
  padding: 0 8px;
}

.screen-frame {
  width: 240px;
  max-width: 60vw;
  aspect-ratio: 1260 / 2736;
  margin: 0 auto;
  background: #050E1A;
  border-radius: 32px;
  padding: 10px;
  border: 1.5px solid var(--ice-divider);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(63, 203, 176, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.screen-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #000;
  border-radius: 4px;
  z-index: 2;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.swiper { padding: 30px 0 50px; }
.swiper-pagination-bullet { background: var(--text-on-dark-faded); opacity: 0.65; }
.swiper-pagination-bullet-active { background: var(--aurora-teal); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--aurora-teal); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; font-weight: 800; }

.screen-caption {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

/* ---------- Journal quote card ---------- */

.journal-card {
  background:
    linear-gradient(180deg, rgba(63,203,176,0.06) 0%, var(--floe-stone) 100%);
  border: 1.5px solid var(--aurora-teal);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.journal-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--aurora-teal);
  line-height: 1;
  opacity: 0.45;
}

.journal-card .stamp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(63,203,176,0.14);
  border: 1.5px solid var(--aurora-teal);
  color: var(--aurora-teal);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 18px;
}

.journal-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.2px;
  margin: 0 0 14px;
  color: var(--cream);
  font-weight: 700;
}

.journal-card .verbatim {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--catch-gold);
  letter-spacing: 0.2px;
  margin: 20px 0;
  padding: 20px 24px;
  background: rgba(230,180,72,0.07);
  border-left: 3px solid var(--catch-gold);
  border-radius: 0 12px 12px 0;
  line-height: 1.55;
}

.journal-card .body-text {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.journal-card .body-text strong { color: var(--cream); font-weight: 600; }

/* ---------- AI disclosure strip ---------- */

.ai-strip {
  margin-top: 40px;
  background: var(--night-water);
  border: 1px dashed rgba(63,203,176,0.4);
  border-radius: 14px;
  padding: 20px 26px;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  line-height: 1.6;
}

.ai-strip .ico-ai {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63,203,176,0.13);
  border: 1px solid rgba(63,203,176,0.45);
  color: var(--aurora-teal);
}
.ai-strip strong { color: var(--cream); }

/* ---------- CTA section ---------- */

.cta-section {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--night-water) 0%, #050E1A 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/cta_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: contrast(1.05) saturate(1.1);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 480px at 50% 40%, rgba(63,203,176,0.28) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,26,44,0.7) 0%, rgba(8,26,44,0.92) 100%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 78px);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.05;
}
.cta-section h2 .stroke {
  -webkit-text-stroke: 2px var(--catch-gold);
  color: transparent;
  font-style: italic;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  font-style: italic;
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

/* ---------- Page hero (legal/contact) ---------- */

.page-hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(63,203,176,0.18) 0%, transparent 65%),
    linear-gradient(180deg, var(--night-water-2), var(--night-water));
  text-align: center;
  border-bottom: 1px solid var(--ice-divider);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.5px;
  color: var(--cream);
  font-weight: 700;
}

.page-hero .sub {
  margin: 18px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 17px;
  font-style: italic;
  max-width: 640px;
}

/* ---------- Legal content ---------- */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

.legal-content .meta {
  display: inline-block;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--aurora-teal);
  margin-bottom: 28px;
  font-weight: 600;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 40px 0 14px;
  color: var(--cream);
  letter-spacing: 0;
  font-weight: 600;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin: 26px 0 10px;
  color: var(--cream);
  letter-spacing: 0;
  font-weight: 600;
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  text-align: left;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--cream); font-weight: 600; }
.legal-content em { color: var(--text-on-dark); }
.legal-content a { color: var(--catch-gold); text-decoration: underline; text-decoration-color: rgba(230,180,72,0.4); }
.legal-content a:hover { color: var(--catch-gold-bright); text-decoration-color: var(--catch-gold-bright); }

/* ---------- Contact ---------- */

.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.contact-card {
  background: var(--floe-stone);
  border: 1px solid var(--ice-divider);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.field input, .field textarea {
  width: 100%;
  background: var(--night-water);
  border: 1px solid var(--ice-divider);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-on-dark-faded); }
.field input:focus, .field textarea:focus {
  border-color: var(--aurora-teal);
  box-shadow: 0 0 0 3px rgba(63,203,176,0.18);
}
.field textarea { min-height: 140px; resize: vertical; }

.contact-info {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--ice-divider);
  color: var(--text-on-dark-muted);
  font-size: 14px;
  text-align: center;
}

.text-center { text-align: center; }

/* ---------- Footer ---------- */

footer {
  background: #050E1A;
  border-top: 1px solid var(--ice-divider);
  padding: 64px 0 30px;
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
}

footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

footer h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 14px;
  font-weight: 600;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: var(--text-on-dark-muted); }
footer a:hover { color: var(--aurora-teal); }

footer .col-brand p {
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.6;
  font-style: italic;
}

.compliance-footer {
  border-top: 1px solid var(--ice-divider);
  padding-top: 22px;
  margin-top: 12px;
  color: var(--text-on-dark-faded);
  font-size: 13px;
  text-align: center;
  line-height: 1.75;
}
.compliance-footer .strong {
  color: var(--cream);
  font-weight: 600;
}

footer .legal {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark-faded);
}

@media (max-width: 800px) {
  footer .inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .inner { grid-template-columns: 1fr; }
}

/* ---------- Privacy acceptance button ---------- */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 16px 22px;
  background: linear-gradient(180deg, rgba(5,14,26,0) 0%, #050E1A 38%);
  display: flex;
  justify-content: center;
}
.privacy-accept-btn.hidden { display: none; }

.accept-btn {
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  border: 1px solid rgba(63,203,176,0.3);
  background: var(--grad-cta);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(8,26,44,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 24px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.accept-btn:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ---------- Utility ---------- */

.section-bg-alt { background: linear-gradient(180deg, var(--night-water-2) 0%, var(--night-water) 100%); }
.muted { color: var(--text-on-dark-muted); }
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ice-divider);
  color: var(--text-on-dark-muted);
  margin: 4px 4px 4px 0;
}
.tag-pill.gold { color: var(--catch-gold); border-color: rgba(230,180,72,0.45); background: rgba(230,180,72,0.08); }
.tag-pill.aurora { color: var(--aurora-teal); border-color: rgba(63,203,176,0.45); background: rgba(63,203,176,0.10); }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  section.section { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .journal-card { padding: 26px 22px; }
  .contact-card { padding: 28px 22px; }
  .legal-content { padding: 44px 16px 80px; }
  .rank-pill { font-size: 11px; padding: 10px 16px; letter-spacing: 1.4px; }
}
