:root {
  --ink: #0a0909;
  --ink-2: #131011;
  --paper: #f3ede4;
  --red: #c81420;
  --red-2: #8f0f18;
  --red-glow: #ff2a35;
  --steel: #9a9a9a;
  --wa-green: #25d366;
  --wa-green-dark: #1fa855;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Oswald", "Arial Narrow", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 90% 60% at 50% -8%, rgba(200,20,32,0.16), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 100%, rgba(200,20,32,0.10), transparent 60%),
    linear-gradient(180deg, #0c0a0b 0%, #0a0909 45%, #0d0808 100%);
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
}

/* ---------- atmosphere layers ---------- */

#grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, transparent 45%, rgba(0,0,0,0.55) 100%);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.10) 0px,
    rgba(0,0,0,0.10) 1px,
    transparent 1px,
    transparent 3px
  );
}

.smoke {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(140,10,16,0.55), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate;
}
.smoke--a { top: -20%; left: -15%; }
.smoke--b {
  bottom: -25%; right: -15%;
  background: radial-gradient(circle, rgba(70,70,75,0.35), transparent 70%);
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.08); }
}

.stripe-sweep {
  position: fixed;
  top: 0;
  left: -20%;
  width: 14%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.035) 45%, transparent 100%);
  animation: sweep 9s cubic-bezier(.4,0,.2,1) infinite;
  animation-delay: 2s;
}
@keyframes sweep {
  0%   { left: -20%; }
  28%  { left: 130%; }
  100% { left: 130%; }
}

/* ---------- layout ---------- */

.stage {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 3rem;
  gap: 0;
}

/* stamp */

.stamp {
  position: absolute;
  top: clamp(1.25rem, 4vw, 2.75rem);
  right: clamp(1.25rem, 4vw, 3.5rem);
  width: clamp(84px, 9vw, 116px);
  height: clamp(84px, 9vw, 116px);
  color: var(--red-glow);
  opacity: 0.9;
  animation: stamp-pulse 3.2s ease-in-out infinite;
}
.stamp svg {
  width: 100%;
  height: 100%;
  animation: spin 26s linear infinite;
}
.stamp path { fill: none; }
.stamp text {
  fill: currentColor;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
}
.stamp-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 1px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes stamp-pulse {
  0%, 100% { opacity: 0.65; filter: drop-shadow(0 0 2px rgba(255,42,53,0.3)); }
  50% { opacity: 1; filter: drop-shadow(0 0 10px rgba(255,42,53,0.55)); }
}

/* badge */

.badge-wrap {
  position: relative;
  width: min(340px, 62vw);
  margin-bottom: 0.5rem;
  transition: transform 0.15s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 800px;
}
.badge-glow {
  position: absolute;
  inset: 8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255,42,53,0.35), transparent 70%);
  filter: blur(34px);
  animation: glow-pulse 3.6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 0.9; transform: scale(1.04); }
}
.badge-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.65));
}

/* kicker */

.kicker {
  margin: 0.6rem 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.4vw, 0.78rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel);
}
.kicker-line {
  width: clamp(18px, 4vw, 40px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  opacity: 0.8;
}

/* headline */

.headline {
  margin: 0.2rem 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.headline-row {
  display: block;
  font-size: clamp(1.7rem, 6.2vw, 3.4rem);
  color: var(--paper);
  text-shadow: 0 2px 0 rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.06);
}
.headline-row--accent {
  color: var(--red);
  background: linear-gradient(180deg, var(--red-glow) 0%, var(--red-2) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 18px rgba(200,20,32,0.35));
}
.headline-word + .headline-word { margin-left: 0.32em; }

/* coming soon flicker */

.coming-soon {
  position: relative;
  margin: 0.4rem 0 1.6rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(0.72rem, 1.8vw, 0.95rem);
  letter-spacing: 0.42em;
  padding: 0.55em 1.1em;
  color: var(--red-glow);
  border-top: 1px solid rgba(255,42,53,0.35);
  border-bottom: 1px solid rgba(255,42,53,0.35);
}
.coming-soon { animation: flicker 5s linear infinite; }
@keyframes flicker {
  0%, 3%, 6%, 100% { opacity: 1; }
  4% { opacity: 0.35; }
  5% { opacity: 0.85; }
  7% { opacity: 0.5; }
  8% { opacity: 1; }
}

/* copy */

.copy {
  max-width: 560px;
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: #cfc9c2;
}
.copy p { margin: 0 0 0.9em; }
.copy p:last-child { margin-bottom: 0; }

/* CTA */

.cta-row { margin-top: 2.1rem; }

.fb-btn {
  --pad-x: 1.7rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem var(--pad-x);
  background: var(--red);
  color: #f5f0ea;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  box-shadow: 0 10px 30px rgba(200,20,32,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fb-btn:hover {
  background: #e01a26;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200,20,32,0.5), inset 0 0 0 1px rgba(255,255,255,0.15);
}
.fb-btn:active { transform: translateY(0); }
.fb-icon { width: 20px; height: 20px; flex: none; }

/* footer */

.site-footer {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6560;
}
.site-footer i { font-style: normal; opacity: 0.5; }
.foot-sep { margin: 0 0.2rem; opacity: 0.5; }

/* ---------- countdown ---------- */

.countdown {
  margin: 1.9rem 0 2.1rem;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.2rem) 1.3rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 12px 30px rgba(0,0,0,0.35);
}

.countdown-flag {
  height: 8px;
  margin: 0 -1px;
  background-image:
    linear-gradient(45deg, #0a0909 25%, transparent 25%, transparent 75%, #0a0909 75%),
    linear-gradient(45deg, #0a0909 25%, transparent 25%, transparent 75%, #0a0909 75%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  background-color: #ece7e0;
  opacity: 0.85;
}
.countdown-flag:first-child { margin-bottom: 1rem; }
.countdown-flag:last-child { margin-top: 1.15rem; }

.countdown-label {
  margin: 0 0 0.9rem;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.4vw, 0.75rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--steel);
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.1rem);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: clamp(3rem, 9vw, 4.4rem);
  padding: 0.5rem 0.3rem 0.6rem;
  background: #0d0b0c;
  border: 1px solid rgba(255,42,53,0.25);
  box-shadow: inset 0 0 14px rgba(0,0,0,0.65);
}

.countdown-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  line-height: 1;
  color: var(--red-glow);
  text-shadow: 0 0 6px rgba(255,42,53,0.75), 0 0 22px rgba(255,42,53,0.4);
}

.countdown-unit-label {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.2vw, 0.62rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6560;
}

.countdown-sep {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: rgba(255,42,53,0.4);
  transform: translateY(-0.7em);
}

.countdown.is-live .countdown-value,
.countdown.is-live .countdown-sep { color: var(--paper); text-shadow: none; }

/* ---------- whatsapp floating button ---------- */

.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 4vw, 1.75rem);
  bottom: clamp(1rem, 4vw, 1.75rem);
  z-index: 50;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.whatsapp-fab:hover { background: var(--wa-green-dark); transform: scale(1.06); }
.whatsapp-fab:active { transform: scale(0.97); }
.whatsapp-fab svg { width: 34px; height: 34px; position: relative; z-index: 1; }

.whatsapp-fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab-ring { animation: none; display: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 480px) {
  .stage { padding-top: 6.5rem; }
  .stamp { top: 1rem; right: 1rem; width: 78px; height: 78px; }
  .site-footer { flex-direction: column; gap: 0.3rem; }
  .foot-sep { display: none; }
  .whatsapp-fab { width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .smoke, .stripe-sweep, .stamp svg, .badge-glow, .coming-soon {
    animation: none !important;
  }
}
