/* RewindMedia — 80s/90s VHS neon */

:root {
  --cream: #FFF1D6;
  --card: #1A1145;
  --paper: #FFF1D6;
  --orange: #FF5E3A;
  --walnut: #2D1B5C;
  --walnut-deep: #0E0838;
  --ink: #FFF1D6;
  --ink-dark: #15093D;
  --amber: #FFD23F;
  --magenta: #FF2E93;
  --cyan: #2EE6E0;
  --lime: #A6FF2A;
  --grain-opacity: 0.08;
}

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

html, body {
  background: var(--walnut-deep);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Anton', 'Oswald', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.96;
  color: var(--cream);
  text-transform: uppercase;
}

.serif {
  font-family: 'Playfair Display', Georgia, serif !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  line-height: 1.1 !important;
}

.hand { font-family: 'Permanent Marker', 'Caveat', cursive; }
.mono { font-family: 'VT323', ui-monospace, monospace; letter-spacing: 0.04em; }

.rgb-split {
  position: relative;
  display: inline-block;
  text-shadow:
    -2px 0 0 rgba(255,46,147,0.85),
    2px 0 0 rgba(46,230,224,0.85);
}

.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.scanlines { position: relative; }
.scanlines::before {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.30) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.page { width: 100%; overflow-x: hidden; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Top tape-counter */
.counter-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: #000; color: var(--cyan);
  z-index: 60;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--magenta);
}
.counter-bar .left, .counter-bar .right { display: flex; align-items: center; gap: 14px; }
.counter-bar .rec { display: inline-flex; align-items: center; gap: 6px; color: var(--magenta); }
.counter-bar .rec::before { content: "●"; animation: blink 1.4s infinite step-end; }
.counter-bar .play { color: var(--lime); }
@keyframes blink { 50% { opacity: 0.2; } }

/* Nav */
.nav {
  position: fixed; top: 30px; left: 0; right: 0;
  z-index: 50; padding: 14px 0;
  transition: background 350ms ease, box-shadow 350ms ease;
}
.nav.scrolled {
  background: rgba(14,8,56,0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,46,147,0.30);
}
.nav .row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 28px; letter-spacing: 0.02em;
  color: var(--cream); text-transform: uppercase;
}
.brand .rew { color: var(--magenta); }
.nav.over-hero .brand .rew { color: var(--cyan); }
.brand-dot { color: var(--cyan); font-size: 18px; letter-spacing: 0.04em; margin-left: 2px; }
.nav.scrolled .brand-dot { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 16px; font-family: 'Source Serif 4', Georgia, serif; }
.nav-links a { color: var(--cream); padding: 6px 0; transition: color 200ms ease; }
.nav-links a:hover { color: var(--cyan); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 24px; border-radius: 4px; border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.btn-amber {
  background: var(--amber); color: var(--ink-dark);
  box-shadow: 0 4px 0 var(--magenta), 0 0 24px -6px rgba(255,210,63,0.55);
}
.btn-amber:hover { background: #FFDC5E; transform: translateY(-2px); box-shadow: 0 6px 0 var(--magenta), 0 0 32px -4px rgba(255,210,63,0.7); }
.btn-orange {
  background: var(--magenta); color: var(--cream);
  box-shadow: 0 4px 0 #7a1448, 0 0 24px -6px rgba(255,46,147,0.55);
}
.btn-orange:hover { background: #ff4ba6; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cyan);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 18px -4px rgba(46,230,224,0.55);
}
.btn-outline:hover { background: rgba(46,230,224,0.12); transform: translateY(-2px); box-shadow: 0 0 32px -4px rgba(46,230,224,0.85); }
.btn-lg { font-size: 17px; padding: 16px 30px; }
.btn .play-icon { width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 9px; border-color: transparent transparent transparent currentColor; }
.btn .rec-icon { width: 10px; height: 10px; border-radius: 50%; background: currentColor; }

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(14,8,56,0.30) 0%, rgba(14,8,56,0.55) 70%, rgba(14,8,56,0.95) 100%),
    radial-gradient(ellipse at 25% 30%, #FF2E93 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, #2EE6E0 0%, transparent 50%),
    linear-gradient(160deg, #2D1B5C 0%, #0E0838 100%);
  color: var(--cream);
  display: flex; align-items: flex-end;
  padding: 160px 0 100px; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 50%;
  background: repeating-linear-gradient(180deg, transparent 0 14px, rgba(46,230,224,0.22) 14px 15px);
  -webkit-mask: linear-gradient(180deg, transparent 0%, black 60%);
  mask: linear-gradient(180deg, transparent 0%, black 60%);
  pointer-events: none; z-index: 0;
  transform: perspective(800px) rotateX(60deg);
  transform-origin: top center;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo-tag {
  position: absolute; bottom: 24px; right: 28px;
  font-family: 'VT323', monospace; font-size: 14px; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(255,241,214,0.55); z-index: 4;
}
.hero-tv {
  position: absolute; right: 4%; top: 22%;
  width: 420px; height: 300px;
  border-radius: 26px / 18px;
  background: linear-gradient(180deg, #1A1145 0%, #0E0838 100%);
  box-shadow:
    inset 0 0 0 8px #15093D,
    inset 0 0 0 22px #1A1145,
    0 0 80px -10px rgba(255,46,147,0.45),
    0 30px 80px -20px rgba(0,0,0,0.7);
  overflow: hidden; z-index: 1;
  transform: rotate(-1.2deg) perspective(800px) rotateY(-3deg);
  border: 1px solid var(--cyan);
}
.hero-tv .screen {
  position: absolute; inset: 22px;
  border-radius: 18px / 12px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, var(--magenta) 0%, var(--walnut) 50%, #0E0838 100%);
}
.hero-tv .screen::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.30) 0 2px, transparent 2px 4px);
  animation: scanslide 7s linear infinite;
}
.hero-tv .screen::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%);
}
@keyframes scanslide { from { background-position: 0 0; } to { background-position: 0 4px; } }
.hero-tv .tracking {
  position: absolute; left: 0; right: 0;
  height: 18px;
  background: rgba(255,255,255,0.22); filter: blur(0.5px);
  animation: tracking 9s linear infinite; z-index: 2;
}
@keyframes tracking {
  0% { top: -20px; opacity: 0.0; }
  85% { opacity: 0; }
  92% { top: 80%; opacity: 0.65; }
  96% { top: 110%; opacity: 0.0; }
  100% { top: 110%; opacity: 0.0; }
}
.hero-tv .burnin {
  position: absolute; bottom: 14px; left: 16px;
  font-family: 'VT323', monospace; font-size: 18px; color: var(--amber);
  text-shadow: 0 1px 2px rgba(0,0,0,0.7), -1px 0 0 var(--magenta), 1px 0 0 var(--cyan);
  z-index: 3; letter-spacing: 0.05em;
}
.hero-tv .play-overlay {
  position: absolute; top: 14px; right: 16px;
  font-family: 'VT323', monospace; font-size: 18px; color: var(--lime);
  z-index: 3; text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}
.hero-tv .label {
  position: absolute; bottom: 14px; right: 16px;
  font-family: 'Permanent Marker', cursive; font-size: 24px;
  color: var(--cream); z-index: 3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transform: rotate(-3deg);
}

.hero .container { position: relative; z-index: 3; }
.hero-copy { max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'VT323', monospace; font-size: 18px;
  color: var(--cyan); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 22px; padding: 6px 12px;
  border: 1px solid var(--cyan); border-radius: 2px;
  background: rgba(46,230,224,0.10);
  box-shadow: 0 0 18px -4px rgba(46,230,224,0.55);
}
.hero-eyebrow .blink { animation: blink 1.4s infinite step-end; color: var(--magenta); }
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  color: var(--cream); margin-bottom: 24px; text-wrap: balance;
}
.hero h1 .accent { color: var(--magenta); }
.hero-sub {
  font-family: 'Source Serif 4', serif; font-size: 21px;
  color: rgba(255,241,214,0.85); max-width: 580px;
  margin-bottom: 36px; line-height: 1.55; text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.scroll-cue {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--cyan); font-family: 'VT323', monospace;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  animation: pulse 2.6s ease-in-out infinite;
}
.scroll-cue .arrow { width: 1px; height: 30px; background: var(--cyan); position: relative; }
.scroll-cue .arrow::after {
  content: ""; position: absolute; bottom: -1px; left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  width: 7px; height: 7px;
  border-right: 1px solid var(--cyan); border-bottom: 1px solid var(--cyan);
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
}

/* Hook strip */
.hook {
  background: var(--magenta);
  color: var(--ink-dark);
  border-top: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  position: relative; overflow: hidden;
}
.hook-marquee {
  display: flex; gap: 60px; padding: 28px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.hook-marquee:hover { animation-play-state: paused; }
.hook-item {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 28px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-dark);
}
.hook-item .num { color: var(--amber); font-size: 36px; text-shadow: 2px 2px 0 var(--ink-dark); }
.hook-item .desc { color: var(--cream); font-family: 'Source Serif 4', serif; font-size: 18px; text-transform: none; letter-spacing: 0; font-style: italic; }
.hook-sep { font-family: 'VT323', monospace; color: var(--cyan); font-size: 28px; align-self: center; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 120px 0; position: relative; background: var(--walnut-deep); color: var(--cream); }
.section-head { margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'VT323', monospace; font-size: 16px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; padding: 4px 10px;
  border: 1px solid var(--cyan); border-radius: 2px;
  background: rgba(46,230,224,0.08);
}
.section-eyebrow .dot { width: 8px; height: 8px; background: var(--magenta); border-radius: 50%; box-shadow: 0 0 8px var(--magenta); }
.section h2 { font-size: clamp(40px, 5.5vw, 76px); text-wrap: balance; }
.section-sub {
  font-family: 'Source Serif 4', serif; font-size: 19px;
  color: rgba(255,241,214,0.78); max-width: 580px; margin-top: 18px; text-wrap: pretty;
}
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* How It Works — VHS cassettes */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cassette {
  background: linear-gradient(180deg, #1A1145 0%, #0E0838 100%);
  border-radius: 6px; padding: 22px 22px 24px;
  color: var(--cream); position: relative; isolation: isolate;
  border: 1px solid var(--magenta);
  transition: transform 350ms ease, box-shadow 350ms ease;
  overflow: hidden;
}
.cassette:hover { transform: translateY(-6px); box-shadow: 6px 6px 0 0 var(--cyan), 0 24px 50px -15px rgba(255,46,147,0.45); }
.cassette::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--magenta), var(--amber), var(--cyan), var(--lime));
}
.cassette-label {
  background: var(--paper); color: var(--ink-dark);
  border-radius: 2px; padding: 12px 14px 14px;
  margin-bottom: 18px; position: relative;
  box-shadow: inset 0 0 0 1px rgba(21,9,61,0.18);
  min-height: 110px;
}
.cassette-label::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px;
  height: 18px; background: var(--magenta); border-radius: 2px 2px 0 0;
}
.cassette-label .step-num {
  position: relative; font-family: 'Permanent Marker', cursive;
  font-size: 14px; color: var(--ink-dark); z-index: 2;
  letter-spacing: 0.06em; margin-bottom: 4px; display: block; margin-top: 2px;
}
.cassette-label .step-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px; line-height: 1.05;
  color: var(--ink-dark); margin-top: 14px;
}
.cassette-reels {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding: 0 4px;
}
.reel {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle, #0E0838 30%, var(--magenta) 60%, #0E0838 100%);
  position: relative; border: 2px solid var(--cyan);
  animation: spin 8s linear infinite;
}
.reel::before {
  content: ""; position: absolute; inset: 12px;
  border-radius: 50%; background: #0E0838;
  border: 1px dashed var(--cyan);
}
@keyframes spin { to { transform: rotate(360deg); } }
.reel-tape { flex: 1; height: 4px; background: linear-gradient(90deg, #0E0838, var(--cyan), #0E0838); margin: 0 6px; border-radius: 2px; }
.cassette p { font-family: 'Source Serif 4', serif; font-size: 16px; line-height: 1.5; color: rgba(255,241,214,0.78); }

.steps-rail {
  margin-top: 28px; display: flex; align-items: center; gap: 16px;
  font-family: 'VT323', monospace; font-size: 16px; color: var(--cyan);
  letter-spacing: 0.18em; text-transform: uppercase; justify-content: center;
}
.steps-rail .filmstrip {
  flex: 1; max-width: 600px; height: 24px;
  background: repeating-linear-gradient(90deg, var(--magenta) 0 18px, transparent 18px 30px);
  -webkit-mask: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Library */
.preview {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(46,230,224,0.18), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(255,46,147,0.18), transparent 60%),
    var(--walnut-deep);
  color: var(--cream); padding: 120px 0; position: relative;
}
.preview-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.preview-photo {
  aspect-ratio: 4/5; border-radius: 4px;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255,210,63,0.30), transparent 60%),
    linear-gradient(160deg, var(--magenta) 0%, var(--orange) 50%, var(--walnut) 100%);
  border: 8px solid var(--cream);
  outline: 2px solid var(--cyan);
  position: relative; overflow: hidden;
  box-shadow: 8px 8px 0 0 var(--cyan), 0 30px 60px -25px rgba(255,46,147,0.45);
  transform: rotate(-1.5deg);
}
.preview-photo .tag {
  position: absolute; bottom: 14px; left: 16px;
  font-family: 'VT323', monospace; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-dark); background: var(--cream);
  padding: 4px 8px;
}
.preview-photo .corner-stamp {
  position: absolute; top: 12px; right: 12px;
  font-family: 'VT323', monospace; font-size: 14px;
  color: var(--amber);
  text-shadow: 0 1px 2px rgba(0,0,0,0.7), -1px 0 0 var(--magenta), 1px 0 0 var(--cyan);
  z-index: 2;
}
.preview h2 { margin-bottom: 18px; }
.preview-copy p { font-family: 'Source Serif 4', serif; font-size: 19px; color: rgba(255,241,214,0.85); margin-bottom: 28px; text-wrap: pretty; }

.lib {
  background: linear-gradient(180deg, #000 0%, #0E0838 100%);
  border-radius: 6px; padding: 22px;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 40px -10px rgba(46,230,224,0.45);
  position: relative;
}
.lib::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.20) 0 1px, transparent 1px 3px);
  pointer-events: none; border-radius: 6px;
  mix-blend-mode: multiply;
}
.lib-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; position: relative;
  border-bottom: 1px dashed var(--magenta);
  padding-bottom: 14px;
}
.lib-head h4 {
  font-family: 'Anton', Impact, sans-serif; font-size: 24px;
  color: var(--cream); text-transform: uppercase; letter-spacing: 0.04em;
}
.lib-head .ts { font-family: 'VT323', monospace; font-size: 16px; color: var(--lime); letter-spacing: 0.06em; }
.lib-row { margin-bottom: 18px; position: relative; }
.lib-row-label {
  font-family: 'VT323', monospace; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
}
.lib-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.thumb {
  aspect-ratio: 16/10; border-radius: 3px; position: relative;
  overflow: hidden; cursor: pointer;
  transition: transform 200ms ease;
  border: 1px solid var(--magenta);
}
.thumb:hover { transform: translateY(-2px); border-color: var(--cyan); }
.thumb .scan {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.20) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}
.thumb .ts-burn {
  position: absolute; top: 6px; right: 8px;
  font-family: 'VT323', monospace; font-size: 11px;
  color: var(--amber); text-shadow: 0 1px 1px rgba(0,0,0,0.8);
}
.thumb .lbl {
  position: absolute; bottom: 6px; left: 8px; right: 8px;
  font-size: 11px; color: var(--cream);
  font-family: 'Source Serif 4', serif;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7); line-height: 1.2;
}
.thumb .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 200ms ease;
}
.thumb:hover .play { opacity: 1; }
.thumb .play::after {
  content: ""; border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--ink-dark);
  margin-left: 2px;
}

/* Pricing */
.pricing { background: var(--walnut-deep); color: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.price-card {
  background: linear-gradient(180deg, #1A1145 0%, #15093D 100%);
  border: 2px solid var(--cyan); border-radius: 4px;
  padding: 0 0 32px; position: relative;
  display: flex; flex-direction: column;
  transition: transform 300ms ease, box-shadow 300ms ease;
  box-shadow: 6px 6px 0 0 var(--magenta);
  overflow: hidden; color: var(--cream);
}
.price-card .price-spine {
  background: #000; color: var(--lime);
  padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'VT323', monospace; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.price-card .price-spine .num { color: var(--amber); }
.price-card .price-body { padding: 28px 28px 0; }
.price-card.featured {
  border: 2px solid var(--amber);
  box-shadow: 6px 6px 0 0 var(--magenta), 0 0 40px -10px rgba(255,210,63,0.55);
  transform: translateY(-12px);
}
.price-card.featured .price-spine { background: var(--magenta); color: var(--cream); }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured:hover { transform: translateY(-16px); }
.price-ribbon {
  position: absolute; top: 14px; right: -34px;
  background: var(--lime); color: var(--ink-dark);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 36px; transform: rotate(35deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.40);
}
.price-card .plan-name {
  font-family: 'Anton', Impact, sans-serif; font-size: 32px;
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1; color: var(--cream);
}
.plan-tagline {
  font-family: 'Permanent Marker', cursive; font-size: 16px;
  color: var(--magenta); margin-bottom: 22px;
  transform: rotate(-1deg); display: inline-block;
}
.price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-amt {
  font-family: 'Anton', Impact, sans-serif; font-size: 56px;
  color: var(--amber); line-height: 1;
  text-shadow: 3px 3px 0 var(--magenta);
}
.price-per { font-size: 16px; color: rgba(255,241,214,0.7); font-family: 'Source Serif 4', serif; }
.price-tapes {
  font-family: 'VT323', monospace; font-size: 18px;
  color: var(--cyan); margin: 14px 0 22px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 12px; background: rgba(46,230,224,0.10);
  border-left: 3px solid var(--cyan); display: inline-block;
}
.price-features { list-style: none; margin-bottom: 24px; flex: 1; padding: 0 28px; }
.price-features li {
  font-family: 'Source Serif 4', serif; font-size: 16.5px;
  padding: 9px 0; border-bottom: 1px dashed rgba(46,230,224,0.22);
  color: var(--cream); display: flex; align-items: flex-start; gap: 10px;
}
.price-features li::before { content: "▶"; color: var(--lime); font-size: 11px; margin-top: 5px; flex-shrink: 0; }
.price-features li:last-child { border-bottom: none; }
.price-card .btn-wrap { padding: 0 28px; }
.price-card .btn { width: 100%; }
.bulk-link {
  text-align: center; margin-top: 36px;
  font-family: 'VT323', monospace; font-size: 18px;
  letter-spacing: 0.10em; color: rgba(255,241,214,0.65);
}
.bulk-link a { color: var(--cyan); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* Testimonials */
.testimonials {
  background:
    repeating-linear-gradient(45deg, rgba(255,46,147,0.06) 0 12px, transparent 12px 24px),
    var(--walnut);
  color: var(--cream); padding: 120px 0; position: relative; overflow: hidden;
}
.testimonials h2 { color: var(--cream); }
.testimonials .section-eyebrow { color: var(--amber); border-color: var(--amber); background: rgba(255,210,63,0.10); }
.testimonials .section-eyebrow .dot { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: var(--cream); color: var(--ink-dark);
  border-radius: 2px; padding: 28px 26px 24px; position: relative;
  display: flex; flex-direction: column;
  transform: rotate(-0.6deg);
  box-shadow: 6px 6px 0 0 var(--magenta);
}
.t-card:nth-child(2) { transform: rotate(0.4deg); box-shadow: 6px 6px 0 0 var(--cyan); }
.t-card:nth-child(3) { transform: rotate(-0.2deg); box-shadow: 6px 6px 0 0 var(--lime); }
.t-card::before {
  content: ""; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%); width: 70px; height: 18px;
  background: var(--amber); border: 1px dashed rgba(21,9,61,0.30);
}
.t-card .quotemark { font-family: 'Anton', Impact, sans-serif; font-size: 60px; line-height: 0.7; color: var(--magenta); margin-bottom: 10px; }
.t-stars { color: var(--magenta); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.t-quote { font-family: 'Source Serif 4', serif; font-style: italic; font-size: 18px; line-height: 1.55; color: var(--ink-dark); flex: 1; margin-bottom: 22px; text-wrap: pretty; }
.t-meta { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--amber) 0%, var(--magenta) 70%, var(--walnut) 100%);
  border: 2px solid var(--cream); outline: 1px solid var(--cyan); flex-shrink: 0;
}
.t-name { font-family: 'Anton', Impact, sans-serif; font-size: 16px; letter-spacing: 0.04em; color: var(--ink-dark); margin-bottom: 2px; text-transform: uppercase; }
.t-loc { font-family: 'Source Serif 4', serif; font-size: 14px; font-style: italic; color: var(--magenta); }
.trust-row {
  margin-top: 56px; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 28px 40px;
  font-family: 'VT323', monospace; font-size: 16px;
  letter-spacing: 0.08em; color: rgba(255,241,214,0.75); text-transform: uppercase;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 8px var(--cyan); }

/* FAQ */
.faq { background: var(--cream); color: var(--ink-dark); }
.faq h2 { color: var(--ink-dark); }
.faq .section-eyebrow { color: var(--magenta); border-color: var(--magenta); background: rgba(255,46,147,0.08); }
.faq .section-eyebrow .dot { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.faq-list { max-width: 860px; margin: 0 auto; border-top: 2px solid var(--ink-dark); }
.faq-item { border-bottom: 1px solid rgba(21,9,61,0.20); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 24px 0; font-family: 'Anton', Impact, sans-serif;
  font-size: 22px; color: var(--ink-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; text-transform: uppercase; letter-spacing: 0.02em;
  transition: color 200ms ease;
}
.faq-q:hover { color: var(--magenta); }
.faq-arrow {
  color: var(--magenta); font-size: 18px; flex-shrink: 0;
  transition: transform 350ms ease;
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border: 1px solid var(--magenta); border-radius: 2px;
}
.faq-item.open .faq-arrow { transform: rotate(-90deg); background: var(--magenta); color: var(--cream); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 450ms ease, padding 450ms ease;
  font-family: 'Source Serif 4', serif; font-size: 18px;
  color: var(--walnut); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 360px; padding: 0 0 24px; }

/* Final CTA */
.final-cta {
  position: relative; padding: 140px 0;
  background:
    linear-gradient(180deg, rgba(14,8,56,0.40), rgba(14,8,56,0.85)),
    radial-gradient(ellipse at 30% 30%, var(--magenta) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, var(--cyan) 0%, transparent 55%),
    linear-gradient(160deg, #2D1B5C, #0E0838);
  color: var(--cream); text-align: center; overflow: hidden;
}
.final-cta-tape-tag {
  position: absolute; font-family: 'Permanent Marker', cursive;
  font-size: 22px; color: rgba(255,241,214,0.55); pointer-events: none;
  text-shadow: 1px 1px 0 var(--magenta);
}
.final-cta .container { position: relative; z-index: 3; }
.final-cta h2 { color: var(--cream); font-size: clamp(44px, 6vw, 78px); margin-bottom: 22px; }
.final-cta p {
  font-family: 'Source Serif 4', serif; font-size: 21px;
  color: rgba(255,241,214,0.88); max-width: 620px;
  margin: 0 auto 36px; text-wrap: pretty;
}

/* Footer */
.footer { background: #000; color: rgba(255,241,214,0.75); padding: 80px 0 28px; border-top: 2px solid var(--magenta); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand { color: var(--cream); margin-bottom: 14px; }
.footer-brand p { font-family: 'Source Serif 4', serif; font-size: 15px; line-height: 1.6; max-width: 280px; }
.footer h5 { font-family: 'Anton', Impact, sans-serif; font-size: 14px; letter-spacing: 0.18em; color: var(--cyan); margin-bottom: 18px; text-transform: uppercase; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 15.5px; font-family: 'Source Serif 4', serif; }
.footer ul li a:hover { color: var(--magenta); }
.footer-contact p { font-family: 'Source Serif 4', serif; font-size: 15px; line-height: 1.6; }
.footer-contact .promise { font-family: 'Permanent Marker', cursive; font-size: 18px; color: var(--lime); margin-top: 8px; transform: rotate(-1deg); display: inline-block; }
.footer-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; color: var(--magenta); margin: 36px 0 24px;
  font-family: 'VT323', monospace; font-size: 14px; letter-spacing: 0.18em;
}
.footer-divider .line { flex: 1; height: 1px; background: rgba(255,46,147,0.30); }
.footer-fine {
  text-align: center; font-family: 'VT323', monospace;
  font-size: 13px; letter-spacing: 0.10em;
  color: rgba(255,241,214,0.45); text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1.0s ease, transform 1.0s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-tv { display: none; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .t-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .preview, .testimonials { padding: 80px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .counter-bar { font-size: 12px; padding: 5px 12px; }
  .counter-bar .left, .counter-bar .right { gap: 8px; }
  .nav { top: 26px; }
}
