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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card-bg: #1a1a1a;
  --blue: #0099ff;
  --blue-bright: #33bbff;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --yellow: #ffd700;
  --red: #ff3333;
  --gray: #888888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.accent { color: var(--blue); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 50%, #001a33 0%, var(--black) 70%);
  overflow: hidden;
  padding: 2rem;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(0, 153, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  flex: 0 0 auto;
}

.hero-img {
  width: clamp(320px, 45vw, 680px);
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(0, 153, 255, 0.3), 0 0 160px rgba(0, 153, 255, 0.1);
  border: 2px solid rgba(0, 153, 255, 0.3);
}

.hero-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 153, 255, 0.5);
}

.hero-content {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.logo-dry {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

.logo-scooping {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  color: var(--blue);
  letter-spacing: 0.05em;
  text-shadow: 0 0 40px rgba(0, 153, 255, 0.6), 4px 4px 0px rgba(0,0,0,0.5);
}

.logo-com {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--off-white);
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--off-white);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-tagline .accent {
  font-weight: 900;
  font-size: 1.15em;
  text-transform: uppercase;
}

.cta-btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0, 153, 255, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(0, 153, 255, 0.8);
  border-color: var(--blue-bright);
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.9rem 2rem;
}

.stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 0 1.5rem;
}

.stat-divider {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 3rem;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 6rem 2rem;
  background: var(--dark);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.manifesto-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 153, 255, 0.4);
}

.manifesto-card.highlight {
  border-color: var(--blue);
  background: linear-gradient(135deg, #001a33, #0a0a0a);
  box-shadow: 0 0 40px rgba(0, 153, 255, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.manifesto-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.manifesto-card p {
  color: var(--off-white);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── METHOD ── */
.method {
  padding: 6rem 2rem;
  background: var(--black);
  overflow-x: auto;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  transition: border-color 0.2s;
}

.step:hover { border-color: var(--blue); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--blue);
  align-self: center;
  flex: 0 0 auto;
  opacity: 0.5;
}

/* ── QUOTE ── */
.quote-section {
  background: linear-gradient(135deg, #001433 0%, #000d1f 100%);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(0, 153, 255, 0.2);
  border-bottom: 1px solid rgba(0, 153, 255, 0.2);
}

.quote-section .container { text-align: center; }

blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

blockquote em {
  color: var(--blue);
  font-style: normal;
  font-size: 0.7em;
}

.quote-mark {
  color: var(--blue);
  opacity: 0.4;
  font-size: 1.2em;
}

cite {
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* ── WHY ── */
.why {
  padding: 6rem 2rem;
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}

.why-item:hover { border-color: rgba(0, 153, 255, 0.3); }

.why-check {
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  font-weight: 900;
  margin-top: 2px;
}

.why-x {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  font-weight: 900;
  margin-top: 2px;
}

.why-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: #050505;
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-sub {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .hero-content { text-align: center; }
  .hero-img { width: 100%; max-width: 480px; }
  .hero-tagline { max-width: 100%; }
  .steps { gap: 1rem; }
  .step { min-width: 140px; }
  .step-arrow { display: none; }
  .stat-divider { display: none; }
  .stat { padding: 0.3rem 1rem; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
