/* =====================================================
   Workshop Command — Landing styles
   Platinum & Teal · light · flat surfaces · engineered grotesque
   Single-family Archivo system (Expanded for display),
   matched to the app's design tokens.
   ===================================================== */

:root {
  --bg:           #E9EBF0;   /* cool silver scaffold   */
  --bg-2:         #DDE1E8;   /* deeper silver panels   */
  --sunken:       #E4E7EE;   /* input / inset fills    */
  --card:         #F8FAFB;   /* soft off-white cards   */
  --raised:       #F3F5F8;   /* elevated tier          */

  --ink:          #14222A;
  --ink-soft:     #364852;
  --mute:         #566872;
  --dim:          #586771;   /* AA on both card and silver bg            */
  --faint:        #8D9AA1;   /* decorative only — never body text       */

  --teal:         #0E7C86;
  --teal-deep:    #0A5860;
  --teal-ink:     #083E44;
  --teal-soft:    rgba(14, 124, 134, 0.10);
  --teal-line:    rgba(14, 124, 134, 0.26);
  --copper:       #7E560C;   /* deepened so label text passes AA on tints */
  --copper-soft:  rgba(126, 86, 12, 0.12);

  --ok:           #1E9E6A;
  --ok-ink:       #157D54;
  --warn:         #7E560C;
  --bad:          #C44E4E;

  --line:         rgba(20, 34, 42, 0.10);
  --line-strong:  rgba(20, 34, 42, 0.17);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-disp: 'Archivo Expanded', 'Archivo', system-ui, sans-serif;

  /* motion — exponential ease-out family, no bounce */
  --ease:      cubic-bezier(.2, .7, .15, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-quint:cubic-bezier(.22, 1, .36, 1);

  /* z-index scale */
  --z-sticky: 50;
  --z-menu:   60;
}

* { box-sizing: border-box; }

/* off-canvas host for the brand-mark <symbol> sprite */
.brand-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--teal); color: #fff; }

/* unified, visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3 { margin: 0; text-wrap: balance; }
h2 {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(29px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
p { text-wrap: pretty; }

/* emphasis word inside headings — color + italic, single family */
.serif {
  font-style: italic;
  font-weight: 600;
  color: var(--teal-deep);
}

/* tabular numerals for data (prices, codes, KPIs) */
.num { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 94%, transparent); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-disp);
  font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--ink);
  white-space: nowrap;
}
.brand em { font-style: normal; color: var(--teal); }
.brand__mark { width: 25px; height: 25px; color: var(--teal); transition: transform .4s var(--ease-expo); }
.brand:hover .brand__mark { transform: rotate(-8deg); }
.brand--lg { font-size: 19px; }
.brand--lg .brand__mark { width: 28px; height: 28px; }

.nav__links { display: flex; gap: 30px; }
/* burger-menu-only links: the whole .nav__cta is hidden under 760px */
.nav__links-app, .nav__links-cta { display: none; }
.nav__links a {
  position: relative;
  color: var(--mute); font-size: 14.5px; font-weight: 500;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-expo);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 18px; }
.link-quiet { color: var(--mute); font-size: 14.5px; font-weight: 500; transition: color .2s var(--ease); }
.link-quiet:hover { color: var(--ink); }

.nav__burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 10px; position: relative; }
.nav__burger span { position: absolute; left: 10px; right: 10px; height: 1.6px; background: var(--ink); transition: transform .3s var(--ease); }
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { bottom: 15px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.005em;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .18s var(--ease-expo);
}
.btn svg { width: 15px; height: 15px; transition: transform .3s var(--ease-expo); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-deep); }

.btn--ghost { background: transparent; color: var(--teal-ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); background: var(--teal-soft); }
.btn--ghost:hover svg { transform: none; }

.btn--inverse { background: #fff; color: var(--teal-ink); }
.btn--inverse:hover { background: #EDF4F5; }

.btn--outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.42); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.10); }
.btn--outline-light:hover svg { transform: none; }

.btn--sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============ SECTION LABEL (reworked — no tracked-caps eyebrow) ============ */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.kicker::before {
  content: ''; width: 22px; height: 1.5px; background: var(--teal); border-radius: 2px;
}
.sec-head:not(.sec-head--left) .kicker { justify-content: center; }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; padding: 76px 0 0; }
.hero__blueprint {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--teal-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal-line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .14;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__copy { max-width: 800px; display: flex; flex-direction: column; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px;
  border: 1px solid var(--teal-line);
  border-radius: 999px;
  background: var(--card);
  font-size: 13px; font-weight: 600; color: var(--teal-deep);
  transition: border-color .25s var(--ease), transform .25s var(--ease-expo);
}
.eyebrow:hover { border-color: var(--teal); transform: translateY(-1px); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }
.eyebrow__chev { color: var(--teal); transition: transform .3s var(--ease-expo); }
.eyebrow:hover .eyebrow__chev { transform: translateX(3px); }

.hero__title {
  margin: 26px 0 0;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero__sub {
  margin: 24px 0 0;
  max-width: 62ch;
  font-size: 18px;
  color: var(--ink-soft);
}
.hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }

.hero__meta {
  display: flex; align-items: center; gap: 22px;
  margin-top: 34px;
  color: var(--mute); font-size: 14px;
}
.hero__meta strong { color: var(--ink); font-weight: 700; margin-right: 6px; font-variant-numeric: tabular-nums; }
.hero__meta-divider { width: 1px; height: 22px; background: var(--line-strong); }

/* ============ APP MOCKUP ============ */
.mock {
  position: relative;
  width: min(980px, 100%);
  margin: 64px auto -2px;
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: visible;
  font-size: 12px;
  will-change: transform;
}
.mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-2); }
.mock__url { margin-left: 12px; font-size: 11px; color: var(--faint); letter-spacing: .03em; }

.mock__body { display: grid; grid-template-columns: 168px 1fr; min-height: 430px; overflow: hidden; }

.mock__side { background: var(--raised); border-right: 1px solid var(--line); padding: 16px 10px; }
.mock__brand { display: flex; align-items: center; gap: 7px; padding: 0 8px 16px; font-family: var(--font-disp); font-weight: 700; color: var(--ink); font-size: 12px; letter-spacing: -0.02em; }
.mock__brand svg { width: 16px; height: 16px; color: var(--teal); }
.mock__group { display: block; padding: 10px 8px 4px; font-size: 8.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.mock__side nav a { display: flex; align-items: center; justify-content: space-between; padding: 7px 9px; border-radius: 8px; color: var(--mute); font-weight: 500; }
.mock__side nav a em { font-style: normal; font-size: 9.5px; background: var(--teal-soft); color: var(--teal-deep); padding: 1px 6px; border-radius: 999px; font-variant-numeric: tabular-nums; }
.mock__side nav a.active { background: var(--teal-soft); color: var(--teal-deep); font-weight: 600; }

.mock__main { padding: 18px 20px; background: var(--bg); text-align: left; }
.mock__head { display: flex; justify-content: space-between; align-items: center; }
.mock__h-eyebrow { color: var(--faint); font-size: 10.5px; }
.mock__h-title { font-family: var(--font-disp); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.02em; }
.mock__newjob { background: var(--teal); color: #fff; font-weight: 600; padding: 7px 13px; border-radius: 9px; font-size: 11px; }

.mock__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.kpi { background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 10px 12px; }
.kpi span { display: block; color: var(--mute); font-size: 10px; }
.kpi strong { display: block; font-size: 14.5px; color: var(--ink); margin-top: 2px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.kpi em { font-style: normal; font-size: 9.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.kpi .up { color: var(--ok-ink); }
.kpi .dn { color: var(--warn); }

.mock__charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: 10px; margin-top: 10px; }
.chart { background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 12px; }
.chart__h { display: flex; justify-content: space-between; color: var(--mute); font-size: 10.5px; margin-bottom: 8px; }
.chart__h em { font-style: normal; color: var(--ok-ink); font-weight: 700; }
.chart__svg { width: 100%; height: 76px; }
.bars { display: flex; gap: 10px; align-items: flex-end; height: 76px; }
.bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 5px; height: 100%; }
.bar span { width: 100%; background: linear-gradient(180deg, var(--teal) 0%, color-mix(in srgb, var(--teal) 55%, var(--card)) 100%); border-radius: 4px 4px 0 0; }
.bar b { font-weight: 500; color: var(--faint); font-size: 8.5px; white-space: nowrap; }

.mock__list { margin-top: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.row { display: grid; grid-template-columns: 1.4fr 1.2fr .8fr .6fr; padding: 9px 13px; border-top: 1px solid var(--line); align-items: center; color: var(--ink-soft); font-size: 10.5px; }
.row span:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.row--head { border-top: 0; color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

.pill { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 9px; font-weight: 700; width: fit-content; }
.pill--ok { background: rgba(30,158,106,.12); color: var(--ok-ink); }
.pill--in { background: var(--teal-soft); color: var(--teal-deep); }
.pill--qa { background: var(--copper-soft); color: var(--copper); }

.mock__float {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 15px;
  font-size: 11px;
}
.mock__float svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.mock__float b { display: block; font-size: 11.5px; color: var(--ink); }
.mock__float span { color: var(--mute); font-size: 10px; }
.mock__float--inspect { top: 88px; left: -54px; animation: floaty 7s ease-in-out infinite; }
.mock__float--wa { bottom: 64px; right: -48px; animation: floaty 8s ease-in-out 1.2s infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ============ TRUST ============ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 26px 18px; text-align: center; border-left: 1px solid var(--line); }
.trust__item:first-child { border-left: 0; }
.trust__item strong { display: block; font-family: var(--font-disp); font-weight: 700; font-size: 22px; color: var(--teal-deep); letter-spacing: -0.03em; }
.trust__item span { color: var(--mute); font-size: 13px; }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--alt + .section--alt { border-top: 0; }

.sec-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.sec-head--left { margin: 0 0 52px; text-align: left; }
.sec-head p { color: var(--ink-soft); margin: 16px auto 0; font-size: 17px; max-width: 60ch; }
.sec-head--left p { margin-left: 0; }

/* ============ WORKFLOW ============ */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow__step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease-expo);
}
.flow__step:hover { border-color: var(--teal-line); transform: translateY(-4px); }
.flow__num { font-family: var(--font-disp); font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.flow__step h3 { margin: 12px 0 8px; font-family: var(--font-disp); font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.flow__step p { margin: 0; color: var(--mute); font-size: 14px; line-height: 1.55; flex: 1; }
.flow__demo { margin-top: 20px; }

.card-fake { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 13px; font-size: 11.5px; }
.card-fake__row { display: flex; justify-content: space-between; gap: 8px; color: var(--ink-soft); padding: 2px 0; }
.card-fake__row b { color: var(--ink); }
.card-fake__row i { font-style: normal; color: var(--mute); font-size: 10px; font-variant-numeric: tabular-nums; }
.card-fake__chips { display: flex; gap: 6px; margin-top: 9px; }
.card-fake__chips em { font-style: normal; background: var(--teal-soft); color: var(--teal-deep); padding: 3px 9px; border-radius: 999px; font-size: 9.5px; font-weight: 700; }

.estimate-fake { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 13px; font-size: 11.5px; }
.estimate-fake > div { display: flex; justify-content: space-between; padding: 4px 0; color: var(--ink-soft); }
.estimate-fake b { font-variant-numeric: tabular-nums; font-weight: 600; }
.estimate-fake .total { border-top: 1px dashed var(--line-strong); margin-top: 5px; padding-top: 8px; color: var(--ink); font-weight: 700; }
.estimate-fake .total b { color: var(--teal-deep); }

.pipeline-fake { display: flex; gap: 7px; }
.pipeline-fake__col { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 8px 7px; min-height: 84px; }
.pipeline-fake__col b { display: block; font-size: 8.5px; color: var(--mute); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; font-weight: 700; }
.pipeline-fake__col span { display: block; height: 17px; border-radius: 5px; background: var(--bg-2); border: 1px solid var(--line); margin-bottom: 5px; }
.pipeline-fake__col span.hot { background: var(--teal-soft); border-color: var(--teal-line); }

.invoice-fake { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 13px; font-size: 11.5px; }
.invoice-fake__lines > div { display: flex; justify-content: space-between; padding: 4px 0; color: var(--ink-soft); }
.invoice-fake__lines b { font-variant-numeric: tabular-nums; font-weight: 600; }
.invoice-fake__grand { border-top: 1px dashed var(--line-strong); margin-top: 5px; padding-top: 8px; color: var(--ink) !important; font-weight: 700; }
.invoice-fake__grand b { color: var(--teal-deep) !important; }
.invoice-fake__paid {
  margin-top: 11px; text-align: center;
  background: rgba(30,158,106,.1); color: var(--ok-ink);
  font-weight: 700; font-size: 9.5px; letter-spacing: .1em;
  padding: 6px; border-radius: 8px;
}

/* ============ FEATURES ============ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease-expo);
}
.feat:hover { border-color: var(--teal-line); transform: translateY(-4px); }
.feat:hover .feat__icon { background: var(--teal); color: #fff; }
.feat__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  margin-bottom: 18px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.feat__icon svg { width: 21px; height: 21px; }
.feat h3 { font-family: var(--font-disp); font-size: 16px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.feat p { margin: 0; color: var(--mute); font-size: 13.8px; line-height: 1.55; }

/* ============ DIFFERENTIATORS ============ */
.diff { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.diff__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: border-color .3s var(--ease);
}
.diff__card:hover { border-color: var(--teal-line); }
.diff__card--lg {
  grid-column: span 2; grid-row: span 2;
  display: flex; flex-direction: column;
  background: linear-gradient(155deg, var(--card) 55%, #EAF3F4 100%);
}
.diff__tag {
  display: inline-block; width: fit-content;
  font-size: 12.5px; font-weight: 600;
  color: var(--copper);
  background: var(--copper-soft);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.diff__card h3 { font-family: var(--font-disp); font-weight: 600; font-size: 21px; letter-spacing: -0.025em; margin-bottom: 10px; line-height: 1.15; }
.diff__card--lg h3 { font-size: 28px; }
.diff__card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.diff__visual { margin-top: auto; padding-top: 28px; }

.inspect-fake { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 16px; max-width: 420px; font-size: 13px; }
.inspect-fake__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.inspect-fake__head b { font-family: var(--font-disp); font-weight: 600; font-size: 13px; letter-spacing: -0.02em; }
.inspect-fake__row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-soft); }
.inspect-fake__row em { font-style: normal; font-size: 12px; color: var(--mute); font-variant-numeric: tabular-nums; }
.inspect-fake__row em.ok { color: var(--ok-ink); font-weight: 600; }
.inspect-fake__row em.warn { color: var(--copper); font-weight: 600; }

/* ============ PRICING ============ */
.toggle {
  display: inline-flex; gap: 4px;
  margin-top: 26px;
  background: var(--sunken);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.toggle__btn {
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--mute);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.toggle__btn em { font-style: normal; color: var(--copper); font-weight: 700; font-size: 12.5px; }
.toggle__btn.is-active { background: var(--card); color: var(--ink); border: 1px solid var(--line); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plans--two { grid-template-columns: repeat(2, 1fr); max-width: 850px; margin: 0 auto; }
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease-expo);
}
.plan:hover { transform: translateY(-4px); }
.plan--feat { border: 2px solid var(--teal); background: linear-gradient(170deg, var(--card) 60%, #EAF3F4 100%); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
  white-space: nowrap;
}
.plan header h3 { font-family: var(--font-disp); font-weight: 600; font-size: 22px; letter-spacing: -0.03em; }
.plan header p { margin: 5px 0 0; color: var(--mute); font-size: 14px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin: 24px 0 4px; }
.plan__price .currency { font-size: 21px; color: var(--ink-soft); font-weight: 600; }
.plan__price strong { font-family: var(--font-disp); font-weight: 700; font-size: clamp(34px, 3.4vw, 44px); letter-spacing: -0.04em; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.plan__price .per { color: var(--mute); font-size: 14.5px; white-space: nowrap; }
.plan__bill { font-size: 12.5px; color: var(--dim); min-height: 18px; }
/* pricing not announced yet — a phrase where the figure goes */
.plan__price--tbd strong {
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  color: var(--teal-deep);
}
.plan__list { list-style: none; margin: 22px 0 26px; padding: 0; flex: 1; }
.plan__list li {
  position: relative;
  padding: 6.5px 0 6.5px 26px;
  color: var(--ink-soft); font-size: 14.3px;
}
.plan__list li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 14px; height: 14px;
  background: var(--teal-soft);
  border-radius: 50%;
}
.plan__list li::after {
  content: '';
  position: absolute; left: 4px; top: 16.5px;
  width: 6px; height: 3.5px;
  border-left: 1.7px solid var(--teal-deep);
  border-bottom: 1.7px solid var(--teal-deep);
  transform: rotate(-45deg);
}

.plans__foot { text-align: center; color: var(--dim); font-size: 13.5px; margin-top: 32px; }

/* market comparison strip */
.compare {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
}
.compare__item { padding: 24px 22px; border-left: 1px solid var(--line); }
.compare__item:first-child { border-left: 0; }
.compare__item b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.compare__item span { display: block; font-size: 13px; color: var(--teal-deep); font-weight: 600; margin: 6px 0 10px; font-variant-numeric: tabular-nums; }
.compare__item p { margin: 0; font-size: 12.8px; color: var(--mute); line-height: 1.5; }
.compare__item--us { background: var(--teal-soft); }
.compare__item--us b { color: var(--teal-deep); }

/* ============ STORIES ============ */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease);
}
.story:hover { border-color: var(--teal-line); }
.story--lg { grid-column: span 3; padding: 40px 44px; background: linear-gradient(160deg, var(--card) 55%, #EAF3F4 100%); }
.story blockquote { margin: 0 0 22px; font-size: 16px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.story--lg blockquote { font-family: var(--font-disp); font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.3; letter-spacing: -0.02em; color: var(--ink); max-width: 880px; }
.story blockquote em { font-style: italic; color: var(--teal-deep); }
.story figcaption { display: flex; align-items: center; gap: 13px; }
.story__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  font-family: var(--font-disp); font-weight: 700; font-size: 15px;
}
.story figcaption b { display: block; font-size: 14.5px; font-weight: 600; }
.story figcaption span { color: var(--mute); font-size: 13px; }

/* no testimonials yet — an honest placeholder, not a fabricated quote */
.stories-soon {
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  text-align: center;
}
.stories-soon__mark { width: 40px; height: 40px; margin: 0 auto; color: var(--teal); opacity: .5; }
.stories-soon__lead {
  font-family: var(--font-disp);
  font-weight: 600; font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.025em; color: var(--ink);
  margin: 20px 0 0;
}
.stories-soon__note {
  color: var(--mute); font-size: 15px; line-height: 1.62;
  max-width: 58ch; margin: 12px auto 0;
}

/* ============ FAQ ============ */
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.faq .sec-head--left { margin-bottom: 0; position: sticky; top: 110px; }
.faq__list details { border-bottom: 1px solid var(--line-strong); }
.faq__list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px;
  font-weight: 600; font-size: 16.5px;
  cursor: pointer;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--teal-deep); }
.faq__list summary svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--mute); transition: transform .35s var(--ease-expo); }
.faq__list details[open] summary svg { transform: rotate(180deg); color: var(--teal); }
.faq__list details p { margin: 0; padding: 0 4px 24px; color: var(--ink-soft); font-size: 15px; max-width: 62ch; }

/* ============ CTA BANNER ============ */
.cta-banner { padding: 110px 0; background: var(--teal-ink); position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 100%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 100%, #000 20%, transparent 75%);
}
.cta-banner__inner { position: relative; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(30px, 4.6vw, 50px); letter-spacing: -0.035em; }
.cta-banner .serif { color: #8FD0D6; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 17px; margin: 18px 0 0; }
.cta-banner__cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 60px; padding-bottom: 56px; }
.footer__brand p { color: var(--mute); font-size: 14.5px; max-width: 32ch; margin: 16px 0 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); font-weight: 700; }
.footer__cols a { display: block; padding: 5px 0; color: var(--ink-soft); font-size: 14.5px; transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--teal-deep); }
.footer__base {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px;
}
.footer__status { display: inline-flex; align-items: center; gap: 8px; }
.footer__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }

/* ============ MOTION / REVEAL ============
   Reveals enhance an already-visible default. CSS only kicks in once JS
   confirms it's running (html.js-ready); without JS, or on a hidden tab
   where transitions never fire, everything is visible from the start. */
.js-ready .reveal { opacity: 0; transform: translateY(14px); filter: blur(5px); transition: opacity .45s var(--ease-quint), transform .45s var(--ease-quint), filter .45s var(--ease-quint); }
.js-ready .reveal.is-in { opacity: 1; transform: none; filter: blur(0); }

/* hero choreographs its own load — staggered, fits the content it reveals */
.js-ready .hero__copy > *,
.js-ready .hero .mock { opacity: 0; transform: translateY(16px); animation: heroIn .8s var(--ease-expo) forwards; }
.js-ready .hero .eyebrow      { animation-delay: .05s; }
.js-ready .hero .hero__title  { animation-delay: .14s; }
.js-ready .hero .hero__sub    { animation-delay: .24s; }
.js-ready .hero .hero__cta    { animation-delay: .34s; }
.js-ready .hero .hero__meta   { animation-delay: .42s; }
.js-ready .hero .mock         { animation-delay: .5s; transform: translateY(28px); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-ready .reveal,
  .js-ready .reveal.is-in,
  .js-ready .hero__copy > *,
  .js-ready .hero .mock { opacity: 1; transform: none; filter: none; animation: none; transition: none; }
  .mock__float--inspect, .mock__float--wa { animation: none; }
  .btn:hover svg, .nav__links a:hover::after { transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: repeat(2, 1fr); }
  .compare__item { border-top: 1px solid var(--line); }
  .compare__item:nth-child(-n+2) { border-top: 0; }
  .compare__item:nth-child(odd) { border-left: 0; }
  .mock__float--inspect { left: 8px; }
  .mock__float--wa { right: 8px; }
}

@media (max-width: 900px) {
  .diff { grid-template-columns: 1fr 1fr; }
  .diff__card--lg { grid-column: span 2; grid-row: span 1; }
  .stories { grid-template-columns: 1fr 1fr; }
  .story--lg { grid-column: span 2; }
  .faq { grid-template-columns: 1fr; gap: 8px; }
  .faq .sec-head--left { position: static; margin-bottom: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .section { padding: 72px 0; }

  .brand--lg { font-size: 17px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 22px;
    z-index: var(--z-menu);
  }
  .nav.is-open .nav__links a { padding: 10px 0; font-size: 16px; }
  .nav.is-open .nav__links a.nav__links-app {
    display: block;
    margin-top: 6px; padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--teal-deep); font-weight: 600;
  }
  .nav.is-open .nav__links a.nav__links-cta {
    display: block;
    margin-top: 12px; padding: 13px 0;
    background: var(--teal); color: #fff;
    border-radius: var(--r-sm);
    text-align: center; font-weight: 600;
  }
  .nav.is-open .nav__links a::after { display: none; }

  .hero { padding-top: 52px; }
  .hero__meta { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero__meta-divider { display: none; }

  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
  .mock__kpis { grid-template-columns: repeat(2, 1fr); }
  .mock__charts { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1.3fr 1fr .7fr; }
  .row span:nth-child(2) { display: none; }
  .mock__float { display: none; }

  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .flow, .features, .plans, .stories, .diff, .compare { grid-template-columns: 1fr; }
  .diff__card--lg { grid-column: span 1; }
  .story--lg { grid-column: span 1; padding: 28px 26px; }
  .compare__item { border-left: 0; border-top: 1px solid var(--line); }
  .compare__item:first-child { border-top: 0; }

  .plan--feat { order: -1; }

  .cta-banner { padding: 80px 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; gap: 10px; }
}
