/* Self-hosted fonts — latin subset only, eliminates Google Fonts round-trip */
@font-face {
  font-family: 'Anton';
  src: url('assets/fonts/anton-v27-latin-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-v20-latin-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-v20-latin-400.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   Sly3 Launch Page — style.css
   Fonts: Anton (headlines) + Inter (body)
   Brand: #ee6a2e vivid orange + #151d25 dark gray-blue
   Theme: Dark background, white text
   ============================================= */

:root {
  --orange:       #ee6a2e;
  --orange-hover: #d45a22;
  --dark:         #151d25;
  --dark-light:   #1c2530;
  --dark-lighter: #232e3b;
  --white:        #ffffff;
  --off-white:    #f7f4ef;
  --gray:         #9ca3af;
  --gray-light:   #d1d5db;
  --border:       rgba(255,255,255,0.1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark);
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* ---- Typography ---- */
h1, h2, h3, .stat-label, .faq-q {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-cta {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--orange-hover); }

/* ============================================
   SCROLLING BANNER
   ============================================ */
.scroll-banner {
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.scroll-banner-track {
  display: inline-flex;
  gap: 0;
  animation: scroll-banner 20s linear infinite;
}

.scroll-banner-track span {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 12px;
}

.banner-dot {
  opacity: 0.5;
}

@keyframes scroll-banner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--dark);
  padding: 48px 24px 56px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* Hero product (carousel wrapper) */
.hero-product {
  display: flex;
  justify-content: center;
}

/* Hero content */
.hero-content { display: flex; flex-direction: column; gap: 20px; text-align: center; }

@media (min-width: 768px) {
  .hero-content { text-align: left; }
}

.hero-stats { justify-content: center; }

@media (min-width: 768px) {
  .hero-stats { justify-content: flex-start; }
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--white);
  text-transform: uppercase;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.hero-video-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.hero-video-link:hover { opacity: 0.8; }

/* Stats strip */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stats span::after {
  content: '·';
  margin-left: 20px;
  color: var(--gray);
}

.hero-stats span:last-child::after { content: ''; }

/* Credibility bar */
.hero-credibility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 12px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

@media (min-width: 768px) {
  .hero-credibility { justify-content: flex-start; }
}

.hero-credibility strong {
  color: var(--orange);
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
}

.hero-credibility .stars { color: var(--orange); letter-spacing: 0; }
.cred-divider { color: var(--gray); opacity: 0.4; }

.stars { color: var(--orange); letter-spacing: 2px; }
.rating-text { opacity: 0.7; }

/* Hero form (on dark bg) */
.hero .signup-form .form-row input[type="email"] {
  border: 2px solid var(--dark-lighter);
  border-right: none;
  background: var(--dark-lighter);
  color: var(--white);
}

.hero .signup-form .form-row input[type="email"]::placeholder { color: var(--gray); }
.hero .signup-form .form-row input[type="email"]:focus { border-color: var(--orange); }

.hero .cta-btn {
  background: var(--orange);
  border-color: var(--orange);
}

.hero .cta-btn:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.hero .form-subtext {
  color: var(--gray);
}

.hero .form-success {
  background: rgba(238,106,46,0.15);
  border-color: var(--orange);
}

/* Anchor quote */
.hero-quote {
  border-left: none;
  border-top: 3px solid var(--orange);
  padding-top: 12px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .hero-quote {
    border-top: none;
    border-left: 3px solid var(--orange);
    padding-top: 0;
    padding-left: 16px;
  }
}

.hero-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
}

.hero-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: var(--dark-light);
  padding: 72px 24px;
}

.how-header {
  text-align: center;
  margin-bottom: 48px;
}

.how-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.how-header p {
  font-size: 0.95rem;
  color: var(--gray);
}

.how-layout {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .how-layout { grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
}

.how-video-col {
  display: flex;
  justify-content: center;
}

.how-video-col video {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .how-video-col video { max-width: 340px; }
}

.how-steps-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
}

.how-step {
  display: flex;
  gap: 16px;
  text-align: left;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.how-step:first-child {
  padding-top: 0;
}

.how-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.how-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1;
  min-width: 28px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .how-steps-col { padding: 0 12px; }
}

.card-img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.card-img:hover { transform: translateY(-6px) rotate(2deg); }

.how-step h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.how-link {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.how-link:hover { color: var(--orange-hover); }

/* ============================================
   HOOK (The Gotcha Moments)
   ============================================ */
.hook {
  background: var(--dark);
  padding: 72px 24px;
}

.hook-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hook-inner { grid-template-columns: 1fr 1fr; }
}

/* Box image in hook */
.hook-box-image {
  display: flex;
  justify-content: center;
}

.hook-box-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  transform: rotate(-2deg);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hook-box-image img { max-width: 360px; }
}

/* Hook copy */
.hook-copy { display: flex; flex-direction: column; gap: 20px; }

.section-label {
  font-family: 'Anton', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.hook-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}

.hook-body {
  font-size: 1.05rem;
  color: var(--gray-light);
}

.hook-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

.hook-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
  background: var(--dark-light);
  padding: 72px 24px;
}

.proof-header {
  text-align: center;
  margin-bottom: 48px;
}

.proof-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.proof-header p {
  font-size: 1rem;
  color: var(--gray);
}

.proof-header strong {
  color: var(--orange);
}

/* Video grid */
.proof-videos {
  max-width: 1080px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-video-card {
  text-align: center;
}

.proof-video-card video {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--dark-lighter);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.proof-video-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.6rem, 2.5vw, 0.85rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
}

@media (min-width: 768px) {
  .proof-videos { gap: 24px; }
}

/* Quotes carousel */
.quotes-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.quotes-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-quotes 40s linear infinite;
  --carousel-start: 0px;
}

.quotes-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-quotes {
  0% { transform: translateX(var(--carousel-start)); }
  100% { transform: translateX(calc(var(--carousel-start) - 50%)); }
}

.quote-card {
  flex-shrink: 0;
  width: 260px;
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--dark-lighter);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-light);
  margin-bottom: 10px;
}

.quote-card cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gray);
}

/* Hero quotes — the 3 best, bigger and bolder */
.quote-card.quote-hero {
  width: 340px;
  padding: 28px 32px;
  border-color: var(--orange);
  background: rgba(238,106,46,0.08);
}

.quote-card.quote-hero p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.quote-card.quote-hero cite {
  font-size: 0.85rem;
  color: var(--orange);
}

/* ============================================
   PRIMARY CTA
   ============================================ */
.cta-primary {
  background: var(--dark);
  border-top: 4px solid var(--orange);
  padding: 96px 24px;
  text-align: center;
}

.cta-eyebrow {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.cta-primary h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-primary-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin: 0 auto 36px;
  max-width: 540px;
  line-height: 1.6;
}

.cta-primary-sub strong { color: var(--white); }

/* Form (used in primary CTA) */
.signup-form { display: flex; flex-direction: column; gap: 10px; max-width: 480px; margin: 0 auto; }

.form-row {
  display: flex;
  gap: 0;
}

.form-row input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--white);
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: var(--white);
  color: var(--dark);
  min-width: 0;
}

.form-row input[type="email"]::placeholder { color: var(--gray); }
.form-row input[type="email"]:focus { border-color: var(--dark); }

.cta-btn {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  border-radius: 0 4px 4px 0;
  padding: 14px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.cta-btn:hover {
  background: var(--dark-lighter);
  border-color: var(--dark-lighter);
}

.form-subtext {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* Success state */
.form-success {
  display: none;
  padding: 16px;
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

.form-success .success-sub {
  font-weight: 400;
  font-size: 0.82rem;
  margin-top: 6px;
  opacity: 0.85;
}

/* ============================================
   PRODUCT IMAGE CAROUSEL
   ============================================ */
.product-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-lighter);
  cursor: pointer;
}

.product-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  cursor: zoom-in;
}

.product-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Thumbnail strip */
.product-thumbnails {
  display: flex;
  gap: 8px;
  padding: 12px 0 4px;
  justify-content: center;
}

.product-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
  background: none;
}

.product-thumb.active {
  border-color: var(--orange);
  opacity: 1;
}

.product-thumb:hover { opacity: 0.8; }

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel arrows */
.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover { background: rgba(0, 0, 0, 0.75); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

@media (min-width: 768px) {
  .carousel-arrow { display: flex; }
}

/* ============================================
   PRE-ORDER CTA
   ============================================ */
.preorder-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.hero-content .preorder-cta-wrap {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-content .preorder-cta-wrap { margin: 0; }
}

.cta-primary .preorder-cta-wrap {
  margin: 36px auto 0;
  align-items: center;
}
.cta-primary #product-component-preorder-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* (proof stat consolidated into credibility bar) */

/* Price display */
.preorder-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}

.price-retail {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1;
}

.price-retail s {
  text-decoration: line-through;
}

.price-urgency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .preorder-price { justify-content: flex-start; }
}

.price-amount {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  letter-spacing: 0.03em;
  line-height: 1;
}

.price-shipping {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Promo code toggle */
.promo-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-toggle-link {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.promo-toggle-link:hover { color: var(--gray-light); }

.promo-toggle-on-orange { color: rgba(255,255,255,0.5); }
.promo-toggle-on-orange:hover { color: rgba(255,255,255,0.8); }

.promo-hidden { display: none !important; }

/* Guarantee / risk reversal */
.guarantee-text {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
}

.guarantee-on-orange {
  color: rgba(255,255,255,0.5);
}

/* Promo code input */
.promo-row {
  display: flex;
}

.promo-input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 2px solid var(--dark-lighter);
  border-radius: 4px;
  outline: none;
  background: var(--dark-lighter);
  color: var(--white);
  width: 100%;
}

.promo-input::placeholder { color: var(--gray); }
.promo-input:focus { border-color: var(--orange); }

/* Promo input on orange background */
.promo-input-on-orange {
  border-color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.2);
  color: var(--white);
}

.promo-input-on-orange::placeholder { color: rgba(255,255,255,0.5); }
.promo-input-on-orange:focus { border-color: var(--white); }

/* Pre-order button */
.preorder-btn {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 18px 24px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  transition: background 0.2s, transform 0.1s;
}

.preorder-btn:hover {
  background: var(--orange-hover);
}

.preorder-btn:active {
  transform: scale(0.98);
}

/* Pre-order button on orange background */
.preorder-btn-on-orange {
  background: var(--dark);
  border: 2px solid var(--dark);
}

.preorder-btn-on-orange:hover {
  background: var(--dark-lighter);
  border-color: var(--dark-lighter);
}

/* ============================================
   WHAT YOU GET
   ============================================ */
.whats-inside {
  background: var(--dark-light);
  padding: 72px 24px;
}

.whats-inside-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .whats-inside-inner { grid-template-columns: 1fr 1fr; }
}

.whats-inside-visual {
  display: flex;
  justify-content: center;
}

.whats-inside-visual video {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.whats-inside-visual .how-link {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .whats-inside-visual video { max-width: 400px; }
}

.whats-inside-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.whats-inside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whats-inside-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.inside-icon {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.whats-inside-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.whats-inside-list p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   ORIGIN
   ============================================ */
.origin {
  background: var(--dark);
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.origin-inner {
  max-width: 640px;
  margin: 0 auto;
}

.origin p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

.origin cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--dark-light);
  padding: 72px 24px;
}

.faq h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.03em;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.faq-item.open .faq-a { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-links a:hover { color: var(--orange); opacity: 1; }

.social-icon {
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, opacity 0.2s;
}
.social-ig:hover { color: #E1306C !important; }
.social-tt:hover { color: #00f2ea !important; }

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.lightbox-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px 16px;
  min-width: 44px;
  min-height: 44px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}

.lightbox-arrow:hover { opacity: 1; background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: -24px; }
.lightbox-next { right: -24px; }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--orange);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.sticky-cta-btn:active { background: var(--orange-hover); }

@media (max-width: 767px) {
  .sticky-cta { display: block; }
  .sticky-cta.hidden { display: none; }
}
