/* ═══════════════════════════════════════════════════════════
   Glitch — Shared Sub-Page Styles
   Neon Arcade aesthetic: dark void, glassmorphism, cyan/magenta/gold
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg-void: #06060c;
  --bg-surface: #0d0d1a;
  --bg-card: #0f0f1e;
  --bg-elevated: #161630;
  --cyan: #00e5ff;
  --cyan-dim: rgba(0,229,255,.15);
  --magenta: #ff2d78;
  --magenta-dim: rgba(255,45,120,.12);
  --gold: #ffd700;
  --gold-dim: rgba(255,215,0,.12);
  --purple: #a855f7;
  --green: #22c55e;
  --text-primary: #ebebf5;
  --text-secondary: #8a8aa6;
  --text-muted: #4a4a66;
  --border: #1a1a2e;
  --glass: rgba(12,12,26,.65);
  --glass-border: rgba(255,255,255,.06);
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

img { max-width: 100%; }

/* ─── Noise Grain ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

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

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}
nav .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-brand:hover { color: var(--text-primary); }
nav .logo {
  height: 56px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,229,255,.3));
}
.nav-brand-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
nav .nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: color .2s;
}
nav .nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--cyan);
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,229,255,.3);
  color: #000 !important;
}

/* ═══════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  pointer-events: none;
  z-index: 0;
}
/* Hero background image support */
.page-hero[data-hero-img] {
  padding: 220px 0 100px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: saturate(.6) contrast(1.1);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-void) 0%, transparent 30%, transparent 60%, var(--bg-void) 100%);
}
.page-hero[data-accent="cyan"]::before { background: var(--cyan); }
.page-hero[data-accent="magenta"]::before { background: var(--magenta); }
.page-hero[data-accent="gold"]::before { background: var(--gold); }
.page-hero[data-accent="purple"]::before { background: var(--purple); }
.page-hero[data-accent="green"]::before { background: var(--green); }

.page-hero .container { position: relative; z-index: 1; }

.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════ */
.content-section {
  padding: 80px 0;
  position: relative;
}
.content-section + .content-section {
  border-top: 1px solid var(--border);
}

.content-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.15;
}

.content-text {
  max-width: 760px;
}
.content-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.content-text p:last-child { margin-bottom: 0; }
.content-text strong { color: var(--text-primary); font-weight: 600; }

.content-text--wide { max-width: 100%; }

/* ─── Accent Text ─── */
.accent-cyan { color: var(--cyan); }
.accent-magenta { color: var(--magenta); }
.accent-gold { color: var(--gold); }

/* ═══════════════════════════════════════
   INFO CARD GRID
   ═══════════════════════════════════════ */
.info-grid {
  display: grid;
  gap: 24px;
}
.info-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.info-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.info-card:hover {
  border-color: rgba(0,229,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.info-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}
.info-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.info-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── Feature Card (larger, with accent border) ─── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}
.feature-card:hover {
  border-color: rgba(0,229,255,.15);
  transform: translateY(-2px);
}
.feature-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--text-muted);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--cyan);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   STATS GRID
   ═══════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   JOB LISTING
   ═══════════════════════════════════════ */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color .3s;
}
.job-card:hover { border-color: rgba(0,229,255,.2); }
.job-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.job-meta {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 4px;
}
.job-meta span { margin-right: 16px; }
.job-apply {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.job-apply:hover {
  background: var(--cyan);
  color: #000;
}

/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover {
  border-color: rgba(0,229,255,.2);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,12,.8) 100%);
  pointer-events: none;
}

/* Feature card with image */
.feature-card-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  margin: -40px -40px 24px -40px;
  width: calc(100% + 80px);
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7);
  transition: filter .4s;
}
.feature-card:hover .feature-card-img img {
  filter: saturate(1);
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.blog-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.blog-card-date {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.contact-form {
  max-width: 640px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-btn {
  background: var(--cyan);
  color: #000;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,229,255,.3);
}

/* ═══════════════════════════════════════
   PLATFORM SHOWCASE
   ═══════════════════════════════════════ */
.platform-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.spec-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.spec-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.spec-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.game-item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: border-color .2s;
}
.game-item:hover { border-color: rgba(0,229,255,.2); }
.game-item-rank {
  color: var(--text-muted);
  font-size: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

/* ═══════════════════════════════════════
   DOWNLOAD BUTTONS
   ═══════════════════════════════════════ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.download-card:hover {
  border-color: rgba(0,229,255,.2);
  transform: translateY(-4px);
}
.download-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.download-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.download-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}
.download-btn {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,229,255,.3);
  color: #000;
}

/* ═══════════════════════════════════════
   STATUS INDICATORS
   ═══════════════════════════════════════ */
.status-grid { margin: 40px 0; }
.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.status-item-name {
  font-weight: 600;
  font-size: 15px;
}
.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,.5);
}
.status-badge.degraded .status-dot { background: var(--gold); box-shadow: 0 0 8px rgba(255,215,0,.5); }
.status-badge.down .status-dot { background: var(--magenta); box-shadow: 0 0 8px rgba(255,45,120,.5); }

/* ═══════════════════════════════════════
   LEGAL TEXT
   ═══════════════════════════════════════ */
.legal-text {
  max-width: 760px;
}
.legal-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--text-primary);
}
.legal-text h2:first-child { margin-top: 0; }
.legal-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.legal-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.legal-text ul {
  color: var(--text-secondary);
  margin: 12px 0 20px 24px;
  font-size: 15px;
  line-height: 1.8;
}
.legal-text li { margin-bottom: 8px; }
.legal-effective {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════
   SITEMAP
   ═══════════════════════════════════════ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 40px 0;
}
.sitemap-col h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: 10px; }
.sitemap-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color .2s;
}
.sitemap-col a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════
   CTA BANNER (reusable)
   ═══════════════════════════════════════ */
.cta-banner {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, var(--cyan-dim), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 17px;
  position: relative;
}
.cta-btn {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,229,255,.3);
  color: #000;
}

/* ═══════════════════════════════════════
   PILL TAGS
   ═══════════════════════════════════════ */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.pill {
  padding: 8px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--gold));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 3px solid var(--cyan);
  z-index: 1;
}
.timeline-date {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TWO-COL LAYOUT
   ═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ═══════════════════════════════════════
   TABLE
   ═══════════════════════════════════════ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.data-table th {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
}
.data-table tr:hover td { background: rgba(255,255,255,.02); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { height: 28px; }
.footer-brand span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}
.footer-legal a { color: var(--text-muted); font-size: 13px; }
.footer-legal a:hover { color: var(--text-secondary); }
.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .info-grid.cols-3,
  .info-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .platform-specs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  nav .nav-links { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .page-hero { padding: 140px 0 60px; }
  .content-section { padding: 60px 0; }
  .info-grid.cols-2,
  .info-grid.cols-3,
  .info-grid.cols-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: center; }
  .footer-legal { margin-left: 0; flex-wrap: wrap; justify-content: center; }
}
