*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-font-smoothing:antialiased;scroll-behavior:smooth}

:root{
  --t-red:#cc0000;
  --t-dark-red:#aa0000;
  --t-white:#ffffff;
  --t-grey:#f7f7f7;
  --t-text:#333333;
  --t-muted:#666666;
  --font-stack:'Inter', sans-serif;
}

body{
  font-family:var(--font-stack);
  background:var(--t-white);
  color:var(--t-text);
}

/* ── HERO ── */
.hero{
  background:var(--t-red);
  color:var(--t-white);
  padding:30px 20px 100px;
  text-align:center;
}

.topbar{
  max-width:1000px;
  margin:0 auto 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-square {
  width: 36px;
  height: 36px;
  background: var(--t-white);
  color: var(--t-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 24px;
  font-family: 'Pacifico', cursive;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.t-logo {
  font-family: var(--font-stack);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 18px;
}

.bullseye{
  width:28px; height:28px;
  background:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:6px solid var(--t-red);
  box-shadow: 0 0 0 4px white;
}

.status{
  background:rgba(0,0,0,0.2);
  padding:6px 15px;
  border-radius:50px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
}

.live-dot{
  display:inline-block;
  width:8px; height:8px;
  background:#00ff00;
  border-radius:50%;
  margin-right:5px;
}

.hero-label{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
  font-weight:600;
  margin-bottom:15px;
  opacity:0.9;
}

.hero-headline{
  font-size:clamp(34px, 7vw, 68px);
  font-weight:800;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-headline em{
  font-style:normal;
  background:white;
  color:var(--t-red);
  padding:0 15px;
  display:inline-block;
  border-radius:8px;
}

.hero-sub{
  max-width:550px;
  margin:0 auto 40px;
  font-size:18px;
  opacity:0.9;
}

/* ── BUTTONS ── */
.btn{
  display:inline-block;
  background:var(--t-white);
  color:var(--t-red);
  padding:20px 50px;
  border-radius:50px;
  text-decoration:none;
  font-weight:800;
  font-size:16px;
  transition:all 0.2s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-note{
  margin-top:20px;
  font-size:12px;
  opacity:0.8;
}

/* ── STEP CARDS ── */
.card-wrap{
  max-width:960px;
  margin:-60px auto 0;
  padding:0 20px;
}

.card{
  background:white;
  border-radius:15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  overflow:hidden;
  border:1px solid #eee;
}

.card-header{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}

.step{
  padding:10px 20px;
  text-align:center;
}

.s-num{
  display:block;
  color:var(--t-red);
  font-weight:800;
  margin-bottom:10px;
}

.s-title{
  font-weight:700;
  font-size:18px;
  margin-bottom:10px;
  display:block;
}

.s-desc{
  font-size:14px;
  color:var(--t-muted);
}

.card-footer{
  background:var(--t-grey);
  padding:20px;
  display:flex;
  justify-content:center;
  gap:40px;
  font-size:12px;
  font-weight:600;
  color:var(--t-red);
}

/* ── BOTTOM PROMO ── */
.body-section{
  padding:80px 20px;
  max-width:960px;
  margin:0 auto;
}

.promo-box{
  background:var(--t-grey);
  border-radius:15px;
  padding:50px;
  text-align:center;
  border:2px dashed #ddd;
}

.promo-box h2 span{ color:var(--t-red); }

.btn-secondary{
  background:var(--t-red);
  color:white;
  margin-top:30px;
}

footer{
  text-align:center;
  padding:40px;
  font-size:11px;
  color:#999;
  line-height:1.6;
}

@media(max-width:768px){
  .card-header{ grid-template-columns: 1fr; }
  .topbar{ flex-direction: column; gap:15px; }
}