/* ===========================================================
   VIRALY POST — Landing Page
   Direction: Royal Purple · C Orbit
   =========================================================== */

:root {
  /* Brand · Royal Purple */
  --vp-royal-ink:    #3B0764;
  --vp-royal-600:    #6D28D9;
  --vp-royal-400:    #8B5CF6;
  --vp-royal-300:    #C4B5FD;
  --vp-royal-50:     #F5EFFF;

  /* Surfaces */
  --vp-paper:        #FAF8FE;
  --vp-paper-2:      #F3EBFF;
  --vp-white:        #FFFFFF;

  /* Ink */
  --vp-ink:          #1A0B2E;
  --vp-ink-2:        #3F2A5F;
  --vp-muted:        rgba(26, 11, 46, 0.55);
  --vp-hair:         rgba(26, 11, 46, 0.08);
  --vp-hair-2:       rgba(26, 11, 46, 0.14);

  /* Semantic */
  --vp-success:      #1F8A5B;
  --vp-warning:      #C97A1A;
  --vp-danger:       #C0263A;

  /* Type */
  --vp-sans:   'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --vp-serif:  'Instrument Serif', Georgia, serif;
  --vp-mono:   'Geist Mono', ui-monospace, monospace;

  /* Radii */
  --vp-radius-sm:  6px;
  --vp-radius-md:  10px;
  --vp-radius-lg:  16px;
  --vp-radius-xl:  24px;

  /* Shadow */
  --vp-shadow-cta:  0 1px 0 rgba(255,255,255,0.18) inset,
                    0 10px 22px -10px rgba(109,40,217,0.7);
  --vp-shadow-card: 0 18px 40px -22px rgba(59,7,100,0.25);
}

/* ============ Reset / base ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--vp-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--vp-ink);
  background: var(--vp-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============ Typography ============ */
.h-display {
  font-family: var(--vp-sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.6rem);
  line-height: 1.05;
  color: var(--vp-ink);
}
.h-display em {
  font-family: var(--vp-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--vp-royal-600);
  letter-spacing: -0.01em;
}
.accent {
  color: var(--vp-royal-600);
}
.h-display--light .accent {
  color: var(--vp-royal-300);
}
.h-display--light { color: var(--vp-white); }
.h-display--light em { color: var(--vp-royal-300); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--vp-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vp-royal-600);
  background: var(--vp-royal-50);
  border: 1px solid var(--vp-hair);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light {
  color: var(--vp-royal-300);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.eyebrow--xl {
  font-size: 15px;
  letter-spacing: 0.18em;
  padding: 9px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  font-weight: 600;
}

.lead {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
  line-height: 1.55;
  color: var(--vp-ink-2);
  max-width: 56ch;
}
.lead--light { color: rgba(255,255,255,0.78); }
.lead + .lead { margin-top: 14px; }
.lead strong, .lead b { color: var(--vp-ink); font-weight: 600; }
.lead--light strong, .lead--light b { color: var(--vp-white); }

.section__head { margin-bottom: 40px; max-width: 720px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }
.section__head .h-display + .lead { margin-top: 22px; }

.micro { font-size: 13px; color: var(--vp-muted); }
.micro--light { color: rgba(255,255,255,0.6); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 18px;
  border-radius: var(--vp-radius-md);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(180deg, var(--vp-royal-400), var(--vp-royal-600));
  color: var(--vp-white);
  box-shadow: var(--vp-shadow-cta);
}
.btn--primary:hover {
  background: linear-gradient(180deg, var(--vp-royal-600), var(--vp-royal-ink));
}
.btn--outline {
  background: var(--vp-white);
  color: var(--vp-royal-600);
  border: 1px solid var(--vp-hair-2);
}
.btn--outline:hover { border-color: var(--vp-royal-400); }
.btn--ghost {
  color: var(--vp-ink);
}
.btn--ghost:hover { color: var(--vp-royal-600); }
.btn--link {
  color: var(--vp-ink-2);
  padding-inline: 6px;
}
.btn--link:hover { color: var(--vp-royal-600); }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 22px; font-size: 16px; border-radius: 12px; }
.btn--xl { padding: 18px 28px; font-size: 17px; border-radius: 14px; }
.btn--mini { padding: 6px 10px; font-size: 12px; background: var(--vp-royal-50); color: var(--vp-royal-600); border-radius: 8px; }

/* ============ Nav ============ */
.nav {
  position: static;
  background: rgba(250,248,254,0.78);
  border-bottom: 1px solid var(--vp-hair);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--vp-ink);
}
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--vp-ink-2);
}
.nav__links a:hover { color: var(--vp-royal-600); }
.nav__actions { display: flex; gap: 10px; align-items: center; }

@media (max-width: 820px) {
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .nav__actions .btn--ghost { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% -10%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(40% 50% at 0% 20%, rgba(196,181,253,0.25), transparent 60%),
    linear-gradient(180deg, var(--vp-paper), var(--vp-paper));
  z-index: -1;
}
.hero__top { text-align: center; max-width: 880px; margin-inline: auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--vp-ink-2);
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px -10px rgba(59,7,100,0.18);
}
.hero__title {
  font-family: var(--vp-sans);
  font-weight: 600;
  font-size: clamp(1.8125rem, 0.3rem + 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--vp-ink);
  margin-bottom: 20px;
}
.hero__title em {
  font-family: var(--vp-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--vp-royal-600);
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: var(--vp-ink-2);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero__sub strong { color: var(--vp-ink); font-weight: 600; }
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--vp-muted);
}

/* Preview mock */
.hero__preview {
  position: relative;
  margin-top: 48px;
}
.preview {
  position: relative;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-xl);
  box-shadow: var(--vp-shadow-card), 0 50px 120px -50px rgba(59,7,100,0.35);
  overflow: hidden;
}
.preview__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--vp-paper-2);
  border-bottom: 1px solid var(--vp-hair);
}
.preview__chrome > span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--vp-hair-2);
}
.preview__chrome > span:nth-child(1) { background: #FF5F57; }
.preview__chrome > span:nth-child(2) { background: #FEBC2E; }
.preview__chrome > span:nth-child(3) { background: #28C840; }
.preview__url {
  margin-left: 14px;
  font-family: var(--vp-mono);
  font-size: 11px;
  color: var(--vp-muted);
  background: var(--vp-white);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--vp-hair);
}
.preview__body { display: grid; grid-template-columns: 220px 1fr; }
.preview__side {
  padding: 18px 12px;
  border-right: 1px solid var(--vp-hair);
  background: linear-gradient(180deg, var(--vp-paper), var(--vp-white));
}
.side__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--vp-ink-2);
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 2px;
}
.side__item--active {
  background: var(--vp-royal-50);
  color: var(--vp-ink);
  font-weight: 500;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vp-hair-2); display: inline-block; }
.dot--purple { background: var(--vp-royal-400); box-shadow: 0 0 0 3px rgba(139,92,246,0.16); }
.dot--green { background: var(--vp-success); box-shadow: 0 0 0 3px rgba(31,138,91,0.18); }
.dot--orange { background: var(--vp-warning); box-shadow: 0 0 0 3px rgba(201,122,26,0.18); }

.preview__cal { padding: 18px 20px; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cal__head > span {
  font-family: var(--vp-serif);
  font-style: italic;
  font-size: 22px;
}
.cal__plats { display: flex; gap: 4px; }
.plat {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  font-style: normal; font-size: 10px; font-weight: 600;
  background: var(--vp-paper-2); color: var(--vp-ink-2);
  border: 1px solid var(--vp-hair);
}
.plat--ig { background: linear-gradient(135deg, #FEDA77, #F58529 40%, #DD2A7B 70%, #8134AF); color: white; border-color: transparent; }
.plat--tt { background: #000; color: white; border-color: transparent; }
.plat--li { background: #0A66C2; color: white; border-color: transparent; }
.plat--yt { background: #FF0000; color: white; border-color: transparent; }
.plat--fb { background: #1877F2; color: white; border-color: transparent; }
.plat--x  { background: #000; color: white; border-color: transparent; }

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal__day {
  font-family: var(--vp-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vp-muted);
  padding: 4px;
  text-align: center;
}
.cal__cell {
  background: var(--vp-paper);
  border: 1px solid var(--vp-hair);
  border-radius: 10px;
  padding: 8px;
  min-height: 84px;
  position: relative;
}
.cal__cell i {
  display: block;
  font-style: normal;
  font-family: var(--vp-mono);
  font-size: 11px;
  color: var(--vp-muted);
  margin-bottom: 6px;
}
.cal__cell--today { background: var(--vp-royal-50); border-color: var(--vp-royal-300); }
.cal__cell--today i { color: var(--vp-royal-600); font-weight: 600; }
.pill {
  display: block;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 6px;
  margin-bottom: 3px;
  background: var(--vp-white);
  color: var(--vp-ink-2);
  border: 1px solid var(--vp-hair);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pill--ig { border-color: rgba(221,42,123,0.4); color: #B91C5C; background: rgba(254,218,119,0.12); }
.pill--tt { border-color: rgba(0,0,0,0.4); color: var(--vp-ink); }
.pill--x  { border-color: rgba(0,0,0,0.4); color: var(--vp-ink); }
.pill--li { border-color: rgba(10,102,194,0.3); color: #0A66C2; background: rgba(10,102,194,0.05); }
.pill--yt { border-color: rgba(255,0,0,0.3); color: #C00; background: rgba(255,0,0,0.04); }
.pill--fb { border-color: rgba(24,119,242,0.3); color: #1877F2; background: rgba(24,119,242,0.05); }

.cal__foot {
  display: flex; align-items: center; gap: 18px;
  margin-top: 14px;
}
.cal__legend {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--vp-muted);
}
.cal__foot .btn--mini { margin-left: auto; }

.preview__glow {
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 60%;
  background: radial-gradient(50% 50% at 50% 0%, rgba(139,92,246,0.35), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

@media (max-width: 720px) {
  .preview__body { grid-template-columns: 1fr; }
  .preview__side { display: none; }
  .cal__cell { min-height: 64px; }
}

/* ============ Stats ============ */
.stats {
  padding: 56px 0;
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(40% 40% at 80% 70%, rgba(196,181,253,0.18), transparent 60%);
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__num {
  font-family: var(--vp-sans);
  font-weight: 700;
  font-size: clamp(2.8rem, 1.8rem + 3vw, 4.6rem);
  line-height: 1;
  color: var(--vp-white);
  letter-spacing: -0.04em;
}
.stat__num span {
  font-family: var(--vp-sans);
  font-size: 0.4em;
  font-weight: 600;
  color: var(--vp-royal-300);
  vertical-align: 0.6em;
  margin-left: 2px;
  letter-spacing: -0.01em;
}
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--vp-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ============ Value ============ */
.value {
  padding: 72px 0;
}
.value__copy {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.value__copy .btn { margin-top: 28px; }
.value__copy .h-display { margin-bottom: 24px; }
.value__copy .lead { margin-inline: auto; }

/* ============ Stories marquee ============ */
.stories {
  padding: 48px 0 64px;
  overflow: hidden;
  background: #19191b;
}
.stories__solo {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 24px;
}
@media (max-width: 600px) {
  .stories__solo { margin-top: 28px; padding: 0 16px; }
}
.stories__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.stories__track {
  --story-w: 320px;
  --story-gap: 20px;
  --story-count: 10;
  display: flex;
  gap: var(--story-gap);
  width: max-content;
  animation: stories-scroll 50s linear infinite;
  animation-play-state: paused;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.stories__track:active { cursor: grabbing; }
.stories__track img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.stories.is-visible .stories__track { animation-play-state: running; }
@keyframes stories-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc((var(--story-w) + var(--story-gap)) * var(--story-count) * -1)); }
}
.story {
  flex-shrink: 0;
  width: var(--story-w);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--vp-paper-2);
  box-shadow: var(--vp-shadow-card);
}
.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .stories__track {
    --story-w: 370px;
    --story-gap: 16px;
  }
  .story { border-radius: 20px; }
}
@media (max-width: 480px) {
  .stories__track {
    --story-w: 330px;
    --story-gap: 14px;
  }
}

/* ============ How ============ */
.how { padding: 72px 0; background: var(--vp-paper-2); border-top: 1px solid var(--vp-hair); border-bottom: 1px solid var(--vp-hair); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-lg);
  padding: 28px;
  box-shadow: var(--vp-shadow-card);
}
.step__num {
  font-family: var(--vp-mono);
  font-size: 13px;
  color: var(--vp-royal-600);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 21px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step p {
  color: var(--vp-ink-2);
  font-size: 14.5px;
}
.step__mock {
  min-height: 200px;
  background: var(--vp-paper);
  border-radius: 12px;
  border: 1px dashed var(--vp-hair-2);
  margin-top: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step__mock--upload .upload__zone {
  text-align: center;
  color: var(--vp-ink-2);
}
.upload__zone svg { margin: 0 auto 12px; color: var(--vp-royal-400); }
.upload__zone p { font-size: 14px; color: var(--vp-ink); }
.upload__alt { margin-top: 8px; font-size: 12px; color: var(--vp-muted); }

.step__mock--accounts { gap: 8px; }
.acc {
  display: flex; align-items: center; gap: 10px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
}
.acc .check { margin-left: auto; color: var(--vp-success); font-weight: 700; }
.acc--off { opacity: 0.45; }

.step__mock--publish .pub__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 6px;
}
.pub__row--on { border-color: var(--vp-royal-400); background: var(--vp-royal-50); color: var(--vp-royal-600); font-weight: 500; }
.radio { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--vp-hair-2); }
.radio--on { border-color: var(--vp-royal-600); background: radial-gradient(circle, var(--vp-royal-600) 40%, transparent 50%); }
.step__mock--publish .btn { margin-top: 8px; }

.how__totaltime {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 999px;
  max-width: max-content;
  margin-inline: auto;
  box-shadow: var(--vp-shadow-card);
}
.how__totaltime span { color: var(--vp-muted); font-size: 14px; }
.how__totaltime b {
  font-family: var(--vp-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--vp-royal-600);
}

@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============ Platforms ============ */
.platforms { padding: 64px 0; border-bottom: 1px solid var(--vp-hair); }
.platforms .section__head { margin-bottom: 36px; }
.platforms__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 36px 48px;
}
.plogo {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  opacity: 0.85;
  transition: opacity .2s ease, transform .2s ease;
}
.plogo svg { width: 100%; height: 100%; display: block; }
.plogo:hover { opacity: 1; transform: translateY(-2px); }

/* Mini platform logo (used inside acc rows & feature mock) */
.platlogo {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.platlogo svg { width: 100%; height: 100%; display: block; }
.platlogo--lg { width: 28px; height: 28px; }

/* ============ Quotes ============ */
.quotes { padding: 72px 0; }
.quotes--alt { padding: 88px 0 72px; background: var(--vp-paper-2); }
.quotes--mid { padding: 72px 0; background: var(--vp-paper); }
.quotes--mid .section__head { margin-bottom: 36px; }
.quotes--dark {
  background: var(--vp-royal-ink);
  position: relative;
  overflow: hidden;
}
.quotes--dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(139,92,246,0.30), transparent 60%),
    radial-gradient(40% 40% at 80% 70%, rgba(196,181,253,0.16), transparent 60%);
  pointer-events: none;
}
.quotes--dark > .container { position: relative; }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.quotes__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) {
  .quotes__grid--3 { grid-template-columns: 1fr; }
}
.quotes__grid--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.quotes__grid--5 .quote { padding: 22px; }
.quotes__grid--5 blockquote { font-size: 16px; margin-bottom: 16px; }
.quotes__grid--5 .avatar { width: 32px; height: 32px; font-size: 11px; }
.quotes__grid--5 figcaption { padding-top: 14px; }
.quotes__grid--5 figcaption b { font-size: 13px; }
.quotes__grid--5 figcaption i { font-size: 11px; }
@media (max-width: 1100px) {
  .quotes__grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .quotes__grid--5 { grid-template-columns: 1fr; }
}
.quote {
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-lg);
  padding: 28px;
  box-shadow: var(--vp-shadow-card);
}
.quote--img {
  padding: 0;
  overflow: hidden;
}
.quote--img img {
  width: 100%;
  height: auto;
  display: block;
}
.quote blockquote {
  font-family: var(--vp-serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--vp-ink);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.quote figcaption {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--vp-hair);
  padding-top: 18px;
}
.quote figcaption > div { display: flex; flex-direction: column; }
.quote figcaption b { font-size: 14px; font-weight: 600; }
.quote figcaption i { font-style: normal; font-size: 12px; color: var(--vp-muted); }
.avatar {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
  color: var(--vp-white);
  background: linear-gradient(135deg, var(--vp-royal-400), var(--vp-royal-ink));
}
.avatar--2 { background: linear-gradient(135deg, #F58529, #DD2A7B); }
.avatar--3 { background: linear-gradient(135deg, #0A66C2, var(--vp-royal-ink)); }
.avatar--4 { background: linear-gradient(135deg, #1F8A5B, #3F2A5F); }
.avatar--5 { background: linear-gradient(135deg, #C97A1A, var(--vp-royal-ink)); }
.avatar--6 { background: linear-gradient(135deg, #C0263A, var(--vp-royal-ink)); }

@media (max-width: 720px) {
  .quotes__grid { grid-template-columns: 1fr; }
  .quote blockquote { font-size: 19px; }
}

/* ============ Auto-approval flow ============ */
.autoflow { padding: 88px 0; background: var(--vp-paper); text-align: center; }
.autoflow__inner { max-width: 820px; }
.autoflow__icons { display: flex; justify-content: center; gap: 6px; font-size: 40px; margin-bottom: 18px; line-height: 1; }
.autoflow__inner .h-display { margin: 0 0 44px; font-size: clamp(1.5rem, 1rem + 1.6vw, 2.5rem); }
.autoflow__visual {
  margin: 0 auto 36px;
  max-width: 560px;
}
.autoflow__visual img { display: block; width: 100%; height: auto; }
.autoflow__pill {
  position: absolute;
  z-index: 3;
  font-family: var(--vp-mono);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.04);
}
.autoflow__pill--good {
  background: #d4f4dd;
  color: #1f8a5b;
  left: -28px;
  top: 32%;
}
.autoflow__pill--info {
  background: #dbeafe;
  color: #1e60c4;
  right: -32px;
  top: 56%;
}
.autoflow__post {
  width: 260px;
  background: #fff;
  border: 1px solid var(--vp-hair);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(15, 8, 40, 0.18);
  text-align: left;
}
.autoflow__posthead {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
}
.autoflow__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  flex-shrink: 0;
}
.autoflow__handle { flex: 1; }
.autoflow__dots { color: var(--vp-ink-2, #6b6b7b); font-size: 16px; }
.autoflow__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, #2a1248 0%, #6D28D9 55%, #8B5CF6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  font-family: var(--vp-display, var(--vp-sans));
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  padding: 0 20px;
}
.autoflow__mediatext { font-weight: 500; }
.autoflow__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 6px;
  font-size: 18px;
  color: var(--vp-ink);
}
.autoflow__bookmark { margin-left: auto; }
.autoflow__caption {
  padding: 0 12px 12px;
  font-size: 12px;
  color: var(--vp-ink);
}
.autoflow__sub {
  font-size: 22px;
  line-height: 1.5;
  color: var(--vp-ink);
  max-width: 680px;
  margin: 0 auto;
}
.autoflow__sub b { color: var(--vp-royal-ink); }

@media (max-width: 600px) {
  .autoflow { padding: 56px 0; }
  .autoflow__inner .h-display { font-size: 21px; line-height: 1.25; margin-bottom: 32px; }
  .autoflow__visual { margin-bottom: 28px; }
  .autoflow__post { width: 220px; }
  .autoflow__pill { font-size: 12px; padding: 7px 13px; }
  .autoflow__pill--good { left: -12px; }
  .autoflow__pill--info { right: -16px; }
  .autoflow__sub { font-size: 20px; padding: 0 8px; }
  .autoflow__icons { font-size: 32px; gap: 4px; }
}

/* ============ Divider banner ============ */
.divider {
  padding: 36px 0;
  background: #19191b;
  text-align: center;
}
.divider__text {
  margin: 0 auto;
  max-width: 920px;
  padding: 0 24px;
  font-family: var(--vp-mono);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vp-white);
}
@media (max-width: 600px) {
  .divider { padding: 26px 0; }
  .divider__text { font-size: 16px; padding: 0 10px; letter-spacing: 0.04em; }
}

/* ============ Dedicated spaces ============ */
.spaces { padding: 96px 0; background: var(--vp-paper); }
.spaces__inner { max-width: 980px; }
.spaces__head { text-align: center; margin-bottom: 40px; }
.spaces__head--mid { margin-top: 96px; }
.spaces__head .eyebrow { display: inline-block; margin-bottom: 12px; }
.spaces__head .h-display { margin: 0; }
.spaces__mock { margin: 0 auto 24px; max-width: 880px; }
.spaces__mock > img,
.spaces__mock > video { display: block; width: 100%; height: auto; border-radius: 16px; }
.spaces__features {
  list-style: none;
  margin: 8px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}
.spaces__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--vp-ink);
  font-weight: 500;
}
.spaces__features .check {
  font-size: 22px;
  line-height: 1;
}

/* ----- Client dashboard mock ----- */
.cdash {
  background: #fff;
  border: 1px solid var(--vp-hair);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 48px -20px rgba(15,8,40,0.18);
}
.cdash__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cdash__bar b { font-size: 15px; }
.cdash__btn {
  margin-left: auto;
  font-family: var(--vp-mono);
  font-size: 12px;
  padding: 7px 12px;
  background: var(--vp-royal-600);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}
.cdash__filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--vp-hair);
  margin-bottom: 16px;
}
.cdash__search {
  flex: 1;
  font-size: 12px;
  color: var(--vp-muted);
  background: var(--vp-paper-2);
  padding: 8px 12px;
  border-radius: 8px;
}
.cdash__sort {
  font-size: 12px;
  color: var(--vp-ink);
  font-weight: 500;
}
.cdash__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ccard {
  position: relative;
  background: #fff;
  border: 1px solid var(--vp-hair);
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
}
.ccard__strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
}
.ccard__strip--g1 { background: linear-gradient(135deg, #ffe2ec, #ffd1dc); }
.ccard__strip--g2 { background: linear-gradient(135deg, #e0d4ff, #c6b8ff); }
.ccard__strip--g3 { background: linear-gradient(135deg, #fff3c4, #ffe49b); }
.ccard__strip--g4 { background: linear-gradient(135deg, #ffd6c4, #ffc1a8); }
.ccard__strip--g5 { background: linear-gradient(135deg, #c9f0de, #a8e8c8); }
.ccard__strip--g6 { background: linear-gradient(135deg, #fde2c4, #fac98b); }
.ccard__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.ccard__row b {
  flex: 1;
  font-size: 13px;
  color: var(--vp-ink);
}
.ccard__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vp-mono);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid #fff;
}
.ccard__av--1 { background: linear-gradient(135deg, #f472b6, #db2777); }
.ccard__av--2 { background: linear-gradient(135deg, #a78bfa, #6d28d9); }
.ccard__av--3 { background: linear-gradient(135deg, #fbbf24, #d97706); }
.ccard__av--4 { background: linear-gradient(135deg, #fb7185, #e11d48); }
.ccard__av--5 { background: linear-gradient(135deg, #4ade80, #15803d); }
.ccard__av--6 { background: linear-gradient(135deg, #fb923c, #c2410c); }
.ccard__tag {
  font-family: var(--vp-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 7px;
  background: rgba(109,40,217,0.1);
  color: var(--vp-royal-600);
  border-radius: 999px;
}
.ccard__role {
  display: block;
  margin: 6px 0 12px;
  font-size: 11px;
  color: var(--vp-muted);
  font-style: normal;
}
.ccard__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--vp-muted);
}
.ccard__meta .dot { width: 6px; height: 6px; box-shadow: none; }

/* ----- Big content calendar mock ----- */
.bigcal {
  background: #fff;
  border: 1px solid var(--vp-hair);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 48px -20px rgba(15,8,40,0.18);
}
.bigcal__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.bigcal__nav { font-size: 14px; color: var(--vp-ink); }
.bigcal__nav b { margin: 0 8px; }
.bigcal__stats {
  margin-left: auto;
  display: flex;
  gap: 18px;
}
.bigcal__stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: var(--vp-muted);
}
.bigcal__stats b { font-size: 18px; color: var(--vp-ink); line-height: 1; }
.bigcal__stats i { font-style: normal; }
.bigcal__filter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--vp-hair);
  margin-bottom: 14px;
}
.bigcal__search {
  flex: 1;
  font-size: 12px;
  color: var(--vp-muted);
  background: var(--vp-paper-2);
  padding: 8px 12px;
  border-radius: 8px;
}
.bigcal__view {
  font-size: 12px;
  color: var(--vp-muted);
}
.bigcal__view b {
  background: rgba(109,40,217,0.1);
  color: var(--vp-royal-600);
  padding: 4px 8px;
  border-radius: 6px;
}
.bigcal__btn {
  font-family: var(--vp-mono);
  font-size: 12px;
  padding: 7px 12px;
  background: var(--vp-royal-600);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}
.bigcal__head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}
.bigcal__head span {
  text-align: center;
  font-family: var(--vp-mono);
  font-size: 11px;
  color: var(--vp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bigcal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.bcell {
  aspect-ratio: 1 / 1;
  background: var(--vp-paper-2);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  min-height: 64px;
}
.bcell > span { font-size: 11px; color: var(--vp-ink); font-weight: 500; }
.bcell--off > span { color: var(--vp-muted); opacity: 0.4; }
.bevt {
  font-style: normal;
  font-size: 9px;
  padding: 3px 5px;
  border-radius: 4px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bevt--ok {
  background: rgba(31,138,91,0.12);
  color: #1f8a5b;
}
.bevt--warn {
  background: rgba(201,122,26,0.12);
  color: #c97a1a;
}

/* ----- Demo video ----- */
.spaces__mock--video { max-width: 340px; margin-top: 40px; }
.spaces__mock--video > video { border-radius: 28px; }

@media (max-width: 900px) {
  .cdash__grid { grid-template-columns: repeat(2, 1fr); }
  .bigcal__stats { gap: 10px; }
  .bigcal__filter { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .spaces { padding: 56px 0 16px; }
  .spaces__head--mid { margin-top: 64px; }
  .spaces__head .h-display { font-size: 26px; }
  .cdash, .bigcal { padding: 12px; border-radius: 12px; }
  .cdash__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ccard { padding: 10px; }
  .ccard__row b { font-size: 11px; }
  .ccard__tag { display: none; }
  .ccard__meta { font-size: 10px; }
  .bigcal__bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bigcal__stats { margin-left: 0; gap: 14px; }
  .bigcal__filter { flex-direction: column; align-items: stretch; gap: 8px; }
  .bigcal__search { width: 100%; }
  .bcell { min-height: 48px; padding: 4px; }
  .bcell > span { font-size: 10px; }
  .bevt { font-size: 8px; padding: 2px 3px; }
  .spaces__features li { font-size: 16px; }
  .spaces__mock--video { max-width: 330px; }
}

/* ============ Before / After ============ */
.ba { padding: 72px 0; background: var(--vp-paper-2); border-top: 1px solid var(--vp-hair); border-bottom: 1px solid var(--vp-hair); }
.ba__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba__col {
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.ba__col header { margin-bottom: 22px; }
.ba__tag {
  display: inline-block;
  font-family: var(--vp-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.ba__tag--bad { background: rgba(192,38,58,0.08); color: var(--vp-danger); }
.ba__tag--good { background: rgba(31,138,91,0.1); color: var(--vp-success); }

.ba__col ul li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 16px;
  color: var(--vp-ink);
  border-bottom: 1px solid var(--vp-hair);
}
.ba__col ul li:last-child { border-bottom: 0; }
.ba__col--before ul li::before {
  content: "✕";
  position: absolute; left: 0; top: 12px;
  color: var(--vp-danger);
  font-weight: 700;
}
.ba__col--after ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 12px;
  color: var(--vp-success);
  font-weight: 700;
}

.ba__big {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--vp-hair);
  display: flex; align-items: baseline; gap: 14px;
}
.ba__big b {
  font-family: var(--vp-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--vp-danger);
  line-height: 1;
}
.ba__big--good b { color: var(--vp-royal-600); }
.ba__big span { font-size: 13px; color: var(--vp-muted); }

.ba__col--after { background: linear-gradient(180deg, var(--vp-white), var(--vp-royal-50)); border-color: var(--vp-royal-300); }

.ba__cta {
  margin-top: 48px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
}
.ba__cta span { color: var(--vp-muted); font-size: 13px; }

@media (max-width: 820px) {
  .ba__grid { grid-template-columns: 1fr; }
}

/* ============ Features ============ */
.features { padding: 80px 0; }
.features__sub {
  margin-top: 18px;
  font-family: var(--vp-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vp-royal-600);
  max-width: none;
}
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fcard {
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}
.fcard:hover {
  transform: translateY(-2px);
  border-color: var(--vp-royal-300);
  box-shadow: var(--vp-shadow-card);
}
.fcard--lg { grid-column: span 2; }
.fcard__icon {
  font-size: 22px;
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  background: var(--vp-royal-50);
  border-radius: 10px;
  margin-bottom: 0;
}
.fcard h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}
.fcard > p {
  grid-column: 1 / -1;
  margin-top: 10px;
}
.fcard > .fmock {
  grid-column: 1 / -1;
}
.fcard p {
  color: var(--vp-ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.fcard__mini {
  margin-top: 18px;
  padding: 14px;
  background: var(--vp-paper);
  border-radius: 10px;
  border: 1px solid var(--vp-hair);
}
.fcard__mini .bar {
  height: 6px;
  background: var(--vp-paper-2);
  border-radius: 999px;
  margin-bottom: 6px;
  overflow: hidden;
}
.fcard__mini .bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--vp-royal-400), var(--vp-royal-600));
  border-radius: 999px;
}
.fcard__mini small { font-family: var(--vp-mono); font-size: 11px; color: var(--vp-muted); }
.fcard__mini--cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 12px;
}
.fcard__mini--cal i {
  display: block; height: 14px; border-radius: 3px;
  background: var(--vp-paper-2);
}
.fcard__mini--cal i:nth-child(3n) { background: var(--vp-royal-300); }
.fcard__mini--cal i:nth-child(5n) { background: var(--vp-royal-400); }

/* ---- Feature mocks (TROCAR 17) ---- */
.fmock {
  background: linear-gradient(180deg, var(--vp-paper), var(--vp-paper-2));
  border: 1px solid var(--vp-hair);
  border-radius: 12px;
  padding: 18px;
  margin-top: 22px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

/* Post in 15s */
.fmock--post15s { gap: 14px; }
.fmock--post15s .fmock__row { display: flex; gap: 6px; flex-wrap: wrap; }
.fmock--post15s .plat { width: 28px; height: 28px; font-size: 11px; border-radius: 8px; }
.fmock--post15s .bar { height: 8px; background: var(--vp-white); border-radius: 999px; overflow: hidden; border: 1px solid var(--vp-hair); }
.fmock--post15s .bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--vp-royal-400), var(--vp-royal-600));
  border-radius: 999px;
  animation: fillbar 2.4s ease-in-out infinite;
}
@keyframes fillbar {
  0% { width: 8%; }
  50% { width: 100%; }
  100% { width: 8%; }
}
.fmock__caption { font-size: 12px; color: var(--vp-ink-2); display: flex; align-items: center; gap: 8px; font-family: var(--vp-mono); }
.fmock__caption b { color: var(--vp-royal-600); }

/* Resize frames */
.fmock--resize { flex-direction: row; align-items: flex-end; justify-content: center; gap: 14px; }
.frame {
  background: var(--vp-white);
  border: 1.5px solid var(--vp-royal-300);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--vp-mono); font-size: 11px; color: var(--vp-royal-600);
  position: relative;
  background-image: linear-gradient(135deg, var(--vp-royal-50) 25%, transparent 25%, transparent 50%, var(--vp-royal-50) 50%, var(--vp-royal-50) 75%, transparent 75%);
  background-size: 8px 8px;
}
.frame--vert { width: 38px; height: 100px; }
.frame--sq   { width: 70px; height: 70px; }
.frame--horz { width: 110px; height: 60px; }

/* Best time clock */
.fmock--time { flex-direction: row; align-items: center; gap: 16px; }
.clock {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--vp-white);
  border: 2px solid var(--vp-royal-300);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 4px var(--vp-paper);
}
.clock__hand {
  position: absolute;
  left: 50%; top: 50%;
  background: var(--vp-royal-600);
  border-radius: 4px;
  transform-origin: 50% 100%;
}
.clock__hand--h { width: 3px; height: 20px; transform: translate(-50%, -100%) rotate(195deg); }
.clock__hand--m { width: 2px; height: 28px; transform: translate(-50%, -100%) rotate(90deg); background: var(--vp-royal-400); }
.clock__dot { position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--vp-royal-600); transform: translate(-50%, -50%); }
.fmock__peak { display: flex; align-items: center; gap: 8px; }
.fmock__peak b { display: block; font-size: 14px; color: var(--vp-ink); font-family: var(--vp-sans); }
.fmock__peak i { display: block; font-style: normal; font-size: 12px; color: var(--vp-success); font-family: var(--vp-mono); }

/* Accounts avatars */
.fmock--accounts { flex-direction: row; align-items: center; justify-content: center; gap: 0; }
.av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--vp-mono); font-size: 11px; font-weight: 700;
  color: var(--vp-white);
  border: 2px solid var(--vp-white);
  margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.av--1 { background: linear-gradient(135deg, #F58529, #DD2A7B); }
.av--2 { background: linear-gradient(135deg, var(--vp-royal-400), var(--vp-royal-ink)); }
.av--3 { background: linear-gradient(135deg, #0A66C2, #3F2A5F); }
.av--4 { background: linear-gradient(135deg, #1F8A5B, #3F2A5F); }
.av--5 { background: linear-gradient(135deg, #C97A1A, var(--vp-royal-ink)); }
.av--more { background: var(--vp-paper-2); color: var(--vp-royal-600); border-color: var(--vp-royal-300); }

/* Mini calendar (Visual cal big card) */
.minical { width: 100%; }
.minical__head {
  font-family: var(--vp-serif); font-style: italic;
  font-size: 18px; color: var(--vp-ink-2);
  margin-bottom: 10px; text-align: left;
}
.minical__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.minical__grid i {
  display: block; height: 18px; border-radius: 4px;
  background: var(--vp-white); border: 1px solid var(--vp-hair);
}
.minical__c { background: var(--vp-royal-50) !important; border-color: var(--vp-royal-300) !important; }
.minical__c--p { background: var(--vp-royal-400) !important; border-color: var(--vp-royal-600) !important; }
.minical__c--today { background: var(--vp-royal-600) !important; border-color: var(--vp-royal-ink) !important; box-shadow: 0 0 0 2px var(--vp-royal-300); }

/* Approvals */
.fmock--approve { gap: 8px; }
.approve__link {
  display: flex; align-items: center; gap: 8px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--vp-mono); font-size: 12px;
  color: var(--vp-royal-600);
}
.approve__link .lock { font-size: 14px; }
.approve__link .url { color: var(--vp-ink-2); }
.approve__row {
  display: flex; align-items: center; gap: 8px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--vp-ink-2);
}
.thumb { display: inline-block; width: 18px; height: 18px; border-radius: 4px; background: linear-gradient(135deg, var(--vp-royal-300), var(--vp-royal-400)); }
.approve__row .ok { margin-left: auto; color: var(--vp-success); font-family: var(--vp-mono); font-size: 11px; }

/* Shareable */
.fmock--share { gap: 10px; }
.share__url {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--vp-mono); font-size: 12px;
  color: var(--vp-ink-2);
}
.share__url b { color: var(--vp-royal-600); font-family: var(--vp-sans); font-size: 12px; }
.share__cal { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.share__cal i { height: 14px; border-radius: 3px; background: var(--vp-paper-2); }
.share__cal i.on { background: var(--vp-royal-400); }
.fmock--share small { font-family: var(--vp-mono); font-size: 11px; color: var(--vp-muted); display: flex; align-items: center; gap: 6px; }

/* Recycle */
.fmock--recycle { align-items: center; }
.fmock--recycle svg { width: 72px; height: 72px; animation: spin 8s linear infinite; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.recycle__pill {
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--vp-ink-2);
  font-family: var(--vp-mono);
}

/* Analytics */
.fmock--analytics { gap: 12px; }
.abar { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.abar b {
  flex: 1;
  background: linear-gradient(180deg, var(--vp-royal-400), var(--vp-royal-600));
  border-radius: 4px 4px 0 0;
  display: block;
}
.astats { display: flex; gap: 14px; font-family: var(--vp-mono); font-size: 11px; color: var(--vp-muted); }
.astats b { color: var(--vp-success); font-family: var(--vp-mono); }

@media (max-width: 920px) {
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .fcard--lg { grid-column: span 2; }
}
@media (max-width: 600px) {
  .fgrid { grid-template-columns: 1fr; }
  .fcard--lg { grid-column: span 1; }
}

/* ============ Bonus ============ */
.bonus { padding: 72px 0; background: linear-gradient(180deg, var(--vp-paper-2), var(--vp-paper)); border-top: 1px solid var(--vp-hair); }
.bonus__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.bonus__head .lead { margin-inline: auto; }
.bonus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bcard {
  background: var(--vp-white);
  border: 1px solid var(--vp-royal-300);
  border-radius: var(--vp-radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--vp-shadow-card);
}
.bcard__tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--vp-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  padding: 4px 8px;
  border-radius: 999px;
}
.bcard h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -0.015em; }
.bcard__price {
  margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 12px;
}
.bcard__price s {
  color: var(--vp-danger);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--vp-sans);
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
}
.bcard__price b {
  color: var(--vp-success);
  font-family: var(--vp-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
}
.bcard p { color: var(--vp-ink-2); font-size: 14px; }

/* ---- Bonus mocks ---- */
.bmock {
  margin-top: 20px;
  background: linear-gradient(180deg, var(--vp-paper), var(--vp-paper-2));
  border: 1px solid var(--vp-hair);
  border-radius: 12px;
  padding: 14px;
  min-height: 180px;
  display: flex; flex-direction: column; gap: 8px;
}

/* Inbox */
.msg {
  display: flex; align-items: center; gap: 10px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
}
.msg--unread { border-color: var(--vp-royal-300); background: var(--vp-royal-50); }
.msg__av {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F58529, #DD2A7B);
  color: var(--vp-white);
  font-family: var(--vp-mono); font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.msg__av--2 { background: linear-gradient(135deg, var(--vp-royal-400), var(--vp-royal-ink)); }
.msg__av--3 { background: linear-gradient(135deg, #0A66C2, #3F2A5F); }
.msg__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.msg__body b { font-size: 12px; color: var(--vp-ink); }
.msg__body i { font-style: normal; font-size: 11px; color: var(--vp-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg__badge {
  background: var(--vp-royal-600);
  color: var(--vp-white);
  font-family: var(--vp-mono);
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 5px;
}

/* Promo */
.promo__post {
  display: flex; align-items: center; gap: 10px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 10px;
  padding: 8px;
}
.promo__thumb {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--vp-royal-300), var(--vp-royal-600));
  flex-shrink: 0;
}
.promo__meta { display: flex; flex-direction: column; font-size: 12px; }
.promo__meta b { color: var(--vp-ink); }
.promo__meta i { font-style: normal; font-size: 11px; color: var(--vp-success); font-family: var(--vp-mono); }
.promo__row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--vp-ink-2);
  padding: 6px 4px;
}
.promo__row > span { min-width: 64px; font-family: var(--vp-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vp-muted); }
.promo__row b { margin-left: auto; color: var(--vp-ink); font-family: var(--vp-mono); }
.promo__row .up { color: var(--vp-success); }
.promo__slider {
  flex: 1;
  height: 6px;
  background: var(--vp-paper-2);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.promo__slider span {
  display: block;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, var(--vp-royal-400), var(--vp-royal-600));
  border-radius: 999px;
}
.promo__btn {
  margin-top: auto;
  padding: 10px;
  background: linear-gradient(180deg, var(--vp-royal-400), var(--vp-royal-600));
  color: var(--vp-white);
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  box-shadow: var(--vp-shadow-cta);
  cursor: pointer;
}

/* Mining */
.mine__row {
  display: flex; align-items: center; gap: 10px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: 10px;
  padding: 8px;
  font-size: 12px;
}
.mine__thumb {
  width: 30px; height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #F58529, #DD2A7B);
  flex-shrink: 0;
}
.mine__thumb--2 { background: linear-gradient(135deg, #0A66C2, var(--vp-royal-ink)); }
.mine__thumb--3 { background: linear-gradient(135deg, var(--vp-royal-400), var(--vp-royal-ink)); }
.mine__meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.mine__meta b { color: var(--vp-ink); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mine__meta i { font-style: normal; font-size: 10px; color: var(--vp-muted); font-family: var(--vp-mono); }
.mine__up {
  background: rgba(31,138,91,0.1);
  color: var(--vp-success);
  font-family: var(--vp-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.bonus__total {
  margin-top: 32px;
  text-align: center;
  padding: 32px 28px 28px;
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  border-radius: var(--vp-radius-lg);
  box-shadow: 0 24px 48px -20px rgba(59, 7, 100, 0.35);
}
.bonus__total span {
  display: inline-block;
  font-family: var(--vp-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vp-royal-ink);
  background: #CAA411;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(202, 164, 17, 0.6);
}
.bonus__total b {
  display: block;
  font-family: var(--vp-sans);
  font-weight: 700;
  font-size: 64px;
  color: var(--vp-danger);
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  line-height: 1;
  margin: 14px 0 8px;
  letter-spacing: -0.02em;
}
.bonus__total i { font-style: normal; font-size: 14px; color: rgba(255, 255, 255, 0.78); }
.bonus__cta { text-align: center; margin-top: 36px; }

@media (max-width: 820px) {
  .bonus__grid { grid-template-columns: 1fr; }
}

/* ============ Pricing ============ */
.pricing { padding: 0 0 80px; }

/* Pricing hero band — full-width purple block above the pricing cards */
.pricing__hero {
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  padding: 56px 0 48px;
  text-align: center;
}
.pricing__hero .step-bar { margin-bottom: 22px; }
.pricing__hero .step-bar__pill {
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.22);
}
.pricing__hero .step-bar__pill.is-active {
  background: #CAA411;
  color: var(--vp-royal-ink);
  border-color: #CAA411;
}
.pricing__hero .step-headline__num { color: #CAA411; }
.pricing__hero .step-bar__arrow { color: rgba(255, 255, 255, 0.4); }
.pricing__hero .step-headline { color: var(--vp-white); }
.pricing__hero .dots-divider {
  background-image: radial-gradient(circle, rgba(255,255,255,0.45) 1.5px, transparent 1.5px);
}
.pricing__hero .rating-line { color: var(--vp-white); }
.pricing__hero .stars {
  margin-bottom: 0;
  color: var(--vp-white);
  font-size: 24px;
  -webkit-text-stroke: 1.5px var(--vp-white);
  letter-spacing: 6px;
}
.pricing .section__head .toggle { margin-top: 36px; }

/* Step pattern (validated) */
.step-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-bar__pill {
  font-family: var(--vp-sans);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--vp-ink-2);
  background: var(--vp-white);
  border: 1px solid var(--vp-hair-2);
  white-space: nowrap;
}
.step-bar__pill.is-active {
  background: var(--vp-royal-600);
  color: var(--vp-white);
  border-color: var(--vp-royal-600);
  box-shadow: var(--vp-shadow-cta);
}
.step-bar__arrow {
  color: var(--vp-muted);
  font-size: 18px;
  line-height: 1;
  font-family: var(--vp-mono);
}
.step-headline {
  font-family: var(--vp-sans);
  font-weight: 700;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--vp-royal-600);
  line-height: 1.2;
  margin: 0 auto 16px;
  max-width: 760px;
}
.dots-divider {
  width: 80px;
  height: 6px;
  background-image: radial-gradient(circle, var(--vp-royal-300) 1.5px, transparent 1.5px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
  background-position: center;
  margin: 0 auto 16px;
}
.rating-line {
  font-family: var(--vp-sans);
  font-size: 16px;
  color: var(--vp-ink);
  margin: 0 0 6px;
  font-weight: 500;
  max-width: none;
}
.stars {
  color: #FBBF24;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 28px;
}
.toggle {
  margin-top: 28px;
  display: inline-flex;
  background: var(--vp-paper-2);
  border: 1px solid var(--vp-hair);
  padding: 4px;
  border-radius: 999px;
}
.toggle__btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vp-ink-2);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.toggle__btn.is-active {
  background: var(--vp-white);
  color: var(--vp-ink);
  box-shadow: 0 2px 8px -2px rgba(59,7,100,0.18);
}
.toggle__btn .badge {
  font-size: 11px;
  background: var(--vp-success);
  color: var(--vp-white);
  padding: 2px 7px;
  border-radius: 999px;
  font-family: var(--vp-mono);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 48px;
}
.plans--2 {
  grid-template-columns: repeat(2, minmax(280px, 400px));
  justify-content: center;
}
.plan__priceold {
  font-size: 16px;
  font-weight: 600;
  color: var(--vp-danger);
  margin: 0 0 -4px;
  font-family: var(--vp-sans);
}
.plan__priceold s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-size: 18px;
}
.plan__priceold s::before { content: "$"; }
.plan__priceold + .plan__price { margin-top: 4px; }
.plan {
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.plan { position: relative; }
.plan--featured {
  border: 2px solid var(--vp-royal-600);
  box-shadow: 0 30px 60px -30px rgba(109,40,217,0.45);
  transform: translateY(-8px);
}
.plan--best {
  border-color: #0a0a0a;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.45);
  transform: translateY(-8px);
}
.plan--accent {
  border: 2px solid var(--vp-success);
  box-shadow: 0 24px 50px -28px rgba(31,138,91,0.4);
}
.plan__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--vp-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan__flag--best {
  background: #0a0a0a;
}
.plan h3 { font-size: 22px; letter-spacing: -0.015em; }
.plan__sub { color: var(--vp-muted); font-size: 13px; margin-top: 4px; }

/* 2-column body: features left, price right */
.plan__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: start;
  margin: 14px 0 18px;
}
.plan__main { min-width: 0; }
.plan__side {
  text-align: center;
  padding-left: 14px;
  padding-top: 8px;
  border-left: 1px solid var(--vp-hair);
}

.plan__price {
  text-align: center;
  margin: 0 0 4px;
  line-height: 1;
}
.plan__price sup { font-size: 22px; color: var(--vp-ink-2); }
.plan__price b {
  font-family: var(--vp-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--vp-royal-ink);
  letter-spacing: -0.04em;
}
.plan__price b::before {
  content: "$";
  font-size: 0.38em;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
  position: relative;
  top: 1.2em;
  letter-spacing: 0;
}
.plan__price span { color: var(--vp-muted); font-size: 14px; }
.plan__hint { color: var(--vp-muted); font-size: 12px; margin: 6px 0 0; }
.plan__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.plan__list li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 14px;
  color: var(--vp-ink-2);
  line-height: 1.3;
}
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--vp-royal-600);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}
.plan__list li.plan__list-no { color: var(--vp-muted); }
.plan__list li.plan__list-no::before {
  content: "✕";
  color: var(--vp-danger);
}

/* Trust badges below price (BurnSlim style) */
.plan__badges {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan__badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--vp-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--vp-ink);
  line-height: 1.1;
}
.plan__badges li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6.4' stroke='%23000000' stroke-width='1.5'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%23ffffff' stroke-width='3'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%23000000' stroke-width='1.5'/></svg>") no-repeat center / contain;
}
.plan__badges__num { font-weight: inherit; }

/* "You save" badge — black pill with green text + icon */
.plan__badges li.plan__badges--save {
  align-self: center;
  background: #0a0a0a;
  color: #22C55E;
  padding: 4px 10px 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.35);
}
/* Toggle between monthly / annual savings copy */
.plan__badges--save-a { display: none; }
.plans[data-period="annual"] .plan__badges--save-m { display: none; }
.plans[data-period="annual"] .plan__badges--save-a { display: inline; }

/* Toggle between monthly (Cancel Anytime) / annual (plan-specific discount badge) */
.plan__badges--swap-a { display: none; }
.plans[data-period="annual"] .plan__badges--swap-m { display: none; }
.plans[data-period="annual"] .plan__badges--swap-a { display: inline; }

/* Annual total comparison (shown only in annual mode) */
.plan__total {
  display: none;
  margin: 10px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--vp-ink);
  line-height: 1.2;
}
.plan__total s {
  color: var(--vp-danger);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 600;
  margin-right: 4px;
}
.plan__total b {
  font-weight: 800;
  font-size: 16px;
  color: var(--vp-royal-ink);
}
.plans[data-period="annual"] .plan__total { display: block; }

/* "Billed annually" disclaimer (annual mode only) */
.plan__billed {
  display: none;
  margin: 3px 0 0;
  text-align: center;
  font-size: 11px;
  color: var(--vp-muted);
  font-weight: 400;
}
.plans[data-period="annual"] .plan__billed { display: block; }

/* ============ Scale plan — all-dark-purple premium card ============ */
.plan--best {
  background: var(--vp-royal-ink);
  color: rgba(255, 255, 255, 0.92);
  border: 2px solid #000;
  box-shadow:
    inset 0 0 0 2px var(--vp-white),
    0 30px 60px -25px rgba(59, 7, 100, 0.55);
  padding: 34px;
}
/* Flag — black with white text */
.plan--best .plan__flag,
.plan--best .plan__flag--best {
  background: #000;
  color: var(--vp-white);
}
/* Plan name + sub */
.plan--best h3 { color: var(--vp-white); }
.plan--best .plan__sub { color: rgba(255, 255, 255, 0.62); }
/* Vertical divider between left/right columns */
.plan--best .plan__side { border-left-color: rgba(255, 255, 255, 0.14); }
/* Features list */
.plan--best .plan__list li { color: rgba(255, 255, 255, 0.92); }
.plan--best .plan__list li::before { color: var(--vp-white); }
/* Strike-through priceold stays red (works on black) — only update $ sign keeps inherit */
/* Main price */
.plan--best .plan__price b { color: var(--vp-white); }
.plan--best .plan__price span { color: rgba(255, 255, 255, 0.55); }
/* Outlined check badges (Cancel/Major/Biggest Discount + 30 Days Guarantee) — white version */
.plan--best .plan__badges li { color: var(--vp-white); }
.plan--best .plan__badges li::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6.4' stroke='%23ffffff' stroke-width='1.5'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%233B0764' stroke-width='3'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%23ffffff' stroke-width='1.5'/></svg>") no-repeat center / contain !important;
}
/* YOU SAVE pill — inverted to gold on the black card (Black Card / luxury vibe) */
.plan--best .plan__badges li.plan__badges--save {
  background: #F5C518;
  color: var(--vp-royal-ink);
  box-shadow: 0 2px 6px -2px rgba(245, 197, 24, 0.55);
}
.plan--best .plan__badges--save::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6.4' stroke='%23000000' stroke-width='1.5'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%23F5C518' stroke-width='3'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%23000000' stroke-width='1.5'/></svg>") no-repeat center / contain !important;
}
/* Annual total + billed annually */
.plan--best .plan__total { color: rgba(255, 255, 255, 0.92); }
.plan--best .plan__total b { color: var(--vp-white); }
.plan--best .plan__billed { color: rgba(255, 255, 255, 0.5); }
.plan__badges--save::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6.4' stroke='%2322C55E' stroke-width='1.5'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%230a0a0a' stroke-width='3'/><path d='M4 8.4l2.8 2.8 7.8-7.8' stroke='%2322C55E' stroke-width='1.5'/></svg>") no-repeat center / contain !important;
}
.plan .btn--block {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 22px;
  border-radius: 13px;
  letter-spacing: 0.01em;
  gap: 11px;
  position: relative;
  transition: transform .12s ease, box-shadow .12s ease;
}
.plan .btn--primary {
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
  color: var(--vp-royal-ink);
  box-shadow: 0 4px 0 #D6AE12, 0 12px 24px -10px rgba(214, 174, 18, 0.35);
}
.plan .btn--outline {
  background: #D4D4D8;
  color: var(--vp-ink);
  border-color: transparent;
  box-shadow: 0 4px 0 #B4B4B8;
}
/* override default .btn hover lift — these buttons press down instead */
.plan .btn--block:hover { transform: translateY(2px); }
.plan .btn--primary:hover {
  background-image: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
  box-shadow: 0 2px 0 #D6AE12, 0 8px 16px -8px rgba(214, 174, 18, 0.35);
}
.plan .btn--outline:hover {
  background: #D4D4D8;
  border-color: transparent;
  box-shadow: 0 2px 0 #B4B4B8;
}
.plan .btn--block:active { transform: translateY(6px); }
.plan .btn--primary:active { box-shadow: 0 0 0 #D6AE12; }
.plan .btn--outline:active { box-shadow: 0 0 0 #B4B4B8; }
.btn__arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* SAVE callout — only visible in annual mode */
.plan__save {
  display: none;
  margin: 4px 0 0;
  font-family: var(--vp-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--vp-success);
  text-transform: uppercase;
}
.plans[data-period="annual"] .plan__save { display: block; }

/* Trust strip below CTA */
.plan__trust {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--vp-muted);
  text-align: center;
  letter-spacing: 0.01em;
}

.pricing__foot {
  text-align: center;
  margin-top: 48px;
  font-size: 24px;
  font-weight: 700;
  color: var(--vp-ink);
  letter-spacing: -0.01em;
}

/* ============ Claim band — urgency CTA before pricing repeat ============ */
.claim-band {
  position: relative;
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  text-align: center;
  padding: 64px 0 56px;
}
.claim-band__title {
  font-family: var(--vp-sans);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
}
.claim-band__accent { color: #CAA411; }
.claim-band__arrow {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 22px solid var(--vp-royal-ink);
  z-index: 2;
}

/* Pricing repeat — leaner version below the claim band */
.pricing--repeat { padding: 56px 0 72px; background: var(--vp-paper); }

@media (max-width: 600px) {
  .claim-band { padding: 48px 0 40px; }
  .claim-band__arrow { bottom: -16px; border-left-width: 20px; border-right-width: 20px; border-top-width: 16px; }
  .pricing--repeat { padding: 40px 0 48px; }
}

@media (max-width: 920px) {
  .plans { grid-template-columns: 1fr; }
  .plan--featured, .plan--best { transform: none; }
}

/* ============ Guarantee ============ */
.guarantee { padding: 56px 0; background: var(--vp-paper-2); }
.guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
  max-width: 720px;
  margin-inline: auto;
}
.guarantee__seal {
  position: relative;
  width: 260px; height: 260px;
  color: var(--vp-royal-600);
  flex-shrink: 0;
}
.guarantee__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .guarantee__seal { width: 200px; height: 200px; }
}
.guarantee__seal span {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--vp-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--vp-white);
  text-align: center;
  line-height: 1;
}
.guarantee__seal span i { font-size: 12px; font-style: normal; font-family: var(--vp-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.guarantee__copy h3 { font-size: 22px; letter-spacing: -0.015em; margin-bottom: 6px; }
.guarantee__copy p { color: var(--vp-ink-2); }

@media (max-width: 600px) {
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { margin-inline: auto; }
}

/* ============ Comparison ============ */
.comp { padding: 72px 0; background: var(--vp-paper); border-top: 1px solid var(--vp-hair); border-bottom: 1px solid var(--vp-hair); }
.comp__image {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 32px auto 0;
  border-radius: var(--vp-radius-lg);
  box-shadow: var(--vp-shadow-card);
}
.comp__grid {
  margin-top: 32px;
  background: var(--vp-white);
  border: 1px solid var(--vp-hair);
  border-radius: var(--vp-radius-lg);
  overflow: hidden;
  box-shadow: var(--vp-shadow-card);
}
.comp__row {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--vp-hair);
  font-size: 14px;
}
.comp__row:last-child { border-bottom: 0; }
.comp__row > span:first-child { color: var(--vp-ink); font-weight: 500; }
.comp__row b { color: var(--vp-royal-600); font-weight: 700; font-family: var(--vp-mono); text-align: center; }
.comp__row i { color: var(--vp-muted); font-style: normal; text-align: center; font-family: var(--vp-mono); font-size: 13px; }
.comp__row--head {
  background: var(--vp-royal-ink);
  color: var(--vp-white);
}
.comp__row--head > span,
.comp__row--head > b,
.comp__row--head > i {
  color: rgba(255,255,255,0.7);
  font-family: var(--vp-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.comp__row--head .comp__brand { color: var(--vp-royal-300); font-weight: 700; }

@media (max-width: 820px) {
  .comp__grid { font-size: 12px; overflow-x: auto; }
  .comp__row { grid-template-columns: 200px repeat(5, 80px); padding: 14px 18px; }
}

/* ============ Origin ============ */
.origin {
  padding: 72px 0;
  background: var(--vp-royal-ink);
  color: var(--vp-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.origin::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(40% 40% at 80% 70%, rgba(196,181,253,0.18), transparent 60%);
  pointer-events: none;
}
.origin__inner { position: relative; max-width: 760px; margin: 0 auto; }
.origin__inner .lead { margin: 16px auto 28px; }
.origin__photo {
  margin: 0 auto;
  max-width: 520px;
  aspect-ratio: 7 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}
.origin__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============ FAQ ============ */
.faq { padding: 72px 0; }
.faq__inner { max-width: 820px; margin-inline: auto; }
.faq__list {
  margin-top: 32px;
  border-top: 1px solid var(--vp-hair);
}
.faq__item {
  border-bottom: 1px solid var(--vp-hair);
  padding: 20px 4px;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  color: var(--vp-ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--vp-royal-600);
  transition: transform .2s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item > div {
  margin-top: 12px;
  color: var(--vp-ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ Final CTA ============ */
.final {
  padding: 80px 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(139,92,246,0.18), transparent 60%),
    linear-gradient(180deg, var(--vp-royal-ink), #1f0339);
  color: var(--vp-white);
  text-align: center;
}
.final__inner { max-width: 720px; margin-inline: auto; }
.final .lead { margin: 18px auto 32px; }
.final .micro { margin-top: 18px; }

.finalcta {
  padding: 80px 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(139,92,246,0.22), transparent 60%),
    linear-gradient(180deg, var(--vp-royal-ink), #1f0339);
  color: var(--vp-white);
  text-align: center;
}
.finalcta__inner { max-width: 760px; margin-inline: auto; }
.finalcta__inner .h-display { margin-bottom: 18px; }
.finalcta__inner .lead { margin: 0 auto 32px; }

/* ============ Footer ============ */
.foot { padding: 48px 0 24px; background: var(--vp-paper); border-top: 1px solid var(--vp-hair); }
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.foot__brand p { color: var(--vp-muted); font-size: 14px; margin-top: 14px; max-width: 280px; }
.foot h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vp-muted);
  margin-bottom: 14px;
  font-family: var(--vp-mono);
  font-weight: 500;
}
.foot__grid > div:not(.foot__brand) a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--vp-ink-2);
}
.foot__grid > div:not(.foot__brand) a:hover { color: var(--vp-royal-600); }
.foot__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--vp-hair);
  font-size: 12px;
  color: var(--vp-muted);
  font-family: var(--vp-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 720px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__bottom { flex-direction: column; gap: 10px; }
}

/* ============ Sticky mobile CTA ============ */
/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile padding compression
   ============================================================ */

@media (max-width: 960px) {
  .container { padding-inline: 20px; }
  .section__head { margin-bottom: 32px; }

  .hero { padding: 40px 0 36px; }
  .hero__preview { margin-top: 32px; }
  .stats { padding: 40px 0; }
  .value { padding: 56px 0; }
  .how { padding: 56px 0; }
  .how__totaltime { margin-top: 32px; padding: 18px 22px; }
  .platforms { padding: 48px 0; }
  .platforms__row { gap: 24px 28px; }
  .quotes { padding: 56px 0; }
  .quotes--alt { padding: 64px 0 56px; }
  .quotes--mid { padding: 56px 0; }
  .ba { padding: 56px 0; }
  .features { padding: 56px 0; }
  .bonus { padding: 56px 0; }
  .bonus__total { margin-top: 28px; padding: 22px; }
  .bonus__total b { font-size: 48px; }
  .pricing { padding: 0 0 56px; }
  .pricing__hero { padding: 40px 0 32px; }
  .guarantee { padding: 40px 0; }
  .guarantee__inner { padding: 28px; }
  .comp { padding: 56px 0; }
  .origin { padding: 56px 0; }
  .faq { padding: 56px 0; }
  .final { padding: 64px 0; }
  .finalcta { padding: 64px 0; }
  .foot { padding: 36px 0 20px; }
}

@media (max-width: 600px) {
  .container { padding-inline: 16px; }
  .section__head { margin-bottom: 24px; }

  .hero { padding: 32px 0 28px; }
  .hero__title { line-height: 1.02; }
  .hero__sub { margin-bottom: 22px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__preview { margin-top: 24px; }

  .stats { padding: 32px 0; }
  .value { padding: 40px 0; }

  .how { padding: 40px 0; }
  .step { padding: 22px; }
  .step__mock { min-height: 170px; }
  .how__totaltime { margin-top: 24px; padding: 14px 18px; gap: 12px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .how__totaltime b { font-size: 22px; }

  .platforms { padding: 36px 0; }
  .plogo { width: 44px; height: 44px; }
  .platforms__row { gap: 18px 20px; }

  .quotes { padding: 40px 0; }
  .quotes--alt { padding: 32px 0 40px; }
  .quotes--mid { padding: 40px 0; }
  .quote { padding: 22px; }
  .quote.quote--img { padding: 0; }
  .quote blockquote { font-size: 17px; margin-bottom: 16px; }

  .ba { padding: 32px 0 40px; }
  .ba__col { padding: 22px; }
  .ba__col ul li { font-size: 15px; padding: 10px 0 10px 24px; }
  .ba__big b { font-size: 40px; }

  .features { padding: 40px 0; }
  .fcard { padding: 22px; }
  .fmock { min-height: 140px; padding: 14px; margin-top: 18px; }

  .bonus { padding: 40px 0; }
  .bcard { padding: 22px; }
  .bmock { min-height: 160px; padding: 12px; margin-top: 16px; }
  .bonus__total { margin-top: 24px; padding: 20px; }
  .bonus__total b { font-size: 40px; }
  .bonus__cta { margin-top: 24px; }

  .pricing { padding: 0 0 40px; }
  .pricing__hero { padding: 32px 0 28px; }
  .plan { padding: 20px; }
  .plan__price b { font-size: 44px; }
  .plans { margin-top: 32px; gap: 16px; }
  .plan__body { grid-template-columns: 1.15fr 1fr; gap: 12px; }
  .plan__side { padding-left: 8px; }
  .plan__badges li { font-size: 11px; letter-spacing: 0.005em; white-space: nowrap; }
  .plan__list li { font-size: 13px; padding-left: 18px; }
  .plan__list li::before { font-size: 13px; }
  .plan h3 { font-size: 19px; }
  .plan__sub { font-size: 12px; }

  .guarantee { padding: 28px 0; }
  .guarantee__inner { padding: 22px; gap: 18px; }
  .guarantee__copy h3 { font-size: 19px; }

  .comp { padding: 40px 0; }
  .origin { padding: 40px 0; }
  .faq { padding: 40px 0; }
  .faq__item { padding: 16px 4px; }
  .faq__item summary { font-size: 16px; }

  .final { padding: 48px 0; }
  .finalcta { padding: 48px 0; }
  .foot { padding: 28px 0 20px; }
  .foot__grid { gap: 24px; margin-bottom: 24px; }
}
