/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
  --navy: #0d1b2a;
  --navy-mid: #132338;
  --navy-light: #1a2f45;
  --teal: #0fcfb0;
  --teal-dim: #0ba894;
  --teal-glow: rgba(15, 207, 176, 0.12);
  --slate: #6b8cae;
  --slate-light: #8faec8;
  --text: #e8eef4;
  --text-muted: #8faec8;
  --text-dim: #5a7490;
  --white: #ffffff;
  --card-bg: rgba(19, 35, 56, 0.8);
  --border: rgba(15, 207, 176, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: white;
}

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

/* ========================================
   LAYOUT
   ======================================== */

.section-inner,
.nav-inner,
.footer-inner,
.connect-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ========================================
   NAV
   ======================================== */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(15, 207, 176, 0.04) 100%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.hero-photo {
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--teal) 0%, transparent 60%);
  border-radius: 16px;
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.9);
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  background: white;
  color: var(--navy);
}

.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-outline:hover {
  background: var(--teal-glow);
  color: white;
  border-color: white;
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  background: var(--navy-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.about-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.about-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-card a {
  color: var(--teal);
}

.about-card a:hover {
  color: white;
}

/* ========================================
   ILF CALLOUT
   ======================================== */

.ilf-callout {
  background: linear-gradient(135deg, rgba(15, 207, 176, 0.06) 0%, var(--navy) 60%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.ilf-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.ilf-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.ilf-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.ilf-text p {
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 600px;
}

.ilf-btn {
  margin-top: 1.25rem;
  display: inline-block;
}

.ilf-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  min-width: 140px;
}

.ilf-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.ilf-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.ilf-stat-label {
  font-size: 0.775rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .ilf-inner {
    grid-template-columns: 1fr;
  }

  .ilf-badge {
    flex-direction: row;
    gap: 1rem;
    padding: 1.25rem;
    min-width: unset;
  }

  .ilf-icon {
    margin-bottom: 0;
  }
}

/* ========================================
   BRAND
   ======================================== */

.brand {
  background: var(--navy);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 0.5rem;
}

.brand-text h2 {
  margin-bottom: 0.5rem;
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.brand-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.brand-text strong {
  color: var(--white);
  font-weight: 600;
}

.brand-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}

.social-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.social-pill.youtube {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  border-color: rgba(255, 0, 0, 0.2);
}

.social-pill.youtube:hover {
  background: rgba(255, 0, 0, 0.2);
  color: white;
  border-color: rgba(255, 80, 80, 0.4);
}

.social-pill.instagram {
  background: rgba(193, 53, 132, 0.1);
  color: #e1679a;
  border-color: rgba(193, 53, 132, 0.2);
}

.social-pill.instagram:hover {
  background: rgba(193, 53, 132, 0.2);
  color: white;
  border-color: rgba(225, 103, 154, 0.4);
}

.brand-quote-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.75rem;
}

cite {
  font-size: 0.8rem;
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}

.brand-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--navy-light);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pillar-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--teal);
  min-width: 24px;
}

/* ========================================
   GAME SECTION
   ======================================== */

.game {
  background: var(--navy-mid);
}

.game-sub {
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
  color: var(--slate-light);
  margin-bottom: 2.5rem;
}

.game-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.game-detail h3,
.game-why h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.game-detail p {
  font-size: 0.93rem;
  line-height: 1.75;
}

.game-specs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.spec-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal);
}

.game-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.game-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.game-list li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700;
}

.game-buy-btn {
  display: inline-block;
  margin-top: 1.25rem;
}

.game-tag {
  display: inline-block;
  background: var(--teal-glow);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ========================================
   CONNECT
   ======================================== */

.connect {
  background: var(--navy);
}

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

.connect-inner .section-label {
  display: block;
}

.connect-sub {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.connect-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-decoration: none;
  min-width: 220px;
  transition: all 0.2s;
}

.connect-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  background: var(--navy-light);
}

.connect-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.connect-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.yt-icon {
  background: rgba(255, 0, 0, 0.12);
  color: #ff4444;
}

.ig-icon {
  background: rgba(193, 53, 132, 0.12);
  color: #e1679a;
}

.li-icon {
  background: rgba(10, 102, 194, 0.12);
  color: #4d9fe0;
}

.connect-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.connect-handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.connect-desc {
  font-size: 0.825rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  max-width: 180px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-photo {
    max-width: 380px;
    margin: 0 auto;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .game-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .section-inner,
  .nav-inner,
  .footer-inner,
  .connect-inner {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .game-specs {
    flex-direction: column;
    gap: 1rem;
  }

  .connect-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .connect-card {
    min-width: unset;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
