/* ═══════════════════════════════════════════════════════════
   PLIXI LANDING — design system v2 (plixi.com homepage parity)
   Pink gradient CTAs · tri-gradient headings · indigo footer
   Fonts: Hanken Grotesk (display) + Inter (body) — from brand kit
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Brand kit — Luminous Precision (light) design system */
  --ink: #131b2e;
  --body: #475569;
  --muted: #5f6c7c;
  --bg: #ffffff;
  --tint: #f8fafc;
  --line: #e2e8f0;
  --blue: #0077ff;
  --green: #16a34a;
  --gold: #f8c100;
  --indigo: #0b0f1a;
  --brand-pink: #fc405d;
  --brand-purple: #7c3aed;
  --pink: linear-gradient(45deg, #fc405d, #7c3aed);
  --pink-hover: linear-gradient(45deg, #ec2f4c, #6d28d9);
  --tri: linear-gradient(45deg, #fc405d, #9333ea 55%, #7c3aed);
  --radius-btn: 10px;
  --radius-card: 16px;
  --shadow: 0 4px 20px -2px rgba(15, 23, 42, .05);
  --shadow-lg: 0 14px 44px -12px rgba(15, 23, 42, .14);
  --font-display: 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; font-weight: 700; }
a { text-decoration: none; color: inherit; }
u { text-decoration-color: rgba(10,10,10,.35); text-underline-offset: 3px; }
img, svg { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

.grad-text {
  background: var(--tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* ── Buttons: pink gradient pills ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn--pink {
  position: relative;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(252, 64, 93, .32), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--pink:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(252, 64, 93, .44), inset 0 1px 0 rgba(255,255,255,.34); }
.btn--pink:active { transform: scale(.98); }
.btn--sm { padding: 11px 22px; font-size: 15px; }
.btn--lg { padding: 18px 44px; font-size: 18px; }
.btn--full { width: 100%; }

/* ── Announcement bar ── */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
}
.announce__timer {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  background: var(--tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Header (100px, sticky) ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(10,10,10,.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -.5px; }
.logo--light { color: #fff; }
.logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo__dot {
  background: var(--tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav { display: flex; gap: 30px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--ink); opacity: .8; transition: opacity .15s; }
.nav a:hover { opacity: 1; }
.header__actions { display: flex; align-items: center; gap: 20px; }
.header__login { font-size: 15px; font-weight: 700; color: var(--ink); }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* ── Hero ── */
.hero { padding: 72px 0 66px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% -12%, rgba(189, 24, 230, .10), transparent 60%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(252, 64, 93, .08), transparent 55%),
    radial-gradient(ellipse 55% 50% at 6% 28%, rgba(75, 37, 234, .08), transparent 55%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,10,10,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask: radial-gradient(ellipse 75% 65% at 50% 4%, #000 10%, transparent 72%);
  mask: radial-gradient(ellipse 75% 65% at 50% 4%, #000 10%, transparent 72%);
}
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__copy { max-width: 760px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}
/* "The #1 AI Instagram Growth Engine" pill (hero theme) */
.hero__badge--pill {
  background: linear-gradient(90deg, rgba(75,37,234,.10), rgba(189,24,230,.10));
  border: 1px solid rgba(138,75,245,.28);
  padding: 6px 18px 6px 6px;
  font-weight: 700;
}
.hero__badge-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--tri);
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Highlighted phrase in the hero subtext */
.hl {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(252, 64, 93, .10);
  color: var(--brand-pink);
  font-weight: 700;
  padding: 1px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}
.hero h1 { font-size: clamp(34px, 4.6vw, 58px); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 20px; }
.hero__sub { font-size: 18px; max-width: 560px; margin: 0 auto 28px; }
.hero__sub strong { color: var(--ink); }

/* Username capture form */
.ig-form { display: flex; gap: 12px; margin: 0 auto 22px; max-width: 520px; }
.ig-form--center { margin: 0 auto 14px; justify-content: center; }
.ig-form__field {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 0 6px 0 16px;
  transition: border-color .15s;
  min-width: 0;
}
.ig-form__field:focus-within { border-color: var(--brand-pink); box-shadow: 0 0 0 4px rgba(252,64,93,.12); }
.ig-form__field { position: relative; }

/* Live username autocomplete dropdown */
.igsuggest {
  position: absolute;
  top: calc(100% + 8px);
  left: -2px; right: -2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  overflow: hidden;
  list-style: none;
  padding: 6px;
  margin: 0;
  display: none;
  text-align: left;
  max-height: 360px;
  overflow-y: auto;
}
.igsuggest.is-open { display: block; }
.igsuggest__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.igsuggest__item:hover, .igsuggest__item.is-active { background: var(--tint); }
.igsuggest__dp-wrap {
  position: relative;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2px;
  background: var(--tri);
}
.igsuggest__dp {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  background: #fff;
  display: block;
}
.igsuggest__fallback {
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fc405d, #7c3aed);
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.igsuggest__meta { min-width: 0; flex: 1; }
.igsuggest__user {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
}
.igsuggest__user .igsuggest__vf {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #1e8fff;
  color: #fff;
  font-size: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.igsuggest__name {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.igsuggest__empty { padding: 14px 16px; font-size: 13.5px; color: var(--muted); }
.ig-form__at { font-weight: 800; color: var(--muted); font-size: 17px; }
.ig-form__input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 15px 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.hero__assurance { list-style: none; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.hero__proof { display: flex; justify-content: center; align-items: center; gap: 14px; font-size: 14.5px; }
.hero__proof strong { color: var(--ink); }
.avatars { display: flex; }
.avatar {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--a, #888);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(10,21,27,.14);
  overflow: hidden;
}
.avatar__img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar__initial { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-transform: uppercase; }
.avatars .avatar + .avatar { margin-left: -12px; }
.avatars .avatar { transition: transform .2s ease; }
.avatars:hover .avatar { margin-left: -6px; }
.avatars .avatar:first-child { margin-left: 0; }

/* Hero phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 320px;
  background: var(--ink);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.phone__notch {
  width: 120px; height: 24px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.phone__screen { background: #fff; border-radius: 34px; padding: 40px 20px 24px; overflow: hidden; }
.phone__profile { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.phone__pfp {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--tri);
  color: #fff; font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.phone__handle { font-weight: 700; color: var(--ink); font-size: 15px; }
.phone__meta { font-size: 12px; color: var(--muted); }
.phone__stats { display: flex; justify-content: space-between; text-align: center; margin-bottom: 18px; }
.phone__stats strong { display: block; color: var(--ink); font-size: 17px; }
.phone__stats span { font-size: 11.5px; color: var(--muted); }
.phone__chart { width: 100%; height: 110px; display: block; }
.phone__chart-label { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 8px; }

.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--body);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.float-chip strong { color: var(--ink); }
.float-chip--1 { top: 10%; left: -4%; animation-delay: 0s; }
.float-chip--2 { top: 46%; right: -6%; animation-delay: 1.4s; }
.float-chip--3 { bottom: 8%; left: -2%; animation-delay: 2.8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Trusted-by band ── */
.trustband { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustband__title { text-align: center; font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 20px; }
.trustband__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #aab4c0;
  letter-spacing: .5px;
}

/* ── Stats band ── */
.stats { background: var(--ink); padding: 44px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  background: var(--tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: rgba(255,255,255,.65); font-size: 14px; }

/* ── Sections ── */
.section { padding: 88px 0; }
.section--soft { background: var(--tint); }
.section__eyebrow {
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.section__eyebrow--left { text-align: left; }
.section__title { text-align: center; font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; letter-spacing: -.7px; margin-bottom: 16px; }
.section__sub { text-align: center; font-size: 17px; max-width: 640px; margin: 0 auto 54px; }
.section__sub a { color: var(--brand-purple); font-weight: 600; }
.section__cta { text-align: center; margin-top: 48px; }

/* ── Core offerings (4 cards) ── */
.offerings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.offering {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  transition: transform .2s, box-shadow .2s;
}
.offering:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offering__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 9999px;
}
.offering__icon { font-size: 32px; margin-bottom: 14px; }
.offering h3 { font-size: 19px; margin-bottom: 10px; }
.offering p { font-size: 14px; margin-bottom: 14px; }
.offering ul { list-style: none; }
.offering li { font-size: 13.5px; color: var(--ink); font-weight: 500; padding: 4px 0 4px 22px; position: relative; }
.offering li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ── Growth preview ── */
.preview { background: var(--tint); }
.preview__used { text-align: center; font-size: 14px; color: var(--muted); }
.preview__used strong { color: var(--ink); }
.preview__result {
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 34px 34px 38px;
  text-align: center;
}
.preview__result-title { font-size: 16.5px; color: var(--ink); margin-bottom: 24px; }

/* IG profile snapshot card */
.igcard {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.igcard__dp-wrap {
  position: relative;
  width: 76px; height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 3px;
  background: var(--tri);
}
.igcard__dp {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: #fff;
  display: block;
}
.igcard__dp-fallback {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fc405d, #7c3aed);
  border: 3px solid #fff;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.igcard__id { flex: 1; min-width: 180px; }
.igcard__id strong { display: block; color: var(--ink); font-size: 17px; }
.igcard__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #1e8fff;
  color: #fff;
  font-size: 10px;
  vertical-align: 2px;
}
.igcard__name { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.igcard__bio { font-size: 13px; color: var(--body); margin-top: 5px; max-width: 420px; }
.igcard__bio:empty { display: none; }
.igcard__stats { display: flex; gap: 26px; text-align: center; }
.igcard__stats strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--ink); }
.igcard__stats span { font-size: 11.5px; color: var(--muted); }
.igcard__posts { display: flex; gap: 8px; width: 100%; }
.igcard__posts img {
  width: 86px; height: 86px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--tint);
}
.preview__bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.preview__bar { display: flex; align-items: center; gap: 14px; }
.preview__bar > span { width: 52px; text-align: right; font-weight: 700; color: var(--ink); font-size: 14px; flex-shrink: 0; }
.preview__track { flex: 1; background: var(--tint); border-radius: 9999px; overflow: hidden; }
.preview__fill {
  width: var(--w, 50%);
  background: linear-gradient(90deg, #fc405d, #7c3aed);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 9999px;
  text-align: right;
  white-space: nowrap;
  animation: growBar 1s ease-out;
}
.preview__fill--pro { background: var(--pink); }
@keyframes growBar { from { width: 8%; } }

/* ── Video testimonials ── */
.vids { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-bottom: 54px; }
.vid {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 14;
  background: var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vid video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid__poster {
  position: absolute; inset: 0;
  background: var(--p, linear-gradient(160deg, #fc405d, #7c3aed));
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid__initial { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: rgba(255,255,255,.35); }
.vid__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 0;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .15s;
}
.vid__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.vid__info {
  position: relative;
  z-index: 2;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
}
.vid__info strong { display: block; font-size: 14.5px; }
.vid__info span { font-size: 12px; opacity: .85; }
.vid__growth {
  display: inline-block;
  margin-top: 6px;
  background: rgba(22,163,74,.9);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
}

/* ── Written testimonials ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.testimonial blockquote { font-size: 15px; color: var(--body); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.testimonial figcaption strong { display: block; color: var(--ink); font-size: 14.5px; }
.testimonial figcaption span:not(.avatar) { color: var(--muted); }
.testimonial__growth {
  margin-left: auto;
  background: rgba(22, 163, 74, .1);
  color: var(--green) !important;
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* ── Success stories ── */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  transition: transform .2s, box-shadow .2s;
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story__cat {
  display: inline-block;
  background: var(--tint);
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.story__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.story__dp-wrap {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2.5px;
  background: var(--tri);
}
.story__dp {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  background: #fff;
  display: block;
}
.story__dp-fallback {
  position: absolute; inset: 2.5px;
  border-radius: 50%;
  background: var(--a, #888);
  border: 2.5px solid #fff;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.story__meta { min-width: 0; }
.story__handle { display: flex; align-items: center; gap: 5px; color: var(--ink); font-size: 15px; font-weight: 700; }
.story__vf {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #1e8fff;
  color: #fff;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.story__since { display: block; font-size: 12.5px; color: var(--muted); }
.story__nums { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; }
.story__nums strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.story__nums span { font-size: 12px; color: var(--muted); }
.story__nums .story__growth strong { color: var(--green); }

/* ── Pillars (3-column) ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar__num {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar h3 { font-size: 19px; margin-bottom: 10px; }
.pillar p { font-size: 15px; }

/* ── Secret sauce ── */
.sauce { padding: 88px 0; background: var(--ink); color: rgba(255,255,255,.78); }
.sauce__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.sauce h2 { color: #fff; font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }
.sauce p { font-size: 16px; margin-bottom: 28px; max-width: 560px; }
.sauce__visual { display: flex; justify-content: center; }
.sauce__ring {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

/* ── Billing toggle ── */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 14px;
  box-shadow: var(--shadow);
}
.billing-toggle__btn {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  padding: 11px 26px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s;
}
.billing-toggle__btn.is-active { background: var(--ink); color: #fff; }
.billing-toggle__save {
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
}
.billing-note { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 44px; min-height: 22px; }

/* ── Pricing cards ── */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  gap: 32px;
  justify-content: center;
  align-items: start;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 44px 40px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.plan--pro {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--tri) border-box;
  box-shadow: var(--shadow-lg);
}
.plan__ribbon {
  position: absolute;
  top: 26px; right: -44px;
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 7px 52px;
}
.plan__pill {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 9999px;
  margin-bottom: 18px;
}
.plan__pill--ghost { background: var(--tint); color: var(--muted); border: 1px solid var(--line); }
.plan__name { font-size: 30px; font-weight: 400; margin-bottom: 10px; }
.plan__name strong { font-weight: 800; }
.plan__price { display: flex; align-items: baseline; justify-content: center; gap: 2px; color: var(--ink); font-family: var(--font-display); }
.plan__price-was {
  color: var(--muted);
  font-size: 22px;
  font-weight: 600;
  text-decoration: line-through;
  margin-right: 10px;
}
.plan__price-was:empty { display: none; }
.plan__price-currency { font-size: 28px; font-weight: 700; align-self: flex-start; margin-top: 12px; }
.plan__price-num { font-size: 68px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.plan__price-period { font-size: 17px; color: var(--muted); font-weight: 600; }
.plan__caption { font-size: 13.5px; color: var(--green); font-weight: 600; margin: 10px 0 18px; min-height: 21px; }
.plan__desc { font-size: 15px; margin-bottom: 28px; min-height: 72px; }
.plan__slots { font-size: 13px; font-weight: 600; color: #e11d48; margin-top: 14px; }
.plan__slots--quiet { color: var(--muted); font-weight: 500; }
.plan__features { list-style: none; text-align: left; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 26px; }
.plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  padding: 9px 0;
}
.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tip {
  margin-left: auto;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid #7c8b9c;
  color: #5f6c7c;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  position: relative;
}
.tip:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.tip:hover::after,
.tip:focus-visible::after,
.tip:active::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 135%;
  right: -10px;
  width: 230px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 20;
}
.pricing__trust { text-align: center; margin-top: 44px; }
.pricing__guarantee { font-size: 16px; color: var(--ink); margin-bottom: 10px; }
.pricing__secure { font-size: 13.5px; color: var(--muted); }
.pricing__summary { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ── Comparison table ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-card); box-shadow: var(--shadow); }
.compare { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
.compare th, .compare td { padding: 17px 22px; text-align: center; font-size: 15px; border-bottom: 1px solid var(--line); }
.compare td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare thead th { font-size: 15px; font-weight: 700; color: var(--muted); background: var(--tint); }
.compare thead .compare__plixi { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td:nth-child(2) { background: rgba(252, 64, 93, .04); font-weight: 700; }
.compare .yes { color: var(--green); }
.compare .no { color: #e11d48; }
.compare .meh { color: var(--muted); font-weight: 500; }

/* ── Guarantee ── */
.guarantee { padding-top: 0; }
.guarantee__inner {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 52px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.guarantee__badge { font-size: 64px; flex-shrink: 0; }
.guarantee h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.guarantee p { font-size: 16px; max-width: 620px; }
.guarantee p a { color: var(--brand-purple); font-weight: 600; }
.guarantee p strong { color: var(--ink); }
.guarantee__floors { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.guarantee__floor {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.guarantee__floor strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--tri);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.guarantee .btn { flex-shrink: 0; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 26px;
  font-weight: 600;
  color: var(--ink);
  font-size: 16.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 26px 22px; font-size: 15px; }

/* ── SEO guide ── */
.guide { padding-top: 72px; }
.guide__body h3 { font-size: 20px; margin: 34px 0 10px; }
.guide__body p { font-size: 15.5px; }

/* ── Final CTA ── */
.final-cta {
  background: var(--indigo);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(75, 37, 234, .5), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(252, 64, 93, .35), transparent 40%),
    radial-gradient(circle at 60% 20%, rgba(189, 24, 230, .35), transparent 35%);
}
.final-cta__inner { position: relative; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin-bottom: 18px; }
.final-cta > .container > p, .final-cta__inner > p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 540px; margin: 0 auto 40px; }
.final-cta__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
}
.final-cta__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  text-align: center;
}
.final-cta__card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.final-cta__card p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 18px; }
.final-cta__link { color: #ffb3b6; font-weight: 700; font-size: 15px; }
.final-cta__note { font-size: 13.5px !important; margin-top: 6px !important; color: rgba(255,255,255,.55) !important; }

/* ── Footer (indigo) ── */
.footer { background: var(--indigo); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand p { font-size: 14px; margin: 14px 0 20px; max-width: 300px; }
.footer__col h3 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14px; padding: 5px 0; opacity: .75; transition: opacity .15s; }
.footer__col a:hover { opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 13px;
  opacity: .65;
}

/* ── Sticky mobile CTA ── */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(10,10,10,.12);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 90;
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.3; }
.sticky-cta__text strong { color: var(--ink); font-size: 15px; }
.sticky-cta__text span:not(#stickyPrice) { font-size: 12px; color: var(--muted); }

/* ── Social proof toast ── */
.toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(105deg, #0b6bff 0%, #2e66ff 38%, #a13dff 68%, #ff3355 100%);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(10, 10, 10, .3);
  padding: 18px 46px 18px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 95;
  max-width: 400px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.toast.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast__logo {
  flex-shrink: 0;
  width: 74px; height: 74px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast__logo img { width: 46px; height: 46px; }
.toast__body { display: flex; flex-direction: column; gap: 3px; }
.toast strong { color: #fff; font-size: 16.5px; line-height: 1.3; }
#toastAction { font-size: 14px; color: rgba(255,255,255,.94); }
.toast__time { font-size: 13px; color: rgba(255,255,255,.72); }
.toast__close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: 0; cursor: pointer;
  color: #fff; font-size: 15px;
  padding: 4px;
  line-height: 1;
}

/* Brand-kit card hover: border shifts toward primary at low opacity */
.offering:hover, .feature:hover, .pillar:hover, .story:hover { border-color: rgba(252, 64, 93, .28); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .ig-form { margin-left: auto; margin-right: auto; }
  .hero__assurance, .hero__proof { justify-content: center; }
  .offerings { grid-template-columns: 1fr 1fr; }
  .vids { grid-template-columns: repeat(3, 1fr); }
  .vids .vid:nth-child(n+4) { display: none; }
  .testimonials, .stories, .pillars { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .sauce__inner { grid-template-columns: 1fr; text-align: center; }
  .sauce p { margin-left: auto; margin-right: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 15px 26px; border-top: 1px solid var(--line); opacity: 1; }
  .burger { display: flex; }
  .header__login { display: none; }
  .header__actions .btn--sm { display: none; }
  .header__inner { height: 76px; }
  .nav { top: 76px; }
  .ig-form { flex-direction: column; }
  .offerings, .testimonials, .stories, .pillars { grid-template-columns: 1fr; }
  .vids { grid-template-columns: 1fr 1fr; }
  .vids .vid:nth-child(n+4) { display: flex; }
  .vids .vid:nth-child(n+5) { display: none; }
  .section { padding: 64px 0; }
  .float-chip--1 { left: 0; }
  .float-chip--2 { right: 0; }
  .float-chip--3 { left: 4%; }
  .guarantee__inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .plan { padding: 38px 24px 34px; }
  .plan__desc { min-height: 0; }
  .billing-toggle__btn { padding: 10px 14px; font-size: 13.5px; }
  .final-cta__options { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .toast { left: 12px; right: 12px; bottom: 76px; max-width: none; padding: 14px 42px 14px 14px; }
  .toast__logo { width: 58px; height: 58px; border-radius: 13px; }
  .toast__logo img { width: 36px; height: 36px; }
  .toast strong { font-size: 15px; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .tip:hover::after,
  .tip:focus-visible::after,
  .tip:active::after { width: 190px; }
  .footer__bottom { padding-bottom: 96px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-chip, .sauce__ring { animation: none; }
  .preview__fill { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .offering, .pillar, .story, .sticky-cta, .toast { transition: none; }
}
