/* ==========================================================================
   ThreadsPilot.ai — Threads-style high-contrast black & white
   Fonts: Unbounded (display, bold) · Inter Tight (UI/body). No monospace.
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-1: #121212;
  --bg-2: #171717;
  --bg-3: #202020;
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --faint: rgba(255, 255, 255, 0.4);

  /* monochrome: accent vars repurposed to white so existing rules go B&W */
  --violet: #ffffff;
  --violet-lite: #ffffff;
  --cyan: #ffffff;
  --green: #4ee88f; /* single functional status accent (matches real product) */
  --grad: #ffffff;
  --grad-soft: rgba(255, 255, 255, 0.08);
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 30px 80px rgba(0, 0, 0, 0.6);

  --f-display: 'Unbounded', 'Inter Tight', sans-serif;
  --f-sans: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, 'Segoe UI',
    sans-serif;
  --f-mono: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;

  --max: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* faint film-grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}

/* ambient page glow */
.page-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      50% 40% at 78% 8%,
      rgba(255, 255, 255, 0.16),
      transparent 70%
    ),
    radial-gradient(
      45% 35% at 15% 55%,
      rgba(255, 255, 255, 0.08),
      transparent 70%
    );
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

/* ---------- shared type ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--violet-lite);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ee88f;
  box-shadow: 0 0 0 0 rgba(70, 245, 176, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 245, 176, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(70, 245, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(70, 245, 176, 0);
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-head {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.06;
}
.section-head > p {
  margin: 20px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}

/* ---------- buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.button svg {
  transition: transform 0.2s var(--ease);
}
.button-primary {
  background: var(--grad);
  color: #0a0713;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.28);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255, 255, 255, 0.42);
}
.button-primary:hover svg {
  transform: translateX(3px);
}
.button-secondary {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}
.button-ghost {
  min-height: 44px;
  border-color: var(--line-2);
  background: transparent;
  color: var(--text);
  font-size: 14px;
}
.button-ghost:hover {
  border-color: var(--violet);
  color: var(--violet-lite);
}
.button-lg {
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 68px;
  padding: 0 clamp(16px, 4vw, 40px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(6, 7, 12, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad);
  color: #0a0713;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.4);
}
.logo-mark.small {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}
.logo-dot {
  color: var(--violet-lite);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  position: relative;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--grad);
  transition: width 0.25s var(--ease);
}
.site-nav a:hover {
  color: var(--text);
}
.site-nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.lang-switch:hover {
  color: var(--text);
  border-color: var(--line-2);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.header-cta:hover {
  border-color: var(--violet);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.menu-button {
  display: none;
  width: 42px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--text);
  transition: 0.25s var(--ease);
}
.menu-button[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-button[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.menu-button[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(120px, 16vw, 168px) clamp(16px, 4vw, 40px)
    clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      44% 52% at 80% 40%,
      rgba(255, 255, 255, 0.2),
      transparent 62%
    ),
    radial-gradient(
      38% 44% at 20% 26%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    );
}
.hero::before {
  /* fade to page at the bottom */
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(38px, 6.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-text {
  margin: 26px 0 0;
  max-width: 500px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-note {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 13.5px;
  font-family: var(--f-mono);
}

/* hero cockpit panel */
.hero-stage {
  position: relative;
  perspective: 1600px;
}
.hero-mock {
  position: relative;
  z-index: 1;
}
.hero-mock::before {
  content: '';
  position: absolute;
  inset: -10% -6% -2%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    58% 55% at 54% 46%,
    rgba(255, 255, 255, 0.32),
    transparent 72%
  );
  filter: blur(34px);
}
.hero-mock img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.62);
  -webkit-mask-image: radial-gradient(
    132% 122% at 50% 46%,
    #000 60%,
    transparent 93%
  );
  mask-image: radial-gradient(132% 122% at 50% 46%, #000 60%, transparent 93%);
}
.cockpit {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(10, 12, 20, 0.82);
  backdrop-filter: blur(14px);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-9deg) rotate(0.5deg);
  transform-origin: 60% 50%;
  transition: transform 0.5s var(--ease);
}
.hero-stage:hover .cockpit {
  transform: rotateX(3deg) rotateY(-4deg);
}
.cockpit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.cockpit-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.cockpit-status {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--violet-lite);
}
.cockpit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1fr;
}
.cockpit-col {
  padding: 18px;
  border-right: 1px solid var(--line);
}
.cockpit-col:last-child {
  border-right: 0;
}
.cockpit-label {
  margin: 0 0 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
}
.acc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.acc-row + .acc-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.acc-row span {
  font-size: 12.5px;
  color: rgba(245, 246, 251, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.acc-row strong {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--violet-lite);
}
.bars {
  position: relative;
  width: 40px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}
.bars::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--grad);
}
.bars.b6::after {
  width: 100%;
}
.bars.b5::after {
  width: 82%;
}
.bars.b4::after {
  width: 64%;
}
.bars.b3::after {
  width: 48%;
}
.topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.topic span {
  font-size: 12.5px;
  line-height: 1.3;
  color: rgba(245, 246, 251, 0.82);
}
.topic i {
  flex: none;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 6px;
}
.topic.done i {
  color: #4ee88f;
  background: rgba(70, 245, 176, 0.1);
}
.topic.queue i {
  color: var(--violet-lite);
  background: rgba(255, 255, 255, 0.12);
}
.cockpit-post .post-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--faint);
}
.post-foot i {
  font-style: normal;
  color: #4ee88f;
}

.float-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: rgba(12, 14, 22, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.float-chip strong {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}
.float-chip span {
  font-size: 12px;
  color: var(--muted);
}
.float-a {
  left: -6%;
  bottom: 8%;
  animation: floaty 6s ease-in-out infinite;
}
.float-b {
  right: -4%;
  top: -7%;
  animation: floaty 6s ease-in-out infinite 1.4s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.hero-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: clamp(48px, 7vw, 76px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}
.hero-strip div {
  padding: 22px 24px;
  background: var(--bg-1);
}
.hero-strip strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -0.03em;
}
.hero-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* ==========================================================================
   PROOF RIBBON
   ========================================================================== */
.proof-ribbon {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}
.proof-ribbon article {
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(255, 255, 255, 0.09),
      transparent 60%
    ),
    var(--bg-1);
}
.pr-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
}
.pr-num {
  display: block;
  margin: 16px 0 8px;
  font-family: var(--f-display);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof-ribbon p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ==========================================================================
   BENTO (what is it)
   ========================================================================== */
.bento {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bento-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition:
    border-color 0.25s,
    transform 0.25s var(--ease),
    background 0.25s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--bg-3);
}
.bento-lead {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(
      100% 70% at 0% 0%,
      rgba(255, 255, 255, 0.14),
      transparent 60%
    ),
    var(--bg-2);
}
.bento-wide {
  grid-column: span 2;
}
.bento-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--violet-lite);
}
.bento-lead h3 {
  margin: 16px 0 14px;
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.14;
}
.bento-lead p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.bento-strong {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(245, 246, 251, 0.9);
}

/* ==========================================================================
   COMPARISON
   ========================================================================== */
.pressure {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pcard {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.pcard-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--faint);
}
.pcard h3 {
  margin: 30px 0 12px;
  font-size: 24px;
}
.pcard p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
.pcard-best {
  border-color: rgba(255, 255, 255, 0.4);
  background:
    radial-gradient(
      120% 100% at 50% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 65%
    ),
    var(--bg-2);
  box-shadow: var(--glow);
}
.pcard-best .pcard-num {
  color: var(--violet-lite);
}
.pcard-best h3 {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pcard-badge {
  position: absolute;
  top: -11px;
  left: 30px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--grad);
  color: #0a0713;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ==========================================================================
   STEPPER (launch)
   ========================================================================== */
.stepper {
  position: relative;
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line-2) 15%,
    var(--line-2) 85%,
    transparent
  );
}
.step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--violet-lite);
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
}
.step h3 {
  margin: 22px 0 10px;
  font-size: 19px;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    var(--bg-1);
}
.cta-band strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(19px, 2.6vw, 24px);
  letter-spacing: -0.03em;
}
.cta-band p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.cta-band .button {
  flex: none;
}

/* ==========================================================================
   SPLIT sections (value / network / managed / calculator)
   ========================================================================== */
.split {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.08;
}
.split-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}
/* ---- product mockups (faded-edge, Linear-style) ---- */
.split-media {
  position: relative;
}
.mock {
  perspective: 1800px;
}
.mock-glow {
  position: absolute;
  inset: -12% -8%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    60% 60% at 50% 42%,
    rgba(255, 255, 255, 0.28),
    transparent 70%
  );
  filter: blur(10px);
}
.mock-panel {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(11, 13, 21, 0.96);
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}
.mock-left .mock-panel {
  transform: rotateY(6deg) rotateX(3deg);
}
.mock-right .mock-panel {
  transform: rotateY(-6deg) rotateX(3deg);
}
.mock:hover .mock-panel {
  transform: rotateY(0deg) rotateX(0deg);
}
/* darkened / faded edges melting into the page */
.mock-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 62%, var(--bg)),
    linear-gradient(to top, transparent 88%, rgba(5, 6, 10, 0.7)),
    linear-gradient(to right, var(--bg), transparent 12%, transparent 88%, var(--bg));
  opacity: 0.9;
}
.mock-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.mock-dots {
  display: inline-flex;
  gap: 6px;
}
.mock-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.mock-title {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(245, 246, 251, 0.85);
}
.mock-tag {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 10.5px;
  padding: 4px 9px;
  border-radius: 7px;
  color: var(--violet-lite);
  background: rgba(255, 255, 255, 0.12);
}
.mock-tag.up {
  color: #4ee88f;
  background: rgba(70, 245, 176, 0.1);
}
.mock-body {
  padding: 20px;
}

/* ---- gpt-image-2 product mockups: glow + edges melt into page ---- */
.mock-img {
  position: relative;
}
.mock-img::before {
  content: '';
  position: absolute;
  inset: 0 -4% 4%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    56% 56% at 50% 46%,
    rgba(255, 255, 255, 0.3),
    transparent 72%
  );
  filter: blur(30px);
}
.mock-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
  -webkit-mask-image: radial-gradient(
    128% 118% at 50% 47%,
    #000 56%,
    transparent 92%
  );
  mask-image: radial-gradient(128% 118% at 50% 47%, #000 56%, transparent 92%);
}
.mock-img:hover img {
  transform: scale(1.02);
}

/* analytics mockup */
.an-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.an-label {
  margin: 0 0 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}
.an-big {
  font-family: var(--f-display);
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.an-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--muted);
}
.lg::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 3px;
}
.lg-v::before {
  background: var(--violet);
}
.lg-c::before {
  background: var(--cyan);
}
.an-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 96px;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.an-chart span {
  height: var(--h);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.45));
}
.an-chart span:last-child {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.55);
}
.an-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.an-metrics div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.an-metrics em {
  font-style: normal;
  font-size: 11px;
  color: var(--faint);
}
.an-metrics b {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
}
.an-dest .an-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.an-bar i {
  position: absolute;
  inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12));
}
.an-bar span,
.an-bar b {
  position: relative;
  font-size: 12.5px;
}
.an-bar span {
  color: rgba(245, 246, 251, 0.86);
}
.an-bar b {
  margin-left: auto;
  font-family: var(--f-mono);
  color: var(--violet-lite);
}

/* network grid mockup */
.net-legend {
  display: flex;
  gap: 20px;
  margin-top: 26px;
}
.net-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}
.net-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.d-v {
  background: var(--violet);
}
.d-c {
  background: var(--cyan);
}
.net-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.net-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.net-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.net-row b {
  font-size: 13px;
}
.net-ava {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0a0713;
}
.net-ava.a {
  background: linear-gradient(135deg, #ffffff, #ffffff);
}
.net-ava.b {
  background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
}
.net-ava.c {
  background: linear-gradient(135deg, #d0d0d0, #ffffff);
}
.net-ava.d {
  background: linear-gradient(135deg, #d0d0d0, #f0f0f0);
}
.net-dest {
  margin: 10px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
}
.net-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}
.net-spark i {
  flex: 1;
  height: var(--h);
  border-radius: 2px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.3));
}
.net-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  color: var(--faint);
}
.net-foot .up,
.rep-row .up,
.an-metrics .up {
  color: #4ee88f;
  font-family: var(--f-mono);
}

/* weekly report mockup */
.rep-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.rep-summary div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.rep-summary em {
  font-style: normal;
  font-size: 10.5px;
  color: var(--faint);
}
.rep-summary strong {
  display: block;
  margin: 5px 0 1px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}
.rep-summary span {
  font-size: 11px;
  color: var(--muted);
}
.rep-chart {
  margin-bottom: 18px;
}
.rep-chart svg {
  width: 100%;
  height: 96px;
  display: block;
}
.rep-boost .rep-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
}
.rep-boost .rep-row b {
  font-family: var(--f-mono);
  font-size: 12.5px;
}

.value-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.value-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}
.value-list li b {
  color: var(--text);
  font-weight: 600;
}
.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--grad);
}

.account-stack {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stack-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s;
}
.stack-row:hover {
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.3);
}
.stack-row span {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--violet-lite);
}
.stack-row strong {
  font-size: 15px;
  font-weight: 600;
}
.stack-row em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--faint);
}

.managed-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.managed-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.managed-item span {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--violet-lite);
}
.managed-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

/* ==========================================================================
   AUDIENCE
   ========================================================================== */
.audience-grid {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.audience-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s,
    background 0.25s;
}
.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--bg-3);
}
.audience-ic {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  color: var(--violet-lite);
}
.audience-card h3 {
  margin: 20px 0 10px;
  font-size: 19px;
}
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ==========================================================================
   FIT
   ========================================================================== */
.fit-grid {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fit-card {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.fit-card.is-good {
  background:
    radial-gradient(
      90% 80% at 0% 0%,
      rgba(70, 245, 176, 0.08),
      transparent 60%
    ),
    var(--bg-2);
}
.fit-card.is-bad {
  background:
    radial-gradient(
      90% 80% at 0% 0%,
      rgba(255, 120, 120, 0.06),
      transparent 60%
    ),
    var(--bg-2);
}
.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}
.fit-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 15px;
}
.fit-mark.ok {
  background: rgba(70, 245, 176, 0.14);
  color: #4ee88f;
}
.fit-mark.no {
  background: rgba(255, 120, 120, 0.12);
  color: #ff8e8e;
}
.fit-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.fit-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.fit-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.fit-card.is-good li::before {
  background: #4ee88f;
}
.fit-card.is-bad li::before {
  background: #ff8e8e;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 56px) auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pstep {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: var(--bg-1);
  transition: background 0.25s;
}
.pstep:last-child {
  border-right: 0;
}
.pstep:hover {
  background: var(--bg-3);
}
.pstep span {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--violet-lite);
}
.pstep p {
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* posts showcase — real output, no internal kitchen */
.posts-showcase {
  width: min(var(--max), 100%);
  margin: clamp(32px, 5vw, 48px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.thread-post {
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    radial-gradient(
      120% 100% at 0% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    ),
    var(--bg-2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.thread-post:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.32);
}
.tp-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tp-ava {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  font-weight: 700;
  color: #0a0713;
}
.tp-ava-a {
  background: linear-gradient(135deg, #ffffff, #ffffff);
}
.tp-ava-b {
  background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
}
.tp-who {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.tp-who strong {
  font-size: 15px;
}
.tp-who em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--faint);
}
.tp-flag {
  margin-left: auto;
  flex: none;
  font-family: var(--f-mono);
  font-size: 10.5px;
  padding: 4px 9px;
  border-radius: 7px;
}
.tp-flag.done {
  color: #4ee88f;
  background: rgba(70, 245, 176, 0.1);
}
.tp-flag.queue {
  color: var(--violet-lite);
  background: rgba(255, 255, 255, 0.12);
}
.tp-text {
  margin: 18px 0 20px;
  font-size: 15.5px;
  line-height: 1.58;
  color: rgba(245, 246, 251, 0.9);
}
.tp-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.tp-goto {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--violet-lite);
}

/* ==========================================================================
   DESTINATIONS marquee
   ========================================================================== */
.marquee {
  position: relative;
  width: 100%;
  margin: clamp(40px, 6vw, 56px) 0 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 14px;
  padding-left: 14px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  flex: none;
  padding: 14px 26px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: var(--bg-2);
  font-size: 16px;
  font-weight: 500;
  color: rgba(245, 246, 251, 0.86);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   PROOF cards
   ========================================================================== */
.proof-grid {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.proof-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
}
.proof-image {
  display: block;
  padding: 16px 16px 0;
  background:
    radial-gradient(
      130% 80% at 50% 0%,
      rgba(255, 255, 255, 0.14),
      transparent 62%
    ),
    var(--bg-1);
  overflow: hidden;
}
.proof-image img {
  width: 100%;
  height: 246px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line-2);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -16px 50px rgba(0, 0, 0, 0.4);
}
.proof-copy {
  padding: 24px;
}
.proof-copy span {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}
.proof-copy strong {
  display: block;
  margin: 12px 0 2px;
  font-family: var(--f-display);
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.proof-label {
  margin: 6px 0 16px !important;
  color: var(--violet-lite) !important;
  font-weight: 600;
  font-size: 13px;
}
.proof-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-grid {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.price-card.is-featured {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 62%
    ),
    var(--bg-2);
  box-shadow: var(--glow);
  transform: translateY(-8px);
}
.price-name {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}
.price-val {
  display: block;
  margin: 18px 0 4px;
  font-family: var(--f-display);
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-note {
  margin: 0 0 18px;
  color: var(--violet-lite);
  font-size: 13px;
  font-weight: 600;
}
.price-desc {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.price-card .button {
  margin-top: auto;
  width: 100%;
}
.price-badge {
  position: absolute;
  top: -11px;
  right: 24px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--grad);
  color: #0a0713;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.included {
  width: min(var(--max), 100%);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.included span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-1);
  color: var(--muted);
  font-size: 14px;
}
.included span::before {
  content: '✓';
  color: #4ee88f;
  font-weight: 700;
}

/* ==========================================================================
   ASSURANCE / no-brainer
   ========================================================================== */
.assurance {
  width: min(var(--max), 100%);
  margin: clamp(40px, 6vw, 56px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.assure-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.assure-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.assure-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--violet-lite);
}
.assure-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}
.assure-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.assure-accent {
  border-color: rgba(255, 255, 255, 0.4);
  background:
    radial-gradient(
      120% 100% at 50% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 65%
    ),
    var(--bg-2);
  box-shadow: var(--glow);
}
.assurance-anchor {
  width: min(880px, 100%);
  margin: 26px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
}
.assurance-anchor b {
  color: var(--text);
  font-weight: 600;
}

/* ==========================================================================
   WHAT IS THREADS (bold statement)
   ========================================================================== */
.whatis-section .section-head,
.cheap-section .section-head {
  width: min(100%, 900px);
}
.whatis-section h2,
.cheap-section h2 {
  font-size: clamp(30px, 5.2vw, 54px);
}
.whatis-section .section-head > p,
.cheap-section .section-head > p {
  max-width: 760px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.72);
}
.cheap-section .assurance-anchor {
  margin-top: clamp(24px, 4vw, 36px);
  font-size: clamp(17px, 2.4vw, 22px);
}
.calc-note {
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 12.5px;
  line-height: 1.5;
}
.training-sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ==========================================================================
   REAL SCREENSHOTS (how it works — real product)
   ========================================================================== */
.real-shots {
  width: min(var(--max), 100%);
  margin: clamp(32px, 5vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.shot:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.shot img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
  display: block;
}
.shot figcaption {
  padding: 15px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
}
.real-shots-note {
  width: 100%;
  margin: 16px auto 0;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
}
.split-shot {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #000;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.split-shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   POST WALL (посты, которые залетают)
   ========================================================================== */
.wall-head {
  width: min(var(--max), 100%);
  margin: clamp(44px, 6vw, 60px) auto 18px;
  font-family: var(--f-display);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: -0.03em;
}
.post-wall {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot-wall {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot-card {
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.shot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
}
.shot-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.wpost {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.wpost:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.wp-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-ava {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  font-weight: 700;
  font-size: 14px;
}
.wp-who {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.wp-who b {
  font-size: 14px;
}
.wp-who em {
  font-style: normal;
  font-size: 12px;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wp-views {
  margin-left: auto;
  flex: none;
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: -0.02em;
}
.wp-text {
  flex: 1;
  margin: 16px 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.wp-foot {
  display: flex;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.calculator {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--bg-1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.calc-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 20px;
}
.calc-lab {
  color: var(--muted);
  font-size: 14px;
}
.calc-field > strong {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--violet-lite);
}
.calculator input[type='range'] {
  grid-column: 1 / -1;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--violet) 0 var(--fill, 25%),
    rgba(255, 255, 255, 0.1) var(--fill, 25%)
  );
  outline: none;
}
.calculator input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.calculator input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.calculator input[type='number'] {
  width: 130px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  text-align: right;
  outline: none;
  transition: border-color 0.2s;
}
.calculator input[type='number']:focus {
  border-color: var(--violet);
}
.calculator-result {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.cr-cell {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}
.cr-cell span {
  font-size: 13px;
  color: var(--muted);
}
.cr-cell strong {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--f-display);
  font-size: 27px;
  letter-spacing: -0.03em;
}
.cr-cell p {
  margin: 0;
  color: var(--faint);
  font-size: 12.5px;
}
.cr-accent {
  border-color: rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    var(--bg-2);
}
.cr-accent strong {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   TRAINING
   ========================================================================== */
.training-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    var(--bg-1);
}
.training-head h2 {
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.12;
}
.training-list {
  display: grid;
  gap: 10px;
}
.training-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  font-size: 15px;
  font-weight: 500;
}
.training-list span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  width: min(860px, 100%);
  margin: clamp(40px, 6vw, 56px) auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--line-2);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 16.5px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  color: var(--violet-lite);
  font-size: 18px;
  font-weight: 400;
  transition:
    transform 0.25s var(--ease),
    background 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--grad-soft);
}
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-section {
  position: relative;
  margin: clamp(40px, 8vw, 80px) auto clamp(48px, 6vw, 72px);
  width: min(var(--max), calc(100% - 48px));
  padding: clamp(56px, 9vw, 104px) 24px;
  border: 1px solid var(--line-2);
  border-radius: calc(var(--radius) + 8px);
  text-align: center;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.28;
  -webkit-mask-image: radial-gradient(
    80% 90% at 50% 45%,
    #000,
    transparent 70%
  );
  mask-image: radial-gradient(80% 90% at 50% 45%, #000, transparent 70%);
}
.final-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final-inner .kicker {
  margin-left: auto;
  margin-right: auto;
}
.final-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 5.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.final-inner > p {
  margin: 22px auto 34px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.footer-legal {
  max-width: 440px;
  text-align: right;
  line-height: 1.5;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    max-width: 620px;
  }
  .cockpit {
    transform: none;
  }
  .hero-stage:hover .cockpit {
    transform: none;
  }
  .float-a {
    left: 2%;
  }
  .float-b {
    right: 2%;
  }
  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento,
  .pressure,
  .stepper,
  .audience-grid,
  .price-grid,
  .post-wall {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-lead {
    grid-row: auto;
    grid-column: span 2;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .stepper::before {
    display: none;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
  .pstep:nth-child(3) {
    border-right: 0;
  }
  .pstep {
    border-bottom: 1px solid var(--line);
  }
  .split,
  .split-reverse,
  .training-inner {
    grid-template-columns: 1fr;
  }
  .split-reverse .split-copy {
    order: 2;
  }
  .split-reverse .split-media {
    order: 1;
  }
  .mock-left .mock-panel,
  .mock-right .mock-panel,
  .mock:hover .mock-panel {
    transform: none;
  }
  .mock-glow {
    inset: -6% -4%;
  }
  .price-card.is-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: rgba(10, 12, 20, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }
  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .site-nav a::after {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .header-cta {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
  }
  .float-chip {
    display: none;
  }
  .hero-strip {
    grid-template-columns: 1fr;
  }
  .proof-ribbon,
  .bento,
  .pressure,
  .stepper,
  .audience-grid,
  .fit-grid,
  .price-grid,
  .proof-grid,
  .included,
  .assurance,
  .real-shots,
  .post-wall,
  .shot-wall {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .pstep {
    border-right: 1px solid var(--line);
  }
  .pstep:nth-child(2n) {
    border-right: 0;
  }
  .pstep p {
    margin-top: 18px;
  }
  .posts-showcase {
    grid-template-columns: 1fr;
  }
  .mock-fade {
    background: linear-gradient(to bottom, transparent 72%, var(--bg));
  }
  .an-big {
    font-size: 30px;
  }
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band .button {
    width: 100%;
  }
  .bento-lead,
  .bento-wide {
    grid-column: auto;
  }
  .cockpit-grid {
    grid-template-columns: 1fr;
  }
  .cockpit-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cockpit-col:last-child {
    border-bottom: 0;
  }
  .price-card.is-featured {
    order: -1;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-legal {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  .float-a,
  .float-b,
  .live-dot {
    animation: none;
  }
  * {
    transition: none !important;
  }
}
