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

:root {
  --navy: #0D1B2A;
  --navy-mid: #102031;
  --navy-deep: #071220;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dark: #B45309;
  --amber-bg: #FFFBEB;
  --text: #F8F4EF;
  --muted: #7A96B0;
  --dim: #4A6070;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

.ctn { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 80px 24px; }

/* NAV */
nav {
  background: var(--navy);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { font-family: var(--serif); font-size: 22px; color: var(--amber); text-decoration: none; }
.nav-cta {
  background: var(--amber);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--amber-light); }

/* HERO */
.hero { background: var(--navy); text-align: center; padding: 88px 24px 72px; }
.pill {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: var(--amber);
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 22px;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 12px;
}
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--amber-light); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid rgba(248,244,239,0.25);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: rgba(248,244,239,0.5); }
.hero-trust { font-size: 12px; color: var(--dim); margin-top: 22px; }

/* YOUTUBE EMBED */
.video-wrap {
  margin: 40px auto 0;
  max-width: 760px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================
   SHOWCASE — Unified single-image carousel
   ============================================ */
.showcase-section {
  background: var(--navy);
  padding: 24px 0 96px;
  position: relative;
  overflow: hidden;
}
.showcase-section::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.10) 0%, rgba(245,158,11,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.showcase-eyebrow {
  text-align: center;
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.showcase-title {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  color: var(--text);
  margin: 0 24px 12px;
}
.showcase-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin: 0 24px 36px;
}

/* CAROUSEL */
.carousel { position: relative; }

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px 0 28px;
  /* Side padding creates the "peek" effect by leaving room for neighbours */
  padding-left: max(24px, calc(50% - 44vw));
  padding-right: max(24px, calc(50% - 44vw));
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-mid);
  border: 0.5px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 6px 18px rgba(0,0,0,0.30);
  position: relative;
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), opacity 0.4s ease;
  transform: scale(0.94);
  opacity: 0.55;
}
.carousel-card.is-active {
  transform: scale(1);
  opacity: 1;
}

.carousel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-mid);
}

.carousel-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(13,27,42,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  border: 0.5px solid rgba(255,255,255,0.12);
}

/* ARROWS — shown only on hover-capable desktops (≥1024px AND fine pointer) */
.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255,255,255,0.18);
  color: var(--text);
  cursor: pointer;
  z-index: 5;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s, opacity 0.18s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.carousel-arrow:hover:not(:disabled) {
  background: rgba(245,158,11,0.95);
  color: var(--navy);
  transform: translateY(-50%) scale(1.06);
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-arrow--prev { left: 16px; }
.carousel-arrow--next { right: 16px; }

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .carousel-arrow { display: flex; }
}

/* DOTS — hidden on hover-capable desktops (arrows replace them) */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 0 24px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.carousel-dot.active {
  background: var(--amber);
  width: 22px;
  border-radius: 3px;
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .carousel-dots { display: none; }
}

/* RESPONSIVE CARD SIZING */
@media (min-width: 600px) {
  .carousel-card { flex-basis: 78%; }
}
@media (min-width: 768px) {
  .carousel-track {
    gap: 20px;
    padding-left: max(32px, calc(50% - 38vw));
    padding-right: max(32px, calc(50% - 38vw));
  }
  .carousel-card { flex-basis: 70%; max-width: 720px; }
}
@media (min-width: 1024px) {
  .carousel-track {
    gap: 28px;
    padding: 16px 0 36px;
    padding-left: calc(50% - 360px);
    padding-right: calc(50% - 360px);
  }
  .carousel-card { flex-basis: 720px; max-width: 720px; }
}
@media (min-width: 1400px) {
  .carousel-track {
    padding-left: calc(50% - 420px);
    padding-right: calc(50% - 420px);
  }
  .carousel-card { flex-basis: 840px; max-width: 840px; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7,18,32,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: lbFade 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 94vw;
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.lightbox-caption {
  color: var(--text);
  font-size: 14px;
  margin-top: 18px;
  letter-spacing: 0.3px;
  pointer-events: none;
}
.lightbox-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.3px;
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.18);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.16); }

/* Lightbox prev / next arrows — visible on desktop, hidden on touch (swipe replaces) */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255,255,255,0.18);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s, opacity 0.18s;
}
.lightbox-arrow:hover:not(:disabled) {
  background: rgba(245,158,11,0.95);
  color: var(--navy);
  transform: translateY(-50%) scale(1.06);
}
.lightbox-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.lightbox-arrow svg { width: 24px; height: 24px; }
.lightbox-arrow--prev { left: 20px; }
.lightbox-arrow--next { right: 20px; }
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .lightbox-arrow { display: flex; }
}

/* Hint: show touch text on touch devices, mouse text on desktops */
.lightbox-hint .hint-touch { display: inline; }
.lightbox-hint .hint-mouse { display: none; }
@media (hover: hover) and (pointer: fine) {
  .lightbox-hint .hint-touch { display: none; }
  .lightbox-hint .hint-mouse { display: inline; }
}

/* PROBLEM */
.sec-problem { background: var(--navy-mid); padding: 80px 24px; }
.sec-problem .ctn { max-width: 680px; }
.divider { width: 56px; height: 2px; background: var(--amber); margin: 22px 0 28px; }
h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 38px); font-weight: 400; line-height: 1.2; color: var(--text); }
p.muted { color: var(--muted); margin-bottom: 14px; }

/* FEATURES */
.sec-features { background: var(--navy); }
.sec-center { text-align: center; margin-bottom: 48px; }
.sec-center p { color: var(--dim); margin-top: 10px; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feat-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 24px;
}
.feat-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(245,158,11,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--amber); }
.feat-card h3 { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.sec-how { background: var(--navy-mid); }
.sec-how .sub { color: var(--dim); margin-top: 8px; margin-bottom: 44px; }
.steps { display: flex; gap: 32px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 16px;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }
.how-note { margin-top: 32px; padding: 16px 20px; border-left: 2px solid var(--amber); background: rgba(245,158,11,0.05); border-radius: 0 8px 8px 0; }
.how-note p { color: var(--muted); font-size: 14px; margin: 0; }


/* SETUP GUIDE COLLAPSIBLE */
.setup-toggle {
  margin-top: 28px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--amber);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
  text-align: left;
}
.setup-toggle:hover { background: rgba(245,158,11,0.05); border-color: rgba(245,158,11,0.55); }
.setup-toggle-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s ease; }
.setup-toggle.open .setup-toggle-icon { transform: rotate(180deg); }

.setup-guide-panel { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, opacity 0.3s ease; opacity: 0; }
.setup-guide-panel.open { max-height: 3000px; opacity: 1; }

.setup-guide-inner {
  margin-top: 8px;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px 24px;
  background: rgba(255,255,255,0.02);
}

.sg-callout { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.18); border-radius: 10px; padding: 16px 20px; margin-bottom: 28px; }
.sg-callout-label { font-size: 11px; font-weight: 500; color: var(--amber); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.sg-callout p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

.sg-steps { display: flex; flex-direction: column; gap: 0; }
.sg-step { display: grid; grid-template-columns: 44px 1fr; gap: 0 16px; padding-bottom: 24px; position: relative; }
.sg-step:last-child { padding-bottom: 0; }
.sg-step-col { position: relative; display: flex; flex-direction: column; align-items: center; }
.sg-step:not(:last-child) .sg-step-col::after { content: ''; position: absolute; top: 36px; left: 50%; transform: translateX(-50%); width: 2px; height: calc(100% - 8px); background: rgba(245,158,11,0.15); }
.sg-num { width: 30px; height: 30px; border-radius: 50%; background: var(--amber); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 13px; flex-shrink: 0; position: relative; z-index: 1; }
.sg-body { padding-top: 3px; }
.sg-body h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.sg-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 6px; }
.sg-body p:last-child { margin-bottom: 0; }

.sg-platform-list { list-style: none; margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; }
.sg-platform-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); border-radius: 8px; }
.sg-badge { font-size: 11px; font-weight: 500; color: var(--navy); background: var(--amber); padding: 2px 9px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.sg-badge.neutral { background: rgba(255,255,255,0.1); color: var(--muted); }
.sg-platform-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

.sg-bullet-list { list-style: none; margin: 10px 0 0; display: flex; flex-direction: column; gap: 5px; }
.sg-bullet-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.6; }
.sg-bullet-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 8px; }
.sg-bullet-item strong { color: var(--text); font-weight: 500; }

.sg-tips { margin-top: 22px; border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 18px; }
.sg-tips h4 { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.sg-tips ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sg-tips li { display: flex; gap: 8px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.sg-tips li::before { content: '→'; color: var(--amber); flex-shrink: 0; }
.sg-tips li strong { color: var(--text); font-weight: 500; }

/* PRICING */
.sec-pricing { background: var(--navy); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 40px; }
.price-card {
  position: relative;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
}
.price-card.featured { border: 2px solid var(--amber); background: rgba(245,158,11,0.04); }
.price-card h3 { font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.price-amount { font-size: 32px; font-weight: 500; color: var(--text); }
.price-amount.was {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 3px;
}
.price-per { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.price-list { list-style: none; margin-top: 18px; }
.price-list li { padding: 6px 0; font-size: 14px; color: #94A3B8; border-top: 0.5px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 8px; }
.price-list li:first-child { border-top: none; }
.check { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.price-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--dim); }


.price-sticker {
  position: absolute;
  top: -44px;
  right: -30px;
  width: 160px;
  height: 160px;
  transform: rotate(14deg);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 600px) {
  .price-sticker { width: 120px; height: 120px; top: -30px; right: -14px; }
}

/* PRIVACY */
.sec-privacy { background: var(--navy-mid); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 40px; }
.trust-card { text-align: center; padding: 10px; }
.trust-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(245,158,11,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trust-card h3 { font-size: 16px; font-weight: 500; color: var(--amber); margin-bottom: 10px; }
.trust-card p { font-size: 14px; color: var(--muted); }

/* FOUNDER */
.sec-founder { background: var(--navy); }
.founder-inner { max-width: 660px; }
.founder-quote {
  border-left: 2px solid var(--amber);
  padding-left: 22px;
  margin: 24px 0;
}
.founder-quote p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.founder-quote p:last-child { margin-bottom: 0; }
.founder-sig { color: var(--amber); font-weight: 500; font-size: 15px; margin-top: 20px; }

/* CTA SECTION */
.sec-cta { background: var(--amber); text-align: center; padding: 80px 24px; }
.sec-cta h2 { font-family: var(--serif); color: var(--navy); font-size: clamp(28px, 4vw, 38px); font-weight: 400; margin-bottom: 12px; }
.sec-cta p { color: #78350F; margin-bottom: 32px; font-size: 17px; }
.btn-dark {
  background: var(--navy);
  color: var(--text);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-dark:hover { background: #1a3245; }
.cta-trust { font-size: 13px; color: #78350F; margin-top: 18px; }

/* FOOTER */
footer {
  background: var(--navy-deep);
  padding: 36px 24px;
  text-align: center;
  color: var(--dim);
  font-size: 13px;
}
.footer-logo { font-family: var(--serif); font-size: 20px; color: var(--amber); margin-bottom: 16px; }
.footer-links { margin-bottom: 14px; }
.footer-links a { color: var(--muted); text-decoration: none; margin: 0 12px; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--dim); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .sec { padding: 60px 20px; }
  .hero { padding: 64px 20px 56px; }
  nav { padding: 14px 20px; }
  .nav-logo { font-size: 19px; }
  .nav-cta { display: none; } /* Hidden on mobile — hero CTA below covers it */
  .steps { flex-direction: column; gap: 28px; }
  .price-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}
