/* ============================================================
   Belter — site styles
   Layered on top of _ds/.../colors_and_type.css (tokens + Aeonik)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--text-black);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ----- Page shell ------------------------------------------- */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--bg-page-dark); color: var(--text-on-dark); }
.section--muted { background: var(--bg-page-muted); }
.section--dark .t-eyebrow,
.section--dark p,
.section--dark .muted { color: var(--text-on-dark-dim); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }

/* ----- Header ----------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.hdr-inner {
  height: 68px;
  display: flex; align-items: center; gap: 32px;
}
.hdr nav {
  display: flex; gap: 4px; margin-left: 8px;
}
.hdr nav a {
  text-decoration: none; color: var(--text-black);
  font-weight: 500; font-size: 14px;
  padding: 8px 12px; border-radius: 6px;
  transition: background 120ms var(--ease-out);
}
.hdr nav a:hover { background: var(--bg-page-muted); }
.hdr nav a.is-active { color: var(--text-black); }
.hdr nav a.is-active::after {
  content: ""; display: block; height: 2px; margin-top: 6px;
  background: var(--brand-gradient);
  border-radius: 2px;
}
.hdr-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.hdr-cta a.signin {
  text-decoration: none; color: var(--text-black);
  font-weight: 500; font-size: 14px;
  padding: 8px 12px; border-radius: 6px;
}
.hdr-cta a.signin:hover { background: var(--bg-page-muted); }

/* Brand wordmark */
.belter-mark {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-black);
}
.belter-mark .blob {
  width: 28px; height: 28px;
  background: var(--brand-gradient);
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  box-shadow: inset 0 -2px 8px rgba(11,62,42,0.18);
}
.belter-mark .word {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-black);
}
.belter-mark .word .tld {
  color: var(--text-grey-light);
  font-weight: 400;
}
.section--dark .belter-mark .word,
.belter-mark.on-dark .word { color: var(--text-on-dark); }
.section--dark .belter-mark .word .tld,
.belter-mark.on-dark .word .tld { color: rgba(255,255,255,0.5); }

/* ----- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; cursor: pointer;
  font-family: var(--font-sans); font-weight: 500;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 14px;
  line-height: 1;
  color: var(--text-black);
  background: var(--brand-gradient);
  text-decoration: none;
  transition: filter 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 120ms var(--ease-out);
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.04); box-shadow: 0 8px 24px rgba(70,253,174,0.28); }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 16px 22px; font-size: 15px; border-radius: 9px; }
.btn--sm { padding: 9px 12px; font-size: 12px; border-radius: 6px; }
.btn--secondary {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-black);
  box-shadow: none;
}
.btn--secondary:hover { background: var(--bg-page-muted); filter: none; box-shadow: none; }
.btn--ghost {
  background: transparent; color: var(--text-black);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--bg-page-muted); filter: none; box-shadow: none; }
.btn--dark {
  background: var(--text-black); color: var(--text-on-dark);
}
.btn--dark:hover { filter: brightness(1.1); box-shadow: 0 8px 24px rgba(10,22,22,0.18); }
.on-dark .btn--secondary {
  border-color: rgba(255,255,255,0.35); color: var(--text-on-dark);
}
.on-dark .btn--secondary:hover { background: rgba(255,255,255,0.06); }

.btn .arrow { width: 14px; height: 14px; }

/* ----- Eyebrows / chips ------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-grey-light);
  font-weight: 500;
}
.section--dark .eyebrow { color: rgba(198,251,75,0.85); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fff;
  font-size: 13px; font-weight: 500; color: var(--text-grey-dark);
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand-green);
}

/* ----- Type helpers ----------------------------------------- */
.display-xl { font-size: clamp(48px, 7vw, 88px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 500; margin: 0; }
.display-lg { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; margin: 0; }
.display-md { font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 500; margin: 0; }
.title-lg { font-size: 32px; line-height: 1.1; letter-spacing: -0.01em; font-weight: 500; margin: 0; }
.title-md { font-size: 24px; line-height: 1.15; letter-spacing: -0.005em; font-weight: 500; margin: 0; }
.title-sm { font-size: 20px; line-height: 1.2; font-weight: 500; margin: 0; }
.body-lg { font-size: 18px; line-height: 1.45; color: var(--text-grey-mid); margin: 0; }
.body-md { font-size: 16px; line-height: 1.45; color: var(--text-grey-mid); margin: 0; }
.body-sm { font-size: 14px; line-height: 1.45; color: var(--text-grey-mid); margin: 0; }
.muted { color: var(--text-grey-mid); }
.bold-ink { color: var(--text-black); }
.grad-text {
  background: linear-gradient(120deg, #0E7C49 0%, #46A859 50%, #2B6A36 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ----- Cards ------------------------------------------------ */
.card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  padding: 28px;
  transition: box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-dark {
  background: var(--ui-green-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  color: var(--text-on-dark);
}
.card-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: var(--text-black);
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }

/* ----- Hero ------------------------------------------------- */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -10% -10% auto -10%; height: 600px;
  background:
    radial-gradient(60% 80% at 70% 20%, rgba(70,253,174,0.18) 0%, rgba(70,253,174,0) 60%),
    radial-gradient(50% 60% at 20% 10%, rgba(198,251,75,0.12) 0%, rgba(198,251,75,0) 70%);
  z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { margin-bottom: 22px; max-width: 980px; margin-left: auto; margin-right: auto; }
.hero-sub { max-width: 680px; margin: 0 auto 32px; font-size: 19px; line-height: 1.5; color: var(--text-grey-mid); }
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ----- Integration logo strip ------------------------------- */
.logo-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.logo-strip__label {
  text-align: center;
  margin-bottom: 28px;
}
.logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}
.logo-strip__grid img {
  height: 24px; opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 200ms var(--ease-out), filter 200ms var(--ease-out);
}
.logo-strip__grid img:hover { opacity: 1; filter: grayscale(0); }
@media (max-width: 860px) {
  .logo-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ----- Section header --------------------------------------- */
.sec-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.sec-head .eyebrow { display: block; margin-bottom: 14px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { color: var(--text-grey-mid); font-size: 18px; line-height: 1.45; }
.sec-head.left { text-align: left; margin-left: 0; }

/* ----- Bento ------------------------------------------------ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.bento > .b { padding: 28px; border-radius: 20px; border: 1px solid var(--border-subtle); background: #fff; position: relative; overflow: hidden; }
.bento .b.dark { background: var(--ui-green-dark); border-color: rgba(255,255,255,0.08); color: var(--text-on-dark); }
.bento .b.dark .body-md { color: rgba(255,255,255,0.7); }
.bento .b h3 { margin-bottom: 8px; }
.bento .b .body-md { font-size: 15px; }
.bento .span-3 { grid-column: span 3; }
.bento .span-2 { grid-column: span 2; }
.bento .span-4 { grid-column: span 4; }
.bento .span-6 { grid-column: span 6; }
.bento .row-2 { grid-row: span 2; }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .span-2, .bento .span-3, .bento .span-4, .bento .span-6 { grid-column: span 2; }
  .bento .row-2 { grid-row: auto; }
}

/* ----- How it works steps ----------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  position: relative;
}
.step__num {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.12em;
  color: var(--text-grey-light);
  text-transform: uppercase;
  margin-bottom: 56px;
}
.step__connect {
  position: absolute; top: 56px; right: -24px;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--border-default), transparent);
}
.step h3 { margin-bottom: 8px; }
.step .body-md { font-size: 15px; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step__connect { display: none; }
}

/* ----- Footer ----------------------------------------------- */
.ftr {
  background: var(--bg-page-dark);
  color: var(--text-on-dark);
  padding: 72px 0 32px;
}
.ftr a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.ftr a:hover { color: var(--text-on-dark); }
.ftr-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ftr-col h4 {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.ftr-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ftr-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.ftr-pitch { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; max-width: 320px; margin-top: 14px; }
@media (max-width: 860px) {
  .ftr-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ----- Audience tabs ---------------------------------------- */
.audience {
  background: var(--bg-page-muted);
  border-radius: 24px;
  padding: 16px;
}
.audience-tabs {
  display: flex; gap: 6px; padding: 6px;
  background: #fff;
  border-radius: 999px;
  margin: 0 auto 32px;
  width: fit-content;
  border: 1px solid var(--border-subtle);
}
.audience-tab {
  border: 0; background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--text-grey-mid);
  cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}
.audience-tab[aria-selected="true"] {
  background: var(--text-black);
  color: var(--text-on-dark);
}
.audience-panel {
  background: #fff;
  border-radius: 18px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.audience-panel[hidden] { display: none; }
.audience-panel ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.audience-panel li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-grey-dark);
}
.audience-panel li svg { flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) {
  .audience-panel { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}

/* ----- Product UI Mockups (the inline dashboard fragments) -- */
.ui-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(10,22,22,0.04), 0 24px 64px rgba(10,22,22,0.10);
  overflow: hidden;
  text-align: left;
}
.ui-card--dark {
  background: var(--ui-green-dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-on-dark);
  box-shadow: 0 30px 80px rgba(8,38,21,0.25);
}
.ui-card__head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-page-muted);
  font-size: 13px; color: var(--text-grey-mid);
}
.ui-card--dark .ui-card__head {
  background: rgba(255,255,255,0.04);
  border-bottom-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.ui-card__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand-green); box-shadow: 0 0 0 4px rgba(70,253,174,0.16); }
.score-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--brand-gradient);
  color: var(--text-black);
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em;
}
.score-badge.lg { width: 80px; height: 80px; font-size: 30px; border-radius: 18px; }

.criteria-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-subtle);
}
.criteria-row:last-child { border-bottom: 0; }
.criteria-row .name { font-size: 14px; font-weight: 500; color: var(--text-black); }
.criteria-row .meta { font-size: 12px; color: var(--text-grey-mid); margin-top: 2px; }
.criteria-row .bar {
  width: 140px; height: 6px; border-radius: 999px;
  background: var(--ui-200); overflow: hidden;
}
.criteria-row .fill {
  display: block; height: 100%; border-radius: 999px;
  background: var(--brand-gradient);
}
.criteria-row .num { font-variant-numeric: tabular-nums; font-size: 13px; font-weight: 500; color: var(--text-black); margin-left: 12px; }

/* Chat bubble in transcript mock */
.bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.bubble.agent { background: var(--bg-page-muted); color: var(--text-black); border-bottom-left-radius: 4px; }
.bubble.cust { background: var(--ui-green-dark); color: var(--text-on-dark); margin-left: auto; border-bottom-right-radius: 4px; }
.bubble .who {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-grey-light);
  margin-bottom: 4px;
}
.bubble.cust .who { color: rgba(255,255,255,0.5); }

.sentiment-tl {
  display: flex; gap: 4px; align-items: end; height: 24px;
}
.sentiment-tl span {
  width: 6px; border-radius: 2px;
  background: var(--brand-green);
  display: inline-block;
}

/* ----- Add-ons section -------------------------------------- */
.addons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.addon {
  padding: 32px; border-radius: 20px;
  background: var(--bg-page-dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-on-dark);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.addon::before {
  content: ""; position: absolute; top: -40%; right: -40%; width: 320px; height: 320px;
  background: radial-gradient(circle at center, rgba(70,253,174,0.22), transparent 60%);
  pointer-events: none;
}
.addon .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-lime);
  margin-bottom: 18px;
}
.addon h3 { margin-bottom: 8px; }
.addon p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 18px; flex: 1; }
.addon .feat { list-style: none; padding: 0; margin: 0; }
.addon .feat li {
  font-size: 13px; color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 8px;
}
.addon .feat li svg { color: var(--brand-green); flex-shrink: 0; }
@media (max-width: 980px) { .addons { grid-template-columns: 1fr; } }

/* ----- Stats band ------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 48px 56px;
  background: var(--bg-page-muted);
  border-radius: 24px;
}
.stat-num {
  font-size: 56px; font-weight: 500; letter-spacing: -0.02em; color: var(--text-black);
  line-height: 1; margin-bottom: 8px;
}
.stat-num .unit { color: var(--text-grey-light); font-size: 32px; margin-left: 2px; }
.stat-label { font-size: 14px; color: var(--text-grey-mid); }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; padding: 32px; } }

/* ----- Big CTA band ----------------------------------------- */
.cta-band {
  background: var(--bg-page-dark);
  color: var(--text-on-dark);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 50% 0%, rgba(70,253,174,0.18) 0%, transparent 60%),
    radial-gradient(30% 60% at 80% 100%, rgba(198,251,75,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--text-on-dark); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0 auto 28px; max-width: 540px; font-size: 18px; }
.cta-band .hero-cta { justify-content: center; }

/* ----- Pricing cards ---------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.price.featured {
  background: var(--ui-green-dark);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-on-dark);
}
.price.featured .price-amt,
.price.featured h3 { color: var(--text-on-dark); }
.price.featured p,
.price.featured .price-amt small,
.price.featured .price-feat li { color: rgba(255,255,255,0.7); }
.price.featured .price-feat li {
  border-top-color: rgba(255,255,255,0.08);
}
.price__tier-name { font-size: 14px; font-weight: 500; color: var(--text-grey-mid); margin-bottom: 8px; }
.price.featured .price__tier-name { color: var(--brand-lime); }
.price h3 { margin: 0 0 8px; font-size: 22px; }
.price > p { font-size: 14px; margin-bottom: 20px; flex-shrink: 0; min-height: 40px; }
.price-amt {
  font-size: 44px; font-weight: 500; letter-spacing: -0.02em; line-height: 1;
  margin: 8px 0 6px;
}
.price-amt small { font-size: 14px; font-weight: 400; color: var(--text-grey-mid); }
.price-amt.is-custom { font-size: 28px; }
.price-feat { list-style: none; padding: 0; margin: 24px 0; flex: 1; }
.price-feat li {
  font-size: 14px; color: var(--text-grey-dark);
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-feat li svg { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.price .btn { width: 100%; justify-content: center; }
.price-badge {
  position: absolute; top: -10px; right: 20px;
  background: var(--brand-gradient); color: var(--text-black);
  font-size: 11px; font-weight: 500;
  padding: 6px 10px; border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 1080px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ----- FAQ -------------------------------------------------- */
.faq {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq details {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 0;
  transition: background 180ms var(--ease-out);
}
.faq details[open] { border-color: var(--border-default); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  font-weight: 500; font-size: 16px; color: var(--text-black);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--text-grey-mid);
  transition: transform 180ms var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq .faq__body {
  padding: 0 24px 22px;
  font-size: 15px; line-height: 1.55; color: var(--text-grey-mid);
}

/* ----- Forms ------------------------------------------------ */
.form {
  display: grid; gap: 18px;
}
.form .row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 500; color: var(--text-black);
}
.field .hint { font-size: 12px; color: var(--text-grey-mid); }
.field input,
.field textarea,
.field select {
  font-family: inherit; font-size: 15px; color: var(--text-black);
  padding: 12px 14px; border: 1px solid var(--border-default);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-green);
  box-shadow: var(--ring-focus);
}
.field textarea { resize: vertical; min-height: 130px; }
@media (max-width: 660px) { .form .row { grid-template-columns: 1fr; } }

/* ----- Workspace tiles (product page) ----------------------- */
.workspaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ws {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 280px;
}
.ws__head { display: flex; align-items: center; gap: 12px; }
.ws__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-gradient);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-black);
}
.ws__icon svg { width: 22px; height: 22px; }
.ws ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.ws li { font-size: 14px; color: var(--text-grey-dark); display: flex; gap: 8px; align-items: center; }
.ws li::before { content: ""; width: 4px; height: 4px; border-radius: 999px; background: var(--text-grey-light); flex-shrink: 0; }
@media (max-width: 960px) { .workspaces { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .workspaces { grid-template-columns: 1fr; } }

/* ----- Feature blocks --------------------------------------- */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.feat-row:last-child { border-bottom: 0; }
.feat-row.flip > :first-child { order: 2; }
.feat-row h3 { font-size: 28px; line-height: 1.15; letter-spacing: -0.01em; margin: 14px 0 14px; }
.feat-row p { font-size: 16px; line-height: 1.55; color: var(--text-grey-dark); margin: 0 0 12px; }
.feat-row .feat-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.feat-row .feat-list li {
  font-size: 14px; color: var(--text-grey-dark);
  display: flex; gap: 10px; align-items: flex-start;
}
.feat-row .feat-list svg { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
  .feat-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feat-row.flip > :first-child { order: 0; }
}

/* ----- Comparison table ------------------------------------- */
.compare {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.compare th { font-weight: 500; background: var(--bg-page-muted); color: var(--text-grey-dark); font-size: 13px; }
.compare th.tier { text-align: center; min-width: 120px; }
.compare td.tier { text-align: center; color: var(--text-black); font-weight: 500; }
.compare tr:last-child td { border-bottom: 0; }
.compare .check { color: var(--brand-green); }
.compare .dash { color: var(--text-grey-light); }
.compare .category {
  background: var(--bg-page-muted);
  font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-grey-mid);
}

/* ----- Animations ------------------------------------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 600ms var(--ease-out) both; }
@media (prefers-reduced-motion: reduce) { .fade-up { animation: none; } }
