*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --gold: #FFC000;
  --gold-light: #FFD033;
  --gold-dim: rgba(255, 192, 0, 0.12);
  --black: #0B0B0C;
  --surface: #141416;
  --surface-2: #1E1E22;
  --white: #FFFFFF;
  --grey: #A1A1A6;
}
html, body {
  min-height: 100%;
  background-color: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}
/* ── NOISE & AMBIENT GLOW TEXTURE ── */
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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
body::after {
  content: '';
  position: fixed;
  top: -25vh;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 192, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 7s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}
/* ── WRAPPER & CONTAINER ── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  max-width: 390px;
  margin: 0 auto;
}
/* ── LOGO ── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.6s 0.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-text span {
  color: var(--gold);
}
/* ── LIVE STATUS BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(255,192,0,0.25);
  border-radius: 100px;
  padding: 6px 12px 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.6s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #FF3B30; /* Cinematic Recording Red */
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.85); }
}
/* ── INTEGRATED WAVEFORM (EQUALIZER EFFECT) ── */
.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}
.bar {
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
  animation: jump 1.2s ease-in-out infinite;
}
.bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.bar:nth-child(3) { height: 8px; animation-delay: 0.5s; }
.bar:nth-child(4) { height: 14px; animation-delay: 0.2s; }
.bar:nth-child(5) { height: 7px; animation-delay: 0.4s; }
@keyframes jump {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50%       { transform: scaleY(1.1); opacity: 1; }
}
/* ── HEADLINE ── */
.headline {
  font-size: clamp(34px, 9.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
.headline em {
  font-style: normal;
  color: var(--gold);
}
/* ── SUBTEXT ── */
.subtext {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey);
  text-align: center;
  margin-bottom: 32px;
  padding: 0 8px;
  opacity: 0;
  animation: fade-up 0.7s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* ── HIGHLIGHTS & STATS MATRIX ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  padding: 16px 0;
  margin-bottom: 5px;
  opacity: 0;
  animation: fade-up 0.7s 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-num span {
  color: var(--gold);
}
.stat-lbl {
  font-size: 10px;
  color: var(--grey);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
/* ── HIGH CONVERSION CTA ── */
.button-wrapper {
  width: 100%;
  opacity: 0;
  animation: fade-up 0.7s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.main-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  padding: 20px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(255, 192, 0, 0.25);
  user-select: none;
  margin-bottom: 32px;
}
.main-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  pointer-events: none;
}
.main-cta:hover {
  background: var(--gold-light);
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 192, 0, 0.4);
}
.main-cta:active {
  transform: scale(0.96);
  background: #dca500;
  box-shadow: 0 4px 12px rgba(255, 192, 0, 0.15);
  transition: transform 0.05s ease, background 0.05s ease;
}
.arrow-svg {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.main-cta:hover .arrow-svg {
  transform: translateX(4px);
}
/* ── FADE-UP ANIMATION MATRIX ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}