/* =========================================
   VARIABLES
   ========================================= */
:root {
  --bg: #060607;
  --panel: #0e0e11;
  --panel-2: #141418;
  --gold: #f7cf4c;
  --gold-2: #ffe48a;
  --gold-deep: #c98f0e;
  --red: #ff2d20;
  --red-deep: #b0140c;
  --green: #34d77d;
  --text: #f5f5f7;
  --muted: #9b9ba3;
  --line: rgba(255, 255, 255, 0.09);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #000;
}

/* =========================================
   BACKGROUND
   ========================================= */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 50% -8%, rgba(247, 207, 76, 0.20), transparent 55%),
    radial-gradient(90% 60% at 80% 110%, rgba(255, 45, 32, 0.12), transparent 60%),
    radial-gradient(70% 50% at 10% 90%, rgba(52, 215, 125, 0.07), transparent 60%),
    var(--bg);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(85% 75% at 50% 25%, #000 25%, transparent 80%);
  mask-image: radial-gradient(85% 75% at 50% 25%, #000 25%, transparent 80%);
}

/* =========================================
   LAYOUT
   ========================================= */
.wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 22px;
}

/* =========================================
   NAV
   ========================================= */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 6px;
  animation: fade 0.7s ease both;
}

.brand {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--gold);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

.blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s infinite;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 40px 0 30px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(247, 207, 76, 0.35);
  background: rgba(247, 207, 76, 0.07);
  color: var(--gold);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: rise 0.8s 0.05s ease both;
}

h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 12vw, 82px);
  line-height: 0.93;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: rise 0.9s 0.1s ease both;
}

h1 .hook {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(16px, 4.4vw, 22px);
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 14px;
}

h1 .amt {
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  margin: 22px auto 0;
  max-width: 470px;
  font-size: clamp(15px, 4vw, 18px);
  color: #cfcfd6;
  line-height: 1.6;
  animation: rise 0.9s 0.2s ease both;
}

.sub b {
  color: #fff;
  font-weight: 600;
}

/* =========================================
   SPOTS (CUPOS)
   ========================================= */
.spots {
  max-width: 440px;
  margin: 34px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 45, 32, 0.4);
  background: rgba(255, 45, 32, 0.06);
  border-radius: 16px;
  animation: rise 0.9s 0.3s ease both, glowbox 2.4s ease-in-out infinite;
}

.spots .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb3ad;
  margin-bottom: 10px;
}

.spots .row .lab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.spots .row .lab i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-red 1.4s infinite;
}

.spots .row b {
  color: #fff;
  font-weight: 700;
}

.spots .row b span {
  color: var(--red);
}

/* =========================================
   PROGRESS BAR
   ========================================= */
.bar {
  height: 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  position: relative;
}

.bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 18px rgba(255, 45, 32, 0.8);
}

.bar i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: sweep 2s linear infinite;
}

/* =========================================
   CTA BUTTON
   ========================================= */
.cta-zone {
  margin-top: 30px;
  animation: rise 0.9s 0.4s ease both;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #fff, #ededed);
  color: #0a0a0a;
  text-decoration: none;
  padding: 19px 32px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 20px 55px -14px rgba(255, 255, 255, 0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-18deg);
  animation: shine 3.4s 1s infinite;
}

.cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 30px 65px -16px rgba(247, 207, 76, 0.4);
}

.cta:active {
  transform: translateY(0);
}

.cta .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #229ED9;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  z-index: 1;
}

.cta .ico svg {
  width: 21px;
  height: 21px;
  fill: #fff;
  transform: translateX(-1px);
}

.cta .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
  z-index: 1;
}

.cta .txt small {
  font-weight: 500;
  font-size: 12px;
  color: #5d5d5d;
  letter-spacing: 0.03em;
}

.reassure {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.reassure b {
  color: var(--green);
}

/* =========================================
   COUNTDOWN TIMER
   ========================================= */
.timer {
  margin-top: 42px;
  animation: rise 0.9s 0.5s ease both;
}

.timer .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 15px;
}

.timer .lbl b {
  color: var(--red);
}

.clock {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 9px;
}

.cell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 15px 6px 12px;
  min-width: 80px;
  position: relative;
  overflow: hidden;
}

.cell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 207, 76, 0.55), transparent);
}

.cell .num {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 1px;
}

.cell .unit {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.sep {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--gold);
  padding-top: 14px;
}

/* =========================================
   SECTIONS
   ========================================= */
section.block {
  padding: 56px 0;
  animation: rise 0.9s ease both;
}

.ttl {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 8vw, 44px);
  text-align: center;
  line-height: 1.02;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ttl em {
  font-style: normal;
  color: var(--gold);
}

.ttl-sub {
  text-align: center;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 34px;
  font-size: 15px;
}

/* =========================================
   STEPS
   ========================================= */
.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, var(--panel), rgba(14, 14, 17, 0.4));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.step .n {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(247, 207, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(247, 207, 76, 0.25);
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================
   TESTIMONIAL CARDS
   ========================================= */
.cards {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.card .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  color: #0a0a0a;
  flex-shrink: 0;
}

.card .who {
  font-weight: 600;
  font-size: 15px;
}

.card .loc {
  font-size: 12px;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-left: auto;
}

.card p {
  color: #d6d6dc;
  font-size: 14.5px;
  line-height: 1.6;
}

.card .tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(52, 215, 125, 0.1);
  border: 1px solid rgba(52, 215, 125, 0.25);
  border-radius: 8px;
  padding: 5px 11px;
}

/* =========================================
   CLOSER / FINAL CTA
   ========================================= */
.closer {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 45, 32, 0.08), transparent);
  border: 1px solid rgba(255, 45, 32, 0.25);
  border-radius: 24px;
  padding: 44px 26px;
  margin: 20px 0;
}

.closer h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.closer p {
  color: var(--muted);
  margin: 14px auto 26px;
  max-width: 400px;
  font-size: 15px;
  line-height: 1.6;
}

.closer p b {
  color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  text-align: center;
  padding: 30px 0 120px;
  color: #54545c;
  font-size: 11px;
  line-height: 1.7;
}

/* =========================================
   STICKY BAR
   ========================================= */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky.on {
  transform: translateY(0);
}

.sticky .info {
  flex: 1;
  min-width: 0;
}

.sticky .info .t {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.sticky .info .s {
  font-size: 11px;
  color: var(--red);
}

.sticky a {
  background: linear-gradient(180deg, #fff, #e9e9e9);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 12px;
  white-space: nowrap;
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
.toast {
  position: fixed;
  left: 16px;
  bottom: 90px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 20, 24, 0.96);
  border: 1px solid rgba(52, 215, 125, 0.3);
  border-radius: 14px;
  padding: 11px 16px 11px 12px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
  transform: translateX(-130%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 320px;
}

.toast.on {
  transform: translateX(0);
}

.toast .tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: #0a0a0a;
  flex-shrink: 0;
}

.toast .tt {
  font-size: 13px;
  line-height: 1.35;
}

.toast .tt b {
  font-weight: 600;
}

.toast .tt .win {
  color: var(--green);
  font-weight: 700;
}

.toast .tt span {
  color: var(--muted);
  font-size: 11px;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 215, 125, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(52, 215, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 215, 125, 0); }
}

@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(255, 45, 32, 0.7); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 45, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 32, 0); }
}

@keyframes glowbox {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 32, 0); }
  50%       { box-shadow: 0 0 26px -4px rgba(255, 45, 32, 0.45); }
}

@keyframes sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}

@keyframes shine {
  0%       { left: -120%; }
  55%, 100% { left: 160%; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 430px) {
  .cell {
    min-width: 68px;
    padding: 13px 5px 10px;
  }

  .cell .num {
    font-size: 33px;
  }

  .toast {
    bottom: 88px;
    max-width: 86vw;
  }
}
