/* ═══════════════════════════════════════════
   FOOT LOCKER – $750 GIFT CARD LANDING PAGE
   style.css
   ═══════════════════════════════════════════ */

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

:root {
  --black:      #111111;
  --black-soft: #1a1a1a;
  --red:        #e20000;
  --red-dk:     #b80000;
  --red-lt:     #fff0f0;
  --white:      #ffffff;
  --offwhite:   #f4f4f4;
  --stripe:     #222222;
  --text:       #111111;
  --muted:      #666666;
  --border:     #e0e0e0;
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  22px;
  --shadow-card:
    0 2px 8px rgba(0,0,0,0.10),
    0 16px 48px rgba(0,0,0,0.18),
    0 40px 80px rgba(0,0,0,0.12);
}

/* ─── PAGE ─────────────────────────────── */
html, body {
  min-height: 100vh;
  font-family: 'Barlow', sans-serif;
  background: var(--offwhite);
  color: var(--text);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px 40px;
  position: relative;
  overflow-x: hidden;
}

/* Ambient blobs — subtle red/black glow */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(226,0,0,0.07) 0%, transparent 70%);
}
body::after {
  width: 500px; height: 500px;
  bottom: -150px; right: -150px;
  background: radial-gradient(circle, rgba(0,0,0,0.06) 0%, transparent 70%);
}

/* ─── MAIN CARD ─────────────────────────── */
.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: rise 0.7s 0.1s cubic-bezier(.22,1,.36,1) both;
}

/* ─── HERO BAND ─────────────────────────── */
.hero-band {
  background: var(--black);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Iconic Foot Locker referee stripe — top accent */
.hero-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) 20px,
    var(--black) 20px,
    var(--black) 40px
  );
  z-index: 2;
}

/* Diagonal stripe texture */
.hero-band .stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 20px,
    rgba(255,255,255,0.018) 20px,
    rgba(255,255,255,0.018) 22px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 38px 28px 30px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(226,0,0,0.18);
  border: 1px solid rgba(226,0,0,0.40);
  border-radius: 4px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 16px;
}

.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.6s ease-in-out infinite;
}

.hero-eyebrow span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 8vw, 42px);
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 280px;
}

.hero-headline em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}

.hero-sub strong {
  color: rgba(255,255,255,0.90);
  font-weight: 600;
}

/* ─── ELIGIBILITY PILL ─── (dark hero) */
.eligibility-pill {
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  min-width: 96px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}

.eligibility-pill:hover {
  background: rgba(226,0,0,0.18);
  border-color: var(--red);
}

.eligibility-pill .icon {
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

.eligibility-pill .pill-text {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── STATS BAR ─────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 20px 0;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--black);
}

.stat-num.red { color: var(--red); }

.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── STEPS ─────────────────────────────── */
.steps-section {
  padding: 22px 20px 16px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 2px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
  cursor: default;
  animation: slide-in 0.45s both;
}

.step-item:nth-child(1) { animation-delay: 0.20s; }
.step-item:nth-child(2) { animation-delay: 0.30s; }
.step-item:nth-child(3) { animation-delay: 0.40s; }
.step-item:nth-child(4) { animation-delay: 0.50s; }

.step-item:hover {
  background: #f8f8f8;
  transform: translateX(3px);
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.step-item:hover .step-num {
  background: var(--red);
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 4px 14px rgba(226,0,0,0.38);
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.step-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ─── DIVIDER ───────────────────────────── */
.divider {
  margin: 4px 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ─── CTA SECTION ───────────────────────── */
.cta-section {
  padding: 18px 20px 8px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(226,0,0,0.40);
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  animation: slide-in 0.5s 0.55s both;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* Shimmer */
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-20deg);
  animation: shimmer 2.8s 1.5s ease infinite;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226,0,0,0.52);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(226,0,0,0.28);
}

.cta-arrow {
  font-size: 22px;
  transition: transform 0.2s;
  display: inline-block;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(5px);
}

/* Urgency strip */
.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 14px;
  background: #fff5f5;
  border-radius: 6px;
  border: 1px solid #ffd0d0;
}

.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s ease-in-out infinite;
}

.urgency-text {
  font-size: 12px;
  font-weight: 600;
  color: #990000;
  letter-spacing: 0.5px;
}

/* ─── TRUST ROW ─────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 20px 22px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}

.trust-item .t-icon { font-size: 14px; }

.trust-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border);
}

/* ─── ANIMATIONS ────────────────────────── */
@keyframes rise {
  from { opacity:0; transform: translateY(36px) scale(0.97); }
  to   { opacity:1; transform: translateY(0)    scale(1);    }
}

@keyframes slide-in {
  from { opacity:0; transform: translateX(-18px); }
  to   { opacity:1; transform: translateX(0);     }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%;  }
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 400px) {
  .hero-inner       { padding: 30px 20px 24px; }
  .eligibility-pill { min-width: 82px; padding: 10px 12px; }
  .eligibility-pill .icon { font-size: 20px; margin-bottom: 4px; }
  .eligibility-pill .pill-text { font-size: 10px; }
  .steps-section    { padding: 18px 14px 14px; }
  .cta-section      { padding: 14px 16px 8px; }
  .trust-row        { gap: 12px; }
}

@media (min-width: 500px) {
  .card { border-radius: 28px; }
}

@media (min-width: 768px) {
  body { padding: 40px 16px 60px; }
}
