/* ── Fighters Live NO — Arena Design System ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --red:      #d4000c;
  --red-glow: #ff1a26;
  --gold:     #c9960c;
  --gold-lt:  #f0b429;
  --bg:       #080809;
  --surface:  #111114;
  --surface2: #18181d;
  --surface3: #202028;
  --text:     #eeeef2;
  --muted:    #7a7a88;
  --border:   #252530;
  --border2:  #32323f;
  --radius:   2px;
  --font-display: 'Oswald', sans-serif;
  --font-sub:     'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:    1200px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h4, h5, .eyebrow, .stat-label, .nav-label {
  font-family: var(--font-sub);
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.06em; }
p  { opacity: 0.78; max-width: 66ch; line-height: 1.75; }

/* ── Layout ── */
.container       { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
section          { padding: 6rem 0; }
.bg-alt          { background: var(--surface); }
.bg-dark         { background: #050507; }
.bg-surface2     { background: var(--surface2); }

/* ── Eyebrow / badge ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-glow);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red-glow);
  flex-shrink: 0;
}

/* ── Section Head ── */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p  { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(212,0,12,0.35);
}
.btn-primary:hover {
  background: transparent;
  color: var(--red-glow);
  box-shadow: 0 0 32px rgba(255,26,38,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}
.btn-outline:hover { border-color: var(--red); color: var(--red-glow); }
.btn-gold {
  background: var(--gold);
  color: #080809;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,150,12,0.3);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold-lt);
  box-shadow: 0 0 40px rgba(240,180,41,0.4);
}
.btn-sm  { padding: 0.5rem 1.4rem; font-size: 0.82rem; }
.btn-lg  { padding: 1.1rem 2.8rem; font-size: 1.1rem; }

/* ─────────────────────────────────────── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,8,9,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner  { display: flex; align-items: center; gap: 1.5rem; height: 70px; }
.logo img      { height: 42px; width: auto; max-width: 200px; }
.logo-text     {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.logo-text span { color: var(--red-glow); }
.nav-toggle    { display: none; }
.site-nav {
  display: flex; align-items: center; gap: 1.8rem; margin-left: auto;
  font-family: var(--font-sub); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.site-nav a { color: var(--muted); transition: color 0.2s; }
.site-nav a:hover { color: var(--text); }
.lang-switcher { display: flex; gap: 0.3rem; margin-left: 0.75rem; }
.lang-pill {
  font-family: var(--font-sub); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.22rem 0.55rem;
  border: 1px solid var(--border2); color: var(--muted);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: all 0.2s;
}
.lang-pill:hover, .lang-active { border-color: var(--red); color: var(--red-glow); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto;
}
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--text); transition: 0.2s; }

/* ─────────────────────────────────────── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/img/fighter-1.jpg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
}
/* Multi-layer dramatic overlay */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,9,0.3) 0%, rgba(8,8,9,0.95) 100%),
    linear-gradient(90deg, rgba(8,8,9,0.9) 0%, rgba(8,8,9,0.2) 60%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,0,12,0.12) 0%, transparent 60%);
}
/* Giant background text */
.hero-watermark {
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 780px;
}
.hero-inner .eyebrow { font-size: 0.85rem; margin-bottom: 1.25rem; }
.hero-inner h1 { margin-bottom: 1.5rem; }
.hero-inner h1 .accent { color: var(--red-glow); }
.hero-inner h1 .gold   { color: var(--gold-lt); }
.hero-inner > p { font-size: 1.1rem; margin-bottom: 2.5rem; opacity: 0.75; max-width: 54ch; }
.hero-actions  { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats bar at bottom of hero */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(8,8,9,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.hero-stats-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--red-glow);
  line-height: 1;
  display: block;
}
.hero-stat strong.gold-num { color: var(--gold-lt); }
.hero-stat span {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ─────────────────────────────────── TICKER STRIP ── */
.ticker-strip {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}
.ticker-track span { padding: 0 2rem; border-right: 1px solid rgba(255,255,255,0.2); }
.ticker-track span::before { content: '▶ '; font-size: 0.6rem; opacity: 0.7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ──────────────────────────────────── SHOWCASE ── */
.showcase-wrap { position: relative; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 0.5rem;
}
.showcase-main {
  grid-row: 1 / 3;
  overflow: hidden;
  position: relative;
}
.showcase-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,0,12,0.08) 0%, transparent 50%);
}
.showcase-sub { overflow: hidden; }
.showcase-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.85);
}
.showcase-grid div:hover img { transform: scale(1.06); filter: saturate(1.1); }
/* Corner accent */
.showcase-corner {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* ──────────────────────────────────── PARTNERS ── */
.partners-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.partners-inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.partners-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.partners-inner img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.28;
  transition: opacity 0.2s;
}
.partners-inner img:hover { opacity: 0.65; }

/* ──────────────────────────────────── FEATURES ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--surface2);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.feature-card:hover { background: var(--surface3); }
.feature-card:hover::before { transform: scaleX(1); }
/* Octagon icon badge */
.feature-ico {
  width: 52px; height: 52px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background: rgba(212,0,12,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--red-glow);
  transition: background 0.2s;
}
.feature-card:hover .feature-ico { background: rgba(212,0,12,0.28); }
.feature-ico svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.feature-card p { font-size: 0.9rem; opacity: 0.65; max-width: none; }
/* Corner number */
.feature-card .f-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

/* ──────────────────────────────────── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-media {
  position: relative;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 0.4s;
}
.split-media:hover img { filter: saturate(1.1); }
/* Red corner frame */
.split-media::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60%; height: 60%;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  z-index: 1;
  pointer-events: none;
}
.split-media::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40%; height: 40%;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.split-copy h2 { margin-bottom: 1.25rem; }
.split-copy p  { margin-bottom: 2rem; }

/* ──────────────────────────────────── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 3/2;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.7);
  transition: filter 0.4s, transform 0.4s;
}
.gallery-grid img:hover {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}

/* ──────────────────────────── DIAGONAL DIVIDER ── */
.section-divider {
  height: 60px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  margin-bottom: -1px;
}
.section-divider-up {
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  margin-top: -1px;
}

/* ──────────────────────────────────── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--surface2);
  padding: 2.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.pricing-card:hover { background: var(--surface3); }
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.operator-name {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.price-display {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red-glow);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-freq {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.pricing-card ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.pricing-card ul li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 0.25rem; }

/* ──────────────────────────────────── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.step p { font-size: 0.88rem; margin: 0 auto; }

/* ──────────────────────────────────── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: var(--surface2);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.value-card:hover { background: var(--surface3); }
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.value-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

/* ──────────────────────────────── MILESTONES ── */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.milestone-block {
  background: var(--surface2);
  padding: 3rem 1.5rem;
  text-align: center;
}
.milestone-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red-glow);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.milestone-num.gold { color: var(--gold-lt); }
.milestone-label {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ──────────────────────────────────── FAQ ── */
.faq-list  { display: flex; flex-direction: column; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item input { display: none; }
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-label::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.25s;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.faq-item input:checked ~ .faq-label { color: var(--red-glow); }
.faq-item input:checked ~ .faq-label::after { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item input:checked ~ .faq-body { max-height: 500px; padding-bottom: 1.5rem; }
.faq-body p { font-size: 0.95rem; opacity: 0.7; }

/* ──────────────────────────────────── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: -3rem 0;
  padding: 9rem 0;
}
.cta-band::before {
  content: 'FIGHTERS';
  position: absolute;
  font-family: var(--font-display);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-band .inner { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.cta-band p  { margin: 0 auto 2.5rem; opacity: 0.92; }

/* ──────────────────────────────── PAGE HERO ── */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(212,0,12,0.04));
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { opacity: 0.65; }

/* ──────────────────────────────── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p  { margin-bottom: 1.25rem; font-size: 0.95rem; }
.contact-info a  { color: var(--red-glow); }
.contact-info a:hover { text-decoration: underline; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  clip-path: none;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.error-msg   { display: none; color: var(--red-glow); font-size: 0.78rem; margin-top: 0.25rem; }
.form-success { color: #00d464; font-size: 0.95rem; margin-top: 1rem; }

/* ──────────────────────────────── SIGNIN ── */
.signin-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(ellipse at center, rgba(212,0,12,0.07) 0%, transparent 60%);
}
.signin-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3.5rem 2.5rem;
  width: 100%;
  max-width: 460px;
  text-align: center;
  position: relative;
}
.signin-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.signin-icon {
  width: 72px; height: 72px;
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  background: rgba(212,0,12,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--red-glow);
}
.signin-icon svg { width: 30px; height: 30px; }
.signin-box h1   { font-size: 2rem; margin-bottom: 0.5rem; }
.signin-box > p  { font-size: 0.88rem; margin-bottom: 2rem; opacity: 0.6; max-width: none; }
.si-error   { color: var(--red-glow); font-size: 0.85rem; margin-top: 0.75rem; display: none; }
.si-success { color: #00d464; font-size: 0.85rem; margin-top: 0.75rem; display: none; }
.si-disclaimer { font-size: 0.7rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.6; }

/* ──────────────────────────── UNSUBSCRIBE ── */
.operator-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
}
.operator-block h4  { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--gold-lt); }
.operator-block p   { font-size: 0.9rem; opacity: 0.72; }
.operator-block code {
  background: var(--surface3);
  border: 1px solid var(--border2);
  padding: 0.15em 0.5em;
  font-size: 0.9em;
  color: var(--red-glow);
}
.refund-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin: 1.5rem 0; }
.refund-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.8;
}
.refund-list li::before { content: '▸'; position: absolute; left: 0; color: var(--gold-lt); }

/* ──────────────────────────── CARRIER BILLING ── */
.cb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
.cb-card { background: var(--surface2); padding: 2rem; }
.cb-num  { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--red); opacity: 0.18; line-height: 1; margin-bottom: 0.5rem; }
.cb-card h4 { margin-bottom: 0.75rem; color: var(--gold-lt); font-size: 1rem; }
.cb-card p  { font-size: 0.88rem; opacity: 0.7; }

/* ──────────────────────────────────── FOOTER ── */
.site-footer {
  background: #050507;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer-brand > p { font-size: 0.85rem; opacity: 0.5; margin: 1rem 0; max-width: 34ch; }
.footer-entity { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.7; }
.footer-entity a { color: var(--red-glow); }
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-col li a:hover { color: var(--red-glow); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-version { opacity: 0.35; }

/* ──────────────────────────────────── 404 ── */
.not-found {
  min-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
}
.not-found .big-num {
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -2.5rem;
}

/* ──────────────────────────────── LEGALS ── */
.legals-wrap { padding: 4rem 0 6rem; }
.legals { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.legals h6 { font-family: var(--font-sub); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin: 2rem 0 0.75rem; border-left: 3px solid var(--red); padding-left: 0.75rem; }
.legals p  { font-size: 0.9rem; opacity: 0.7; margin-bottom: 0.75rem; max-width: none; }

/* ──────────────────────────────────── REVEAL ── */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal.pending { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, html.js .reveal { transition: none !important; opacity: 1 !important; transform: none !important; } }

/* ──────────────────────────────── RESPONSIVE ── */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .showcase-main { grid-row: auto; }
}
@media (max-width: 680px) {
  .site-nav {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(8,8,9,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    transform: translateY(-120%); transition: transform 0.3s var(--ease);
  }
  .site-nav a { padding: 0.75rem 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-toggle:checked ~ .site-nav { transform: none; }
  .nav-burger { display: flex; }
  .lang-switcher { margin-left: 0; margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  section { padding: 4rem 0; }
  .cta-band { clip-path: none; margin: 0; padding: 5rem 0; }
  .not-found .big-num { font-size: 7rem; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
}
