:root {
  --ink: #1a1a1a;
  --gray: #666;
  --light-gray: #999;
  --border: #ececec;
  --bg: #fffdf9;
  --panel: #fff8ec;
  --gold: #d69a2d;
  --gold-light: #f4c95d;
  --red: #c0281c;
  --green: #2f7d5b;
  --navy: #1f2937;
  --radius: 14px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}

.ad-disclosure {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-gray);
  background: var(--panel);
  padding: 5px 8px;
  border-bottom: 1px solid var(--border);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
}

.brand {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.round-tag {
  font-size: 11.5px;
  background: rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 20px;
}

.hero {
  max-width: 560px;
  margin: 0 auto;
  padding: 30px 20px 10px;
  text-align: center;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 27px;
  line-height: 1.28;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.subhead {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 24px;
}

.timer-box {
  background: linear-gradient(160deg, #23262b, #16181b);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.timer-label {
  color: #cfcfcf;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.time-unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 64px;
}

.time-unit span {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.time-unit small {
  color: #a0a0a0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-sep {
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 700;
}

.timer-note {
  color: #9b9b9b;
  font-size: 11px;
  margin-top: 10px;
}

.scarcity {
  margin-bottom: 22px;
}

.scarcity-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
}

.scarcity-count strong {
  color: var(--red);
}

.progress-track {
  height: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 20px;
  transition: width 0.6s ease;
}

.cta-main {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2a1c00;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  padding: 17px 20px;
  border-radius: 40px;
  box-shadow: 0 10px 22px rgba(214, 154, 45, 0.4);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.cta-subtext {
  font-size: 11.5px;
  color: var(--light-gray);
  margin-top: 10px;
}

.prizes {
  max-width: 560px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.prizes h2, .social-proof h2 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
}

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

.prize-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
}

.prize-icon {
  font-size: 30px;
  margin-bottom: 8px;
}

.prize-name {
  font-size: 12.5px;
  color: #3a3a3a;
  font-weight: 600;
}

.social-proof {
  max-width: 640px;
  margin: 34px auto 0;
  padding: 0 20px;
}

.testimonial-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.testimonial-row::-webkit-scrollbar { display: none; }

.testimonial {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.t-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-head strong {
  display: block;
  font-size: 13.5px;
}

.t-city {
  font-size: 11px;
  color: var(--light-gray);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 6px;
}

.testimonial p {
  font-size: 13px;
  color: #444;
}

.trust-strip {
  max-width: 560px;
  margin: 30px auto 0;
  padding: 16px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-item {
  font-size: 12.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.08);
  z-index: 10;
}

.sticky-cta a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2a1c00;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 13px;
  border-radius: 30px;
}

.site-footer {
  margin-top: 34px;
  padding: 24px 20px 10px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 540px;
  margin: 0 auto;
  font-size: 10.5px;
  color: var(--light-gray);
  line-height: 1.6;
}

@media (max-width: 400px) {
  .hero h1 { font-size: 23px; }
  .time-unit { min-width: 54px; padding: 6px 10px; }
  .time-unit span { font-size: 24px; }
}
