/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=JetBrains+Mono:wght@500&display=swap');

/* ─── Design Tokens ─── */
:root {
  --canvas: #ffffff;
  --canvas-dark: #010120;
  --canvas-soft: #f6f6f6;
  --surface-dark-soft: #313641;
  --ink: #000000;
  --body: #959494;
  --hairline: #ebebeb;
  --on-dark: #ffffff;
  --accent-orange: #fc4c02;
  --accent-magenta: #ef2cc1;
  --accent-periwinkle: #bdbbff;
  --accent-mint: #c8f6f9;

  --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --radius-xs: 3.25px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;

  --container: 1280px;
  --section-v: 96px;
  --section-h: 64px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Layout ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
}

/* ─── Bands ─── */
.band-dark {
  background: var(--canvas-dark);
  color: var(--on-dark);
}

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: var(--body);
  display: block;
}
.eyebrow-on-dark {
  color: rgba(255, 255, 255, 0.45);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.22px;
}
h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.16px;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.16px;
}

/* ─── Section Head ─── */
.section-head {
  margin-bottom: 56px;
}
.section-head .eyebrow {
  margin-bottom: 12px;
}
.section-head h2 {
  max-width: 560px;
}
.section-head--dark h2 {
  color: var(--on-dark);
}
.section-sub {
  margin-top: 16px;
  color: var(--body);
  max-width: 480px;
}
.section-head--dark .section-sub {
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: 1; }

.btn-primary {
  background: var(--ink);
  color: var(--on-dark);
}
.btn-white {
  background: var(--canvas);
  color: var(--ink);
}
.btn-mint {
  background: var(--accent-mint);
  color: var(--ink);
}
.btn-ghost {
  background: var(--surface-dark-soft);
  color: var(--on-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-0 { transition-delay: 0ms; }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

/* ─── Gradient Blobs ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}
@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 24px) scale(0.95); }
}
@keyframes blob-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(28px, -16px) scale(1.08); }
}
.blob-orange {
  width: 320px; height: 320px;
  background: var(--accent-orange);
  filter: blur(90px);
  opacity: 0.45;
  top: -60px; right: 80px;
  animation: blob-drift-1 9s ease-in-out infinite;
}
.blob-magenta {
  width: 260px; height: 260px;
  background: var(--accent-magenta);
  filter: blur(70px);
  opacity: 0.4;
  top: 80px; right: 20px;
  animation: blob-drift-2 11s ease-in-out infinite;
}
.blob-periwinkle {
  width: 380px; height: 380px;
  background: var(--accent-periwinkle);
  filter: blur(110px);
  opacity: 0.35;
  bottom: -80px; right: -40px;
  animation: blob-drift-3 13s ease-in-out infinite;
}

/* ─── Card Grid ─── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}
.nav__logo {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--on-dark);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.14px;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--on-dark); }
.nav__cta { margin-left: auto; flex-shrink: 0; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--canvas-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px var(--section-h);
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.nav__drawer a:hover { color: var(--on-dark); }
.nav__drawer .btn { align-self: flex-start; margin-top: 8px; }

/* ─── HERO ─── */
.hero {
  padding: var(--section-v) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__content .eyebrow { margin-bottom: 20px; }
.hero__headline {
  color: var(--on-dark);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  list-style: none;
}
.hero__pills li {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: var(--surface-dark-soft);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  flex-shrink: 0;
}
.hero__blobs {
  position: absolute;
  inset: -60px -60px -60px -20px;
  overflow: hidden;
  pointer-events: none;
}

/* Product Mockup */
.mockup {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}
.mockup__dots {
  display: flex;
  gap: 6px;
}
.mockup__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.mockup__title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.mockup__body {
  padding: 4px 0;
}
.mockup__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s;
}
.mockup__row:last-child { border-bottom: none; }
.mockup__row:hover { background: rgba(255, 255, 255, 0.03); }
.mockup__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup__status--done { background: var(--accent-mint); }
.mockup__status--draft { background: var(--accent-periwinkle); }
.mockup__status--idea { background: rgba(255, 255, 255, 0.2); }

.mockup__row-content { flex: 1; min-width: 0; }
.mockup__row-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}
.mockup__row-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 2px;
}
.mockup__row-badges {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}

/* Platform badges */
.pbadge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}
.pbadge--tg { background: rgba(41, 182, 246, 0.2); color: #81d4fa; }
.pbadge--vk { background: rgba(100, 149, 237, 0.2); color: #99b8f5; }

/* Status badges */
.sbadge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}
.sbadge--pub { background: rgba(200, 246, 249, 0.12); color: var(--accent-mint); }
.sbadge--draft { background: rgba(189, 187, 255, 0.12); color: var(--accent-periwinkle); }
.sbadge--gen { background: rgba(252, 76, 2, 0.15); color: #ff8a5f; cursor: pointer; }
.sbadge--idea { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.35); }

.mockup__footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup__analytics {
  display: flex;
  gap: 20px;
}
.mockup__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup__stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.mockup__stat-val {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.1px;
}

/* ─── STATS ─── */
.stats {
  padding: var(--section-v) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stats__tile {
  padding: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats__tile--mint { background: var(--accent-mint); }
.stats__tile--periwinkle { background: var(--accent-periwinkle); }
.stats__tile--orange { background: #fde8dc; }

.stats__num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
}
.stats__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.16px;
  flex: 1;
}
.stats__tile .eyebrow {
  color: rgba(0, 0, 0, 0.4);
}

/* ─── PROBLEMS ─── */
.problems {
  padding: var(--section-v) 0;
}
.problems .section-head { margin-bottom: 48px; }

.card {
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}
.card__icon {
  font-size: 20px;
  color: var(--body);
  line-height: 1;
}
.card h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}

/* ─── WORKFLOW ─── */
.workflow {
  padding: var(--section-v) 0;
}
.workflow .section-head--dark h2 {
  color: var(--on-dark);
}
.workflow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin-bottom: 56px;
}
.workflow__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55px;
  color: var(--accent-mint);
  background: rgba(200, 246, 249, 0.1);
  border: 1px solid rgba(200, 246, 249, 0.15);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  line-height: 16px;
  margin-top: 2px;
}
.workflow__step h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 4px;
  letter-spacing: -0.15px;
}
.workflow__step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.workflow__cta {
  text-align: center;
}

/* ─── AUDIENCE ─── */
.audience {
  padding: var(--section-v) 0;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.audience__card {
  padding: 28px 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.audience__card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}
.audience__icon { font-size: 24px; line-height: 1; }
.audience__card h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.audience__card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

/* ─── FEATURES ─── */
.features {
  padding: var(--section-v) 0;
  background: var(--canvas-soft);
}
.feature-card {
  padding: 28px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}
.feature-card__eyebrow {
  color: var(--body);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-card li {
  font-size: 14px;
  color: var(--body);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.feature-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--hairline);
  font-weight: 500;
}

/* ─── COMPARISON ─── */
.comparison {
  padding: var(--section-v) 0;
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comparison__col {
  padding: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.comparison__col--dim {
  background: rgba(255, 255, 255, 0.03);
}
.comparison__col--bright {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 246, 249, 0.15);
}
.comparison__col-head {
  margin-bottom: 24px;
}
.comparison__col-head .eyebrow {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.6px;
}
.comparison__col--bright .comparison__col-head .eyebrow {
  color: var(--accent-mint);
}
.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.15px;
}
.comparison__list--minus li {
  color: rgba(255, 255, 255, 0.4);
}
.comparison__list--minus li::before {
  content: '—';
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--font-mono);
}
.comparison__list--plus li {
  color: rgba(255, 255, 255, 0.85);
}
.comparison__list--plus li::before {
  content: '✓';
  color: var(--accent-mint);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 600;
  font-family: var(--font-display);
}

/* ─── PRACTICE ─── */
.practice {
  padding: var(--section-v) 0;
}
.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.practice__card {
  padding: 36px 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.practice__card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}
.practice__stage { color: var(--body); }
.practice__card h3 {
  font-size: 20px;
}
.practice__card p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

/* ─── PRICING ─── */
.pricing {
  padding: var(--section-v) 0;
  background: var(--canvas-soft);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing__card {
  padding: 36px 32px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s;
}
.pricing__card:hover { transform: translateY(-3px); }

.pricing__card--featured {
  background: var(--canvas-dark);
  border-color: rgba(200, 246, 249, 0.15);
  color: var(--on-dark);
  position: relative;
}
.pricing__recommended {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent-mint);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing__tier {
  color: var(--body);
}
.pricing__card--featured .pricing__tier {
  color: rgba(255, 255, 255, 0.4);
}
.pricing__price {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--ink);
}
.pricing__card--featured .pricing__price { color: var(--on-dark); }
.pricing__price span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--body);
}
.pricing__card--featured .pricing__price span { color: rgba(255, 255, 255, 0.4); }
.pricing__desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.pricing__card--featured .pricing__desc { color: rgba(255, 255, 255, 0.45); }
.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
}
.pricing__card--featured .pricing__features li { color: rgba(255, 255, 255, 0.6); }
.pricing__features li::before {
  content: '—';
  color: var(--hairline);
  flex-shrink: 0;
  font-family: var(--font-mono);
}
.pricing__card--featured .pricing__features li::before {
  color: rgba(255, 255, 255, 0.15);
}
.pricing__btn { width: 100%; justify-content: center; margin-top: 8px; }
.pricing__card:not(.pricing__card--featured) .btn-outline {
  border-color: var(--hairline);
}

/* ─── HONEST ─── */
.honest {
  padding: var(--section-v) 0;
}
.honest__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
.honest__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.honest__check {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-mint);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 246, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.honest__item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 6px;
}
.honest__item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* ─── FAQ ─── */
.faq {
  padding: var(--section-v) 0;
}
.faq__list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item:last-child { border-bottom: none; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--body);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--ink);
}
.faq__item summary:hover { background: var(--canvas-soft); }
.faq__item[open] summary { background: var(--canvas-soft); }
.faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: var(--section-v) 0;
  overflow: hidden;
}
.final-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-cta__blobs {
  position: absolute;
  inset: -80px;
  pointer-events: none;
  overflow: hidden;
}
.final-cta__blobs .blob-orange {
  top: auto;
  bottom: -40px;
  right: auto;
  left: 10%;
  width: 280px;
  height: 280px;
}
.final-cta__blobs .blob-periwinkle {
  top: -20px;
  bottom: auto;
  right: 10%;
  width: 320px;
  height: 320px;
}
.final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}
.final-cta__content .eyebrow { margin-bottom: 16px; }
.final-cta__content h2 {
  color: var(--on-dark);
  margin-bottom: 16px;
}
.final-cta__content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.final-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding-top: var(--section-v);
  overflow: hidden;
}
.footer__inner {
  padding-bottom: 48px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__col--brand .footer__logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--ink);
}
.footer__col--brand p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  max-width: 260px;
}
.footer__col-head {
  color: var(--body);
  margin-bottom: 16px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: var(--body);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--body);
}
.footer__wordmark {
  font-size: clamp(56px, 12vw, 160px);
  font-weight: 500;
  letter-spacing: -4px;
  line-height: 0.85;
  color: var(--hairline);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  padding: 16px 0 0;
  user-select: none;
  pointer-events: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  :root { --section-h: 40px; }

  .hero__inner { grid-template-columns: 1fr 420px; gap: 48px; }
  .audience__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-v: 72px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual { max-width: 520px; }
  .hero__blobs { inset: -40px; }

  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .workflow__grid { grid-template-columns: repeat(2, 1fr); }
  .comparison__grid { grid-template-columns: 1fr; gap: 12px; }
  .practice__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .honest__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --section-h: 20px; --section-v: 56px; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__sub { font-size: 16px; }
  .hero__pills { display: none; }

  .stats__grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .workflow__grid { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: 1fr; }
  .practice__grid { grid-template-columns: 1fr; }
  .pricing__grid { max-width: 100%; }
  .honest__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 32px; }

  .comparison__col { padding: 24px 20px; }

  .faq__list { max-width: 100%; }
  .footer__wordmark { letter-spacing: -2px; }
}

/* ─── Scroll progress bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-magenta), var(--accent-periwinkle));
  z-index: 200;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ─── Gradient text ─── */
.grad-text {
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-magenta) 55%, var(--accent-periwinkle) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Ticker ─── */
@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker {
  overflow: hidden;
  background: var(--canvas-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 13px 0;
  cursor: default;
  user-select: none;
}
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-slide 32s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 20px;
  white-space: nowrap;
  transition: color 0.2s;
}
.ticker:hover .ticker__item { color: rgba(255, 255, 255, 0.5); }
.ticker__sep {
  color: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── Mockup status dot pulse ─── */
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 246, 249, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(200, 246, 249, 0); }
}
.mockup__status--done {
  animation: dot-pulse 2.5s ease-in-out infinite;
}

/* ─── Pricing Pro card glow ─── */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 246, 249, 0); }
  50% { box-shadow: 0 0 48px 8px rgba(200, 246, 249, 0.07); }
}
.pricing__card--featured {
  animation: card-glow 4s ease-in-out infinite;
}

/* ─── Active nav link ─── */
.nav__links a.active { color: var(--on-dark); }

/* ─── Hero visual 3D tilt ─── */
.hero__visual {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}
