/* ============================================================
   SOLUX — marketing site
   Palette : indigo #6366F1 (brand) + amber #F5A623 (accent), from clinic_branding
   Type    : Archivo (display, expanded)  ·  Source Serif 4 (body)
             IBM Plex Mono (data + labels)
   Signature: the IVF cycle track
   ============================================================ */

:root {
  --ink:        #0A0E1F;
  --ink-soft:   #333C5C;
  --ink-mute:   #6B7391;
  --paper:      #F4F5FA;
  --surface:    #FFFFFF;
  --brand:      #6366F1;
  --brand-deep: #3F3FA8;
  --brand-lift: #8B8DF7;
  --brand-wash: #EBEBFE;
  --sol:        #F5A623;
  --sol-wash:   #FDF0D9;
  --rule:       #DFE1F0;
  --rule-firm:  #BFC3DE;

  --maxw: 1140px;
  --gut: clamp(20px, 5vw, 56px);

  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Source Serif 4", Georgia, serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--sol); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--sol);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- type ---------- */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 112;
  font-weight: 620;
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.55rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.12rem, 1.9vw, 1.35rem); font-variation-settings: "wdth" 104; letter-spacing: -0.012em; }
h4 { font-size: 1rem; font-variation-settings: "wdth" 100; letter-spacing: -0.005em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 650; color: var(--ink); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.72em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--sol);
  flex: none;
}

.deck {
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 40ch;
}

.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- layout ---------- */

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

.band { padding-block: clamp(64px, 9vw, 116px); }
.band--tight { padding-block: clamp(48px, 6vw, 76px); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--ink h2, .band--ink h3 { color: #fff; }
.band--ink .deck, .band--ink .lede { color: #A6ACD0; }
.band--ink .eyebrow { color: var(--sol); }
.band--surface { background: var(--surface); }
.band--edge { border-top: 1px solid var(--rule); }

.band__head { max-width: 40rem; margin-bottom: clamp(34px, 4.5vw, 56px); }
.band__head p { margin-top: 1.1rem; }

.grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); align-items: stretch; }
.grid--mid > * { display: flex; flex-direction: column; justify-content: center; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid > * { background: var(--surface); padding: clamp(22px, 2.6vw, 34px); }
.band--ink .grid { background: #1C2140; border-color: #1C2140; }
.band--ink .grid > * { background: var(--ink); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-display);
  font-variation-settings: "wdth" 104;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  padding: 0.86em 1.5em;
  border-radius: 2px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--sol { background: var(--sol); color: var(--ink); }
.btn--sol:hover { background: #EFB24C; }
.btn--ghost { border-color: var(--rule-firm); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.band--ink .btn--ghost { border-color: #3B4270; color: #fff; }
.band--ink .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { font-size: 0.85rem; padding: 0.66em 1.1em; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gut);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 118;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: baseline;
  gap: 0.44em;
  align-items: center;
}
.brand img { height: 25px; width: 25px; display: block; }
.brand__w { color: var(--ink); font-variation-settings: "wdth" 112; font-weight: 660; letter-spacing: 0.005em; }
.foot .brand img { height: 27px; width: 27px; }
.foot .brand .brand__w { color: #fff; }
@media (max-width: 700px) { .brand img { height: 22px; width: 22px; } }
.nav__links { display: flex; gap: 24px; align-items: center; }
.nav__links a {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 100;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover { color: var(--ink); border-color: var(--sol); }
.nav__links a[aria-current="page"] { color: var(--ink); border-color: var(--sol); }

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

.hero { padding-top: clamp(48px, 6vw, 82px); padding-bottom: clamp(30px, 4vw, 44px); }
.hero h1 { max-width: 15ch; }
.hero .deck { margin-top: 1.5rem; max-width: 52ch; }

/* ============================================================
   SIGNATURE — the IVF cycle track
   ============================================================ */

.track {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: clamp(20px, 3vw, 30px);
  margin-top: clamp(38px, 5vw, 58px);
}

.track__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.track__title {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.track__meta { font-family: var(--f-mono); font-size: 0.7rem; color: var(--ink-mute); letter-spacing: 0.06em; }

.track__grid {
  display: grid;
  grid-template-columns: repeat(34, 1fr);
  gap: 3px;
  align-items: stretch;
}

.seg {
  grid-row: 1;
  height: 46px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  padding-inline: 9px;
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  transform-origin: left center;
  animation: segIn .5s cubic-bezier(.2,.7,.3,1) backwards;
}
@keyframes segIn { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }

.seg--c { justify-content: center; padding-inline: 3px; }

.seg--bc   { background: var(--brand-wash); color: var(--brand); animation-delay: .12s; }
.seg--stim { background: var(--brand); color: #DDEBEC; animation-delay: .30s; }
.seg--trig { background: var(--sol); color: var(--ink); animation-delay: .48s; }
.seg--opu  { background: var(--ink); color: #fff; animation-delay: .58s; }
.seg--lab  { background: var(--sol-wash); color: #8A6416; animation-delay: .68s; }
.seg--et   { background: var(--brand-lift); color: #fff; animation-delay: .80s; }

.track__days {
  display: grid;
  grid-template-columns: repeat(34, 1fr);
  gap: 3px;
  margin-top: 8px;
}
.track__days span {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0;
}


.track__foot {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.track__note { font-size: 0.95rem; color: var(--ink-soft); margin: 0; flex: 1 1 320px; }

.legend { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule); }
.legend span { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); display: flex; align-items: center; gap: 6px; }
.legend i { width: 9px; height: 9px; border-radius: 1px; display: block; }

/* divider motif — the track, reduced to a rule */
.tick-rule {
  display: grid;
  grid-template-columns: repeat(34, 1fr);
  gap: 3px;
  height: 4px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.tick-rule i { background: var(--rule-firm); }
.tick-rule i:nth-child(3n) { background: var(--rule); }
.tick-rule i.hot { background: var(--sol); }

/* ---------- stat strip ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); }
.stats > div { background: var(--paper); padding: clamp(20px, 3vw, 30px) clamp(14px, 2vw, 24px); }
.stats dt { font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.stats dd {
  margin: 0;
  font-family: var(--f-display);
  font-variation-settings: "wdth" 108;
  font-weight: 620;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ---------- role quotes ---------- */

.role h3 { color: var(--brand); margin-bottom: 12px; }
.band--ink .role h3 { color: var(--sol); }
.role blockquote {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 16px;
  border-left: 2px solid var(--sol);
}
.band--ink .role blockquote { color: #E4E6F5; }
.role .mono { margin-top: 14px; display: block; }

/* ---------- comparison table ---------- */

.cmp { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.cmp th, .cmp td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.cmp thead th {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  border-bottom: 1px solid var(--rule-firm);
}
.cmp tbody th { font-family: var(--f-display); font-weight: 600; font-variation-settings: "wdth" 100; font-size: 0.96rem; width: 26%; }
.cmp .col-them { color: var(--ink-mute); width: 37%; }
.cmp .col-us { color: var(--ink); font-weight: 600; width: 37%; background: var(--sol-wash); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }

/* ---------- stack list ---------- */

.stack { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.stack li { background: var(--surface); padding: 18px clamp(16px, 2vw, 26px); display: grid; grid-template-columns: 2.4rem 1fr auto; gap: 14px; align-items: baseline; }
.stack .n { font-family: var(--f-mono); font-size: 0.68rem; color: var(--sol); letter-spacing: 0.06em; }
.stack .what { font-family: var(--f-display); font-weight: 600; font-variation-settings: "wdth" 100; font-size: 0.99rem; }
.stack .what em { display: block; font-family: var(--f-body); font-style: normal; font-weight: 400; font-size: 0.92rem; color: var(--ink-mute); margin-top: 4px; line-height: 1.45; }
.stack .alt { font-family: var(--f-mono); font-size: 0.63rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-mute); text-align: right; white-space: nowrap; }

/* ---------- offer box ---------- */

.offer { border: 1px solid #333A66; background: #111633; padding: clamp(26px, 4vw, 46px); }
.offer h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.offer__price { margin-top: 26px; padding-top: 22px; border-top: 1px solid #2A3059; }

.checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px 26px; }
.checks li { position: relative; padding-left: 26px; font-size: 0.98rem; line-height: 1.45; color: #D2D6EE; }
.checks li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--sol); font-family: var(--f-mono); font-size: 0.85rem; }

.guarantee { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #2A3059; border: 1px solid #2A3059; margin-top: 30px; }
.guarantee > div { background: #111633; padding: 20px; }
.guarantee h4 { color: var(--sol); font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 9px; }
.guarantee p { font-size: 0.93rem; color: #B2B8DA; line-height: 1.45; }

/* ---------- pull / math ---------- */

.pull {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 106;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.9vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.pull b { color: var(--sol); font-weight: inherit; }

/* ---------- feature cards ---------- */

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.5; }
.card .mono { display: block; margin-bottom: 14px; color: var(--sol); }
.card ul { margin: 12px 0 0; padding-left: 1.05em; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.5; }
.card li { margin-bottom: 5px; }

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

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--rule-firm);
  border-radius: 2px;
  padding: 12px 13px;
  width: 100%;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(99,102,241,.16); }
.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__note { font-size: 0.86rem; color: var(--ink-mute); }
.form__status { font-size: 0.95rem; padding: 12px 14px; border-radius: 2px; display: none; }
.form__status.ok { display: block; background: var(--brand-wash); color: var(--brand-deep); border: 1px solid #C7C8FA; }
.form__status.err { display: block; background: #FBECEA; color: #9B3A2C; border: 1px solid #EFD0CA; }

/* ---------- third-party form embed ---------- */

.embed { background: var(--surface); border: 1px solid var(--rule); min-height: 460px; }
.embed iframe { display: block; width: 100%; border: 0; }
.embed__placeholder {
  padding: 46px 28px;
  text-align: center;
  color: var(--ink-mute);
  border: 1px dashed var(--rule-firm);
  margin: 14px;
}
.embed__placeholder .mono { color: var(--brand); margin-bottom: 10px; }
.embed__placeholder p { font-size: 0.95rem; }
.embed__placeholder code { font-family: var(--f-mono); font-size: 0.85em; color: var(--ink); }

/* ---------- steps ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.steps li { background: var(--surface); padding: 22px clamp(18px, 2.4vw, 28px); display: grid; grid-template-columns: 2.6rem 1fr; gap: 16px; }
.steps .n { font-family: var(--f-mono); font-size: 0.7rem; color: var(--sol); letter-spacing: 0.08em; padding-top: 3px; }
.steps h4 { margin-bottom: 6px; }
.steps p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- ask list ---------- */

.asks { list-style: none; margin: 0; padding: 0; }
.asks li { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 1rem; display: grid; grid-template-columns: 2.2rem 1fr; gap: 12px; }
.asks li:last-child { border-bottom: none; }
.asks .n { font-family: var(--f-mono); font-size: 0.66rem; color: var(--ink-mute); padding-top: 5px; }

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

.foot { background: var(--ink); color: #868DB5; padding-block: clamp(40px, 5vw, 60px); font-size: 0.9rem; }
.foot a { color: #C3C8E4; text-decoration: none; }
.foot a:hover { color: #fff; }
.foot__in { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
.foot .brand { color: #fff; margin-bottom: 12px; }
.foot h5 { font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: #6C7399; margin: 0 0 12px; font-weight: 500; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot__bar { margin-top: 36px; padding-top: 20px; border-top: 1px solid #1C2140; font-size: 0.8rem; color: #6C7399; }

/* ---------- reveal ---------- */

.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.rv.in { opacity: 1; transform: none; }

/* ============================================================
   AI AUDIT LEDGER — second signature element
   ============================================================ */

.audit {
  background: #0F1430;
  border: 1px solid #2A3059;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  line-height: 1.55;
  color: #C3C8E4;
}
.audit__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid #2A3059;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B82AE;
}
.audit__bar i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sol); flex: none;
  box-shadow: 0 0 0 3px rgba(245,166,35,.16);
}
.audit__rows { padding: 6px 0; }

/* execute pass — rows land one at a time so the trace reads as a query
   running, not a screenshot. One pass, no loop. */
.audit[data-execute] .audit__row,
.audit[data-execute] .audit__foot { opacity: 0; }
.audit[data-execute] .audit__row.is-on,
.audit[data-execute] .audit__foot.is-on {
  opacity: 1;
  animation: auditRow .34s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes auditRow {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: none; }
}
.audit__bar i.is-busy { animation: auditPulse 1s ease-in-out infinite; }
@keyframes auditPulse { 50% { opacity: .35; } }
.audit__row {
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  gap: 14px;
  padding: 9px 18px;
  align-items: start;
}
.audit__row + .audit__row { border-top: 1px solid #1A2046; }
.audit__row dt {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6C7399;
  padding-top: 3px;
}
.audit__row dd { margin: 0; color: #DDE0F2; word-break: break-word; }
.audit__row dd b { color: var(--sol); font-weight: 500; }
.audit__row dd .sql { color: #A5ABE8; }
.audit__row dd .sql em { color: var(--brand-lift); font-style: normal; }
.audit__foot {
  border-top: 1px solid #2A3059;
  padding: 13px 18px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #7B82AE;
}
.audit__foot b { color: #DDE0F2; font-weight: 500; }

/* ---------- versus block ---------- */

.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.vs > div { background: var(--surface); padding: clamp(22px, 2.8vw, 34px); color: var(--ink); }
.band--ink .vs > div { color: var(--ink); }
.band--ink .vs li { color: var(--ink-soft); }
.band--ink .vs__us li { color: var(--ink); }
.vs__tag {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.vs__them .vs__tag { color: var(--ink-mute); }
.vs__us { background: var(--brand-wash); box-shadow: inset 3px 0 0 var(--brand); }
.vs__us .vs__tag { color: var(--brand-deep); }
.vs ul { list-style: none; margin: 0; padding: 0; }
.vs li { padding: 11px 0 11px 26px; position: relative; font-size: 0.98rem; line-height: 1.5; border-bottom: 1px solid rgba(0,0,0,.06); }
.vs li:last-child { border-bottom: none; }
.vs__them li::before { content: "×"; position: absolute; left: 0; top: 10px; color: var(--rule-firm); font-family: var(--f-mono); }
.vs__us li::before { content: "→"; position: absolute; left: 0; top: 11px; color: var(--brand); font-family: var(--f-mono); font-size: 0.85rem; }

/* ---------- capability grid ---------- */

.cap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.cap > div { background: var(--surface); padding: clamp(20px, 2.5vw, 30px); }
.band--ink .cap { background: #1C2140; border-color: #1C2140; }
.band--ink .cap > div { background: var(--ink); }
.cap__n {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sol);
  display: block;
  margin-bottom: 12px;
}
.cap h3 { font-size: 1.06rem; margin-bottom: 9px; }
.cap p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.band--ink .cap p { color: #A6ACD0; }

@media (max-width: 820px) {
  .vs { grid-template-columns: 1fr; }
  .cap { grid-template-columns: 1fr; }
  .audit__row { grid-template-columns: 1fr; gap: 3px; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .guarantee { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .nav__links { gap: 16px; }
  .nav__links a.hide-sm { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .checks { grid-template-columns: 1fr; }
  .field--half { grid-template-columns: 1fr; }
  .stack li { grid-template-columns: 2rem 1fr; }
  .stack .alt { grid-column: 2; text-align: left; margin-top: 4px; }
  .foot__in { grid-template-columns: 1fr; }
  .track__days { display: none; }
  .track__top { flex-direction: column; gap: 4px; }
  .track__meta { display: none; }
  .legend { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  .seg { font-size: 0; padding-inline: 0; height: 38px; }
  .legend { display: flex; }
  .cmp tbody th { width: auto; }
  .cmp thead { display: none; }
  .cmp tbody tr { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--rule-firm); }
  .cmp th, .cmp td { border-bottom: none; padding: 8px 0; }
  .cmp tbody th { padding-top: 16px; }
  .cmp .col-them::before { content: "Traditional EHR — "; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: .1em; text-transform: uppercase; }
  .cmp .col-us { background: none; }
  .cmp .col-us::before { content: "Solux — "; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sol); }
  .cmp tbody tr:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
}
