/* =========================================================
   LUMINA CLIPPERS — Beauty & Skincare Landing Page
   White background. Green brand accents. Same section
   architecture as luminaclippers.com homepage.
   ========================================================= */

:root {
  --bg: #06100C;           /* near-black with green undertone */
  --bg-alt: #0B1A14;       /* slightly lifted dark green surface */
  --bg-tinted: #102822;    /* deep green tinted band */
  --ink: #F2F7F4;          /* near-white text */
  --ink-soft: #B5C7BE;     /* secondary text */
  --ink-muted: #7A8F85;    /* tertiary text */
  --line: rgba(255,255,255,0.08);   /* subtle borders on dark */
  --line-strong: rgba(255,255,255,0.14);
  --green: #6FE9B5;        /* primary brand accent (mint) */
  --green-bright: #8BF2C4; /* lighter mint accent */
  --green-dark: #1F7A56;   /* deep brand green */
  --green-soft: rgba(111, 233, 181, 0.12);
  --green-soft-2: rgba(111, 233, 181, 0.06);
  --card: #0E1A15;         /* card surface on dark */
  --card-hover: #13241C;
  --max-width: 1180px;
  --content-width: 1080px;
  --copy-width: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
main { display: block; }

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tinted {
  background: var(--bg-alt);
}

/* ========= TOP APPLY BAR ========= */
.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 60;
}
.topbar-emoji { margin-right: 4px; }
.topbar-arrow { font-size: 10px; margin-left: 4px; opacity: 0.85; }

/* ========= HEADER ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 26, 21, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6FE9B5, #3ED598);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-mark-img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 9px;
}
.logo-text { letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--ink); }

/* Outlined Book A Call (header) */
.btn-outline {
  display: inline-block;
  color: var(--green) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--green);
  background: transparent;
  font-size: 14px !important;
  transition: all 0.18s ease;
}
.btn-outline:hover {
  background: var(--green);
  color: #06100C !important;
  box-shadow: 0 8px 20px rgba(111, 233, 181, 0.22);
}

/* ========= PRIMARY BUTTON ========= */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #06100C;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 34px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(111, 233, 181, 0.28);
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--green-bright);
  box-shadow: 0 14px 30px rgba(111, 233, 181, 0.36);
}

/* ========= PILL EYEBROW (matches homepage) ========= */
.pill-eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--green);
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--card);
  margin: 0 auto 22px auto;
}
.section .container > .pill-eyebrow {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ========= SECTION HEADLINES ========= */
.section-headline {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}
.section-headline.center { text-align: center; }

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 56px auto;
}
.section-sub.center { text-align: center; }
.section-sub em { font-style: italic; color: var(--ink-soft); }

/* ========= SHARED BODY COPY ========= */
.body-copy {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  max-width: var(--copy-width);
}
.body-copy p { margin: 0 0 20px 0; }
.body-copy.center-copy { text-align: center; margin: 32px auto 0 auto; }
.body-copy .ink { color: var(--ink); font-weight: 500; }
.body-copy .accent-line,
p.accent-line { color: var(--green-dark); font-weight: 700; }

/* ========= SECTION 1 — HERO ========= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0 32px;
  overflow: hidden;
  background: var(--bg);
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 176, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 176, 122, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, #000 25%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(62, 213, 152, 0.18) 0%, rgba(62, 213, 152, 0.06) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}

.trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.featured {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(10, 26, 18, 0.05);
}
.featured-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  top: 1px;
}
.featured-logo-img {
  height: 22px;
  width: auto;
  display: block;
  filter: invert(1) brightness(1.1);
}
@media (max-width: 768px) {
  .featured { padding: 8px 18px; gap: 10px; margin-bottom: 28px; }
  .featured-text { font-size: 10px; letter-spacing: 0.12em; }
  .featured-logo-img { height: 18px; }
}
.trust-logos { display: inline-flex; align-items: center; }
.logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border: 1.5px solid #fff;
  margin-left: -6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.logo-dot:first-child { margin-left: 0; }
.logo-adobe    { background: #FF0000; }
.logo-fanatics { background: #E6002C; }
.logo-okx      { background: #0A0A0A; }
.logo-stake    { background: #1B8FFF; }
.trust-text {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-headline {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto 26px auto;
}

/* ========= SECTION 2 — VSL ========= */
.section-vsl { padding-top: 0; padding-bottom: 56px; }
.vsl-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.vsl-label {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 18px 0;
}
.vsl-wrapper { position: relative; margin: 0 auto 32px auto; max-width: 760px; }
.vsl-glow {
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at center, rgba(62, 213, 152, 0.30) 0%, rgba(62, 213, 152, 0.10) 45%, transparent 75%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
}
.vsl-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--green);
  background: var(--card);
  box-shadow: 0 20px 60px rgba(31, 176, 122, 0.15), 0 0 0 1px rgba(31, 176, 122, 0.08);
}
.vsl-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.btn-vsl { margin-top: 8px; }

/* ========= SECTION 3 — 18B+ PROOF ========= */
.proof-card {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(31, 176, 122, 0.08);
  max-width: 760px;
  margin: 0 auto;
}
.proof-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.proof-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.proof-title { color: var(--ink); font-weight: 700; font-size: 18px; }
.proof-subtitle { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.proof-stat {
  font-size: 132px;
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.proof-caption { color: var(--ink-soft); font-size: 16px; }

/* ========= SECTION 4 — FEATURE GRID ========= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.feature-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px 0;
}
.feature-body {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px 0;
  max-width: 360px;
}
.feature-visual {
  margin-top: auto;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 140px;
}

/* Stack chips visual (Stand out with scale) */
.feature-visual-stack { flex-direction: column; align-items: stretch; gap: 6px; }
.chip-row { display: flex; }
.chip-row-1 { justify-content: flex-start; }
.chip-row-2 { justify-content: center; padding-left: 24px; }
.chip-row-3 { justify-content: flex-end; padding-right: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-block;
  background: #ddd;
}
.chip-icon.ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #515bd4); }
.chip-icon.tt { background: #000; position: relative; }
.chip-icon.tt::after { content: ""; position: absolute; inset: 5px; background: var(--green-bright); border-radius: 50%; }
.chip-icon.lc { background: var(--green-bright); }
/* Real platform logo chip icons wrap an SVG and need no background */
.chip-icon.chip-ig, .chip-icon.chip-tt, .chip-icon.chip-yt {
  background: transparent;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}
.chip-icon.chip-ig svg, .chip-icon.chip-tt svg, .chip-icon.chip-yt svg { display: block; }
.chip-icon.br { background: linear-gradient(135deg, #ff7a59, #ff3d77); }
.chip-icon.bc { background: linear-gradient(135deg, #ffd166, #ff7a59); }
.chip .check { color: var(--green); font-weight: 800; }

/* Insights visual */
.feature-visual-insights { flex-direction: column; align-items: stretch; gap: 12px; }
.insights-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}
.insights-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--green-dark);
}
.insights-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6);
  animation: live-pulse 1.6s infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(10,26,18,0.03);
}
.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.2px;
}
.metric-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.metric-delta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.metric .trend { color: var(--green); font-weight: 700; }

/* Growth chart card */
.growth-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  width: 100%;
}
.growth-head {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}
.growth-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}
.growth-chart { width: 100%; height: 70px; display: block; }

/* Reach card */
.reach-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  width: 100%;
}
.reach-card .reach-tags { display: flex; gap: 8px; margin-bottom: 8px; }
.reach-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.reach-num { font-size: 30px; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.reach-label { font-size: 13px; color: var(--ink-soft); }

/* ========= SECTION 5 — BENEFITS GRID ========= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-bright);
  box-shadow: 0 16px 36px rgba(31, 176, 122, 0.12);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.benefit-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ========= SECTION 6 — MARQUEE ========= */
.section-marquee {
  background: var(--bg-alt);
  padding: 60px 0;
  overflow: hidden;
}
.marquee {
  overflow: hidden;
  width: 100%;
  margin: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 16px;
  padding-left: 16px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee-reverse { animation-direction: reverse; animation-duration: 44s; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pill {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========= CASE STUDY ========= */
.case-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px;
  box-shadow: 0 8px 28px rgba(31, 176, 122, 0.06);
  max-width: 820px;
  margin: 0 auto;
}
.eyebrow {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.case-line {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.case-line strong { color: var(--ink); font-weight: 700; }
.case-line .accent { color: var(--green-dark); font-weight: 700; }
.case-footnote {
  color: var(--ink-muted);
  font-size: 14px;
  margin: 16px 0 0 0;
}

/* ========= PLATFORMS ========= */
.platforms { position: relative; padding: 20px 0; }
.platform-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 60px;
}
.platform-row:last-child { margin-bottom: 0; }
.platform { text-align: center; padding: 0 24px; }
.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--card);
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 6px 18px rgba(31, 176, 122, 0.15);
}
.platform-icon svg { width: 28px; height: 28px; }
.platform p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}
.platform-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--green-bright), transparent);
  margin: 0 auto;
  height: 100%;
  min-height: 80px;
}
.hub {
  position: relative;
  height: 80px;
  margin: 30px 0;
}
.hub-line-h {
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
}
.hub-line-v {
  position: absolute;
  left: 50%;
  top: -30px;
  bottom: -30px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--green-bright), transparent);
}
.hub-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(62, 213, 152, 0.18), 0 8px 22px rgba(31, 176, 122, 0.30);
}
.hub-node svg { width: 32px; height: 32px; }

/* ========= COMPARISON ========= */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.compare-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.compare-col-us { border-color: var(--green-bright); box-shadow: 0 10px 30px rgba(31, 176, 122, 0.12); }
.compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.compare-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green-bright);
  color: #0A0A0A;
  display: inline-flex; align-items: center; justify-content: center;
}
.compare-mark svg { width: 20px; height: 20px; }
.compare-head-them .compare-mark { background: #F0EFEF; color: var(--ink-soft); }

.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}
.compare-list li:last-child { border-bottom: none; }
.check-mark {
  color: var(--green);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.5;
  flex-shrink: 0;
  width: 18px;
}
.x-mark {
  color: #D9534F;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.5;
  flex-shrink: 0;
  width: 18px;
}

/* ========= STATS ========= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 8px 0 40px 0;
  text-align: center;
}
.stat { padding: 16px 8px; }
.stat-num {
  color: var(--green);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.stat-caption {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ========= BULLETS ========= */
.body-intro { color: var(--ink-soft); font-size: 18px; margin: 0 0 20px 0; }
.bullet-list { list-style: none; padding: 0; margin: 0 0 28px 0; max-width: var(--copy-width); }
.bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(31, 176, 122, 0.40);
}
.bullet-list li strong { color: var(--ink); font-weight: 700; }
.body-closing {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  max-width: var(--copy-width);
  margin: 0;
}

/* ========= GUARANTEE ========= */
.guarantee-card {
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
  border: 1.5px solid var(--green-bright);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(31, 176, 122, 0.10);
}
.guarantee-body { color: var(--ink); font-size: 17px; line-height: 1.6; margin: 0; }

/* ========= FAQ ========= */
.faq { margin-top: 32px; max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  padding: 14px 0 4px 0;
  max-width: 760px;
}

/* ========= BOOK A CALL SECTION ========= */
.section-book {
  background: linear-gradient(180deg, var(--bg), var(--bg-tinted));
  position: relative;
  overflow: hidden;
}
.book-inner { position: relative; z-index: 1; }
.calendly-card {
  max-width: 720px;
  margin: 16px auto 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 176, 122, 0.12);
  position: relative;
}
.calendly-head {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  display: flex;
  justify-content: center;
  position: relative;
}
.calendly-ribbon {
  position: absolute;
  top: 16px;
  right: -36px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 40px;
  transform: rotate(35deg);
  transform-origin: center;
}
.calendly-body {
  padding: 30px 36px 36px 36px;
  text-align: center;
}
.calendly-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 14px 0;
}
.calendly-meta {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.calendly-bullets {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 28px auto;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.calendly-bullets p { margin: 0 0 6px 0; }
.calendly-cta { margin-bottom: 14px; }
.calendly-foot { font-size: 12px; color: var(--ink-muted); margin: 0; }

/* ========= FINAL FOOTER CTA ========= */
.final-cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 100px 0 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(62, 213, 152, 0.22) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; }
.final-eyebrow { color: var(--green-bright); font-size: 14px; margin: 0 0 18px 0; font-weight: 600; letter-spacing: 0.04em; }
.final-headline {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
}
.final-sub {
  color: rgba(255,255,255,0.72);
  font-size: 19px;
  line-height: 1.5;
  margin: 0 auto 32px auto;
  max-width: 580px;
}

/* ========= FOOTER ========= */
.site-footer {
  padding: 36px 0 28px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin: 0;
  text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav a:not(.btn-outline) { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }

  .topbar { font-size: 12px; padding: 9px 12px; }
  .header-inner { padding: 12px 18px; }
  .logo-text { font-size: 16px; }
  .btn-outline { padding: 8px 16px; font-size: 13px !important; }

  .hero { min-height: auto; padding: 60px 0 70px; }
  .hero-headline { font-size: 42px; line-height: 1.08; }
  .hero-sub { font-size: 16px; }
  .trust { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .trust-text { font-size: 13px; text-align: center; }

  .section-vsl { padding-top: 10px; padding-bottom: 40px; }
  .vsl-frame { border-radius: 12px; }

  .proof-card { padding: 32px 24px; border-radius: 18px; }
  .proof-stat { font-size: 84px; }
  .proof-title { font-size: 16px; }

  .section-headline { font-size: 32px; }
  .section-sub { font-size: 16px; margin-bottom: 36px; }

  .feature-card { padding: 28px 24px; min-height: auto; }
  .feature-title { font-size: 22px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }

  .platform-row { grid-template-columns: 1fr; gap: 32px; }
  .platform-divider { display: none; }
  .hub { display: none; }

  .case-card { padding: 28px 24px; border-radius: 16px; }
  .case-line { font-size: 16px; }

  .stats { grid-template-columns: 1fr; gap: 28px; margin: 16px 0 32px 0; }
  .stat-num { font-size: 52px; }

  .bullet-list li { font-size: 16px; }

  .guarantee-card { padding: 26px; }
  .faq-item summary { font-size: 16px; }

  .calendly-body { padding: 24px 22px 28px 22px; }
  .calendly-title { font-size: 20px; }

  .final-cta { padding: 70px 0 80px; }
  .final-headline { font-size: 36px; }
  .final-sub { font-size: 16px; }

  .btn-primary { font-size: 16px; padding: 15px 28px; }

  .bg-grid { background-size: 48px 48px; }

  .pill { font-size: 13px; padding: 10px 18px; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 36px; }
  .final-headline { font-size: 30px; }
  .section-headline { font-size: 26px; }
  .proof-stat { font-size: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .marquee-track { animation: none !important; }
}

/* ============ AI UGC FLYWHEEL SECTION ============ */
.ai-ugc-section { padding-top: 8px; }
.ai-ugc-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-tinted) 100%);
  border: 1px solid rgba(31, 176, 122, 0.18);
  border-radius: 28px;
  padding: 40px 48px;
  box-shadow: 0 24px 60px rgba(10, 26, 18, 0.06);
}
.ai-ugc-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #0A1A12;
  box-shadow: 0 20px 50px rgba(10, 26, 18, 0.18), 0 0 0 8px #fff, 0 0 0 9px rgba(31, 176, 122, 0.25);
  max-width: 320px;
  margin: 0 auto;
}
.ai-ugc-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-ugc-copy .eyebrow {
  display: inline-block;
  background: rgba(31, 176, 122, 0.12);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}
.ai-ugc-headline {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 28px 0;
}
.ai-ugc-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ai-ugc-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ai-ugc-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(31, 176, 122, 0.35);
}
.ai-ugc-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}
.ai-ugc-step p {
  font-size: 15px;
  line-height: 1.55;
  color: #4A5A52;
  margin: 0;
}

@media (max-width: 900px) {
  .ai-ugc-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .ai-ugc-video { max-width: 260px; }
  .ai-ugc-headline { font-size: 28px; text-align: center; }
  .ai-ugc-copy .eyebrow { display: block; text-align: center; margin: 0 auto 14px; width: fit-content; }
}

/* Everywhere-your-audience-scrolls: big platform badges */
.feature-visual-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 0;
}
.platform-badge {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid rgba(10, 26, 18, 0.06);
  box-shadow: 0 8px 24px rgba(10, 26, 18, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.platform-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10, 26, 18, 0.10);
}
.platform-badge svg {
  width: 56px;
  height: 56px;
  display: block;
}
@media (max-width: 480px) {
  .platform-badge { width: 72px; height: 72px; border-radius: 18px; }
  .platform-badge svg { width: 48px; height: 48px; }
  .feature-visual-platforms { gap: 12px; }
}

/* Calendly inline embed wrapper */
.calendly-embed {
  margin: 36px auto 0;
  max-width: 1000px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 26, 18, 0.08);
  overflow: hidden;
}
.calendly-embed .calendly-inline-widget {
  width: 100%;
}
@media (max-width: 720px) {
  .calendly-embed .calendly-inline-widget { height: 980px !important; }
}

/* Merged 18B+ proof banner at the top of the AI UGC card */
.ai-ugc-card {
  grid-template-columns: 320px 1fr;
  grid-template-areas:
    "banner banner"
    "video  copy";
  row-gap: 36px;
}
.ai-ugc-proof-banner {
  grid-area: banner;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 26px 32px;
  background: linear-gradient(90deg, rgba(31, 176, 122, 0.08) 0%, rgba(62, 213, 152, 0.12) 50%, rgba(31, 176, 122, 0.08) 100%);
  border: 1px solid rgba(31, 176, 122, 0.22);
  border-radius: 20px;
  text-align: center;
  flex-wrap: wrap;
}
.ai-ugc-proof-stat {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-ugc-proof-caption {
  font-size: 17px;
  color: var(--ink-soft, #4A5A52);
  font-weight: 500;
  max-width: 520px;
  text-align: center;
  line-height: 1.4;
}

/* VSL lite (thumbnail-first YouTube) */
.vsl-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}
.vsl-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
  transition: transform 200ms ease, filter 200ms ease;
}
.vsl-lite:hover .vsl-play,
.vsl-lite:focus-visible .vsl-play {
  transform: translate(-50%, -50%) scale(1.06);
  filter: drop-shadow(0 10px 28px rgba(255,0,0,0.35));
}
.vsl-lite:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.ai-ugc-video { grid-area: video; }
.ai-ugc-copy { grid-area: copy; }

@media (max-width: 900px) {
  .ai-ugc-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "banner"
      "video"
      "copy";
    row-gap: 28px;
  }
  .ai-ugc-proof-banner { padding: 18px 20px; gap: 12px; }
  .ai-ugc-proof-stat { font-size: 44px; }
  .ai-ugc-proof-caption { font-size: 14px; text-align: center; }
}
