@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Rubik+Mono+One&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ==========================================================================
   DESIGN SYSTEM — VARIABLES
   ========================================================================== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a2e;
  --accent-hot: #ff2d55;
  --accent-electric: #00f0ff;
  --accent-acid: #c6f135;
  --text-primary: #fafafa;
  --text-muted: #888;
  --surface: #161625;
  --surface-hover: #1e1e35;

  --font-headline: 'Dela Gothic One', system-ui;
  --font-body: 'Space Mono', monospace;
  --font-accent: 'Rubik Mono One', monospace;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   RESET & GLOBALS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

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

::selection {
  background: var(--accent-hot);
  color: var(--text-primary);
}

:focus-visible {
  outline: 3px dashed var(--accent-electric);
  outline-offset: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--accent-acid);
  border: 3px solid var(--bg-primary);
  border-radius: 6px;
}

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

a {
  color: var(--accent-electric);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
a:hover { color: var(--accent-hot); }

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  line-height: 1.1;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  z-index: 10;
}

/* Glitch effect on logo */
.glitch-effect {
  position: relative;
}
.glitch-effect::before,
.glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.glitch-effect::before {
  color: var(--accent-hot);
  animation: glitch1 3s infinite linear alternate-reverse;
  clip-path: inset(0 0 80% 0);
}
.glitch-effect::after {
  color: var(--accent-electric);
  animation: glitch2 2s infinite linear alternate-reverse;
  clip-path: inset(80% 0 0 0);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.btn-dm {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  padding: 0.6rem 1.5rem;
  background: var(--accent-hot);
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-bounce), background 0.2s;
  box-shadow: 4px 4px 0 var(--bg-primary);
}
.btn-dm:hover {
  transform: translate(-2px, -2px);
  background: var(--accent-electric);
  color: var(--bg-primary);
  box-shadow: 6px 6px 0 var(--bg-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 3px solid var(--text-primary);
  cursor: pointer;
  position: relative;
  transition: transform 0.4s var(--ease-bounce), background 0.2s, box-shadow 0.3s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent-electric);
  color: var(--bg-primary);
  box-shadow: 6px 6px 0 var(--accent-hot);
}
.btn-primary:hover {
  transform: translate(-3px, -3px);
  background: var(--accent-acid);
  color: var(--bg-primary);
  box-shadow: 9px 9px 0 var(--accent-hot);
}
.btn-primary:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--accent-hot);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-muted);
  box-shadow: none;
}
.btn-secondary:hover {
  border-color: var(--accent-acid);
  color: var(--accent-acid);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent-acid);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26, 26, 46, 0.8) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(255, 45, 85, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

.hero-headline {
  font-size: clamp(2.8rem, 9vw, 7rem);
  color: var(--text-primary);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(-8deg) scale(0.8);
  animation: heroSnap 0.7s var(--ease-bounce) forwards;
  animation-delay: calc(0.15s + var(--i) * 0.12s);
  text-shadow: 3px 3px 0 rgba(255, 45, 85, 0.3);
}

.hero-word.accent-price {
  color: var(--accent-acid);
  text-shadow: 3px 3px 0 rgba(198, 241, 53, 0.3);
}
.hero-word.accent-done {
  color: var(--accent-electric);
  text-shadow: 3px 3px 0 rgba(0, 240, 255, 0.3);
}

.hero-subheadline {
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1s forwards;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1.2s forwards;
}

/* Decorations */
.decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.deco-star {
  top: 15%;
  left: 8%;
  color: var(--accent-acid);
  font-size: 2.5rem;
  animation-duration: 5s;
}
.deco-circle {
  top: 25%;
  right: 12%;
  width: 50px;
  height: 50px;
  border: 3px solid var(--accent-electric);
  border-radius: 50%;
  animation-duration: 6s;
  animation-direction: reverse;
}
.deco-squiggle {
  bottom: 30%;
  left: 5%;
  color: var(--accent-hot);
  font-size: 3rem;
  animation-duration: 7s;
}
.deco-cross {
  top: 60%;
  right: 8%;
  color: var(--accent-acid);
  font-size: 1.5rem;
  animation-duration: 4.5s;
}
.deco-dot {
  bottom: 15%;
  right: 25%;
  color: var(--accent-hot);
  font-size: 1rem;
  animation-duration: 3.5s;
  animation-direction: reverse;
}

.deco-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}
.shape-1 {
  width: 120px;
  height: 120px;
  background: var(--accent-hot);
  top: 18%;
  left: 6%;
  animation: float 8s ease-in-out infinite, spin 30s linear infinite;
}
.shape-2 {
  width: 160px;
  height: 160px;
  border: 4px solid var(--accent-acid);
  border-radius: 50%;
  bottom: 15%;
  right: 4%;
  animation: float 10s ease-in-out infinite reverse;
}

/* ==========================================================================
   MARQUEE TICKER
   ========================================================================== */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--accent-acid);
  padding: 0.8rem 0;
  transform: rotate(-2deg) scale(1.05);
  margin: calc(var(--space-lg) * -0.5) 0;
  border-top: 3px solid var(--bg-primary);
  border-bottom: 3px solid var(--bg-primary);
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: var(--bg-primary);
  padding: 0 0.5rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION TITLE
   ========================================================================== */
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--accent-electric);
  text-shadow: 2px 2px 0 var(--accent-hot);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: calc(var(--space-lg) * -0.6);
  margin-bottom: var(--space-lg);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
  background:
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding-top: calc(var(--space-xl) + 2rem);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.step-card {
  position: relative;
  padding: calc(var(--space-lg) + 0.5rem) var(--space-md) var(--space-md);
  background: var(--surface);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-bounce), border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-acid);
}

.step-number {
  position: absolute;
  top: -18px;
  left: var(--space-md);
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--bg-primary);
  background: var(--accent-electric);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 4px 4px 0 var(--accent-hot);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   WHAT YOU GET
   ========================================================================== */
.what-you-get {
  background:
    radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.4) 0%, transparent 60%),
    var(--bg-primary);
}

/* Subtle dot pattern */
.what-you-get::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-sm);
  position: relative;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--surface);
  border-left: 4px solid var(--accent-hot);
  transition: transform 0.3s var(--ease-bounce), border-color 0.3s;
}
.feature-card:hover {
  transform: translateX(6px);
  border-color: var(--accent-acid);
}
.feature-card:nth-child(even) {
  border-color: var(--accent-electric);
}
.feature-card:nth-child(even):hover {
  border-color: var(--accent-acid);
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 45, 85, 0.06) 0%, transparent 70%),
    var(--bg-primary);
}

.price-card {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  background: var(--surface);
  border: 4px solid var(--accent-hot);
  border-radius: var(--radius-lg);
  transform: rotate(1.5deg);
  transition: transform 0.5s var(--ease-bounce);
  position: relative;
}
.price-card:hover {
  transform: rotate(0deg) scale(1.03);
}

/* Corner flourish */
.price-card::before {
  content: 'BEST DEAL';
  position: absolute;
  top: -14px;
  right: 24px;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  background: var(--accent-acid);
  color: var(--bg-primary);
  padding: 4px 16px;
  border: 2px solid var(--bg-primary);
}

.price-amount {
  font-family: var(--font-accent);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent-acid);
  line-height: 1;
  margin: var(--space-sm) 0;
  animation: pulseGlow 2.5s infinite alternate ease-in-out;
}

.price-dollar {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent-acid);
}

.price-subtitle {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-md);
}
.price-features li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: var(--text-primary);
}
.price-features li::before {
  content: '→';
  color: var(--accent-electric);
  margin-right: 0.75rem;
  font-weight: bold;
}

.price-card .btn {
  width: 100%;
}

/* ==========================================================================
   EXAMPLES
   ========================================================================== */
.examples {
  background: var(--bg-secondary);
  overflow: hidden;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.example-card {
  perspective: 800px;
}

.example-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease-bounce), border-color 0.3s, box-shadow 0.5s;
  transform-style: preserve-3d;
}

.example-card:hover .example-card-inner {
  transform: rotateY(6deg) rotateX(3deg) scale(1.03);
  border-color: var(--accent-electric);
  box-shadow: -12px 12px 0 rgba(0, 240, 255, 0.15);
}

.example-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) contrast(110%);
  transition: filter 0.4s ease;
}
.example-card:hover .example-img {
  filter: grayscale(0%) contrast(100%);
}

.example-label {
  display: block;
  text-align: center;
  margin-top: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   HOSTING & BUSINESS EMAIL SECTION
   ========================================================================== */
.hosting {
  background: 
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 15% 20%, rgba(198, 241, 53, 0.04) 0%, transparent 40%),
    var(--bg-primary);
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.hosting-card {
  position: relative;
  background: var(--surface);
  border: 3px solid var(--accent-electric);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  box-shadow: 10px 10px 0px rgba(0, 240, 255, 0.15);
  max-width: 900px;
  margin: 0 auto;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.3s;
}

.hosting-card:hover {
  transform: translateY(-4px);
  box-shadow: 14px 14px 0px rgba(198, 241, 53, 0.2);
}

.hosting-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  background: var(--accent-acid);
  color: var(--bg-primary);
  padding: 6px 20px;
  border: 2px solid var(--bg-primary);
  border-radius: 50px;
  box-shadow: 4px 4px 0px var(--accent-hot);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hosting-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.hosting-title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.hosting-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.code-pill {
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-electric);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.hosting-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.perk-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  transition: border-color 0.2s, transform 0.2s;
}

.perk-card:hover {
  border-color: var(--accent-acid);
  transform: translateY(-2px);
}

.perk-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.perk-content h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.perk-content p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.perk-content code {
  color: var(--accent-acid);
  font-family: var(--font-body);
}

.hosting-cta-box {
  text-align: center;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.btn-hosting {
  font-size: 0.85rem;
  padding: 1.2rem 2.5rem;
  background: var(--accent-acid);
  color: var(--bg-primary);
  box-shadow: 6px 6px 0px var(--accent-hot);
}

.btn-hosting:hover {
  background: var(--accent-electric);
  color: var(--bg-primary);
  box-shadow: 10px 10px 0px var(--accent-hot);
}

.hosting-cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.hosting-concierge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(255, 45, 85, 0.08);
  border: 2px dashed var(--accent-hot);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.concierge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.concierge-text h4 {
  font-size: 0.95rem;
  color: var(--accent-hot);
  margin-bottom: 4px;
}

.concierge-text p {
  color: var(--text-primary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.concierge-text strong {
  color: var(--accent-acid);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-xs);
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(255,255,255,0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--surface-hover); }

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  color: var(--accent-hot);
  font-size: 1.5rem;
  font-family: var(--font-body);
  transition: transform 0.3s var(--ease-bounce);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent-acid);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(22, 22, 37, 0.5);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: var(--space-sm) var(--space-md);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background:
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 4px dashed var(--accent-hot);
  position: relative;
}

.cta-final h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.btn-cta-final {
  font-size: 0.85rem;
  padding: 1.4rem 3rem;
  background: var(--accent-hot);
  color: var(--text-primary);
  border-color: var(--text-primary);
  box-shadow: 0 0 25px rgba(255, 45, 85, 0.4);
  border-radius: 50px;
}
.btn-cta-final:hover {
  background: var(--accent-electric);
  color: var(--bg-primary);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
  transform: translate(-2px, -2px);
}

.cta-alt {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: var(--space-md) 0;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--accent-electric); }

.footer-year {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ==========================================================================
   SCROLL ANIMATIONS (JS-triggered)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.step-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.step-card.fade-up:nth-child(3) { transition-delay: 0.2s; }

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

.example-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.example-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.example-card.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes heroSnap {
  0% {
    opacity: 0;
    transform: translateY(60px) rotate(-8deg) scale(0.8);
  }
  70% {
    transform: translateY(-8px) rotate(3deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

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

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseGlow {
  from {
    text-shadow:
      0 0 10px rgba(198, 241, 53, 0.3),
      0 0 30px rgba(198, 241, 53, 0.15);
  }
  to {
    text-shadow:
      0 0 20px rgba(198, 241, 53, 0.6),
      0 0 50px rgba(198, 241, 53, 0.3),
      0 0 80px rgba(198, 241, 53, 0.1);
  }
}

@keyframes glitch1 {
  0% { clip-path: inset(15% 0 80% 0); transform: translateX(2px); }
  20% { clip-path: inset(60% 0 10% 0); transform: translateX(-2px); }
  40% { clip-path: inset(40% 0 50% 0); transform: translateX(1px); }
  60% { clip-path: inset(80% 0 5% 0); transform: translateX(-1px); }
  80% { clip-path: inset(10% 0 70% 0); transform: translateX(2px); }
  100% { clip-path: inset(30% 0 20% 0); transform: translateX(-2px); }
}

@keyframes glitch2 {
  0% { clip-path: inset(10% 0 60% 0); transform: translateX(-2px); }
  25% { clip-path: inset(70% 0 10% 0); transform: translateX(2px); }
  50% { clip-path: inset(20% 0 50% 0); transform: translateX(-1px); }
  75% { clip-path: inset(50% 0 30% 0); transform: translateX(1px); }
  100% { clip-path: inset(5% 0 80% 0); transform: translateX(-2px); }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 2px solid rgba(255,255,255,0.05);
  }
  .nav.nav-open .nav-links { right: 0; }

  .nav-links a { font-size: 1.1rem; color: var(--text-primary); }

  .btn-dm { display: none; }

  .hero-headline { font-size: clamp(2.2rem, 12vw, 4rem); }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }

  .features-grid { grid-template-columns: 1fr; }

  .hosting-perks-grid { grid-template-columns: 1fr; }
  .hosting-card { padding: var(--space-md) var(--space-sm) var(--space-sm); }
  .hosting-badge { font-size: 0.65rem; padding: 4px 14px; top: -14px; }
  .btn-hosting { width: 100%; font-size: 0.75rem; padding: 1rem 1.5rem; }

  .price-card { transform: rotate(0); }

  .examples-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

  .cta-final h2 { font-size: clamp(1.8rem, 8vw, 3rem); }

  .btn-cta-final { padding: 1.2rem 2rem; font-size: 0.7rem; }

  .deco-shape { display: none; }
}

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

  .step-card { padding-top: calc(var(--space-lg) + 0.5rem); }
}

@media (min-width: 1200px) {
  .container { padding: 0; }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
