/* ═══════════════════════════════════════════════════════════════
   LINCHPIN STUDIO — Landing page styles
   Built on the locked design-system tokens (tokens.css).
   Adds: layout scaffold, components, metallic tier accents, motion.
   ═══════════════════════════════════════════════════════════════ */

/* ── Metallic tier accents (sanctioned per-tier shimmer over violet base) ── */
:root {
  --silver:   linear-gradient(135deg, #f4f4f8 0%, #b6b6c6 46%, #eaeaf2 100%);
  --gold:     linear-gradient(135deg, #f8e6a6 0%, #d6a23f 50%, #fbeec1 100%);
  --platinum: linear-gradient(135deg, #ffffff 0%, #ccd0e8 50%, #eef0ff 100%);
  --diamond:  linear-gradient(135deg, #e0f4ff 0%, #b8c6ff 46%, #ecdcff 100%);

  --silver-1:   #cfcfdb;
  --gold-1:     #e6bb55;
  --platinum-1: #e3e5f4;
  --diamond-1:  #cdd8ff;

  /* Tweakable runtime knobs (overwritten by the tweaks island) */
  --accent-strength: 1;
  --glow-strength: 1;
  --type-scale: 1;
}

/* ── Reset extras ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Layout scaffold ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container.wide { max-width: var(--container-wide); }

.section { padding-block: clamp(72px, 11vw, 128px); position: relative; }
.section--alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .t-eyebrow { justify-content: center; }
.section-head .t-eyebrow { margin-bottom: var(--space-5); }
.section-title {
  font-family: var(--font-display);
  font-size: calc(var(--fs-d2) * var(--type-scale));
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  margin: 0 0 var(--space-5);
  text-wrap: balance;
}
.section-sub {
  font-size: var(--fs-h4);
  line-height: var(--lh-normal);
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}

/* ── Atmosphere: violet glow orbs (no grain — per design system) ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: calc(0.5 * var(--glow-strength));
  pointer-events: none;
  z-index: 0;
}
.orb--violet { background: radial-gradient(circle, rgba(124,60,255,0.55), transparent 70%); }
.orb--lav    { background: radial-gradient(circle, rgba(192,132,252,0.40), transparent 70%); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 16px 26px;
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
  white-space: nowrap;
}
.btn .ico { width: 17px; height: 17px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 40px -10px rgba(124,60,255,calc(0.55 * var(--glow-strength))),
              0 4px 12px -2px rgba(124,60,255,calc(0.35 * var(--glow-strength)));
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 16px 50px -10px rgba(124,60,255,calc(0.7 * var(--glow-strength))); }
.btn-primary:active { background: var(--accent-press); transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--fg-1);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-lg { padding: 20px 34px; font-size: var(--fs-body); }
.btn-block { width: 100%; justify-content: center; }

/* ── Generic card ─────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.card.hoverable:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--fg-2);
  line-height: var(--lh-normal);
  padding-block: 7px;
}
.check .ico { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--accent); }

/* ════════════════ NAVBAR ════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 68px;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(38,15,38,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-soft);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 26px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: var(--fs-sm);
  color: var(--fg-2);
  position: relative;
  padding-block: 4px;
  transition: color var(--t-fast) var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width 220ms var(--ease-out);
}
.nav-links a:hover { color: var(--fg-1); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; color: var(--fg-1); align-items: center; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta-m { display: none; }

/* ════════════════ S01 — HERO ════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero .orb--violet { width: 640px; height: 640px; left: -180px; bottom: -200px; }
.hero .orb--lav    { width: 520px; height: 520px; right: -160px; top: -160px; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: calc(clamp(44px, 6.2vw, 76px) * var(--type-scale));
  line-height: 1.04;
  letter-spacing: var(--tr-tighter);
  margin: var(--space-6) 0 var(--space-6);
  text-wrap: balance;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero-sub {
  font-size: var(--fs-h4);
  color: var(--fg-2);
  line-height: var(--lh-normal);
  max-width: 560px;
  margin: 0 0 var(--space-8);
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-chips { display: flex; flex-direction: column; gap: 16px; }
.chip {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--accent);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  animation: floaty 6s ease-in-out infinite;
}
.chip:nth-child(2) { animation-delay: -2s; margin-left: clamp(0px, 4vw, 38px); }
.chip:nth-child(3) { animation-delay: -4s; }
.chip-num { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 26px; color: var(--fg-1); letter-spacing: var(--tr-tight); }
.chip-label { font-size: var(--fs-xs); color: var(--fg-3); margin-top: 4px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .chip { animation: none; } }

.scroll-ind {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-ind .line { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-ind .line::after { content:""; position:absolute; top:-40px; left:0; width:1px; height:40px; background: var(--lavender-soft); animation: scrolldot 2.2s var(--ease-in-out) infinite; }
.scroll-ind span { font-size: 9px; letter-spacing: var(--tr-eyebrow); text-transform: uppercase; color: var(--fg-3); }
@keyframes scrolldot { 0% { transform: translateY(0); } 100% { transform: translateY(80px); } }

/* ════════════════ S02 — TRUST STATS ════════════════ */
.stats-bar { border-block: 1px solid var(--border-soft); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.stat { text-align: center; padding: 30px 16px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px;
  background: rgba(255,255,255,0.10);
}
.stat-num { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(30px, 3.4vw, 42px); letter-spacing: var(--tr-tight); }
.stat-num .t-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); margin-top: 6px; }

/* ════════════════ S03 — REELS SHOWCASE ════════════════ */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--space-10); }
.filter-pill {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--fg-2);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: all var(--t-fast) var(--ease-out);
}
.filter-pill { white-space: nowrap; }
.filter-pill:hover { border-color: rgba(255,255,255,0.4); color: var(--fg-1); }
.filter-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--glow-violet-sm); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface-3);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.reel:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow-card-hover); }
.reel image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.reel-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #2d2754 0%, #1a1024 60%, #120815 100%);
  z-index: 0;
}
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,10,0.85) 0%, rgba(10,5,10,0.15) 42%, transparent 65%);
  z-index: 2; pointer-events: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
}
.reel-brand { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 15px; }
.reel-cat { font-size: var(--fs-xs); color: var(--fg-3); margin-top: 2px; }
.reel-top { position: absolute; top: 12px; left: 12px; right: 12px; z-index: 3; display: flex; justify-content: space-between; align-items: flex-start; pointer-events: none; }
.tier-badge {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: rgba(10,5,10,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-background-clip: padding-box;
}
.tier-badge.silver   { color: var(--silver-1); border-color: rgba(207,207,219,0.4); }
.tier-badge.gold     { color: var(--gold-1); border-color: rgba(230,187,85,0.45); }
.tier-badge.platinum { color: var(--platinum-1); border-color: rgba(227,229,244,0.45); }
.dur-badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em;
  padding: 5px 9px; border-radius: var(--r-pill);
  background: rgba(10,5,10,0.55); backdrop-filter: blur(6px); color: var(--fg-2);
  border: 1px solid rgba(255,255,255,0.12);
}
.reel-play {
  position: absolute; inset: 0; z-index: 4; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-base) var(--ease-out); pointer-events: none;
}
.reel:hover .reel-play { opacity: 1; }
.reel-play span {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-violet);
}
.reel-play .ico { width: 24px; height: 24px; color: #fff; margin-left: 3px; }

.showcase-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: var(--space-12);
  padding: 26px 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.showcase-cta p { margin: 0; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h3); }

/* Video reel cards */
.reel-poster, .reel-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; background: #000; }
.reel.has-video, .reel.has-ig { cursor: pointer; }
.reel.has-video .reel-play, .reel.has-ig .reel-play { opacity: 1; }
.reel.has-video .reel-play span { width: 54px; height: 54px; background: rgba(124,60,255,0.82); backdrop-filter: blur(2px); transition: transform var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out); }
.reel.has-video:hover .reel-play span { transform: scale(1.08); background: var(--accent); }
/* Instagram link-out card */
.reel.has-ig .reel-fallback { background: linear-gradient(150deg, #3a2150 0%, #6d2a4f 55%, #b9432f 100%); }
.reel-ig { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; }
.reel-ig .ico { width: 56px; height: 56px; color: rgba(255,255,255,0.92); }
.reel.has-ig .reel-play span { width: 54px; height: 54px; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(2px); }
.reel.has-ig:hover .reel-play span { transform: scale(1.08); }
.ig-badge { display: inline-flex; align-items: center; gap: 6px; }
.ig-badge .ico { width: 12px; height: 12px; }

/* Lightbox player */
.reel-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
.reel-modal.open { display: flex; }
.reel-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 6, 15, 0.82); backdrop-filter: blur(8px); }
.reel-modal-body { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 100%; }
.reel-stack {
  position: relative;
  display: grid;
  place-items: center;
  width: min(96vw, 760px);
  min-height: min(78svh, 760px);
}
.reel-stack-ghost {
  position: absolute;
  width: min(72vw, calc((100svh - 210px) * 0.5625));
  aspect-ratio: 9 / 16;
  max-height: calc(100svh - 210px);
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  filter: saturate(0.72) brightness(0.64);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px -42px rgba(0,0,0,0.95);
  transform-origin: center;
  pointer-events: none;
}
.reel-stack-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(15,6,15,0.8), rgba(15,6,15,0.1));
}
.reel-stack-ghost--left { transform: translateX(-112px) rotate(-7deg) scale(0.9); }
.reel-stack-ghost--right { transform: translateX(112px) rotate(7deg) scale(0.9); }
.reel-modal-frame {
  position: relative;
  width: min(86vw, calc((100svh - 150px) * 0.5625));
  aspect-ratio: 9 / 16;
  max-height: calc(100svh - 150px);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8), var(--glow-violet);
  background: #000;
  z-index: 2;
}
.reel-modal-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-modal-video.slide-next { animation: reelSlideNext 360ms var(--ease-out) both; }
.reel-modal-video.slide-prev { animation: reelSlidePrev 360ms var(--ease-out) both; }
.reel-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(15,6,15,0.68);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px -28px rgba(0,0,0,0.88);
  transform: translateY(-50%);
  transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}
.reel-nav:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: rgba(255,255,255,0.48);
  background: rgba(124,60,255,0.74);
}
.reel-nav .ico { width: 22px; height: 22px; }
.reel-nav-prev { left: clamp(8px, 9vw, 110px); }
.reel-nav-next { right: clamp(8px, 9vw, 110px); }
.reel-mute {
  position: absolute; left: 12px; bottom: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 9px 14px 9px 11px; border-radius: var(--r-pill);
  background: rgba(15,6,15,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22); color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: var(--fw-semibold);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.reel-mute:hover { border-color: rgba(255,255,255,0.55); background: rgba(15,6,15,0.78); }
.reel-mute .ico { width: 17px; height: 17px; }
.reel-mute:not(.muted) span { display: none; }
.reel-modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  background: rgba(15,6,15,0.58);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.reel-modal-title { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h4); color: var(--fg-1); }
.reel-modal-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.reel-modal-close {
  position: absolute; top: -8px; right: -8px; transform: translate(50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border-soft); color: var(--fg-1);
  display: flex; align-items: center; justify-content: center; z-index: 3;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.reel-modal-close:hover { border-color: var(--border-strong); transform: translate(50%, -50%) scale(1.06); }
.reel-modal-close .ico { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .reel-modal { padding: 14px; }
  .reel-stack { width: 100%; min-height: calc(100svh - 110px); }
  .reel-stack-ghost { display: none; }
  .reel-modal-frame { width: min(92vw, calc((100svh - 120px) * 0.5625)); max-height: calc(100svh - 120px); }
  .reel-nav { top: auto; bottom: 72px; width: 44px; height: 44px; transform: none; }
  .reel-nav:hover { transform: scale(1.04); }
  .reel-nav-prev { left: 18px; }
  .reel-nav-next { right: 18px; }
  .reel-modal-meta { max-width: 92vw; justify-content: center; }
  .reel-modal-close { top: 6px; right: 6px; transform: none; width: 40px; height: 40px; background: rgba(15,6,15,0.7); }
  .reel-modal-close:hover { transform: scale(1.06); }
}

@keyframes reelSlideNext {
  from { opacity: 0; transform: translate3d(24px, 0, 0) scale(0.985); filter: blur(5px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes reelSlidePrev {
  from { opacity: 0; transform: translate3d(-24px, 0, 0) scale(0.985); filter: blur(5px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

/* ════════════════ S04 — PROCESS TIMELINE ════════════════ */
.timeline { position: relative; margin-top: var(--space-12); }
.timeline-track { position: relative; }
.timeline-svg { position: absolute; top: 24px; left: 0; width: 100%; height: 6px; overflow: visible; z-index: 0; }
.timeline-nodes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 1; }
.tl-node { text-align: center; opacity: 1; }
.tl-dot {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-3); border: 1px solid var(--border-soft);
  color: var(--fg-3);
}
html.anim-on .tl-node { opacity: 0.35; transition: opacity 360ms var(--ease-out); }
html.anim-on .tl-node.active { opacity: 1; }
html.anim-on .tl-dot { transition: all 360ms var(--ease-out); }
.tl-node.active .tl-dot {
  background: var(--accent-soft); border-color: var(--border-strong); color: var(--accent);
  box-shadow: 0 0 0 6px rgba(124,60,255,calc(0.10 * var(--glow-strength))), var(--glow-violet-sm);
}
.tl-dot .ico { width: 22px; height: 22px; }
.tl-step { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--accent); margin-bottom: 6px; }
.tl-title { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h4); margin-bottom: 8px; }
.tl-desc { font-size: var(--fs-sm); color: var(--fg-3); line-height: var(--lh-normal); }

/* ════════════════ S05 — TWO TRACKS ════════════════ */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.track { padding: 36px; overflow: hidden; }
.track::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; }
.track--inf::before { background: var(--accent); }
.track--solo::before { background: linear-gradient(90deg, var(--lavender-soft), #9b6bff); }
.track-ico {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.track--inf .track-ico { background: var(--accent-soft); color: var(--accent); }
.track--solo .track-ico { background: rgba(192,132,252,0.14); color: var(--lavender-soft); }
.track-ico .ico { width: 24px; height: 24px; }
.track h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); margin: 0 0 10px; letter-spacing: var(--tr-tight); }
.track-sub { color: var(--fg-2); font-size: var(--fs-sm); margin: 0 0 22px; line-height: var(--lh-normal); }
.track ul { margin-bottom: 24px; }
.track--solo .check .ico { color: var(--lavender-soft); }
.track-price { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h3); letter-spacing: var(--tr-tight); }
.track--inf .track-price { color: var(--accent); }
.track--solo .track-price { color: var(--lavender-soft); }
.track-price small { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-sm); color: var(--fg-3); }

.callout {
  margin-top: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface-3);
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--accent);
  border-radius: var(--r-md);
  padding: 22px 26px;
}
.callout .ico { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.callout p { margin: 0; color: var(--fg-2); font-size: var(--fs-sm); line-height: var(--lh-normal); }
.callout strong { color: var(--fg-1); font-weight: var(--fw-semibold); }

/* ════════════════ S06/07 — PRICING ════════════════ */
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 22px; }
.toggle {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--surface-3); border: 1px solid var(--border-soft); border-radius: var(--r-pill);
}
.toggle button {
  border: 0; background: transparent; color: var(--fg-2);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); font-family: var(--font-body);
  padding: 11px 24px; border-radius: var(--r-pill); white-space: nowrap;
  transition: all var(--t-base) var(--ease-out);
}
.toggle button.active { background: var(--accent); color: #fff; box-shadow: var(--glow-violet-sm); }

.tier-note { text-align: center; font-style: italic; color: var(--fg-3); font-size: var(--fs-sm); max-width: 680px; margin: 0 auto var(--space-12); }

.pricing-grid { display: grid; gap: 24px; align-items: start; }
.pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-inline: auto; }

.ptier { padding: 34px 30px; display: flex; flex-direction: column; }
.ptier::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; opacity: 0.9; }
.ptier.silver::before   { background: var(--silver); }
.ptier.gold::before     { background: var(--gold); }
.ptier.platinum::before { background: var(--platinum); }
.ptier.diamond::before  { background: var(--diamond); }

.ptier-name {
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h3);
  letter-spacing: var(--tr-tight); margin-bottom: 4px;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.ptier.silver .ptier-name   { background-image: var(--silver); }
.ptier.gold .ptier-name     { background-image: var(--gold); }
.ptier.platinum .ptier-name { background-image: var(--platinum); }
.ptier.diamond .ptier-name  { background-image: var(--diamond); }
.ptier-tagline { font-size: var(--fs-sm); color: var(--fg-3); margin-bottom: 22px; min-height: 38px; }

.ptier-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.ptier-price .amt { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 44px; letter-spacing: var(--tr-tight); }
.ptier.gold .ptier-price .amt { font-size: 52px; }
.ptier-price .per { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--fg-3); }
.ptier.silver .ptier-price .amt   { color: var(--silver-1); }
.ptier.gold .ptier-price .amt     { color: var(--gold-1); }
.ptier.platinum .ptier-price .amt { color: var(--platinum-1); }
.ptier.diamond .ptier-price .amt  { color: var(--diamond-1); }
.ptier-desc { font-size: var(--fs-sm); color: var(--fg-2); line-height: var(--lh-normal); margin: 16px 0 22px; }

.ptier-rows { border-top: 1px solid var(--border-soft); margin-bottom: 24px; }
.ptier-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border-soft);
  font-size: var(--fs-sm); color: var(--fg-2);
}
.ptier-row .qty { color: var(--fg-3); white-space: nowrap; }
.ptier-row .val { font-family: var(--font-mono); color: var(--fg-1); }
.ptier-row.bulk .val { color: var(--accent); font-family: var(--font-body); font-weight: var(--fw-semibold); }
.ptier-row a.val {
  text-decoration: none;
  border-bottom: 1px solid rgba(124,60,255,0.45);
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.ptier-row a.val:hover {
  color: var(--lavender-soft);
  border-color: var(--lavender-soft);
}
.ptier .btn { margin-top: auto; }

.ptier.featured { border-color: var(--border-strong); transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.ptier.featured::after {
  content: attr(data-badge);
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-pill);
  background: var(--accent); color: #fff; box-shadow: var(--glow-violet-sm); white-space: nowrap;
}
.ptier.gold .btn-tier   { background: var(--gold); color: #2a1e05; box-shadow: 0 10px 36px -12px rgba(214,162,63,0.6); }
.ptier.gold .btn-tier:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-tier-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.22); color: var(--fg-1); }
.btn-tier-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.track-panel { display: none; }
.track-panel.active { display: block; }

.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; max-width: 820px; margin-inline: auto; }
.addon { padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start; }
.addon .ico-box { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex: none; }
.addon .ico-box .ico { width: 22px; height: 22px; }
.addon h4 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h4); margin: 0 0 6px; }
.addon p { margin: 0; font-size: var(--fs-sm); color: var(--fg-3); }
.addon .price { font-family: var(--font-mono); color: var(--accent); margin-top: 8px; display: block; font-size: var(--fs-sm); }

/* ════════════════ S08 — DIGITAL MARKETING ════════════════ */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.pkg { padding: 30px 26px; display: flex; flex-direction: column; }
.pkg-name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h3); letter-spacing: var(--tr-tight); }
.pkg-tag { font-size: var(--fs-xs); color: var(--fg-3); margin: 6px 0 20px; }
.pkg-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.pkg-price .mrp { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--fg-4); text-decoration: line-through; }
.pkg-price .now { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 34px; color: var(--fg-1); letter-spacing: var(--tr-tight); }
.pkg-price .mo { font-size: var(--fs-sm); color: var(--fg-3); }
.pkg-feats { margin: 20px 0 24px; border-top: 1px solid var(--border-soft); padding-top: 18px; }
.pkg-feats .check { padding-block: 8px; font-size: 13px; }
.pkg .btn { margin-top: auto; }
.pkg.featured { border-color: var(--border-strong); box-shadow: var(--shadow-card-hover); }
.pkg.featured::after {
  content: "Most popular"; position: absolute; top: -13px; right: 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); background: var(--accent); color: #fff; box-shadow: var(--glow-violet-sm);
}

.offer-strip {
  margin-top: var(--space-12);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  background: linear-gradient(90deg, rgba(124,60,255,0.16), rgba(192,132,252,0.10));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 18px 26px;
  font-size: var(--fs-sm); color: var(--fg-1); font-weight: var(--fw-medium);
}
.offer-strip .ico { width: 18px; height: 18px; color: var(--lavender-soft); }
.offer-strip .sep { color: var(--fg-4); }

/* ════════════════ S09 — DELIVERABLES ════════════════ */
.deliv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.deliv { padding: 30px 26px; }
.deliv-head { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; flex-wrap: nowrap; }
.deliv-num { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 40px; line-height: 1; letter-spacing: var(--tr-tight); color: var(--accent); }
.deliv-unit { font-size: var(--fs-sm); color: var(--fg-3); white-space: nowrap; }
.deliv h4 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h4); margin: 0 0 18px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.deliv ul { margin: 0; }
.deliv .check { font-size: 13px; }
.deliv-note { margin-top: var(--space-10); text-align: center; color: var(--fg-3); font-size: var(--fs-sm); max-width: 820px; margin-inline: auto; line-height: var(--lh-normal); }
.deliv-note strong { color: var(--fg-2); }

/* ════════════════ S10 — POLICIES ════════════════ */
.policy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.policy { padding: 26px 24px; }
.policy::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--accent); opacity: 0.8; }
.policy-num { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--accent); margin-bottom: 12px; }
.policy h4 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h4); margin: 0 0 8px; }
.policy p { margin: 0; font-size: 13px; color: var(--fg-3); line-height: var(--lh-normal); }

.notes-strip {
  margin-top: var(--space-12);
  background: #1a1200;
  border: 1px solid rgba(214,162,63,0.22);
  border-radius: var(--r-lg);
  padding: 32px 34px;
}
.notes-strip h4 { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h4); margin: 0 0 20px; color: var(--gold-1); }
.notes-strip h4 .ico { width: 20px; height: 20px; }
.notes-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
.notes-cols .check { color: var(--fg-2); font-size: var(--fs-sm); padding-block: 6px; }
.notes-cols .check .ico { color: var(--gold-1); }

/* ════════════════ S11 — CONTACT + FOOTER ════════════════ */
.contact { position: relative; overflow: hidden; text-align: center; }
.contact .orb--violet { width: 600px; height: 600px; left: -120px; bottom: -240px; opacity: calc(0.4 * var(--glow-strength)); }
.contact .orb--lav { width: 480px; height: 480px; right: -120px; top: -200px; opacity: calc(0.4 * var(--glow-strength)); }
.contact-inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; }
.contact h2 {
  font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: calc(clamp(38px, 5vw, 56px) * var(--type-scale));
  line-height: var(--lh-tight); letter-spacing: var(--tr-tighter);
  margin: var(--space-5) 0 var(--space-5); text-wrap: balance;
}
.contact-sub { font-size: var(--fs-h4); color: var(--fg-2); margin: 0 auto var(--space-10); max-width: 600px; line-height: var(--lh-normal); }
.contact-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: var(--space-12); }
.contact-item {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-pill);
  padding: 13px 22px; font-size: var(--fs-sm); color: var(--fg-2);
  transition: border-color var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out);
}
.contact-item:hover { border-color: var(--border-strong); color: var(--fg-1); }
.contact-item .ico { width: 17px; height: 17px; color: var(--accent); }

.footer { border-top: 1px solid rgba(124,60,255,0.4); padding-block: 48px 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer-brand img { height: 24px; margin-bottom: 12px; }
.footer-brand p { margin: 0; color: var(--fg-3); font-size: var(--fs-sm); font-style: italic; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: var(--fs-sm); color: var(--fg-2); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--fg-1); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border-soft); font-size: var(--fs-xs); color: var(--fg-4); text-align: center; }

/* ════════════════ MOTION — visible by default, animate only when armed ════════════════ */
[data-reveal] { opacity: 1; transform: none; }
html.anim-on [data-reveal] { opacity: 0; transform: translateY(32px); }
html.anim-on [data-reveal].in { animation: revealUp 560ms var(--ease-out) both; }
@keyframes revealUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }

html.no-anim [data-reveal],
html.no-anim.anim-on [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
html.no-anim .chip { animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  html.anim-on [data-reveal] { opacity: 1; transform: none; }
  html.anim-on [data-reveal].in { animation: none; }
}
@media print {
  [data-reveal], html.anim-on [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1180px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid, .deliv-grid, .policy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(38,15,38,0.96); backdrop-filter: blur(16px); padding: 8px 0 16px; border-bottom: 1px solid var(--border-soft); }
  .nav-links.open a { padding: 14px 28px; }
  .nav-cta-m { display: block; margin: 10px 22px 0; padding: 14px 22px; text-align: center; background: var(--accent); color: #fff; border-radius: var(--r-pill); font-weight: var(--fw-semibold); box-shadow: var(--glow-violet-sm); }
  .nav-cta-m::after { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-chips { flex-direction: row; flex-wrap: wrap; }
  .chip { flex: 1 1 200px; animation: none; margin-left: 0 !important; }
  .tracks { grid-template-columns: 1fr; }
  .pricing-grid.cols-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .ptier.featured { transform: none; }
  .timeline-svg { display: none; }
  .timeline-nodes { grid-template-columns: 1fr; gap: 0; text-align: left; max-width: 480px; margin-inline: auto; }
  .tl-node { display: grid; grid-template-columns: 48px 1fr; gap: 18px; text-align: left; padding-bottom: 28px; position: relative; }
  .tl-node:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--border-soft); }
  .tl-node.active:not(:last-child)::before { background: var(--accent); }
  .tl-dot { margin: 0; }
}
@media (max-width: 760px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(5) { grid-column: 1 / -1; }
  .stat + .stat::before { display: none; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .deliv-grid, .policy-grid, .addons, .notes-cols, .pricing-grid.cols-2 { grid-template-columns: 1fr; }
  .showcase-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav-cta-d { display: none; }
  .nav-logo { height: 22px; }
  .hero { padding-top: 80px; }
  .hero h1 { font-size: calc(clamp(34px, 9vw, 46px) * var(--type-scale)); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .toggle { width: 100%; max-width: 360px; }
  .toggle button { flex: 1; padding: 12px 10px; font-size: 13px; }
  .showcase-cta p { font-size: var(--fs-h4); }
  .contact-row { flex-direction: column; align-items: stretch; }
  .contact-item { justify-content: center; }
  .footer-top { flex-direction: column; gap: 22px; }
}
@media (max-width: 460px) {
  .reels-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .container { padding-inline: 18px; }
  .stat-num { font-size: 30px; }
  .ptier.gold .ptier-price .amt { font-size: 44px; }
  .offer-strip { font-size: 13px; text-align: center; }
  /* prevent email address overflowing the contact pill */
  .contact-item { white-space: normal; word-break: break-all; }
  /* allow CTA button text to wrap on very narrow screens */
  .btn { white-space: normal; text-align: center; }
}
@media (max-width: 380px) {
  /* reduce hero h1 further on small phones */
  .hero h1 { font-size: calc(clamp(24px, 7.5vw, 32px) * var(--type-scale)); }
  /* chips to 1-col so they don't squeeze */
  .hero-chips { grid-template-columns: 1fr; }
  /* filter pills: wrap text rather than overflow */
  .filter-pill { white-space: normal; text-align: center; }
}
