:root {
  --brand: #f04e23;
  --brand-light: #ff6b3d;
  --brand-dark: #d14516;
  --bg: #0b0b0d;
  --bg-elev: #141418;
  --bg-card: #17171c;
  --bg-card-2: #1d1d23;
  --ink: #f5f5f5;
  --ink-soft: #c9c9d1;
  --muted: #8a8a93;
  --line: #2a2a32;
  --line-strong: #3a3a44;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Scroll reveal — only hidden once JS marks the page ready, so no-JS users see content */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-light);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

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

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(240, 78, 35, 0.22), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(240, 78, 35, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 22px auto 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: #fff !important;
}

.hero-meta {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-meta strong {
  color: var(--brand-light);
  font-weight: 700;
}

/* ===== Section ===== */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 800;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
}

.section-sub {
  margin: 14px auto 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== Benefits ===== */
.benefits {
  background: linear-gradient(180deg, transparent 0%, rgba(240, 78, 35, 0.04) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.benefit:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(240, 78, 35, 0.15);
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(240, 78, 35, 0.35);
}

.benefit h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefit p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ===== Video grids ===== */
.video-grid {
  display: grid;
  gap: 18px;
}

.video-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.video-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  border-color: var(--brand);
}

.video-frame {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.video-frame.r-16x9 {
  aspect-ratio: 16 / 9;
}

.video-frame.r-9x16 {
  aspect-ratio: 9 / 16;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-meta .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.video-meta .platform {
  font-size: 11px;
  color: var(--brand-light);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* IG embed grid — "polaroid" framing on dark page (IG embeds are light by default) */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.ig-card {
  background: #fafafa;
  border-radius: 14px;
  padding: 12px 12px 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 50px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ig-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 12px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(0, 0, 0, 0.55), transparent 70%);
  pointer-events: none;
  filter: blur(4px);
}

.ig-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 28px 60px -22px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(240, 78, 35, 0.35);
}

.ig-card blockquote.instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  background: #fff !important;
  border-radius: 8px !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ===== Includes ===== */
.includes-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.includes-card h3 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 800;
  margin: 0 0 22px;
  text-align: center;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.include-item .check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.include-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.include-item span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

/* ===== Pricing ===== */
.tier {
  margin-top: 50px;
}

.tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.tier-name .accent {
  color: var(--brand-light);
}

.tier-desc {
  font-size: 12px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-card {
  border: 1.5px solid var(--line-strong);
  border-radius: 16px;
  padding: 26px 28px;
  position: relative;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--brand);
  background:
    linear-gradient(180deg, rgba(240, 78, 35, 0.10) 0%, rgba(240, 78, 35, 0) 60%),
    var(--bg-card-2);
  box-shadow: 0 0 0 1px rgba(240, 78, 35, 0.35) inset;
}

.price-card.featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: -10px;
  right: 22px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-pack {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.card-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

.card-count .num {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.card-count .label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.save-badge {
  background: var(--brand);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: uppercase;
}

.card-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price-stack {
  display: flex;
  flex-direction: column;
}

.price-retail {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.price-total {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: -0.01em;
  line-height: 1;
}

.price-each {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

.price-each strong {
  color: #fff;
  font-weight: 700;
}

.card-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.card-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Closing CTA ===== */
.closing {
  text-align: center;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(240, 78, 35, 0.18), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.closing h2 {
  margin-bottom: 14px;
}

.closing p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 56ch;
  margin: 0 auto 30px;
  line-height: 1.55;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.footer-text {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-text strong {
  color: #fff;
  font-weight: 700;
}

/* Hero pulse on the orange glows */
@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}

.hero::before {
  animation: glowPulse 8s ease-in-out infinite;
}

/* CTA button micro-interaction */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .container {
    padding: 0 20px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  section {
    padding: 64px 0;
  }
  h1 {
    max-width: none;
  }
  .includes-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  section {
    padding: 52px 0;
  }
  .hero {
    padding: 56px 0 48px;
  }
  .nav-inner {
    height: 56px;
  }
  .nav-logo {
    height: 26px;
  }
  .nav-cta {
    padding: 8px 13px;
    font-size: 12px;
  }
  .eyebrow {
    font-size: 10px;
    padding: 6px 12px;
  }
  .hero-meta {
    font-size: 11px;
  }
  .benefits-grid,
  .video-grid.cols-3,
  .video-grid.cols-2,
  .ig-grid,
  .includes-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  .ig-grid {
    max-width: 380px;
    margin: 0 auto;
  }
  .video-grid.cols-2 {
    max-width: 100%;
  }
  .price-card {
    padding: 22px;
  }
  .card-count .num {
    font-size: 32px;
  }
  .price-total {
    font-size: 28px;
  }
  .section-title {
    margin-bottom: 36px;
  }
  .tier {
    margin-top: 36px;
  }
  .tier-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .btn {
    padding: 13px 18px;
    font-size: 13.5px;
  }
  .hero-ctas {
    width: 100%;
  }
  .hero-ctas .btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .ig-grid {
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}
