/* ==========================================================================
   Retro College Swimming — 8-Bit Game Site
   ========================================================================== */

:root {
  --black: #0a0a12;
  --dark: #0e0e1a;
  --charcoal: #161624;
  --surface: #1e1e30;
  --border: #2a2a44;
  --gray-700: #3a3a56;
  --gray-500: #5a5a7a;
  --gray-400: #7a7a9a;
  --gray-300: #9a9ab4;
  --gray-200: #c0c0d4;
  --cream: #e8e8f0;
  --white: #f0f0f8;
  --cyan: #00e5ff;
  --cyan-dark: #00b8d4;
  --blue: #4488ff;
  --green: #44ff88;
  --yellow: #ffe044;
  --orange: #ff8844;
  --red: #ff4466;
  --magenta: #ff44cc;
  --pixel-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  --font-display: 'Press Start 2P', monospace;
  --font-body: 'Press Start 2P', monospace;
  --container: 1080px;
  --nav-height: 64px;
}

/* ==========================================================================
   Skip Link
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--cyan);
  color: var(--black);
  font-size: 10px;
  font-family: var(--font-display);
  border-radius: 0;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--black);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 2;
  color: var(--cream);
  background: var(--black);
}

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

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

a:hover {
  color: var(--yellow);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   Focus Styles
   ========================================================================== */

*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 2px solid var(--border);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 0 var(--cyan), 0 4px 20px rgba(0, 229, 255, 0.1);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-title {
  font-size: 11px;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  letter-spacing: 0.05em;
}

.nav-brand-tagline {
  font-size: 6px;
  color: var(--gray-400);
  letter-spacing: 0.15em;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gray-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--cyan);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99;
  }

  .nav-links--open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 0.15em;
    min-height: 48px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    z-index: 101;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Scanline overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(68, 136, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: heroReveal 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 8px 20px;
  margin-bottom: 32px;
  text-shadow: 0 0 8px rgba(68, 255, 136, 0.5);
  box-shadow: 0 0 10px rgba(68, 255, 136, 0.2), inset 0 0 10px rgba(68, 255, 136, 0.05);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-title-line1 {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 36px);
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: var(--pixel-shadow), 0 0 20px rgba(0, 229, 255, 0.3);
}

.hero-title-line2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 56px);
  color: var(--cyan);
  letter-spacing: 0.02em;
  text-shadow: var(--pixel-shadow), 0 0 30px rgba(0, 229, 255, 0.5);
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}

.hero-rule-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.hero-rule-icon {
  color: var(--cyan);
  font-size: 14px;
  opacity: 0.8;
  animation: pixelBob 2s ease-in-out infinite;
}

@keyframes pixelBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 9px;
  color: var(--gray-300);
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
}

.hero-btn--primary {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 4px 4px 0px var(--cyan-dark);
}

.hero-btn--primary:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0px #cc9900;
  transform: translate(-2px, -2px);
}

.hero-btn--outline {
  border: 2px solid var(--gray-500);
  color: var(--gray-300);
  background: transparent;
}

.hero-btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-coming-soon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255, 224, 68, 0.5), var(--pixel-shadow);
  animation: comingSoonPulse 3s ease-in-out infinite;
}

@keyframes comingSoonPulse {
  0%, 100% { opacity: 0.7; text-shadow: 0 0 10px rgba(255, 224, 68, 0.3), var(--pixel-shadow); }
  50% { opacity: 1; text-shadow: 0 0 24px rgba(255, 224, 68, 0.6), var(--pixel-shadow); }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-coming-soon {
    font-size: 11px;
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 120px 0;
  position: relative;
  background: var(--black);
}

.section--shaded {
  background: var(--dark);
}

.section-header {
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-number {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--cyan-dark);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 32px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: var(--pixel-shadow);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 9px;
  color: var(--gray-400);
  line-height: 2.2;
}

/* ==========================================================================
   App Showcase (Hero Game Feature)
   ========================================================================== */

.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.app-showcase.revealed {
  opacity: 1;
  transform: translateY(0);
}

.app-showcase-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  border: 2px solid rgba(68, 255, 136, 0.4);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.app-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 3vw, 24px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 12px;
  text-shadow: var(--pixel-shadow);
}

.app-showcase-tagline {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--cyan);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  line-height: 2;
}

.app-showcase-desc {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gray-300);
  line-height: 2.4;
  margin-bottom: 24px;
}

.app-showcase-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-showcase-features li {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gray-300);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 2;
}

.app-showcase-features li i {
  color: var(--green);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.app-showcase-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--charcoal);
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.app-store-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
  transform: translate(-2px, -2px);
}

.app-store-btn > i {
  font-size: 24px;
  color: var(--white);
}

.app-store-btn-text {
  display: flex;
  flex-direction: column;
}

.app-store-btn-small {
  font-family: var(--font-display);
  font-size: 6px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.app-store-btn-large {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--white);
  line-height: 1.6;
}

/* Game Screenshots */
.app-showcase-screens {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0;
}

.app-screen-16x9 {
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.app-screen-16x9:hover {
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5);
  border-color: var(--cyan);
}

.app-screen-16x9--tilt-left {
  transform: rotate(-2deg);
}

.app-screen-16x9--tilt-right {
  transform: rotate(2deg);
}

.app-screen-16x9--tilt-left:hover {
  transform: rotate(-2deg) translateY(-3px);
}

.app-screen-16x9--tilt-right:hover {
  transform: rotate(2deg) translateY(-3px);
}

.app-screen-16x9 .app-screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-500);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--surface) 100%);
}

.app-screen-16x9 .app-screen-placeholder i {
  font-size: 28px;
  opacity: 0.5;
}

.app-screen-16x9 .app-screen-placeholder span {
  font-family: var(--font-display);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}

.app-screen-16x9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .app-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .app-showcase-screens {
    order: -1;
  }
}

@media (max-width: 480px) {
  .app-showcase-buttons {
    flex-direction: column;
  }

  .app-store-btn {
    justify-content: center;
  }
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  position: relative;
  background: var(--charcoal);
  border: 2px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.15s; }
.feature-card:nth-child(4) { transition-delay: 0.2s; }
.feature-card:nth-child(5) { transition-delay: 0.25s; }
.feature-card:nth-child(6) { transition-delay: 0.3s; }

.feature-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.1);
}

.feature-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-accent {
  transform: scaleX(1);
}

.feature-card-content {
  padding: 36px;
}

.feature-card-icon {
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.feature-card-desc {
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--gray-400);
  line-height: 2.4;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-content {
    padding: 28px;
  }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--charcoal);
  border: 2px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}

.faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-item:nth-child(6) { transition-delay: 0.3s; }

.faq-item:hover {
  border-color: var(--gray-500);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 9px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 2;
  gap: 16px;
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-icon {
  font-size: 14px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gray-400);
  line-height: 2.4;
}

/* ==========================================================================
   Newsletter / Cheat Codes
   ========================================================================== */

.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.newsletter-layout.revealed {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 3vw, 22px);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 16px;
  text-shadow: var(--pixel-shadow);
}

.newsletter-desc {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gray-400);
  line-height: 2.4;
  margin-bottom: 32px;
}

.newsletter-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-perks li {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gray-300);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 2;
}

.newsletter-perks li i {
  color: var(--yellow);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.newsletter-form-wrap {
  background: var(--charcoal);
  border: 2px solid var(--border);
  padding: 40px;
}

.newsletter-form-title {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--cyan);
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.newsletter-form-subtitle {
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 2;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-form input {
  width: 100%;
  font-family: var(--font-display);
  font-size: 9px;
  color: var(--white);
  background: var(--dark);
  border: 2px solid var(--border);
  padding: 14px 16px;
  transition: border-color 0.2s ease;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.15);
}

.newsletter-submit {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--cyan);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0px var(--cyan-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.newsletter-submit:hover {
  background: var(--yellow);
  box-shadow: 4px 4px 0px #cc9900;
  transform: translate(-2px, -2px);
}

@media (max-width: 900px) {
  .newsletter-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ==========================================================================
   Pixel Divider
   ========================================================================== */

.pixel-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.pixel-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.pixel-divider span {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  padding: 80px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.final-cta-inner {
  text-align: center;
}

.final-cta-text {
  font-family: var(--font-display);
  font-size: clamp(14px, 3vw, 22px);
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: var(--pixel-shadow);
  line-height: 1.8;
}

.final-cta-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--black);
  background: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  box-shadow: 4px 4px 0px var(--cyan-dark);
  transition: all 0.2s ease;
}

.final-cta-link:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0px #cc9900;
  transform: translate(-2px, -2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 32px 0;
  background: var(--black);
  border-top: 2px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  letter-spacing: 0.05em;
}

.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 6px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.footer-copy {
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-studio {
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--gray-500);
}

.footer-studio a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-studio a:hover {
  color: var(--cyan);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    min-height: 85vh;
    padding: 100px 0 60px;
  }

  .hero-tagline br {
    display: none;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 16px;
  }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-content {
    opacity: 1;
    animation: none;
  }

  .feature-card,
  .faq-item,
  .section-header,
  .app-showcase,
  .newsletter-layout {
    opacity: 1;
    transform: none;
  }
}
