:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --red: #E8312A;
  --white: #F0EDE8;
  --muted: rgba(240,237,232,0.38);
  --border: rgba(240,237,232,0.08);
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0) 100%);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  flex-shrink: 0;
}
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--white);
  text-decoration: none;
  border: 0.5px solid rgba(240,237,232,0.25);
  padding: 9px 22px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-cta:hover { border-color: var(--red); color: var(--red); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

/* SVG target background */
.hero-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

.hero-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.55em;
  color: var(--red);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: clamp(96px, 16vw, 220px);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--white);
  text-shadow: 0 0 80px rgba(240,237,232,0.08);
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 100;
  letter-spacing: 0.3em;
  margin-top: 8px;
  white-space: nowrap;
}
.hero-sub span:first-child { color: var(--red); }
.hero-sub span:last-child  { color: rgba(240,237,232,0.65); }

.hero-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 36px;
  max-width: 500px;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-cta {
  margin-top: 52px;
  display: flex; align-items: center; gap: 16px;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.28em;
  color: #fff;
  background: var(--red);
  text-decoration: none;
  padding: 16px 40px;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-decoration: none;
  padding: 16px 28px;
  border: 0.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(240,237,232,0.3); color: var(--white); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 0.4em; color: var(--muted); font-weight: 200;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── SECTION BASE ── */
section { padding: 120px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px; letter-spacing: 0.55em; color: var(--red);
  font-weight: 200; margin-bottom: 20px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--red); opacity: 0.6;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
}

/* ── INTRO ── */
.intro {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: rgba(240,237,232,0.6);
  font-weight: 200;
  text-wrap: pretty;
  margin-top: 32px;
}
.intro-visual {
  display: flex; justify-content: center; align-items: center;
}

/* Target SVG in intro */
.target-svg { width: 100%; max-width: 360px; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.feature-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  padding: 48px 40px;
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(232,49,42,0.35); }

.feature-icon {
  width: 36px; height: 36px; margin-bottom: 28px;
}

.feature-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 14px;
}
.feature-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 200;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border: 0.5px solid var(--border);
}
.step {
  padding: 52px 44px;
  border-right: 0.5px solid var(--border);
  position: relative;
}
.step:last-child { border-right: none; }

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: 72px;
  letter-spacing: -0.02em;
  color: rgba(232,49,42,0.12);
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 200;
}

/* ── CTA BAND ── */
.cta-band {
  text-align: center;
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,49,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0.15;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: clamp(52px, 8vw, 110px);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
  position: relative; z-index: 2;
}
.cta-band p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 200;
  margin: 20px auto 48px;
  max-width: 420px;
  line-height: 1.7;
  position: relative; z-index: 2;
}
.cta-band .btn-primary {
  position: relative; z-index: 2;
  font-size: 15px;
  padding: 18px 52px;
}

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 100;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(240,237,232,0.3);
}
.footer-credit {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(240,237,232,0.2);
  font-weight: 200;
}

.footer-credit a {
  color: rgba(240,237,232,0.2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--red);
}

/* ── DIVIDER ── */
.rule {
  width: 100%; height: 0.5px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 0;
}

/* ── FADE IN ANIMATION ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  section { padding: 80px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 0.5px solid var(--border); }
  .step:last-child { border-bottom: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 100px 24px 80px; }
  .cta-band { padding: 100px 24px; }
}
