:root {
  --bg: #fbfdfb;
  --bg-alt: #f1f5f1;
  --bg-dark: #0c2c16;
  --ink: #1a1c1a;
  --ink-2: #424842;
  --ink-3: #727971;
  --line: #c2c8bf;
  --sage: #46664b;
  --sage-2: #accfaf;
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 16px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "Menlo", monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 64px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.022em;
}
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
.hidden { display: none !important; }

/* ── Nav ── */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,253,251,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav {
  max-width: 1024px; margin: 0 auto; padding: 0 22px;
  height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
}
.nav .brand { font-weight: 500; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.nav ul { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav ul a { color: var(--ink); opacity: 0.85; font-weight: 400; font-size: 12px; text-decoration: none; transition: opacity .15s; }
.nav ul a:hover, .nav ul a.nav-active { opacity: 1; color: var(--sage); }
.nav .right { display: flex; gap: 18px; align-items: center; font-size: 12px; }
#nav-auth-btn {
  background: 0; border: 0; cursor: pointer; font-family: inherit;
  font-size: 12px; color: var(--ink); opacity: 0.85; padding: 0; font-weight: 400;
}
#nav-auth-btn:hover { opacity: 1; }
.nav-hamburger {
  display: none; background: 0; border: 0; cursor: pointer;
  color: var(--ink); padding: 4px; line-height: 0;
}
#mobile-menu {
  height: 0; overflow: hidden;
  transition: height .35s cubic-bezier(0.16,1,0.3,1);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mm-inner { padding: 14px 22px 20px; display: flex; flex-direction: column; gap: 14px; }
.mm-inner a, .mm-inner button {
  color: var(--ink); font-size: 15px; font-weight: 400;
  text-decoration: none; background: 0; border: 0; cursor: pointer;
  text-align: left; font-family: inherit; padding: 2px 0;
}
.mm-inner a:hover, .mm-inner button:hover { color: var(--sage); }
@media (max-width: 680px) {
  .nav ul { display: none; }
  .nav .right { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Toast ── */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 200; background: var(--bg-dark); color: #accfaf;
  padding: 12px 20px; border-radius: var(--radius-m);
  font-size: 14px; font-weight: 500;
  opacity: 0; transition: opacity .3s ease, transform .3s ease;
  pointer-events: none; box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4);
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ── Modal ── */
#modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.42); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100; display: flex; align-items: center; justify-content: center; padding: 22px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
#modal-overlay[hidden] { display: none; }
#modal-overlay.show { opacity: 1; pointer-events: all; }
#modal-box {
  background: var(--bg); width: 100%; max-width: 440px; border-radius: var(--radius-l);
  padding: 40px 40px 34px; position: relative;
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.3);
}
#modal-overlay.show #modal-box { opacity: 1; transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-alt); border: 0; border-radius: 50%;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-2); font-size: 18px; line-height: 1;
  transition: background .15s;
}
.modal-close:hover { background: var(--line); }
.modal-eyebrow { font-size: 11px; font-weight: 600; color: var(--sage); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.modal-title { font-size: 28px; font-weight: 700; letter-spacing: -0.028em; margin: 0 0 6px; color: var(--ink); }
.modal-desc { font-size: 14px; color: var(--ink-2); margin: 0 0 22px; line-height: 1.45; }
.modal-tabs { display: flex; background: var(--bg-alt); border-radius: 999px; padding: 3px; margin-bottom: 22px; }
.modal-tab {
  flex: 1; padding: 7px 14px; border-radius: 999px; border: 0;
  font-family: inherit; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background .15s, color .15s; color: var(--ink-2);
}
.modal-tab.active { background: var(--bg-dark); color: white; }
.modal-field { margin-bottom: 14px; }
.modal-label { font-size: 11px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.04em; margin-bottom: 6px; display: block; }
.modal-input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 11px 14px; font-family: inherit; font-size: 14px; color: var(--ink);
  background: var(--bg-alt); outline: none; transition: border-color .15s, background .15s;
}
.modal-input:focus { border-color: var(--sage); background: white; }
.modal-input.otp-input { text-align: center; letter-spacing: 0.3em; font-size: 28px; font-weight: 700; font-family: var(--mono); padding: 14px; }
.modal-error { background: #fff2f2; color: #c0392b; border-radius: 10px; padding: 10px 14px; font-size: 12px; font-weight: 500; margin-bottom: 4px; }
.modal-cta {
  width: 100%; background: var(--bg-dark); color: white;
  border: 0; border-radius: 999px; padding: 14px;
  font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; transition: background .15s; margin-top: 10px; display: block; text-align: center;
}
.modal-cta:hover { background: #1a4228; }
.modal-cta:disabled { opacity: 0.5; cursor: not-allowed; }
.modal-footer { font-size: 11px; color: var(--ink-3); margin-top: 18px; line-height: 1.5; }
.modal-footer a { color: var(--ink-3); text-decoration: underline; }
#modal-email-app-notice { font-size: 11px; color: var(--ink-3); line-height: 1.5; padding: 6px 0 0; }

/* ── Sections ── */
section { padding: 72px 22px 64px; text-align: center; }
section.light { background: var(--bg); color: var(--ink); }
section.gray  { background: var(--bg-alt); color: var(--ink); }
section.dark  { background: var(--bg-dark); color: white; }
section.dark .sub, section.dark .eyebrow { color: rgba(172,207,175,0.7); }
.wrap   { max-width: 980px; margin: 0 auto; }
.narrow { max-width: 740px; margin: 0 auto; }

/* ── Eyebrow + headline ── */
.eyebrow { font-size: 21px; font-weight: 600; letter-spacing: 0.004em; color: var(--sage); margin: 0 0 10px; }
section.dark .eyebrow { color: var(--sage-2); }
.headline {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 740; letter-spacing: -0.035em; line-height: 1.03;
  margin: 0 0 16px; max-width: 20ch; margin-inline: auto;
}
.headline .accent {
  color: var(--sage);
}
@keyframes accent-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.sub {
  font-size: clamp(19px, 1.4vw, 22px); color: var(--ink-2);
  max-width: 36ch; margin: 0 auto 28px;
  line-height: 1.4; font-weight: 400; letter-spacing: -0.012em;
}

/* ── Product-led hero ── */
#hero {
  min-height: calc(92svh - 48px);
  padding: 70px 22px 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-wrap {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.25fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  text-align: left;
}
.hero-copy .headline,
.hero-copy .sub {
  margin-inline: 0;
}
.hero-copy .sub {
  max-width: 31rem;
}
.hero-copy .cta-row {
  justify-content: flex-start;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--ink-3);
  font-size: 13px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.product-stage {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-window {
  width: min(720px, 100%);
  aspect-ratio: 1.38;
  border: 1px solid rgba(12,44,22,0.14);
  border-radius: var(--radius-l);
  background: #f7faf8;
  box-shadow: 0 42px 90px -36px rgba(12,44,22,0.42);
  display: grid;
  grid-template-columns: 184px 1fr;
  overflow: hidden;
  transform: rotate(-1deg);
}
.app-sidebar {
  background: #eff5f2;
  border-right: 1px solid rgba(12,44,22,0.08);
  padding: 24px 18px;
}
.app-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--bg-dark);
  font-weight: 800;
  margin-bottom: 30px;
}
.app-brand span {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--sage);
  display: inline-block;
}
.app-nav {
  padding: 10px 12px;
  margin-bottom: 4px;
  border-radius: var(--radius-s);
  color: rgba(12,44,22,0.58);
  font-size: 13px;
  font-weight: 650;
}
.app-nav.active {
  background: #fbfdfc;
  color: var(--sage);
  box-shadow: 0 1px 2px rgba(12,44,22,0.05);
}
.app-main {
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
}
.app-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-3);
  font-size: 12px;
}
.app-top span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a9a61;
  margin-right: 7px;
}
.app-top strong {
  color: var(--ink-2);
}
.task-card {
  background: var(--bg-dark);
  color: #eef8ef;
  border-radius: var(--radius-l);
  padding: 18px 20px;
}
.task-card small,
.workflow-list small {
  color: rgba(172,207,175,0.74);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}
.task-card p {
  margin: 7px 0 0;
  line-height: 1.45;
  font-size: 16px;
}
.task-timeline {
  display: grid;
  gap: 12px;
  align-content: center;
  color: var(--ink-2);
  font-size: 14px;
}
.task-timeline div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.task-timeline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(70,102,75,0.1);
}
.compose-preview {
  border: 1px solid rgba(12,44,22,0.12);
  border-radius: var(--radius-l);
  color: var(--ink-3);
  padding: 14px 16px;
  font-size: 14px;
  background: #fbfdfc;
}
.proof-strip {
  padding: 0 22px;
  background: var(--bg);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid div {
  padding: 24px 18px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.proof-grid div:last-child {
  border-right: 0;
}
.proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.proof-grid span {
  display: block;
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 3px;
}

/* ── CTAs ── */
.cta-row { display: inline-flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; }
.link-cta { font-size: 17px; color: var(--sage); font-weight: 400; letter-spacing: -0.022em; display: inline-flex; align-items: center; gap: 4px; }
.link-cta:hover { text-decoration: underline; }
section.dark .link-cta { color: var(--sage-2); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-dark); color: white;
  padding: 12px 22px; border-radius: 980px;
  font-size: 17px; font-weight: 400; letter-spacing: -0.022em;
  text-decoration: none; transition: background .15s;
  border: 0; cursor: pointer; font-family: inherit;
}
.btn:hover { background: #1a4228; text-decoration: none; }

/* ── Hero terminal ── */
.device {
  margin: 56px auto 0; max-width: 820px; border-radius: 18px;
  background: linear-gradient(180deg, #1a2e1e 0%, #0c2c16 100%);
  padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(12,44,22,0.35), 0 0 0 1px rgba(172,207,175,0.08);
}
.device-screen {
  background: #0f2212; border-radius: 10px; padding: 22px 26px;
  text-align: left; font-family: var(--mono); font-size: 14px;
  line-height: 1.8; color: #e8f5ea; min-height: 200px;
}
.term-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.term-dots span { width: 12px; height: 12px; border-radius: 50%; }
.term-dots span:nth-child(1) { background: #ff5f57; }
.term-dots span:nth-child(2) { background: #febc2e; }
.term-dots span:nth-child(3) { background: #28c840; }
.prompt { color: #accfaf; }
.ok   { color: #28c840; }
.acc  { color: #c7ecca; }

/* ── Two-up ── */
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; text-align: left; }
@media (max-width: 800px) { .two-up { grid-template-columns: 1fr; } }
.tile { background: #fbfdfc; border-radius: var(--radius-l); padding: 40px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
section.gray .tile { background: #fbfdfc; }
.tile h3 { font-size: 28px; letter-spacing: -0.028em; font-weight: 600; margin: 0 0 8px; line-height: 1.1; }
.tile p  { color: var(--ink-2); margin: 0 0 18px; font-size: 17px; line-height: 1.45; }
.tile pre { margin: 0; font-family: var(--mono); font-size: 13px; line-height: 1.7; background: #f5f5f7; color: var(--ink); padding: 18px; border-radius: 12px; overflow-x: auto; }

/* ── Workflows and process ── */
.workflow-list {
  margin-top: 56px;
  text-align: left;
  border-top: 1px solid var(--line);
}
.workflow-list article {
  display: grid;
  grid-template-columns: 64px minmax(200px, 0.8fr) minmax(260px, 1.2fr) 180px;
  gap: 22px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.workflow-index {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 13px;
}
.workflow-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.workflow-list p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.workflow-list small {
  color: var(--sage);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: #fbfdfc;
}
.process div {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}
.process div:last-child {
  border-right: 0;
}
.process span {
  display: block;
  color: var(--sage);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}
.process p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

/* ── Numbers ── */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 800px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
.numbers .n { padding: 44px 18px; text-align: center; border-right: 1px solid var(--line); }
.numbers .n:last-child { border-right: 0; }
.numbers .v { font-size: clamp(48px, 6vw, 72px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.numbers .v .unit { color: var(--ink-3); font-weight: 500; }
.numbers .l { color: var(--ink-2); font-size: 15px; margin-top: 10px; letter-spacing: -0.01em; }

/* ── Bench bars ── */
.bench { text-align: left; max-width: 720px; margin: 40px auto 0; }
.bench-row { display: grid; grid-template-columns: 140px 1fr 110px; align-items: center; gap: 18px; margin-bottom: 14px; }
.bench-row .name { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.bench-row.win .name { color: var(--ink); font-weight: 600; }
.bench-bar { height: 12px; background: #e7e9e5; border-radius: 999px; overflow: hidden; }
.bench-bar > span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--ink-3); transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.bench-row.win .bench-bar > span { background: linear-gradient(90deg, #accfaf, #46664b); }
.bench-row .t { font-family: var(--mono); font-size: 13px; color: var(--ink-2); text-align: right; }
.bench-row.win .t { color: var(--ink); font-weight: 600; }
.bench-toggle { display: inline-flex; padding: 3px; background: var(--bg-alt); border-radius: 999px; font-size: 13px; margin: 24px 0 8px; }
.bench-toggle button { background: transparent; border: 0; padding: 7px 16px; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.bench-toggle button.active { background: white; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

/* ── Compare table ── */
.compare { width: 100%; border-collapse: collapse; margin-top: 40px; text-align: left; font-size: 15px; background: #fbfdfc; border-radius: var(--radius-l); overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.compare th, .compare td { padding: 18px 22px; border-bottom: 1px solid var(--line); }
.compare th { background: var(--bg-alt); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); font-weight: 600; }
.compare td.feat  { font-weight: 500; }
.compare td.biome { color: var(--sage); font-weight: 500; }
.compare .n { color: var(--ink-3); }
.compare .p { color: #ff9500; }
.compare tr:last-child td { border-bottom: 0; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; text-align: left; }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-tile { background: #fbfdfc; border-radius: var(--radius-l); padding: 40px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.pricing-tile.featured { background: var(--bg-dark); color: white; box-shadow: 0 24px 48px -12px rgba(12,44,22,0.4); }
.pricing-plan { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.pricing-tile.featured .pricing-plan { color: rgba(172,207,175,0.5); }
.pricing-price { font-size: clamp(36px,4vw,52px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.pricing-cadence { font-size: 14px; color: var(--ink-3); margin: 6px 0 28px; }
.pricing-tile.featured .pricing-cadence { color: rgba(172,207,175,0.6); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.pricing-features li { padding: 10px 0; font-size: 15px; color: var(--ink-2); border-bottom: 1px solid var(--line); display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li:last-child { border-bottom: 0; }
.pricing-tile.featured .pricing-features li { color: rgba(172,207,175,0.85); border-color: rgba(172,207,175,0.12); }
.pricing-check { color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pricing-tile.featured .pricing-check { color: var(--sage-2); }
.pricing-cta {
  display: block; text-align: center; text-decoration: none;
  background: var(--bg-dark); color: white; padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500; cursor: pointer; border: 0; width: 100%;
  font-family: inherit; letter-spacing: -0.01em; transition: background .15s;
}
.pricing-cta:hover { background: #1a4228; text-decoration: none; }
.pricing-tile.featured .pricing-cta { background: var(--sage-2); color: var(--bg-dark); font-weight: 600; }
.pricing-tile.featured .pricing-cta:hover { background: #c7ecca; }

/* ── Download card ── */
.dl-box { max-width: 560px; margin: 36px auto 0; background: #1a3d20; border-radius: var(--radius-l); padding: 40px; text-align: center; box-shadow: 0 12px 32px -12px rgba(0,0,0,0.4); }
.dl-box .v-badge { display: inline-block; font-family: var(--mono); font-size: 12px; background: rgba(172,207,175,0.12); color: var(--sage-2); padding: 4px 12px; border-radius: 999px; margin-bottom: 20px; }
.dl-box .dl-title { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; margin: 0 0 8px; color: white; }
.dl-box .dl-sub   { font-size: 15px; color: rgba(172,207,175,0.65); margin: 0 0 28px; }
.dl-box .btn-dl {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-2); color: #0c2c16;
  padding: 14px 28px; border-radius: 980px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.022em;
  text-decoration: none; transition: background .15s;
  border: 0; cursor: pointer; font-family: inherit;
}
.dl-box .btn-dl:hover { background: #c7ecca; text-decoration: none; }
.dl-box .req { font-size: 12px; color: rgba(172,207,175,0.45); margin-top: 14px; }

/* ── Security cards ── */
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; text-align: left; }
@media (max-width: 800px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card { background: #fbfdfc; border-radius: var(--radius-l); padding: 36px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.sec-icon { width: 44px; height: 44px; background: var(--bg-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; }
.sec-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 8px; }
.sec-card p  { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; text-align: left; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-intro h2 { font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.04em; margin: 0 0 16px; line-height: 1.05; }
.faq-intro p  { font-size: 17px; color: var(--ink-2); margin: 0 0 24px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; background: 0; border: 0; cursor: pointer; text-align: left; gap: 16px; font-family: inherit; }
.faq-trigger h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
.faq-body { height: 0; overflow: hidden; transition: height .35s cubic-bezier(0.16,1,0.3,1); }
.faq-body p { font-size: 15px; color: var(--ink-2); line-height: 1.6; padding-bottom: 18px; margin: 0; }
.faq-chevron { flex-shrink: 0; transition: transform .3s cubic-bezier(0.16,1,0.3,1); color: var(--ink-3); }
.faq-chevron.open { transform: rotate(180deg); }

/* ── Quotes ── */
.quotes-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 800px) { .quotes-row { grid-template-columns: 1fr; } }
.quote-card { background: white; border-radius: 22px; padding: 36px; text-align: left; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.quote-card .q   { font-size: 21px; line-height: 1.35; letter-spacing: -0.02em; margin: 0 0 24px; font-weight: 500; }
.quote-card .who { font-size: 14px; color: var(--ink-2); }

.run-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.run-list article {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}
.run-list article:last-child {
  border-right: 0;
}
.run-list span {
  display: block;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}
.run-list p {
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
  font-size: 17px;
}

/* ── Audience logos ── */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 800px) { .logos { grid-template-columns: repeat(3, 1fr); } }
.logos > div { padding: 28px 0; text-align: center; font-weight: 500; font-size: 17px; color: var(--ink-2); border-right: 1px solid var(--line); letter-spacing: -0.02em; transition: color .15s; }
.logos > div:hover { color: var(--ink); }
.logos > div:nth-child(6n) { border-right: 0; }
.logos > div:nth-child(n+7) { border-top: 1px solid var(--line); }

/* ── Blog ── */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; text-align: left; }
@media (max-width: 800px) { .posts { grid-template-columns: 1fr; } }
.post { background: #fbfdfc; border-radius: var(--radius-l); padding: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); transition: transform .25s ease, box-shadow .25s ease; }
.post:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.1); }
.post .date { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.post h3    { font-size: 22px; letter-spacing: -0.02em; font-weight: 600; margin: 12px 0 8px; line-height: 1.18; }
.post p     { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.65; }
.post-body  { font-size: 15px; color: var(--ink-2); line-height: 1.72; margin-top: 14px; display: none; }
.post-body.open { display: block; }
.post-body p { margin: 0 0 12px; }
.post-body p:last-child { margin-bottom: 0; }
.post-toggle { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--bg-dark); cursor: pointer; background: none; border: none; padding: 0; letter-spacing: -0.01em; }
.post-toggle .arr { transition: transform .25s ease; display: inline-block; }
.post-toggle.open .arr { transform: rotate(90deg); }

/* ── Footer ── */
footer { background: var(--bg-alt); color: var(--ink-2); padding: 28px 22px; font-size: 12px; text-align: center; border-top: 1px solid var(--line); }
footer a { color: var(--ink-2); margin: 0 10px; }
footer a:hover { color: var(--ink); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in, .reveal:target { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .bench-bar > span { transition: none; }
}

@media (max-width: 960px) {
  #hero {
    min-height: auto;
    padding: 58px 22px 34px;
  }
  .hero-wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .product-stage {
    min-height: 0;
  }
  .app-window {
    transform: none;
  }
  .workflow-list article {
    grid-template-columns: 48px 1fr;
  }
  .workflow-list p,
  .workflow-list small {
    grid-column: 2;
  }
  .proof-grid,
  .process,
  .run-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid div:nth-child(2),
  .process div:nth-child(2),
  .run-list article:nth-child(2) {
    border-right: 0;
  }
  .process div:nth-child(n+3),
  .run-list article:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  section {
    padding: 56px 18px 50px;
  }
  .hero-wrap {
    width: calc(100vw - 36px);
    gap: 28px;
  }
  .hero-copy .headline {
    font-size: clamp(38px, 14vw, 54px);
  }
  .app-window {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }
  .app-sidebar {
    display: none;
  }
  .app-main {
    min-height: 420px;
    padding: 18px;
  }
  .proof-grid,
  .process,
  .run-list {
    grid-template-columns: 1fr;
  }
  .proof-grid div,
  .process div,
  .run-list article {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .proof-grid div:first-child,
  .process div:first-child,
  .run-list article:first-child {
    border-top: 0;
  }
  .workflow-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .workflow-list p,
  .workflow-list small {
    grid-column: auto;
  }
  .cta-row {
    display: flex;
    width: 100%;
  }
  .btn {
    flex: 1;
  }
}
