/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

/* ── Tokens ── */
:root {
  --red:    #FF2A25;
  --red-dk: #B30000;
  --orange: #FF6A00;
  --black:  #0a0a0c;
  --dark:   #15151e;
  --cream:  #f0f0f5;
  --dot:    rgba(255, 255, 255, 0.05);
  --white:  #FFFFFF;
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: #ddd;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Banner ── */
.top-banner {
  background: linear-gradient(90deg, var(--red-dk), var(--red), var(--orange), var(--red), var(--red-dk));
  background-size: 200% auto;
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
  position: relative;
  z-index: 100;
  animation: shineBanner 4s linear infinite;
}
@keyframes shineBanner {
  to { background-position: 200% center; }
}

h1, h2, h3, .tag, .btn-cta, .feat-title, .step-title, .priv-title {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
}

/* ── Utilities ── */
.polka {
  background-color: var(--black);
  background-image: radial-gradient(var(--dot) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.polka-dark {
  background-color: #0d0d14;
  background-image: radial-gradient(rgba(255,42,37,0.05) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 12px; letter-spacing: 3px;
  color: var(--orange); border: 2px solid var(--orange);
  padding: 6px 16px; margin-bottom: 24px;
  border-radius: 40px;
  background: rgba(255, 106, 0, 0.1);
}
.tag-dark {
  color: var(--red); border-color: var(--red);
  background: rgba(255, 42, 37, 0.1);
}

/* ── CTA button ── */
.btn-cta {
  display: inline-flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--red), var(--orange)); 
  color: var(--white);
  font-size: 20px; letter-spacing: 2px;
  padding: 20px 48px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(255, 42, 37, 0.4), inset 0 2px 0 rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: ''; position: absolute; top:0; left:-100%; width:50%; height:100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 42, 37, 0.6), inset 0 2px 0 rgba(255,255,255,0.3);
}
.btn-cta:hover::after {
  left: 150%;
}
.btn-cta:active {
  transform: translateY(2px);
  box-shadow: 0 5px 15px rgba(255, 42, 37, 0.4);
}
.btn-cta .icon {
  width: 28px; height: 28px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 80px 24px;
  background: radial-gradient(circle at center, #1a0a0a 0%, var(--black) 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 600px at 50% 40%, rgba(255,42,37,0.15), transparent);
  pointer-events: none;
}
.hero-button {
  width: 160px; height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, #444, #222);
  border: 4px solid #111;
  box-shadow: 
    inset -4px -4px 10px rgba(0,0,0,0.6),
    inset 4px 4px 10px rgba(255,255,255,0.2),
    0 20px 40px rgba(0,0,0,0.8),
    0 0 0 8px rgba(255,42,37,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 50px;
  animation: heroFloat 4s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.1s;
  position: relative;
  z-index: 10;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-plunger {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  border: 4px solid #000; border-radius: 50%;
  box-shadow: inset 4px 4px 10px rgba(255,255,255,0.4), inset -4px -4px 10px rgba(0,0,0,0.5), 0 10px 20px rgba(255,42,37,0.4);
  transform: translateY(-8px);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.1s;
}
.hero-horn {
  width: 60px; height: 60px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
  transition: transform 0.1s;
}

/* Interactive Blast Classes */
.hero-button.blasting {
  animation: none;
}
.hero-button.blasting .hero-plunger {
  transform: translateY(4px) scale(0.95);
  background: linear-gradient(135deg, var(--orange), #cc5500);
  box-shadow: inset 4px 4px 10px rgba(255,255,255,0.4), inset -4px -4px 10px rgba(0,0,0,0.5), 0 0 50px rgba(255,106,0,0.8);
}
.hero-button.blasting .hero-horn {
  transform: scale(1.1);
}
@keyframes shakeConfig {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}
body.screen-shake {
  animation: shakeConfig 0.3s cubic-bezier(.36,.07,.19,.97) both;
}

.hero-title {
  font-size: clamp(52px, 8vw, 110px);
  color: var(--white); letter-spacing: 4px;
  line-height: 1; margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: #aaa; letter-spacing: 2px;
  margin-bottom: 56px; line-height: 1.6;
  max-width: 600px;
}
.hero-cta-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.trust-pills {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 12px;
}
.trust-pill {
  font-size: 13px; color: #888; letter-spacing: 1px;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
}

/* ─────────────────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────────────────── */
#features { position: relative; }
#features h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white); letter-spacing: 2px;
    margin-bottom: 16px;
}
#features p {
    font-size: 16px; color: #aaa;
}
#features .feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px; margin-top: 64px;
}
.feat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.feat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.feat-card .feat-icon {
  font-size: 42px; margin-bottom: 24px; display: block;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.feat-card .feat-title {
  font-size: 22px; color: var(--white); letter-spacing: 1px;
  margin-bottom: 16px;
}
.feat-card .feat-desc {
  font-size: 15px; color: #a0a0a0;
}
.feat-card.accent {
  background: linear-gradient(145deg, rgba(255,42,37,0.2), rgba(255,106,0,0.05));
  border-color: rgba(255,42,37,0.3);
}
.feat-card.accent .feat-title { color: var(--red); }
.feat-card.accent .feat-desc { color: #d0d0d0; }

/* ─────────────────────────────────────────────────────────
   SCREENSHOTS
───────────────────────────────────────────────────────── */
#screenshots {
  background: #0d0d12;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.screenshots-header {
  text-align: center; margin-bottom: 64px;
}
.screenshots-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white); letter-spacing: 2px;
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}
.shot-wrap {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: var(--dark);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.shot-wrap:hover {
  transform: scale(1.02) translateY(-10px);
  box-shadow: 0 30px 60px rgba(255,42,37,0.2);
  border-color: rgba(255,42,37,0.4);
}
.shot-wrap img {
  width: 100%; display: block;
}
.shot-cap {
  background: rgba(0,0,0,0.5); color: #ccc;
  font-size: 14px; letter-spacing: 1px;
  padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-mono); font-weight: bold;
}

/* ─────────────────────────────────────────────────────────
   VIDEO
───────────────────────────────────────────────────────── */
#video { text-align: center; }
#video h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white); letter-spacing: 2px;
  margin-bottom: 56px;
}
.video-wrap {
  position: relative; max-width: 960px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.video-wrap video {
  width: 100%; display: block;
}

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────── */
#how { position: relative; }
#how h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white); letter-spacing: 2px;
  margin-bottom: 64px; text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step {
  padding: 40px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s;
}
.step:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
}
.step-num {
  font-size: 64px; color: rgba(255,42,37,0.2);
  font-family: var(--font-mono); font-weight: 900;
  margin-bottom: 16px; line-height: 1;
}
.step-title {
  font-size: 20px; color: var(--white); letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px; color: #a0a0a0;
}

/* ─────────────────────────────────────────────────────────
   PERFECT FOR
───────────────────────────────────────────────────────── */
#perfect h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white); letter-spacing: 2px;
  margin-bottom: 56px; text-align: center;
}
.perfect-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; list-style: none;
}
.perfect-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex; align-items: center; gap: 20px;
  font-size: 16px; color: #ccc;
  transition: transform 0.2s, border-color 0.2s;
}
.perfect-item:hover {
  transform: translateX(8px);
  border-color: rgba(255,255,255,0.3);
}
.perfect-item .pi-icon { font-size: 32px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   PRIVACY
───────────────────────────────────────────────────────── */
#privacy {
  background: radial-gradient(circle at center, #151522 0%, #08080c 100%);
}
#privacy h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white); letter-spacing: 2px;
  margin-bottom: 64px; text-align: center;
}
.priv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.priv-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
}
.priv-card:hover { 
  border-color: rgba(255,106,0,0.5); 
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,106,0,0.1);
}
.priv-card .priv-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.priv-card .priv-title {
  font-size: 18px; color: var(--white); letter-spacing: 1px;
  margin-bottom: 12px;
}
.priv-card.highlight .priv-title { color: var(--orange); }
.priv-card .priv-desc {
  font-size: 14px; color: #888;
}

/* ─────────────────────────────────────────────────────────
   CTA FOOTER
───────────────────────────────────────────────────────── */
#cta-footer {
  background: var(--black);
  text-align: center; padding: 120px 24px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
#cta-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(255,42,37,0.15), transparent);
  pointer-events: none;
}
#cta-footer .hero-button {
  margin: 0 auto 40px;
}
#cta-footer .cta-big {
  font-size: clamp(48px, 8vw, 84px);
  color: var(--white); letter-spacing: 4px;
  margin-bottom: 24px; line-height: 1.1;
  text-shadow: 0 0 40px rgba(255,255,255,0.2);
}
#cta-footer .cta-sub {
  font-size: 20px; color: #aaa; letter-spacing: 1px;
  margin-bottom: 56px;
}
#cta-footer .cta-compat {
  margin-top: 32px;
  font-size: 14px; color: #666; letter-spacing: 1px;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer {
  background: #050508;
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid #111;
}
footer p {
  font-size: 14px; color: #555; letter-spacing: 1px;
  line-height: 2;
}
footer a { color: #888; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--red); }

/* Fade Up Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .shots-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: 2px; }
  .btn-cta { font-size: 16px; padding: 16px 32px; }
  .section { padding: 60px 24px; }
}
