/* ============================================================
   Gblaster landing — Plus Jakarta Sans + Inter
   ============================================================ */

:root {
  /* color */
  --bg:          #ffffff;
  --bg-subtle:   oklch(0.984 0.003 255);
  --bg-panel:    oklch(0.974 0.004 255);
  --ink:         oklch(0.22 0.012 260);
  --ink-strong:  oklch(0.15 0.015 262);
  --ink-soft:    oklch(0.50 0.012 260);
  --ink-faint:   oklch(0.62 0.010 260);
  --border:      oklch(0.912 0.005 260);
  --border-soft: oklch(0.943 0.004 260);
  --accent:      oklch(0.50 0.21 258);
  --accent-deep: oklch(0.44 0.21 258);
  --accent-tint: oklch(0.965 0.022 262);
  --accent-ink:  #ffffff;
  --good:        oklch(0.57 0.14 155);
  --good-tint:   oklch(0.952 0.042 155);
  --warn:        oklch(0.70 0.14 75);

  /* type */
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --sans:    "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:    ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  /* layout */
  --maxw:      1240px;
  --gutter:    24px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 260 / 0.06), 0 1px 3px oklch(0.2 0.02 260 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.2 0.02 260 / 0.08), 0 2px 6px oklch(0.2 0.02 260 / 0.05);
  --shadow-lg: 0 24px 60px oklch(0.2 0.03 262 / 0.13), 0 8px 22px oklch(0.2 0.02 260 / 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink-strong);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(64px, 9vw, 124px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 18px;
}

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.035em;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 19px;
  margin-top: 18px;
  line-height: 1.6;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 3px oklch(0.2 0.02 260 / 0.08), 0 0 0 1px var(--accent-deep) inset;
}
.btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 4px 12px oklch(0.44 0.21 258 / 0.28), 0 0 0 1px var(--accent-deep) inset;
}
.btn-ghost {
  background: var(--bg);
  color: var(--ink-strong);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink-faint); }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 10px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(1 0 0 / 0.80);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: oklch(1 0 0 / 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--ink-strong);
}
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--ink-strong);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink-strong); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-actions .signin {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s ease;
}
.nav-actions .signin:hover { color: var(--accent-deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background:
    radial-gradient(110% 60% at 50% 0%, oklch(0.50 0.21 258 / 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.hero-copy { max-width: 560px; text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 6px 13px 6px 9px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px var(--good-tint);
}
.hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  letter-spacing: -0.04em;
  max-width: 16ch;
  line-height: 1.06;
  font-weight: 800;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 50ch;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-faint);
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 640px; margin-inline: auto; text-align: center; }
  .hero h1 { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
}

/* ---------- distribution animation ---------- */
.dist-shell {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.dist-shell::before {
  content: "";
  position: absolute;
  inset: -8% -6% -10%;
  background: radial-gradient(60% 50% at 50% 45%, oklch(0.50 0.21 258 / 0.09), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.dist {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px 16px;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.6) inset,
    0 18px 40px -24px oklch(0.2 0.03 262 / 0.28),
    0 4px 14px -8px oklch(0.2 0.02 260 / 0.10);
}
.dist-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dist-title {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-size: 15px; font-weight: 700; color: var(--ink-strong); letter-spacing: -0.02em;
}
.sx-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.sx-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--good);
}
.sx-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good);
  animation: rotPulse 1.6s ease-in-out infinite;
}
@keyframes rotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.65); } }

.dist-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(10px, 3vw, 24px);
  padding: 26px 4px 24px;
}

.dist-source { display: grid; justify-items: center; gap: 8px; width: 92px; }
.src-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(155deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 22px -10px var(--accent), inset 0 1px 0 oklch(1 0 0 / 0.25);
  animation: srcBreathe 3s ease-in-out infinite;
}
@keyframes srcBreathe {
  0%, 100% { box-shadow: 0 10px 22px -10px var(--accent), inset 0 1px 0 oklch(1 0 0 / 0.25); }
  50% { box-shadow: 0 12px 30px -8px var(--accent), 0 0 0 6px var(--accent-tint), inset 0 1px 0 oklch(1 0 0 / 0.25); }
}
.src-label {
  font-family: var(--display);
  font-size: 14px; font-weight: 700; color: var(--ink-strong); letter-spacing: -0.02em;
}
.src-sub { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.src-sub b { color: var(--ink-strong); font-weight: 600; font-variant-numeric: tabular-nums; transition: color .2s ease; }
.src-sub.bump b { color: var(--accent-deep); }

.dist-rails { display: grid; gap: 22px; align-content: center; }
.rail {
  position: relative; height: 2px; border-radius: 2px;
  background: var(--border);
  transition: background .3s ease;
}
.rail .chev {
  position: absolute; right: -3px; top: 50%; transform: translateY(-50%);
  font-size: 17px; line-height: 1; color: var(--ink-faint);
  transition: color .3s ease, transform .3s ease;
}
.rail .pkt {
  position: absolute; top: 50%; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-2px, -50%) scale(0);
  opacity: 0;
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.rail.firing { background: color-mix(in oklch, var(--accent) 35%, var(--border)); }
.rail.firing .chev { color: var(--accent); transform: translateY(-50%) translateX(2px); }
.rail.firing .pkt { animation: pktFly .62s cubic-bezier(.4,0,.5,1) forwards; }
@keyframes pktFly {
  0%   { left: 0;    opacity: 0; transform: translate(-2px, -50%) scale(0); }
  15%  { opacity: 1; transform: translate(-2px, -50%) scale(1); }
  85%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { left: 100%; opacity: 0; transform: translate(-90%, -50%) scale(.4); }
}

.dist-accounts { display: grid; gap: 10px; }
.acct {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 9px 11px;
  min-width: 134px;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}
.acct-av {
  width: 24px; height: 24px; border-radius: 7px; flex: none;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 11px; font-weight: 700; color: #fff; background: var(--c);
}
.acct-name {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-strong);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.acct-ic {
  margin-left: auto; flex: none; display: grid; place-items: center;
  color: var(--ink-faint); transition: color .25s ease;
}
.acct.active {
  border-color: color-mix(in oklch, var(--c) 60%, var(--border));
  background: color-mix(in oklch, var(--c) 7%, var(--bg));
  transform: translateX(2px);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--c) 35%, transparent),
              0 14px 24px -16px var(--c);
}
.acct.active .acct-ic { color: var(--c); }
.acct.recent { border-color: color-mix(in oklch, var(--c) 30%, var(--border)); }

.dist-foot {
  display: flex; align-items: center; gap: 9px;
  margin-top: 4px; padding-top: 15px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--ink-soft);
}
.dist-foot svg { color: var(--ink-faint); flex: none; }
.dist-foot b { color: var(--ink-strong); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .src-icon, .rail.firing .pkt { animation: none; }
}

.pill {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 999px; background: var(--accent-tint);
  color: var(--accent-deep); white-space: nowrap;
}

/* ============================================================
   CAPABILITY STRIP
   ============================================================ */
.strip {
  border-block: 1px solid var(--border);
  background: var(--bg-subtle);
  padding-block: 30px;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  align-items: center;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.strip-item svg { color: var(--accent); flex: none; }
.strip-sep { width: 1px; height: 16px; background: var(--border); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feat {
  background: var(--bg);
  padding: 32px 30px 36px;
  transition: background .15s ease;
}
.feat:hover { background: var(--bg-subtle); }
.feat .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feat h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.feat p { color: var(--ink-soft); font-size: 15px; margin-top: 10px; line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg-subtle); border-block: 1px solid var(--border); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.how-step { position: relative; }
.how-step .num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.05em;
}
.how-step .bar { height: 2px; background: var(--border); margin: 14px 0 18px; position: relative; }
.how-step .bar::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 34px; background: var(--accent);
}
.how-step h3 { font-size: 17.5px; letter-spacing: -0.025em; }
.how-step p { color: var(--ink-soft); font-size: 15px; margin-top: 9px; line-height: 1.6; }

/* ============================================================
   DEEP-DIVE BLOCKS
   ============================================================ */
.dive { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.dive + .dive { margin-top: clamp(72px, 10vw, 128px); }
.dive.flip .dive-media { order: -1; }
.dive-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.04em;
  font-weight: 800;
}
.dive-copy p.lead { color: var(--ink-soft); font-size: 17.5px; margin-top: 18px; line-height: 1.65; }
.dive-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.dive-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); line-height: 1.55; }
.dive-list .check {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--good-tint); color: var(--good);
  display: grid; place-items: center; margin-top: 2px; font-size: 11px;
}
.dive-note {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-soft);
  font-size: 14px; color: var(--ink-faint); line-height: 1.6; max-width: 460px;
}

/* media cards inside dives */
.media-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.media-card .mc-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
}
.media-card .mc-body { padding: 20px; }

/* safety usage list */
.usage-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.usage-row + .usage-row { border-top: 1px solid var(--border-soft); }
.usage-row .av {
  width: 32px; height: 32px; border-radius: 8px; flex: none;
  display: grid; place-items: center; color: #fff;
  font-family: var(--display);
  font-weight: 700; font-size: 13px;
}
.usage-row .u-meta { flex: 1; min-width: 0; }
.usage-row .u-em { font-family: var(--mono); font-size: 12.5px; color: var(--ink); }
.usage-row .u-bar { height: 5px; border-radius: 6px; background: var(--border); margin-top: 7px; overflow: hidden; }
.usage-row .u-bar i { display: block; height: 100%; border-radius: 6px; }
.usage-row .u-num { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.usage-row .tag {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px; white-space: nowrap; letter-spacing: 0.04em;
}
.tag.safe { background: var(--good-tint); color: var(--good); }
.tag.hold { background: oklch(0.96 0.04 75); color: var(--warn); }

/* mcp terminal */
.term { background: var(--ink-strong); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.term .t-top {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.term .t-top i { width: 10px; height: 10px; border-radius: 50%; background: oklch(1 0 0 / 0.18); display: block; }
.term .t-top span { margin-left: 6px; font-family: var(--mono); font-size: 11.5px; color: oklch(1 0 0 / 0.45); }
.term .t-body { padding: 18px 18px 22px; font-family: var(--mono); font-size: 13px; line-height: 1.8; }
.term .you { color: oklch(0.92 0.01 260); }
.term .you::before { content: "› "; color: var(--accent); }
.term .ai { color: oklch(0.72 0.02 260); }
.term .ai .hl { color: oklch(0.85 0.08 155); }
.term .ai .b { color: #fff; font-weight: 600; }
.term .cursor {
  display: inline-block; width: 8px; height: 15px;
  background: var(--accent); vertical-align: -2px; margin-left: 2px;
  animation: blink 1.1s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ai campaign builder mock */
.aicard .ai-brief {
  background: var(--bg-subtle); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: 14px 16px;
}
.aicard .ai-brief-label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent-deep);
}
.aicard .ai-brief p { font-size: 14px; color: var(--ink); margin-top: 6px; line-height: 1.55; }
.aicard .ai-arrow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 14px 0; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep);
}
.aicard .ai-arrow svg { color: var(--accent); }
.aicard .ai-mails { display: flex; flex-direction: column; gap: 10px; }
.aicard .ai-mail {
  border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; background: var(--bg);
}
.aicard .ai-to {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
}
.aicard .ai-to .av {
  width: 22px; height: 22px; border-radius: 6px; flex: none;
  display: grid; place-items: center; color: #fff;
  font-family: var(--display);
  font-weight: 700; font-size: 11px;
}
.aicard .ai-subj {
  font-family: var(--display);
  font-size: 13.5px; font-weight: 600; color: var(--ink-strong); margin-top: 8px; letter-spacing: -0.01em;
}
.aicard .ai-line { font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; line-height: 1.5; }

/* sequence builder mock */
.seqcard .row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0;
}
.seqcard .row + .row { border-top: 1px solid var(--border-soft); }
.seqcard .badge {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  width: 58px; flex: none; color: var(--accent-deep);
}
.seqcard .txt { flex: 1; }
.seqcard .txt .h {
  font-family: var(--display);
  font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em;
}
.seqcard .txt .s { font-size: 12.5px; color: var(--ink-faint); margin-top: 1px; }
.seqcard .state {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px; background: var(--bg-panel); color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.seqcard .state.fired { background: var(--good-tint); color: var(--good); }
.seqcard .reply-note {
  margin-top: 16px; padding: 12px 14px;
  background: var(--accent-tint); border-radius: 10px;
  font-size: 13px; color: var(--accent-deep); display: flex; gap: 9px; align-items: flex-start;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-subtle); border-top: 1px solid var(--border); }
.price-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.price-head .eyebrow { text-align: center; }
.price-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.price-head p { color: var(--ink-soft); font-size: 18px; margin-top: 18px; }

.price-banner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  max-width: 920px;
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.pb-buy {
  padding: 38px 36px;
  border-right: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--accent-tint) 0%, var(--bg) 70%);
  display: flex;
  flex-direction: column;
}
.pb-buy .plan {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-deep); font-weight: 600;
}
.pb-buy .amt { display: flex; align-items: baseline; gap: 6px; margin-top: 16px; }
.pb-buy .amt .cur {
  font-family: var(--display);
  font-size: 28px; font-weight: 700; color: var(--ink-strong);
}
.pb-buy .amt .num {
  font-family: var(--display);
  font-size: 68px; font-weight: 800; color: var(--ink-strong); letter-spacing: -0.06em; line-height: 0.9;
}
.pb-buy .amt .per { font-size: 17px; color: var(--ink-faint); font-weight: 500; }
.pb-buy .sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 12px; }
.pb-buy .btn { width: 100%; justify-content: center; margin-top: 26px; }
.pb-buy .micro { font-size: 13px; color: var(--ink-faint); margin-top: 14px; text-align: center; }

.pb-incl { padding: 38px 36px; }
.pb-incl-title {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; font-weight: 600;
}
.pb-feats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px;
}
.pb-feats li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink); align-items: flex-start; }
.pb-feats .check {
  flex: none; width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center; margin-top: 1px; font-size: 11px;
}

/* ============================================================
   ACTIVITY FEED (hero media)
   ============================================================ */
.hero-media { width: 100%; }
.feed {
  position: relative; height: 300px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.feed-track { animation: feedUp 16s linear infinite; }
@keyframes feedUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.fe { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-top: 1px solid var(--border-soft); }
.fe-ic { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; }
.fe-ic svg { width: 15px; height: 15px; }
.fe-ic.sent  { background: var(--accent-tint); color: var(--accent-deep); }
.fe-ic.open  { background: var(--good-tint);   color: var(--good); }
.fe-ic.reply { background: oklch(0.95 0.03 300); color: oklch(0.5 0.16 300); }
.fe-main { flex: 1; min-width: 0; }
.fe-t { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.fe-t b { font-family: var(--display); font-weight: 700; color: var(--ink-strong); }
.fe-s { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
.fe-time { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); flex: none; }
@media (prefers-reduced-motion: reduce) { .feed-track { animation: none; } }

/* ============================================================
   BIG-NUMBER PRICING
   ============================================================ */
.bigp { text-align: center; max-width: 760px; margin-inline: auto; }
.bigp .plan {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-deep); font-weight: 600;
}
.big-amt { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-top: 16px; }
.big-amt .cur {
  font-family: var(--display);
  font-size: 50px; font-weight: 800; color: var(--ink-strong); letter-spacing: -0.04em;
}
.big-amt .num {
  font-family: var(--display);
  font-size: clamp(96px, 13vw, 140px); font-weight: 800; letter-spacing: -0.07em;
  line-height: 0.82; color: var(--ink-strong);
}
.big-amt .per { font-size: 24px; color: var(--ink-faint); font-weight: 500; }
.bigp .big-sub { font-size: 19px; color: var(--ink-soft); margin-top: 18px; max-width: 540px; margin-inline: auto; line-height: 1.6; }
.bigp .btn { margin: 30px auto 0; }
.big-feats { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; margin-top: 34px; }
.fchip {
  display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--border); padding: 10px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.fchip .fck { color: var(--good); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 800px; margin-inline: auto; }
.faq-list { border-top: 1px solid var(--border); margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: var(--display);
  font-size: 17px; font-weight: 700;
  color: var(--ink-strong); letter-spacing: -0.02em;
}
.faq-q .ic { flex: none; transition: transform .2s ease; color: var(--ink-faint); font-family: var(--sans); font-weight: 400; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.faq-a p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px; max-width: 660px; line-height: 1.65; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta-final { text-align: center; }
.cta-final h2 {
  font-size: clamp(30px, 4.4vw, 50px); max-width: 720px; margin-inline: auto;
  letter-spacing: -0.04em; font-weight: 800;
}
.cta-final p { color: var(--ink-soft); font-size: 19px; margin-top: 18px; max-width: 520px; margin-inline: auto; line-height: 1.6; }
.cta-final .hero-cta { margin-top: 30px; justify-content: center; }

.footer { border-top: 1px solid var(--border); background: var(--bg-subtle); padding-block: 48px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--ink-soft); transition: color .15s ease; }
.footer-links a:hover { color: var(--ink-strong); }
.footer .copy { font-size: 13.5px; color: var(--ink-faint); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .dive { grid-template-columns: 1fr; }
  .price-banner { grid-template-columns: 1fr; max-width: 520px; }
  .pb-buy { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .dive.flip .dive-media { order: 0; }
  .nav-links { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .pb-feats { grid-template-columns: 1fr; }
  .hero-cta .btn, .pb-buy .btn { flex: 1; justify-content: center; }
}
