/* CIS community block */
.cisu-section{border-top:1px solid var(--border-subtle);border-bottom:1px solid var(--border-subtle);padding:42px 0;background:var(--bg-surface)}.cisu-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:30px;align-items:center}.cisu-grid h2{font-size:30px;margin:8px 0}.cisu-grid h2 em{font-style:normal;color:#fff}.cisu-grid p{color:var(--text-medium);max-width:520px}.cisu-countries{display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end}.cisu-countries span{border:1px solid #343434;background:#151515;color:#d4d4d4;border-radius:4px;padding:10px 12px;font:11px JetBrains Mono,monospace}@media(max-width:700px){.cisu-grid{grid-template-columns:1fr}.cisu-countries{justify-content:flex-start}}

/* ==========================================================================
   TAPPEDMODE — Core Stylesheet (Black & White Cyber Aesthetic)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Monochrome Color Palette */
  --bg-black: #050505;
  --bg-deep: #0a0a0a;
  --bg-surface: #111111;
  --bg-surface-elevated: #181818;
  --bg-card: #0e0e0e;
  --bg-card-hover: #141414;
  
  /* Text & Foreground */
  --text-pure: #ffffff;
  --text-high: #f4f4f5;
  --text-medium: #a1a1aa;
  --text-muted: #71717a;
  --text-dim: #52525b;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-active: rgba(255, 255, 255, 0.35);
  --border-focus: #ffffff;

  /* Accents & Glows */
  --glow-white: rgba(255, 255, 255, 0.25);
  --glow-strong: rgba(255, 255, 255, 0.6);
  --accent-white: #ffffff;
  --accent-silver: #e4e4e7;
  
  /* Status Colors */
  --status-green: #22c55e;
  --status-green-glow: rgba(34, 197, 94, 0.25);
  --status-red: #ef4444;
  --status-yellow: #eab308;

  /* Dimensions & Transitions */
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-sans);
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  background-color: var(--bg-black);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-high);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
  border: 2px solid var(--bg-black);
}

::-webkit-scrollbar-thumb:hover {
  background: #52525b;
}

/* Selection */
::selection {
  background: #ffffff;
  color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  color: var(--text-pure);
  outline: none;
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Background Canvas Overlay */
#cyber-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Subtle Grid Background Pattern */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 80%);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  color: var(--text-pure);
  text-transform: uppercase;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-fast);
}

.logo-symbol svg {
  width: 18px;
  height: 18px;
}

.site-logo:hover .logo-symbol {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  font-weight: 800;
}

.logo-text span {
  color: var(--text-muted);
  font-weight: 500;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-medium);
  letter-spacing: 0.5px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--status-green);
  box-shadow: 0 0 8px var(--status-green);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link svg {
  width: 15px;
  height: 15px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover svg {
  opacity: 1;
}

.nav-link.active {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Special Roblox Tools Nav Button */
.nav-link-roblox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-link-roblox::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.nav-link-roblox:hover::before {
  left: 100%;
}

.nav-link-roblox:hover {
  color: #000000;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.nav-link-roblox.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #ffffff;
  color: #000000;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-header-primary:hover {
  background: #e4e4e7;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(7, 7, 7, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.mobile-drawer.open {
  display: flex;
}

/* ==========================================================================
   Typography & Common Section Headers
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-high);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(180deg, #ffffff 30%, #71717a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #030303;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px 0;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px 0;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-medium);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-pure);
  padding-left: 4px;
}

.footer-security-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-security-box strong {
  color: var(--text-pure);
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--text-pure);
}

/* rbxnexus-inspired product shell */
:root {
  --bg-black: #f4f3ee;
  --bg-deep: #f4f3ee;
  --bg-surface: #ebeae5;
  --bg-surface-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fafaf7;
  --text-pure: #121212;
  --text-high: #252525;
  --text-medium: #65645f;
  --text-muted: #898780;
  --text-dim: #aaa8a0;
  --border-subtle: #deddd6;
  --border-light: #c9c7bf;
  --accent-white: #121212;
  --accent-silver: #f0efe9;
  --glow-white: transparent;
  --glow-strong: transparent;
  --font-sans: Inter, ui-sans-serif, system-ui, sans-serif;
  --font-heading: Inter, ui-sans-serif, system-ui, sans-serif;
}

body { background: var(--bg-black); color: var(--text-high); }
#cyber-canvas, .bg-grid-overlay { display: none; }
.header { position: sticky; background: rgba(244,243,238,.94); border-bottom-color: var(--border-subtle); backdrop-filter: blur(14px); }
.header.scrolled { background: rgba(244,243,238,.98); box-shadow: 0 8px 24px rgba(20,20,20,.06); }
.site-logo, .logo-text, .nav-link, .header-actions, .status-badge { color: var(--text-pure); }
.logo-symbol { background: #121212; color: #f4f3ee; box-shadow: none; }
.status-badge { border-color: var(--border-subtle); background: transparent; }
.status-dot { background: #d66a32; box-shadow: none; }
.nav-link:hover, .nav-link.active { color: #d66a32; }
.btn-header-primary, .btn-primary { background: #121212; color: #fff; border-color: #121212; box-shadow: none; }
.btn-header-primary:hover, .btn-primary:hover { background: #d66a32; border-color: #d66a32; color: #fff; box-shadow: none; }
.hero, .page-hero { background: transparent; }
.hero-title, .page-hero-title, .section-title { color: var(--text-pure); letter-spacing: -.055em; }
.hero-title-highlight, .section-title span { color: #d66a32; background: none; -webkit-text-fill-color: initial; }
.section-badge { color: #d66a32; border-color: #e3b69d; background: #fff8f3; }
.section-subtitle, .hero-description, .page-hero-desc { color: var(--text-medium); }
.footer { background: #e9e8e2; border-color: var(--border-subtle) !important; }

/* Final dark theme override */
:root {
  --bg-black: #070707;
  --bg-deep: #0a0a0a;
  --bg-surface: #101010;
  --bg-surface-elevated: #171717;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --text-pure: #f5f5f2;
  --text-high: #e6e6e2;
  --text-medium: #a1a19b;
  --text-muted: #74746e;
  --text-dim: #50504c;
  --border-subtle: #242424;
  --border-light: #343434;
  --accent-white: #f5f5f2;
  --accent-silver: #d6d6d1;
}

html,
body { background: #070707; color: #e6e6e2; }
.header { background: rgba(7,7,7,.92); border-bottom-color: #242424; }
.header.scrolled { background: rgba(7,7,7,.98); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.site-logo, .logo-text, .nav-link, .header-actions, .status-badge { color: #f5f5f2; }
.logo-symbol { background: #f5f5f2; color: #070707; }
.status-badge { border-color: #292929; color: #a1a19b; }
.nav-link:hover, .nav-link.active { color: #e1844f; }
.btn-header-primary, .btn-primary { background: #f5f5f2; color: #080808; border-color: #f5f5f2; }
.btn-header-primary:hover, .btn-primary:hover { background: #e1844f; border-color: #e1844f; color: #fff; }
.hero-title, .page-hero-title, .section-title { color: #f5f5f2; }
.hero-title-highlight, .section-title span { color: #e1844f; }
.section-badge { color: #e1844f; border-color: #583622; background: #1c110b; }
.section-subtitle, .hero-description, .page-hero-desc { color: #a1a19b; }
.footer { background: #0b0b0b; border-color: #242424 !important; }

/* Unique TappedMode command-center layout */
.command-hero { padding: 112px 0 76px; border-bottom: 1px solid #242424; }
.command-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 70px; align-items: end; }
.command-kicker, .signal-label, .console-top, .feature-build small, .mini-build small { color: #e1844f; font: 700 .68rem/1.2 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; }
.command-copy h1 { margin: 18px 0 24px; max-width: 760px; color: #f5f5f2; font-size: clamp(3.8rem, 8vw, 7.7rem); font-weight: 500; line-height: .91; letter-spacing: -.085em; }
.command-copy h1 em, .command-heading h2 em, .manifesto-grid h2 em { color: #e1844f; font-style: normal; }
.command-copy p { max-width: 500px; color: #92928c; font-size: 1.03rem; line-height: 1.7; }
.command-actions { display: flex; gap: 24px; align-items: center; margin-top: 34px; }
.command-text-link { color: #a4a49d; font: 600 .78rem/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; }
.command-text-link:hover { color: #e1844f; }
.command-console { min-height: 360px; padding: 22px; border: 1px solid #292929; background: radial-gradient(circle at 50% 38%, #20201d 0, #111 44%, #0b0b0b 100%); position: relative; overflow: hidden; }
.command-console::before { content: ''; position: absolute; inset: 16px; border: 1px solid #292929; pointer-events: none; }
.console-top { display: flex; justify-content: space-between; position: relative; z-index: 1; color: #777770; }
.console-mark { position: relative; z-index: 1; margin: 58px 0 64px; color: #f5f5f2; font-size: 4.3rem; font-weight: 700; letter-spacing: -.1em; }.console-mark span { color: #e1844f; }
.console-readout { position: relative; z-index: 1; display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid #2c2c2c; color: #777770; font: .65rem var(--font-mono); letter-spacing: .12em; }.console-readout strong { color: #e4e4df; font-weight: 500; }
.console-lines { position: absolute; right: 24px; top: 112px; display: flex; align-items: end; gap: 3px; height: 42px; opacity: .55; }.console-lines i { display: block; width: 4px; background: #e1844f; }.console-lines i:nth-child(1), .console-lines i:nth-child(8) { height: 12%; }.console-lines i:nth-child(2), .console-lines i:nth-child(6) { height: 48%; }.console-lines i:nth-child(3), .console-lines i:nth-child(9) { height: 72%; }.console-lines i:nth-child(4), .console-lines i:nth-child(7) { height: 34%; }.console-lines i:nth-child(5) { height: 100%; }.console-lines i:nth-child(10) { height: 60%; }.console-lines i:nth-child(11) { height: 25%; }
.signal-strip { border-bottom: 1px solid #242424; background: #0b0b0b; }.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }.signal-grid > div { padding: 20px 22px; border-right: 1px solid #242424; }.signal-grid > div:first-child { border-left: 1px solid #242424; }.signal-label { display: block; margin-bottom: 9px; color: #686861; font-size: .58rem; }.signal-grid strong { display: flex; gap: 8px; align-items: center; color: #d5d5d0; font-size: .76rem; font-weight: 500; }.signal-grid b { width: 6px; height: 6px; border-radius: 50%; background: #79b87b; }
.featured-command { padding: 110px 0; }.command-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 34px; }.command-heading h2 { margin: 13px 0 0; color: #f5f5f2; font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 500; letter-spacing: -.07em; line-height: .95; }
.command-feature-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }.feature-build { min-height: 510px; position: relative; overflow: hidden; border: 1px solid #2a2a2a; background: #111; }.feature-build img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: transform .6s ease, opacity .4s ease; }.feature-build:hover img { transform: scale(1.04); opacity: .85; }.feature-build-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,.05), rgba(5,5,5,.88)); }.build-index { position: absolute; top: 20px; left: 22px; color: #deded8; font: .7rem var(--font-mono); }.build-info { position: absolute; left: 24px; right: 55px; bottom: 26px; }.build-info span { color: #e1844f; font: .65rem var(--font-mono); letter-spacing: .12em; }.build-info h3 { margin: 8px 0 4px; color: #fff; font-size: 2rem; letter-spacing: -.05em; }.build-info p { color: #b3b3ad; font-size: .85rem; }.build-arrow { position: absolute; right: 24px; bottom: 26px; color: #e1844f; font-size: 1.5rem; }.feature-stack { display: flex; flex-direction: column; border-top: 1px solid #2a2a2a; }.mini-build { display: grid; grid-template-columns: 40px 1fr 24px; gap: 12px; align-items: center; flex: 1; padding: 18px 20px; border: 1px solid #2a2a2a; border-top: 0; color: #b9b9b3; }.mini-build:hover { background: #161616; color: #fff; }.mini-number { color: #686861; font: .7rem var(--font-mono); }.mini-build small { display: block; margin-bottom: 7px; color: #777770; font-size: .57rem; }.mini-build strong { color: #e7e7e2; font-size: 1.02rem; font-weight: 500; }.mini-build b { color: #e1844f; font-size: 1.25rem; font-weight: 400; }
.manifesto-command { padding: 106px 0; border-top: 1px solid #242424; border-bottom: 1px solid #242424; background: #111; }.manifesto-grid { display: grid; grid-template-columns: .7fr 1.2fr .9fr auto; align-items: end; gap: 30px; }.manifesto-grid h2 { margin: 0; color: #f5f5f2; font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 500; line-height: .95; letter-spacing: -.07em; }.manifesto-grid p { margin: 0; color: #91918b; font-size: .9rem; line-height: 1.65; }.home-command-footer { padding: 24px 0; }.home-command-footer .container { display: flex; justify-content: space-between; color: #62625d; font: .68rem var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }.home-command-footer a { color: #e1844f; }.home-command-footer b { margin-left: 10px; font-size: 1rem; }
.legacy-home-sections { display: none; }

@media (max-width: 800px) { .command-hero { padding: 72px 0 54px; }.command-grid, .command-feature-grid, .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }.command-copy h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }.command-console { min-height: 290px; }.console-mark { margin: 42px 0 45px; }.signal-grid { grid-template-columns: repeat(2, 1fr); }.signal-grid > div:nth-child(3) { border-left: 1px solid #242424; }.featured-command { padding: 72px 0; }.feature-build { min-height: 390px; }.feature-stack { min-height: 380px; }.manifesto-command { padding: 70px 0; }.manifesto-grid .btn { justify-self: start; }.home-command-footer .container { flex-direction: column; gap: 15px; } }

.index-hero { padding: 86px 0 60px; border-bottom: 1px solid #242424; }.index-hero .container { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 40px; }.index-hero .command-kicker { grid-column: 1 / -1; }.index-hero .page-hero-title { margin: 0; max-width: 760px; text-align: left; font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 500; line-height: .91; letter-spacing: -.08em; }.index-hero .page-hero-title em { color: #e1844f; font-style: normal; }.index-hero .page-hero-desc { max-width: 390px; margin: 0 0 8px; text-align: left; font-size: .95rem; line-height: 1.7; }
@media (max-width: 800px) { .index-hero .container { grid-template-columns: 1fr; }.index-hero .page-hero-title { font-size: clamp(3rem, 16vw, 5rem); }.index-hero .command-kicker { grid-column: auto; } }

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }
  .header-actions .btn-header-primary {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
