/* ═══════════════════════════════════════════════════════════════
   REAL TALK MEDIA GROUP — youforgot.marketing
   Put things where they don't belong.
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black: #080808;
  --white: #f0ede8;
  --red: #e8291c;
  --dim: #1a1a1a;
  --mid: #2e2e2e;
  --text-dim: #666;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  overflow-x: hidden;
  overflow-wrap: break-word;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
.cursor.big {
  width: 40px;
  height: 40px;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mid);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,41,28,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, var(--black) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 101;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--white);
  user-select: none;
  -webkit-user-select: none;
}

.logo span {
  color: var(--red);
}

.nav-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--mid);
  padding: 6px 14px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-headline .stroke {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-headline .accent {
  color: var(--red);
}

.hero-sub {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 300;
  color: #999;
  max-width: 520px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #c0221a;
  transform: translateY(-2px);
}

.hero-scroll {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--text-dim);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-vertical-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* ── SECTION WRAPPER ── */
section {
  padding: 100px 48px;
  overflow-x: hidden;
  border-bottom: 1px solid var(--mid);
  position: relative;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--mid);
  max-width: 200px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid > * {
  min-width: 0;
}

.about-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.about-headline em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.about-body {
  font-size: 18px;
  font-weight: 300;
  color: #aaa;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.about-body p + p {
  margin-top: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--mid);
  padding: 8px 16px;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--red);
  color: var(--white);
}

/* ── PHILOSOPHY ── */
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.philosophy-content > * {
  min-width: 0;
}
.philosophy-content {
  align-items: start;
}

.philosophy-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy-step {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.philosophy-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  min-width: 28px;
}

.philosophy-step-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.philosophy-step-text em {
  font-style: normal;
  color: var(--red);
}

.philosophy-right {
  padding-top: 8px;
}

.philosophy-body {
  font-size: 17px;
  font-weight: 300;
  color: #888;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.philosophy-body p + p {
  margin-top: 16px;
}

.philosophy-footnote {
  margin-top: 40px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

/* ── ACTIVATION: CONTINENTAL RUN ── */
.activation-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 64px;
}
.activation-header > * {
  min-width: 0;
}
.activation-header {
  gap: 40px;
}

.activation-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.activation-title .line2 {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
}

.activation-meta {
  text-align: right;
}

.activation-meta-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2;
}

.activation-meta-item span {
  color: var(--white);
}

.activation-cards {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2px;
}
.activation-cards > * {
  min-width: 0;
}

.act-card {
  background: var(--dim);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.act-card:hover {
  background: #222;
}

.act-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.act-card:hover::before {
  transform: scaleY(1);
}

.act-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--mid);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 32px;
}

.act-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.act-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.act-card-body {
  font-size: 16px;
  font-weight: 300;
  color: #888;
  line-height: 1.6;
  letter-spacing: 0.02em;
  max-width: 420px;
}

.act-card-detail {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}

.act-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.act-detail-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.act-detail-key {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── COUNTDOWN ── */
.countdown-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--mid);
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  min-width: 48px;
  text-align: center;
}

.countdown-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--mid);
  line-height: 1;
  align-self: flex-start;
}

.countdown-target {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ── STATS ── */
.stats-section {
  background: var(--dim);
}

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

.stat-block {
  padding: 48px 40px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-block:hover::after {
  transform: scaleX(1);
}

.stat-block-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
}

.stat-block-num sup {
  font-size: 32px;
  vertical-align: super;
  color: var(--red);
}

.stat-block-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-block-sub {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-inner > * {
  min-width: 0;
}

.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9;
}

.contact-headline .red { color: var(--red); }

.contact-body {
  font-size: 17px;
  font-weight: 300;
  color: #888;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.contact-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--red); }

.contact-email::after {
  content: '→';
  font-family: sans-serif;
  font-size: 20px;
  transition: transform 0.2s;
}

.contact-email:hover::after {
  transform: translateX(6px);
}

/* ── WHAT'S NEXT ── */
.whats-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.whats-next-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  max-width: 800px;
  margin-bottom: 48px;
}
.whats-next-headline .stroke-light {
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  color: transparent;
}
.stats-section-label {
  padding: 60px 48px 0;
  margin-bottom: 0;
}
.whats-next-card {
  padding: 36px;
}
.whats-next-card .act-card-title {
  font-size: 28px;
}

/* ── FOOTER ── */
footer {
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #333;
  letter-spacing: 0.1em;
}

.footer-domain {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

/* ── EGG COUNTER (hidden in footer) ── */
.egg-counter {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.1em;
  transition: color 0.3s;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}
.egg-counter:hover {
  color: var(--text-dim);
}
.egg-counter.has-eggs {
  color: var(--mid);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(40px);
}

/* ── GLITCH EFFECT ── */
.glitch-active {
  animation: glitchText 0.5s ease forwards;
}

@keyframes glitchText {
  0% { transform: translate(0); filter: none; opacity: 1; }
  10% { transform: translate(-3px, 1px); filter: hue-rotate(90deg); }
  20% { transform: translate(3px, -2px); clip-path: inset(20% 0 60% 0); }
  30% { transform: translate(-2px, 2px); filter: hue-rotate(180deg); }
  40% { transform: translate(2px, -1px); clip-path: inset(60% 0 10% 0); }
  50% { transform: translate(-1px, 0); filter: saturate(3); }
  60% { transform: translate(1px, 1px); clip-path: inset(40% 0 30% 0); }
  70% { transform: translate(0, -1px); filter: hue-rotate(270deg); }
  80% { transform: translate(-1px, 0); clip-path: none; filter: none; }
  90% { transform: translate(1px, 1px); }
  100% { transform: translate(0); filter: none; clip-path: none; opacity: 1; }
}

/* Text scramble container */
.scramble-text {
  display: inline;
}

/* ── FALLING VEHICLE (SHAKE EASTER EGG) ── */
.falling-vehicle {
  position: fixed;
  top: -120px;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  font-size: 0;
  line-height: 0;
}

.falling-vehicle svg {
  width: 120px;
  height: auto;
  fill: var(--red);
}

.falling-vehicle.fall {
  animation: vehicleFall 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── LETTER FALL (FLIP PHONE UPSIDE DOWN) ── */
.letter-falling {
  display: inline-block;
  animation: letterFall var(--fall-duration, 1s) cubic-bezier(0.55, 0, 1, 0.45) var(--fall-delay, 0s) forwards;
}

@keyframes letterFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(80vh) rotate(var(--fall-rot, 20deg)); }
}

@keyframes vehicleFall {
  0% { top: -120px; opacity: 1; transform: rotate(0deg); }
  50% { opacity: 1; }
  65% { top: calc(100vh - 140px); transform: rotate(12deg); }
  75% { top: calc(100vh - 180px); transform: rotate(-4deg); }
  85% { top: calc(100vh - 140px); transform: rotate(2deg); }
  92% { top: calc(100vh - 150px); transform: rotate(-1deg); }
  100% { top: calc(100vh - 140px); opacity: 0; transform: rotate(0deg); }
}

@keyframes pageShake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-5px) rotate(-0.3deg); }
  20% { transform: translateX(5px) rotate(0.3deg); }
  30% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  50% { transform: translateX(-3px) rotate(-0.1deg); }
  60% { transform: translateX(3px) rotate(0.1deg); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  90% { transform: translateX(-1px); }
}

.page-shake {
  animation: pageShake 0.6s ease;
}

/* ── SECRET SECTION (BELOW FOOTER) ── */
.secret-below {
  background: var(--black);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.secret-below.revealed {
  max-height: 600px;
  padding: 100px 48px;
}

.secret-below-inner {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.secret-below.revealed .secret-below-inner {
  opacity: 1;
  transform: translateY(0);
}

.secret-below-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.secret-below-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  margin-bottom: 24px;
}

.secret-below-body {
  font-size: 17px;
  font-weight: 300;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.secret-below-email {
  display: inline-block;
  margin-top: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.secret-below-email:hover {
  color: var(--white);
}

/* ── PULL-TO-REVEAL (ABOVE HERO) ── */
.pull-reveal {
  background: var(--black);
  border-bottom: 1px solid transparent;
  overflow: hidden;
  max-height: 0;
  padding: 0 48px;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pull-reveal.active {
  max-height: 300px;
  padding: 60px 48px;
  border-bottom-color: var(--red);
}

.pull-reveal-inner {
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.pull-reveal.active .pull-reveal-inner {
  opacity: 1;
}

.pull-reveal-text {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  line-height: 2.2;
}

.pull-reveal-text span {
  color: var(--red);
}

.pull-reveal-hint {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ── KONAMI OVERLAY ── */
.konami-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.konami-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.konami-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  padding: 8px 20px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.konami-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.9;
  text-align: center;
  max-width: 900px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.konami-headline .stroke {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.konami-sub {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 300;
  color: #888;
  text-align: center;
  max-width: 500px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  animation: fadeUp 0.7s ease 0.3s both;
}

.konami-close {
  margin-top: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--mid);
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  animation: fadeUp 0.6s ease 0.4s both;
}

.konami-close:hover,
.konami-close:active {
  border-color: var(--red);
  color: var(--white);
}

/* ── MOBILE NAV OVERLAY ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--mid);
  padding: 10px;
  cursor: pointer;
  z-index: 102;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  transition: color 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav-overlay.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.mobile-nav-overlay.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-link:active,
.mobile-nav-link:hover { color: var(--red); }
.mobile-nav-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 32px;
  opacity: 0;
}
.mobile-nav-overlay.open .mobile-nav-tag {
  opacity: 1;
  transition: opacity 0.5s ease 0.35s;
}

/* ── DRIFTING ELEMENT ── */
.drift {
  transition: transform 120s linear;
}

/* ── GPU ACCELERATION ── */
.reveal, .act-card::before, .stat-block::after, .cursor, .falling-vehicle, .konami-overlay {
  will-change: transform, opacity;
}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .glitch-active { animation: none !important; }
  .falling-vehicle.fall { animation: none !important; }
  .page-shake { animation: none !important; }
}

/* ── TOUCH DEVICE OPTIMIZATIONS ── */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none !important; }
  body::before { display: none; }

  .btn-primary:active {
    background: #c0221a;
    transform: scale(0.97);
  }
  .tag:active {
    border-color: var(--red);
    color: var(--white);
  }
  .act-card:active {
    background: #222;
  }
  .act-card:active::before {
    transform: scaleY(1);
  }
  .contact-email:active { color: var(--red); }
  .contact-email:active::after { transform: translateX(6px); }
  .konami-close:active {
    border-color: var(--red);
    color: var(--white);
  }
}

/* ── RESPONSIVE: TABLET (768px) ── */
@media (max-width: 768px) {
  .hero { padding: 32px 24px; min-height: 100dvh; }
  section { padding: 72px 24px; }
  footer { padding: 28px 24px; }

  .nav-tag { display: none; }
  .nav-toggle { display: flex; }

  .hero-vertical-text { display: none; }

  .hero-content { padding: 40px 0; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 20px; }
  .hero-sub { font-size: 17px; margin-top: 28px; }

  .hero-cta {
    margin-top: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 18px 32px;
    font-size: 20px;
    min-height: 56px;
  }

  .hero-stat-row { gap: 24px; }
  .hero-stat-num { font-size: 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-headline { font-size: clamp(40px, 10vw, 56px); }
  .about-body { font-size: 16px; }

  .about-tags {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 8px;
    margin-right: 0;
  }
  .about-tags::-webkit-scrollbar { display: none; }
  .tag {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 10px;
  }

  .philosophy-content { grid-template-columns: 1fr; gap: 32px; }
  .philosophy-step-text { font-size: clamp(24px, 7vw, 36px); }

  .activation-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .activation-meta { text-align: left; }
  .activation-title { font-size: clamp(44px, 10vw, 72px); }
  .activation-cards { grid-template-columns: 1fr; gap: 2px; }

  .act-card { padding: 32px 24px; }
  .act-card-num { font-size: 56px; right: 20px; top: 16px; }
  .act-card-title { font-size: 32px; }
  .act-card-body { font-size: 15px; max-width: 100%; }
  .act-card-detail { flex-wrap: wrap; gap: 16px; }

  .countdown-row { gap: 16px; }
  .countdown-num { font-size: 28px; }
  .countdown-sep { font-size: 28px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 32px 24px; }
  .stat-block-num { font-size: 52px; }
  .stat-block-num sup { font-size: 24px; }

  .section-label { font-size: 9px; margin-bottom: 32px; }
  .stats-section-label { padding: 40px 24px 0; }

  .whats-next-grid { grid-template-columns: 1fr; }
  .whats-next-card { padding: 28px 24px; }
  .whats-next-headline { margin-bottom: 32px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-headline { font-size: clamp(48px, 12vw, 72px); }
  .contact-body { font-size: 16px; }
  .contact-email {
    font-size: 22px;
    padding: 12px 0;
    min-height: 48px;
  }

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

  .secret-below.revealed { padding: 72px 24px; }
  .pull-reveal.active { padding: 48px 24px; }

  .konami-overlay { padding: 32px 24px; }
  .konami-headline { font-size: clamp(40px, 10vw, 80px); }
}

/* ── RESPONSIVE: SMALL PHONE (480px) ── */
@media (max-width: 480px) {
  .hero { padding: 24px 18px; }
  section { padding: 56px 18px; }
  footer { padding: 24px 18px; }

  .logo { font-size: 18px; }

  .hero-headline { font-size: clamp(52px, 14vw, 72px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.15em; }

  .hero-stat-row { gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 9px; }

  .about-headline { font-size: clamp(36px, 9vw, 48px); }
  .about-body { font-size: 15px; }

  .philosophy-step-text { font-size: clamp(22px, 6vw, 32px); }
  .philosophy-body { font-size: 15px; }

  .activation-title { font-size: clamp(36px, 9vw, 56px); }
  .activation-meta-item { font-size: 11px; }
  .act-card-title { font-size: 26px; }
  .act-card-body { font-size: 14px; }
  .act-card-num { font-size: 44px; }
  .act-detail-val { font-size: 22px; }
  .act-detail-key { font-size: 8px; }

  .countdown-row { gap: 12px; }
  .countdown-num { font-size: 22px; min-width: 36px; }
  .countdown-sep { font-size: 22px; }
  .countdown-label { font-size: 7px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { padding: 28px 18px; }
  .stat-block-num { font-size: 44px; }
  .stat-block-num sup { font-size: 20px; }
  .stat-block-label { font-size: 10px; }

  .whats-next-grid { grid-template-columns: 1fr; }
  .whats-next-card { padding: 24px 18px; }
  .stats-section-label { padding: 32px 18px 0; }
  .whats-next-headline { margin-bottom: 24px; }

  .contact-headline { font-size: clamp(40px, 11vw, 56px); }
  .contact-body { font-size: 15px; }
  .contact-email { font-size: 18px; }

  .mobile-nav-link { font-size: 40px; }

  .secret-below.revealed { padding: 56px 18px; }
  .secret-below-headline { font-size: clamp(32px, 8vw, 48px); }
  .pull-reveal.active { padding: 40px 18px; }

  .konami-headline { font-size: clamp(36px, 9vw, 64px); }
  .konami-sub { font-size: 15px; }
}
