
/* =========================
   DESIGN TOKENS (SYSTEM BASE)
========================= */
:root {
  --bg: #000;
  --panel: #111;
  --border: #333;
  --text: #fff;
  --muted: #aaa;

  --radius: 10px;

  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
}

/* =========================
   BASE RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
  overflow-x: hidden;
  padding-bottom: 90px;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* =========================
   TYPOGRAPHY + INPUTS
========================= */
h1 { font-size: clamp(22px, 4vw, 34px); }
h2 { font-size: clamp(18px, 3vw, 26px); }
p  { color: var(--muted); }

input, textarea, select, button {
  font-family: inherit;
  font-size: 16px;
}

/* =========================
   SECTIONS (FRAMEWORK STYLE)
========================= */
section {
  padding: var(--space-xl) var(--space-lg);
}

/* =========================
   HERO
========================= */
.hero h1 {
  line-height: 1.2;
}

.hero-logo {
  margin: 20px 0;
}

.hero-logo img {
  width: clamp(160px, 40vw, 240px);
  opacity: 0.95;
}

/* =========================
   ORDER FORM (CARD SYSTEM)
========================= */
.order-form {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  width: 92%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: var(--radius);
}

input, textarea, select {
  width: 100%;
  margin: var(--space-sm) 0;
  padding: 12px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* dropdown fix */
select option {
  background: var(--panel);
  color: var(--text);
}

button {
  width: 100%;
  padding: 12px;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: var(--radius);
  transition: 0.2s ease;
}

button:hover {
  transform: scale(1.02);
}

/* =========================
   INTRO (CINEMATIC OVERLAY)
========================= */
#intro {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  animation: fadeOut 0.8s ease forwards;
  animation-delay: 2.2s;
}

#particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.intro-content {
  text-align: center;
  position: relative;
}

#logo {
  width: 150px;
  opacity: 0;
  animation: logoIn 1.2s ease forwards;
}

.glitch {
  font-size: 22px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

/* =========================
   REEL (TIKTOK STYLE)
========================= */
.reel-container {
  width: 100%;
  max-width: 320px;
  height: 560px;
  margin: 30px auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: black;
  position: relative;
}

.reel {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reel.active {
  opacity: 1;
}

/* =========================
   PRICING SYSTEM
========================= */
.pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius);
}

.card.highlight {
  border: 2px solid white;
  transform: scale(1.05);
}

/* =========================
   TRUST + PAYMENT
========================= */
.trust-strip {
  color: var(--muted);
  font-size: 12px;
}

.trust-strip span {
  margin: 0 6px;
  display: inline-block;
}

.payment-methods {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.trust-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.trust-icons span {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius);
  font-size: 12px;
}

/* =========================
   POPUP
========================= */
#popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  right: 20px;
  max-width: 320px;
  margin: auto;
  background: white;
  color: black;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  opacity: 0;
  transition: 0.5s;
  z-index: 9999;
}

/* =========================
   STICKY BAR (FIXED UX)
========================= */
#sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 16px;
  background: var(--panel);
  z-index: 99999;

  gap: 10px;
}

#sticky-bar span {
  font-size: 12px;
  flex: 1;
  text-align: left;
}

#sticky-bar a {
  background: white;
  color: black;
  padding: 8px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes logoIn {
  0% { transform: scale(0.3); opacity: 0; filter: blur(10px); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

  section {
    padding: var(--space-lg);
  }

  .hero h1 {
    font-size: 22px;
  }

  .pricing {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pricing-scroll::-webkit-scrollbar {
  display: none;
}

/* spacing feel like carousel */
.pricing-scroll > div {
  padding-left: 5px;
  padding-right: 5px;
}

/* optional snap feel */
.pricing-scroll {
  scroll-snap-type: x mandatory;
}

.pricing-scroll > div {
  scroll-snap-align: center;
}

  .card {
    width: 90%;
  }

  #sticky-bar {
    flex-direction: column;
    text-align: center;
  }

  #sticky-bar span {
    text-align: center;
  }

  #sticky-bar a {
    width: 100%;
  }

  #popup {
    left: 10px;
    right: 10px;
  }
}