/* =========================================
   SOYUZ GUIDE — Shared Styles
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   THEME VARIABLES
   ========================================= */
:root[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-elev: #131313;
  --surface: #1A1A1A;
  --border: #262626;
  --text: #EDEDED;
  --text-dim: #A3A3A3;
  --text-mute: #6B6B6B;
  --primary: #EF2B2D;
  --primary-soft: rgba(239, 43, 45, 0.12);
  --primary-hover: #FF3D3F;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
:root[data-theme="light"] {
  --bg: #FAFAFA;
  --bg-elev: #FFFFFF;
  --surface: #F0F0F0;
  --border: #E2E2E2;
  --text: #0A0A0A;
  --text-dim: #555555;
  --text-mute: #888888;
  --primary: #E11D1F;
  --primary-soft: rgba(225, 29, 31, 0.08);
  --primary-hover: #C81618;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

::selection { background: var(--primary); color: white; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.display {
  font-family: 'Antonio', 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primary);
}

/* =========================================
   LAYOUT
   ========================================= */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section {
  padding: clamp(60px, 10vw, 110px) 0;
}
.section + .section {
  border-top: 1px solid var(--border);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(20px, 5vw, 60px);
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}
.brand-text {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
}
.brand-text span {
  color: var(--text-mute);
  font-weight: 400;
}

.nav-links {
  display: none;
  gap: 6px;
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
}
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.02em;
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.icon-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.icon-btn svg {
  width: 16px;
  height: 16px;
}
.lang-btn {
  width: auto;
  padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu-toggle {
  display: grid;
}
@media (min-width: 880px) {
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0 0 0 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  padding: 80px 30px 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  padding: 14px 0;
  font-size: 22px;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 30px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: clamp(60px, 12vh, 130px) 0 clamp(50px, 10vh, 90px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, var(--primary-soft), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(48px, 10vw, 120px);
  margin-bottom: 28px;
  max-width: 950px;
}
.hero h1 .accent {
  color: var(--primary);
  font-style: normal;
  font-weight: inherit;
  display: inline-block;
}
.hero-lede {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-lede strong {
  color: var(--text);
  font-weight: 600;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}
.hero-cta svg { width: 16px; height: 16px; }

/* =========================================
   PAGE HEADING (non-home pages)
   ========================================= */
.page-head {
  padding: clamp(50px, 8vw, 90px) 0 clamp(40px, 6vw, 60px);
  border-bottom: 1px solid var(--border);
}
.page-head.no-border { border-bottom: none; }
.page-head h1 {
  font-size: clamp(40px, 7vw, 80px);
  margin-top: 18px;
  max-width: 800px;
}
.page-head h1 .accent {
  color: var(--primary);
  font-style: normal;
  font-weight: inherit;
}
.page-head p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 620px;
  margin-top: 22px;
  line-height: 1.65;
}

/* =========================================
   PHONE MOCKUP (preview screenshot)
   ========================================= */
.phone-mockup-section {
  padding: clamp(40px, 6vw, 70px) 0 clamp(30px, 5vw, 50px);
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-mockup-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 70%);
  height: min(420px, 70%);
  background: radial-gradient(ellipse, var(--primary-soft), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.phone-mockup {
  position: relative;
  z-index: 1;
  width: 280px;
  max-width: 100%;
  background: #0a0a0a;
  border-radius: 50px;
  padding: 6px;
  box-shadow:
    0 0 0 1px #1f1f1f,
    inset 0 0 0 1px #333,
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 15px 40px -15px rgba(239, 43, 45, 0.25);
}
@media (min-width: 700px) {
  .phone-mockup { width: 320px; border-radius: 56px; padding: 7px; }
}
/* Power button (right) */
.phone-mockup::after {
  content: "";
  position: absolute;
  top: 110px;
  right: -2px;
  width: 3px;
  height: 70px;
  background: #1a1a1a;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}
.phone-mockup-screen {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1179 / 2556;
}
@media (min-width: 700px) {
  .phone-mockup-screen { border-radius: 50px; }
}
.phone-mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.phone-mockup-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.phone-mockup-caption strong {
  color: var(--primary);
  font-weight: 700;
}

/* Light theme adjustments */
:root[data-theme="light"] .phone-mockup {
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 0 0 3px #3a3a3a,
    0 30px 80px -20px rgba(0, 0, 0, 0.25),
    0 15px 40px -15px rgba(225, 29, 31, 0.15);
}

/* =========================================
   SECTION HEAD
   ========================================= */
.sec-head {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 800px) {
  .sec-head { grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: end; }
}
.sec-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.98;
}
.sec-head h2 .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.32em;
  color: var(--primary);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}
.sec-head p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 540px;
  line-height: 1.65;
}

/* =========================================
   ABOUT GRID (home page)
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 700px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.about-cell {
  background: var(--bg-elev);
  padding: 36px 32px;
  transition: background 0.25s ease;
}
.about-cell:hover { background: var(--surface); }
.about-cell .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.about-cell h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.about-cell p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}
.about-cell .big-num {
  font-family: 'Antonio', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

/* =========================================
   PAGE CARDS (navigation to other pages)
   ========================================= */
.page-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .page-cards { grid-template-columns: repeat(2, 1fr); } }
.page-card {
  display: block;
  padding: 28px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.page-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.page-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.page-card:hover::before { transform: scaleX(1); }
.page-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  display: block;
}
.page-card h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.page-card p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.page-card .arrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}

/* =========================================
   CHANNEL GROUPS & CARDS
   ========================================= */
.group {
  margin-bottom: 50px;
}
.group:last-child { margin-bottom: 0; }
.group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.group-head h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.group-head .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 4px 8px;
  background: var(--primary);
  color: white;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 3px;
}
.group-head .badge.dim {
  background: var(--surface);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .channel-grid { grid-template-columns: repeat(2, 1fr); } }

.channel-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s ease;
}
.channel-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.ch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ch-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  border: 1px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  flex-shrink: 0;
}
.ch-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Tag icons (small, inline with tag text) */
.ch-tag-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ch-tag-with-icon svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.2;
}

/* About cell icon (small, in label area) */
.about-cell-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  border-radius: 8px;
  color: var(--primary);
  margin-bottom: 18px;
}
.about-cell-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

/* Rule quote icon */
.rule-quote-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  margin-right: 14px;
  vertical-align: middle;
}
.rule-quote-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.rule-quote {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
@media (max-width: 600px) {
  .rule-quote { flex-direction: column; align-items: flex-start; gap: 14px; }
  .rule-quote-icon { margin-right: 0; }
}

/* Outro icon */
.outro-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.outro-icon svg { width: 14px; height: 14px; stroke-width: 2.2; }
.ch-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.ch-tag.locked { color: var(--primary); }
.ch-name {
  font-family: 'Antonio', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.ch-desc {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 14px;
}
.ch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.ch-link svg { width: 13px; height: 13px; }

/* =========================================
   RULES PAGE
   ========================================= */
.rule-quote {
  padding: 32px 28px;
  background: var(--primary-soft);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  margin-bottom: 60px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}
.rule-quote strong {
  color: var(--primary);
  font-weight: 700;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rule-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border 0.2s ease;
}
.rule-item:hover { border-color: var(--primary); }
@media (max-width: 600px) {
  .rule-item { grid-template-columns: 1fr; gap: 12px; padding: 22px 20px; }
}
.rule-num {
  font-family: 'Antonio', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
@media (max-width: 600px) {
  .rule-num { font-size: 38px; }
}
.rule-title {
  font-family: 'Antonio', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.rule-text {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.rule-penalty {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 10px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-weight: 700;
}

.rules-outro {
  margin-top: 50px;
  padding: 28px;
  text-align: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-family: 'Antonio', sans-serif;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--primary); }
.faq-q-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 22px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 760px;
}
.faq-a-inner strong { color: var(--text); font-weight: 600; }
.faq-item.open .faq-a { max-height: 500px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  margin-bottom: 50px;
  padding: 36px 32px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 700px) {
  .contact-hero { grid-template-columns: 1fr auto; gap: 30px; }
}
.contact-hero-text h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.contact-hero-text p {
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.55;
}
.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(0,0,0,0.25);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.contact-hero-btn:hover { background: rgba(0,0,0,0.4); }
.contact-hero-btn svg { width: 16px; height: 16px; }

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .contact-list { grid-template-columns: repeat(2, 1fr); } }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s ease;
}
.contact-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 8px;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-info { flex-grow: 1; min-width: 0; }
.contact-info .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.contact-info .username {
  font-family: 'Antonio', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.contact-arrow {
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
}

.contact-form-section {
  margin-top: 50px;
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.contact-form-section h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-form-section p {
  color: var(--text-dim);
  margin-bottom: 24px;
  font-size: 14.5px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 40px clamp(20px, 5vw, 60px);
  background: var(--bg-elev);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1fr auto; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Antonio', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 4px; }
.footer-brand strong { color: var(--primary); }
.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
