/* Leadomix — dark product system.
   One committed visual world: near-black ground, hairline structure,
   a single lime accent spent only on the action you want taken.
   Numbers are always mono and always tabular. */

:root {
  /* ground + surfaces: near-black, never pure black; each step barely lifts */
  --ground:    #08090A;
  --surface:   #0E1012;
  --surface-2: #14171A;
  --line:      #1E2225;
  --line-soft: #17191C;

  /* text: cool-biased greys, chosen not inherited */
  --text:  #F2F4F3;
  --text-2:#A8AFB5;
  --muted: #767E86;

  /* the one accent */
  --lime:     #C7F751;
  --lime-ink: #0A0D04;
  --lime-dim: rgba(199, 247, 81, 0.10);
  --lime-line:rgba(199, 247, 81, 0.28);

  /* semantic, deliberately not the accent */
  --warn: #FF7A5C;

  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(1rem, 4.5vw, 3.5rem);
  --maxw: 1180px;
  --r: 10px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
p { margin: 0; }
a { color: inherit; }

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -0.038em; }
h3 { font-size: 1.02rem; line-height: 1.35; letter-spacing: -0.02em; font-weight: 600; }

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

section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.bordered { border-top: 1px solid var(--line-soft); }

/* mono label — the recurring structural device */
.label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.label-accent { color: var(--lime); }

.lede {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-2);
  max-width: 60ch;
  margin-top: 1.1rem;
}

.section-head { margin-bottom: clamp(2.75rem, 5vw, 4rem); }
.section-head h2 { margin-top: 1rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.btn-primary { background: var(--lime); color: var(--lime-ink); font-weight: 600; }
.btn-primary:hover { background: #D6FF75; }

.btn-quiet { background: transparent; border-color: var(--line); color: var(--text); }
.btn-quiet:hover { border-color: #333A3F; background: var(--surface); }

.btn-text { color: var(--text-2); text-decoration: none; font-size: .92rem; }
.btn-text:hover { color: var(--lime); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 10, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 60px; }

.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  flex-shrink: 0;
}

.brand svg { width: 22px; height: 22px; display: block; }

.site-nav { display: flex; gap: 1.5rem; margin-left: auto; font-size: .89rem; }
.site-nav a { color: var(--text-2); text-decoration: none; transition: color .15s ease; }
.site-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 7px;
  padding: .35rem .6rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.lang-toggle:hover { color: var(--lime); border-color: var(--lime-line); }

.header-cta { padding: .5rem 1rem; font-size: .86rem; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  margin: 0 auto;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem var(--gutter) 1.1rem;
    background: rgba(8, 9, 10, .96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }
  .site-nav.is-open {
    display: flex;
    background: var(--ground);
    z-index: 60;
  }
  .site-nav a {
    padding: .7rem 0;
    border-bottom: 1px solid var(--line-soft);
    background: var(--ground);
  }
  .nav-toggle { display: grid; place-items: center; }
  .header-actions { margin-left: auto; }
  .header-cta { display: none; }
  .nav-cta-mobile { display: block; color: var(--lime); }
}

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); }

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 28%;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,247,81,.07), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.hero h1 { margin-top: 1.1rem; }
.hero h1 .dim { color: var(--muted); display: block; }

.hero-sub { font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--text-2); max-width: 42ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.3rem; margin-top: 2rem; }

/* stat rail — mono figures, hairline separated */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-top: 2.5rem;
  overflow: hidden;
}

.stat { padding: 1rem 1.1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }

.stat-v {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-v.accent { color: var(--lime); }

.stat-l {
  font-size: .74rem;
  color: var(--muted);
  margin-top: .15rem;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- chat panel ---------- */

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .95rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.dot-live { box-shadow: 0 0 0 0 rgba(199,247,81,.6); animation: ping 2.4s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(199,247,81,0); } 100% { box-shadow: 0 0 0 0 rgba(199,247,81,0); } }

.panel-time { margin-left: auto; }

.chat-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 28.5rem;
  overflow: hidden;
}

.beat { display: none; }
.beat.is-on { display: flex; animation: rise .38s ease; }
.panel.is-static .beat { display: flex; animation: none; }
.panel.is-static .typing { display: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.bubble {
  max-width: 85%;
  padding: .62rem .85rem;
  border-radius: 13px;
  font-size: .87rem;
  line-height: 1.5;
}

.bubble-in  { background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--text-2); }
.bubble-out { background: var(--lime-dim); border: 1px solid var(--lime-line); color: var(--text); align-self: flex-end; border-bottom-right-radius: 4px; }

.typing {
  align-self: flex-end;
  gap: .28rem;
  padding: .7rem .9rem;
  background: var(--lime-dim);
  border: 1px solid var(--lime-line);
  border-radius: 13px;
  border-bottom-right-radius: 4px;
  width: fit-content;
}
.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: .35;
  animation: type 1s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes type {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.event-card {
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .75rem .85rem;
  background: var(--surface-2);
  border: 1px solid var(--lime-line);
  border-radius: 10px;
}
.event-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--lime);
  flex-shrink: 0;
}
.event-icon svg { width: 18px; height: 18px; }
.event-card .label { margin-bottom: .15rem; }
.event-title {
  font-family: var(--mono);
  font-size: .88rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.event-meta { font-size: .78rem; color: var(--muted); margin-top: .12rem; }
.event-ok {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  flex-shrink: 0;
}

.chat-foot {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .73rem;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
  min-height: 2.6rem;
}

@media (prefers-reduced-motion: reduce) {
  .beat.is-on, .panel.is-static .beat { animation: none; }
  .typing { display: none !important; }
  .dot-live { animation: none; }
}

@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- hairline rows (problem / features) ---------- */

.rows { border-top: 1px solid var(--line-soft); }

.row {
  display: grid;
  grid-template-columns: 7rem 1fr 1.15fr;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}

.row p { color: var(--text-2); font-size: .95rem; }
.row .label { padding-top: .15rem; }

@media (max-width: 780px) {
  .row { grid-template-columns: 1fr; gap: .5rem; }
  .row .label { padding-top: 0; margin-bottom: .2rem; }
}

/* ---------- calculator ---------- */

.calc-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.field { margin-bottom: 1.6rem; }
.field label { display: block; font-size: .89rem; color: var(--text-2); margin-bottom: .7rem; }
.field-row { display: flex; align-items: center; gap: 1rem; }

.field input[type="range"] {
  flex: 1;
  min-width: 0;
  height: 3px;
  accent-color: var(--lime);
  background: var(--line);
  border-radius: 2px;
}

.field-value {
  font-family: var(--mono);
  font-size: 1.02rem;
  color: var(--text);
  min-width: 6ch;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.calc-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  position: sticky;
  top: 84px;
}

.calc-big {
  font-family: var(--mono);
  font-size: clamp(2.3rem, 5.5vw, 3.2rem);
  font-weight: 500;
  color: var(--warn);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: .55rem 0 .3rem;
  font-variant-numeric: tabular-nums;
}

.calc-year {
  font-family: var(--mono);
  font-size: .84rem;
  color: var(--muted);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.calc-verdict {
  margin-top: 1.2rem;
  font-size: .94rem;
  font-weight: 500;
  color: var(--lime);
  line-height: 1.45;
}

.calc-assume { margin-top: 1.4rem; font-size: .78rem; line-height: 1.55; color: var(--muted); }

@media (max-width: 880px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-panel { position: static; }
}

/* ---------- workflow (interactive how-it-works) ---------- */

.workflow {
  --wf-active: 1;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
}

.wf-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 1.5rem 1rem 1.15rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ground);
}

.wf-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(1.5rem + 11px);
  height: 1px;
  background: var(--line);
  pointer-events: none;
  z-index: 0;
}
.wf-line-fill {
  display: block;
  height: 100%;
  width: calc((var(--wf-active) - 1) / 5 * 100%);
  background: var(--lime);
  transition: width .45s cubic-bezier(.22, 1, .36, 1);
}

.wf-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: .35rem .4rem .15rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  font: inherit;
  transition: color .2s ease;
}
.wf-node:hover { color: var(--text-2); }
.wf-node:focus-visible {
  outline: 1px solid var(--lime-line);
  outline-offset: 3px;
  border-radius: 6px;
}

.wf-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ground);
  border: 1.5px solid var(--muted);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.wf-node.is-active .wf-dot,
.wf-node.is-done .wf-dot {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 0 4px var(--lime-dim);
}
.wf-node.is-active .wf-dot {
  transform: scale(1.15);
}

.wf-num {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
}
.wf-node.is-active .wf-num { color: var(--lime); }

.wf-cap {
  font-size: .78rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: inherit;
  max-width: 9.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wf-node.is-active .wf-cap { color: var(--text); font-weight: 500; }

.wf-stage {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.4rem) 0.35rem;
}

.wf-panel {
  max-width: 42rem;
}
.wf-panel[hidden] { display: none !important; }
.wf-panel.is-active {
  display: block;
  animation: wf-in .38s cubic-bezier(.22, 1, .36, 1);
}
.wf-panel .label {
  color: var(--lime);
  margin-bottom: .85rem;
}
.wf-panel h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin-bottom: .7rem;
}
.wf-panel p:not(.label) {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}

@keyframes wf-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.wf-hint {
  padding: 0 1.4rem 1.15rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .wf-line-fill,
  .wf-dot,
  .wf-panel.is-active { transition: none; animation: none; }
}

@media (max-width: 900px) {
  .wf-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .25rem;
    padding-bottom: 1.25rem;
    scrollbar-width: none;
  }
  .wf-rail::-webkit-scrollbar { display: none; }
  .wf-node {
    flex: 0 0 7.2rem;
    scroll-snap-align: center;
  }
  .wf-line { left: 3.6rem; right: 3.6rem; }
  .wf-cap { max-width: 6.8rem; font-size: .72rem; }
}

@media (max-width: 560px) {
  .wf-cap { -webkit-line-clamp: 3; }
}

/* legacy .steps kept unused; kit still uses grid */

/* ---------- lifecycle rail ---------- */

.life-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
}
.life-item {
  background: var(--ground);
  padding: 1.75rem 1.4rem;
}
.life-n {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--lime);
  letter-spacing: .14em;
  margin-bottom: 1.1rem;
}
.life-item h3 { margin-bottom: .5rem; }
.life-item p { color: var(--text-2); font-size: .92rem; }
.life-note {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--muted);
  max-width: 52rem;
}

@media (max-width: 900px) {
  .life-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .life-rail { grid-template-columns: 1fr; }
}

.kit { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; }
.kit-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .kit-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .kit-3 { grid-template-columns: 1fr; }
}
.kit-item { background: var(--ground); padding: 1.75rem 1.5rem; }
.kit-item .label { margin-bottom: 1.1rem; }
.kit-item h3 { margin-bottom: .5rem; }
.kit-item p { color: var(--text-2); font-size: .92rem; }

/* ---------- verticals: data rows, not cards ---------- */

.vrow {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.vrow:first-child { border-top: 1px solid var(--line-soft); }
.vrow p { color: var(--text-2); font-size: .92rem; }

.vtag {
  font-family: var(--mono);
  font-size: .84rem;
  color: var(--text-2);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 780px) {
  .vrow { grid-template-columns: 1fr; gap: .4rem; }
  .vtag { justify-self: start; }
}

/* ---------- pricing ---------- */

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.price-plans { grid-template-columns: 1fr 1fr; margin-bottom: 1.5rem; }

.price-card, .compare {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.7rem, 3vw, 2.4rem);
}

.price-card { border-color: var(--lime-line); display: flex; flex-direction: column; }
.price-addon {
  border-color: var(--line);
  background: var(--surface-2);
}
.price-plan-name {
  font-size: 1.2rem;
  margin: .45rem 0 .55rem;
}
.price-plan-pitch {
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.price-addon .price-amount {
  /* keep amount spacing via .price-rows */
}
.addon-note {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
  margin: -.6rem 0 1.3rem;
}

.compare { display: flex; flex-direction: column; justify-content: center; background: transparent; }
.compare-bar {
  background: var(--surface);
  border: 1px solid var(--line);
}
.compare h3 { margin-bottom: 1.2rem; }
.compare p { color: var(--text-2); font-size: .95rem; }

.compare-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  max-width: 28rem;
}
.compare-n {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: .35rem 0 .25rem;
  font-variant-numeric: tabular-nums;
}
.compare-n.accent { color: var(--lime); }
.compare-hint { font-size: .78rem; color: var(--muted); }

.price-rows { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }

.price-amount {
  font-family: var(--mono);
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: .35rem;
  font-variant-numeric: tabular-nums;
}
.price-amount.accent { color: var(--lime); }
.price-amount .per { font-family: var(--sans); font-size: .85rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }

.incl { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .6rem; }
.incl li { display: flex; gap: .65rem; font-size: .92rem; color: var(--text-2); }
.incl li::before { content: "→"; color: var(--lime); flex-shrink: 0; font-family: var(--mono); font-size: .85rem; }
.incl-title { font-size: .82rem; color: var(--muted); margin-bottom: .9rem; }

.price-card .btn { width: 100%; margin-top: auto; }

@media (max-width: 820px) {
  .price-grid,
  .price-plans { grid-template-columns: 1fr; }
}

/* ---------- faq ---------- */

.faq-list { max-width: 820px; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  cursor: pointer;
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--mono); color: var(--lime); flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.4rem; color: var(--text-2); max-width: 68ch; font-size: .94rem; }

/* ---------- final ---------- */

.final { text-align: center; position: relative; overflow: hidden; }
.final::before {
  content: "";
  position: absolute;
  bottom: -55%;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,247,81,.09), transparent 62%);
  pointer-events: none;
}
.final .wrap { position: relative; z-index: 1; }
.final p { color: var(--text-2); max-width: 52ch; margin: 1.2rem auto 0; }
.final .btn { margin-top: 1.9rem; }
.demo-pending { display: none; }
body:not(.wa-ready) .demo-pending { display: block; }
body:not(.wa-ready) .final [data-wa] { display: none; }
.final-alt { display: block; margin-top: 1.1rem; font-size: .9rem; color: var(--muted); text-decoration: none; }
.final-alt:hover { color: var(--lime); }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--line-soft); padding-block: 3rem 1.75rem; font-size: .88rem; color: var(--text-2); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 2.25rem; border-bottom: 1px solid var(--line-soft); }
.footer-tag { color: var(--text); margin: .85rem 0 .4rem; letter-spacing: -0.02em; }
.footer-col h4 { margin: 0 0 .85rem; }
.footer-col a { display: block; color: var(--text-2); text-decoration: none; margin-bottom: .45rem; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; padding-top: 1.6rem; font-family: var(--mono); font-size: .72rem; color: var(--muted); }

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 1.9rem; } }

/* ---------- a11y ---------- */

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--lime); color: var(--lime-ink); padding: .7rem 1.2rem; z-index: 100; font-weight: 600; }
.skip:focus { left: 0; }

/* ---------- onboarding form ---------- */

.onboard { padding-block: 5.5rem 4rem; max-width: 780px; }
.onboard h1 { margin-top: .85rem; font-size: clamp(2rem, 4.5vw, 2.85rem); }
.onboard-lede { margin-top: 1.1rem; color: var(--text-2); max-width: 38rem; }
.onboard-lede em { color: var(--text); font-style: normal; }

.onboard-steps {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .85rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.onboard-steps li {
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.onboard-steps li.is-done { color: var(--text-2); border-color: var(--line); }
.onboard-steps li.is-active {
  color: var(--lime-ink);
  background: var(--lime);
  border-color: var(--lime);
}

.onboard-form { margin-top: 2rem; }
.onboard-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.onboard-panel h2 { font-size: 1.35rem; margin-bottom: .45rem; }
.ob-panel-sub { color: var(--text-2); font-size: .95rem; margin-bottom: 1.5rem; }

.ob-field { margin-bottom: 1.25rem; }
.ob-field label,
.ob-field legend {
  display: block;
  font-size: .88rem;
  color: var(--text-2);
  margin-bottom: .45rem;
}
.ob-field legend { padding: 0; }
.ob-field input[type="text"],
.ob-field input[type="email"],
.ob-field input[type="tel"],
.ob-field input[type="time"],
.ob-field select,
.ob-field textarea {
  width: 100%;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: .72rem .9rem;
}
.ob-field textarea { resize: vertical; min-height: 5rem; }
.ob-field input:focus,
.ob-field select:focus,
.ob-field textarea:focus {
  outline: none;
  border-color: var(--lime-line);
  box-shadow: 0 0 0 3px var(--lime-dim);
}
.ob-hint { margin: .4rem 0 0; font-size: .82rem; color: var(--muted); }
.req { color: var(--lime); }

.ob-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
@media (max-width: 640px) { .ob-grid-2 { grid-template-columns: 1fr; } }

.ob-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.ob-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ground);
  color: var(--text);
  font-size: .9rem;
  cursor: pointer;
}
.ob-chip:has(input:checked) {
  border-color: var(--lime-line);
  background: var(--lime-dim);
}
.ob-chip input { accent-color: var(--lime); }
.ob-other.is-hidden { display: none; }
.ob-other { margin-top: .7rem; }

.ob-verticals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
@media (max-width: 640px) { .ob-verticals { grid-template-columns: 1fr; } }

.ob-vert-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ground);
  cursor: pointer;
}
.ob-vert-card:has(input:checked) {
  border-color: var(--lime-line);
  background: var(--lime-dim);
}
.ob-vert-card input { position: absolute; opacity: 0; pointer-events: none; }
.ob-vert-title {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.3;
}
.ob-vert-blurb {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

.ob-services-label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .85rem;
}
.ob-suggestions { margin-bottom: 1.25rem; }
.ob-suggest-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.ob-suggest-chip {
  background: var(--ground);
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 999px;
  padding: .4rem .75rem;
  font: inherit;
  font-size: .82rem;
  cursor: pointer;
}
.ob-suggest-chip:hover {
  border-color: var(--lime-line);
  color: var(--text);
  background: var(--lime-dim);
}

.ob-service-list { display: grid; gap: .7rem; margin-bottom: 1rem; }
.ob-svc-dyn {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: .75rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ground);
}
@media (max-width: 640px) {
  .ob-svc-dyn { grid-template-columns: 1fr; }
}
.ob-svc-dyn .ob-field { margin-bottom: 0; }
.ob-dyn-label {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .35rem;
}
.ob-price-input,
.ob-svc-dyn input[type="text"] {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: .65rem .75rem;
}

.ob-phone {
  display: grid;
  grid-template-columns: minmax(9.5rem, 12rem) 1fr;
  gap: .55rem;
}
@media (max-width: 560px) {
  .ob-phone { grid-template-columns: 1fr; }
}
.ob-phone select,
.ob-phone input {
  width: 100%;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: .72rem .9rem;
}

.ob-ui-lang {
  display: inline-flex;
  gap: .25rem;
  margin-right: .35rem;
}
.ob-ui-lang .lang-toggle {
  min-width: 2.4rem;
  opacity: .55;
}
.ob-ui-lang .lang-toggle.is-active {
  opacity: 1;
  background: var(--lime-dim);
  border-color: var(--lime-line);
  color: var(--text);
}

.ob-service-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .65rem .8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ground);
  cursor: pointer;
  font-size: .92rem;
}
.ob-service-check:has(input:checked) {
  border-color: var(--lime-line);
  background: var(--lime-dim);
}
.ob-service-check input { accent-color: var(--lime); margin-top: .15rem; flex-shrink: 0; }
.ob-day-label { margin-left: .45rem; }

.ob-people { display: grid; gap: 1rem; margin-bottom: 1rem; }
.ob-person-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: .75rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ground);
}
@media (max-width: 800px) {
  .ob-person-row { grid-template-columns: 1fr; }
}
.ob-person-row .ob-field { margin-bottom: 0; }
.ob-remove-person { margin-bottom: .35rem; }

.ob-cal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
@media (max-width: 560px) { .ob-cal-cards { grid-template-columns: 1fr; } }
.ob-cal-card {
  display: grid;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ground);
  cursor: pointer;
}
.ob-cal-card:has(input:checked) {
  border-color: var(--lime-line);
  background: var(--lime-dim);
}
.ob-cal-card input { position: absolute; opacity: 0; pointer-events: none; }
.ob-cal-title { font-weight: 600; }
.ob-cal-desc { font-size: .82rem; color: var(--muted); }

.ob-hours { display: grid; gap: .55rem; }
.ob-hour-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto 1fr;
  gap: .6rem;
  align-items: center;
}
@media (max-width: 560px) {
  .ob-hour-row { grid-template-columns: 1fr 1fr; }
  .ob-hour-day { grid-column: 1 / -1; }
}
.ob-hour-day {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  color: var(--text);
}
.ob-hour-day input { accent-color: var(--lime); }
.ob-hour-sep { color: var(--muted); font-size: .85rem; }
.ob-hour-row input[type="time"] {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: .55rem .65rem;
}
.ob-hour-row input[type="time"]:disabled { opacity: .35; }

.ob-preview {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ground);
}
.ob-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line);
}
.ob-yaml {
  margin: 0;
  padding: 1rem;
  max-height: 22rem;
  overflow: auto;
  font-family: var(--mono);
  font-size: .72rem;
  line-height: 1.45;
  color: var(--text-2);
  white-space: pre-wrap;
}

.ob-consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-top: 1.3rem;
  font-size: .9rem;
  color: var(--text-2);
  cursor: pointer;
}
.ob-consent input { accent-color: var(--lime); margin-top: .2rem; }

.onboard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.onboard-nav-right {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.ob-error { color: var(--warn); font-size: .88rem; }
.ob-status {
  margin-top: 1.2rem;
  padding: .9rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-2);
  font-size: .92rem;
}
.ob-status.is-ok { border-color: var(--lime-line); color: var(--text); }
.ob-status.is-err { border-color: rgba(255, 122, 92, .45); color: var(--warn); }

.ob-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ob-import-preview {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--ground);
}


.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}
.footer-brand { margin: 0; color: var(--text); font-weight: 600; }
.footer-note { margin: 0; color: var(--muted); font-size: .85rem; }
