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

/* ── TOKENS ── */
:root {
  --red: #DC1C2E;
  --red-dim: rgba(220, 28, 46, 0.20);
  --red-b: rgba(220, 28, 46, 0.36);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-b: rgba(255, 255, 255, 0.10);
  --bg-dark: #060204;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: #fff;
}

/* ── BACKGROUND ── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-blur {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background: url('../assets/bg.jpg') center top / cover no-repeat;
  filter: blur(28px) saturate(0.55) brightness(0.4);
  transform: scale(1.05);
}

.bg-sharp {
  position: absolute;
  inset: 0;
  background: url('../assets/bg.jpg') center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%, black 42%,
    rgba(0,0,0,.25) 60%, transparent 74%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%, black 42%,
    rgba(0,0,0,.25) 60%, transparent 74%
  );
}

.bg-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,2,4,.08)  0%,
    rgba(6,2,4,.18)  25%,
    rgba(6,2,4,.62)  50%,
    rgba(6,2,4,.97)  68%,
    var(--bg-dark)   100%
  );
}

.bg-red {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(160,6,16,.15) 0%, transparent 40%);
}

/* ── PAGE LAYOUT ── */
.page {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding:
    calc(env(safe-area-inset-top, 0px) + 14px)
    20px
    calc(env(safe-area-inset-bottom, 0px) + 32px);
}

/* ── BADGE ── */
.badge {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(6, 2, 4, 0.75);
  border: 1px solid var(--red-b);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.82); }
}

.badge span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.70);
  letter-spacing: .3px;
}

/* ── CONTENT ── */
.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

/* ── HEADLINE ── */
.headline h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 7.5vw, 36px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -.3px;
  margin-bottom: 5px;
}

.headline h1 .r { color: var(--red); }

.byline {
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,.34);
  letter-spacing: .6px;
}

/* ── BULLETS 2×2 ── */
.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bullet {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.b-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--red-dim);
  border: 1px solid var(--red-b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
}

.b-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.b-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,.44);
  line-height: 1.3;
}

/* ── CTA ── */
.cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: 13px;
  padding: 16px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 4px 28px rgba(220,28,46,.44);
  -webkit-tap-highlight-color: transparent;
  transition: transform .12s, background .14s;
}

.cta:active {
  background: #a8121f;
  transform: scale(.97);
}

.cta svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.cta-note {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,.22);
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
  .cta { transition: none; }
}
