/* =========================================================
   LORIXEN — Option B: Editorial Dark
   Fonts: Fraunces (display) + Geist / Inter (body) + JetBrains Mono
   Dark teal hero, cream sections, bold serif contrast
   ========================================================= */
:root {
  --primary: #0F766E;
  --primary-dark: #0B3B3C;
  --primary-mid: #0E5E57;
  --primary-50: #E6F3F1;
  --cream: #FAFAF7;
  --cream-2: #F2F0E9;
  --surface: #F2F6F5;
  --accent: #DFF7F3;
  --text: #0F1419;
  --text-2: #1F2937;
  --muted: #6B7280;
  --soft: #9AA0A6;
  --border: #E8E8E2;
  --border-d: #1C4F4A;
  --white: #FFFFFF;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 4vw, 40px);
  --max-w: 1220px;
  --section-y: clamp(80px, 10vw, 144px);

  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(15,20,25,.05), 0 1px 2px rgba(15,20,25,.04);
  --shadow: 0 12px 32px -12px rgba(15,20,25,.14);
  --shadow-lg: 0 28px 56px -16px rgba(15,20,25,.2);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--primary-dark); scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.6;
  color: var(--text-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

h1,h2,h3,h4 { margin: 0; color: var(--text); letter-spacing: -0.025em; }
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h1 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; font-weight: 400; }
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); font-weight: 400; }
h3 { font-family: var(--sans); font-weight: 600; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.25; letter-spacing: -0.015em; }
h4 { font-family: var(--sans); font-weight: 600; font-size: 16.5px; line-height: 1.3; letter-spacing: -0.01em; }
p { margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: -0.005em;
  max-width: 52ch;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px; padding: 0 26px;
  border-radius: 4px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
/* Explicit pressed/active — keep text fully readable (no iOS fade),
   show an orange ring instead of dimming the fill. */
.nav__links .btn:active,
.btn--invert:active,
.btn--primary:active,
.btn--outline:active,
.btn--ghost-dark:active {
  transform: translateY(0);
  opacity: 1;
}
.nav__links .btn:active {
  background: var(--cream);
  color: var(--primary-dark);
  border-color: hsl(24, 100%, 62%);
  box-shadow: 0 0 0 3px hsla(24, 100%, 55%, 0.3);
}
.btn--invert:active {
  background: var(--cream);
  color: var(--primary-dark);
  border-color: hsl(24, 100%, 62%);
  box-shadow: 0 0 0 3px hsla(24, 100%, 55%, 0.3);
}
.btn svg { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-mid); border-color: var(--primary-mid); transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(15,118,110,0.5); }
.btn--invert { background: var(--cream); color: var(--primary-dark); border-color: var(--cream); }
.btn--invert:hover { background: var(--white); transform: translateY(-1px); }
.btn--ghost-dark { background: transparent; color: var(--cream); border-color: rgba(250,250,247,0.35); }
.btn--ghost-dark:hover { border-color: var(--cream); background: rgba(250,250,247,0.06); }
.btn--outline { background: var(--cream); color: var(--text); border-color: var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--sm { height: 40px; padding: 0 16px; font-size: 13.5px; }

/* Version tag */
.version-tag {
  position: fixed; top: 88px; right: 20px; z-index: 48;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 6px 6px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow); font-size: 12px;
  color: var(--muted); font-family: var(--mono);
  white-space: nowrap;
}
.version-tag > * { white-space: nowrap; }
.version-tag strong { color: var(--text); font-weight: 600; font-family: var(--sans); }
.version-tag a {
  padding: 6px 12px; border-radius: 999px;
  background: var(--cream-2); color: var(--muted);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  transition: background .15s, color .15s;
}
.version-tag a:hover { background: var(--primary); color: var(--white); }
@media (max-width: 820px) { .version-tag { display: none; } }

/* ====== HERO — DARK BAND ====== */
.hero-band {
  background: var(--primary-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(15,118,110,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(223,247,243,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 59, 60, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.is-stuck { border-bottom-color: rgba(250,250,247,0.1); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream); color: var(--primary-dark);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 18px;
}
.brand__mark-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.brand__i {
  position: relative;
  display: inline-block;
  font-style: inherit;
  font-weight: inherit;
}
.brand__i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.05em;
  width: 0.16em;
  height: 0.16em;
  border-radius: 50%;
  background: #F27131;
  transform: translateX(-50%);
}
.brand--footer { color: var(--cream); }
.brand__mark-img--footer { height: 32px; }
.brand__name--footer { font-size: 24px; }
@media (max-width: 640px) {
  .brand__mark-img { height: 32px; }
  .brand__name { font-size: 24px; }
  .brand__mark-img--footer { height: 26px; }
  .brand__name--footer { font-size: 20px; }
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 14px; color: rgba(250,250,247,0.7);
  font-weight: 500; transition: color .15s;
}
.nav__links a:hover { color: var(--cream); }
.nav__links .btn { color: var(--primary-dark); background: var(--cream); border-color: var(--cream); }
.nav__links .btn:hover {
  color: var(--primary-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 6px 18px -10px rgba(11, 59, 60, 0.35);
}
@media (max-width: 820px) { .nav__links a:not(.btn) { display: none; } }

.hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(48px, 7vw, 96px);
  position: relative; z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; gap: 56px; } }

.hero__copy .eyebrow { color: var(--accent); margin-bottom: 24px; }
.hero__copy h1 { color: var(--cream); }
.hero__copy h1 em { color: var(--accent); }
.hero__sub {
  margin-top: 28px;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: rgba(250,250,247,0.78);
  max-width: 48ch;
  letter-spacing: -0.005em;
}
.hero__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 32px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(250,250,247,0.55);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* Hero visual — editorial browser card */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.browser {
  position: absolute; inset: 0;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.browser__bar {
  height: 36px; background: var(--cream-2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
}
.browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #D4CDBF; }
.browser__bar .url {
  flex: 1; margin: 0 14px;
  height: 22px; background: var(--cream); border: 1px solid var(--border);
  border-radius: 4px; display: flex; align-items: center;
  padding: 0 10px; font-family: var(--mono); font-size: 10px; color: var(--soft);
}
.browser__body {
  flex: 1; padding: 28px; display: flex; flex-direction: column; gap: 16px;
  color: var(--text);
}
.mini-brand { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.mini-brand .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--primary-dark); color: var(--cream); display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 11px; }
.mini-brand strong { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.mini-brand .phone { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--primary); }
.mini-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.02; letter-spacing: -0.03em; color: var(--text);
}
.mini-h em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); }
.mini-sub { font-size: 12px; color: var(--muted); line-height: 1.5; }
.mini-cta-row { display: flex; gap: 8px; margin-top: 4px; }
.mini-cta { background: var(--primary); color: var(--white); padding: 10px 14px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.mini-cta--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.mini-trust { margin-top: auto; padding: 12px 14px; background: var(--primary-50); border-radius: 8px; display: flex; gap: 10px; align-items: center; font-size: 11px; color: var(--primary-dark); }
.mini-trust .stars { color: #F59E0B; letter-spacing: -1px; }

/* Trust strip — inside dark band */
.trust-strip {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 32px;
  border-top: 1px solid rgba(250,250,247,0.12);
}
.trust-strip__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,247,0.45);
  margin-bottom: 24px;
}
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .trust-strip__grid { grid-template-columns: 1fr; gap: 14px; } }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px;
  background: rgba(250,250,247,0.04);
  border: 1px solid rgba(250,250,247,0.1);
  border-radius: var(--radius);
  font-family: var(--serif); font-weight: 400;
  font-size: 20px; color: var(--cream);
  letter-spacing: -0.02em; line-height: 1.15;
  transition: border-color .2s, background .2s;
}
.trust-item:hover { border-color: var(--accent); background: rgba(223,247,243,0.06); }
.trust-item .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(223,247,243,0.12); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}

/* ====== SECTIONS ====== */
section.sec { padding: var(--section-y) 0; position: relative; }
.sec--cream { background: var(--cream); }
.sec--cream-2 { background: var(--cream-2); }
.sec--dark { background: var(--primary-dark); color: var(--cream); }
.sec--dark h2 { color: var(--cream); }
.sec--dark h2 em { color: var(--accent); }
.sec--dark .lede { color: rgba(250,250,247,0.7); }

.sec__head {
  max-width: 740px;
  margin-bottom: clamp(52px, 6vw, 80px);
}
.sec__head .eyebrow { margin-bottom: 24px; }
.sec__head h2 { margin-bottom: 24px; }

/* ====== PROBLEM ====== */
.problem-list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}
/* Top rule — draws in on reveal */
.problem-list::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(15,20,25,0) 0%,
    rgba(15,20,25,.85) 8%,
    rgba(15,20,25,.85) 92%,
    rgba(15,20,25,0) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1) .15s;
}
.problem-list.in::before { transform: scaleX(1); }

.problem-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(200px, 1.05fr) 1.55fr auto;
  column-gap: clamp(20px, 3vw, 44px);
  row-gap: 10px;
  padding: clamp(32px, 4vw, 44px) clamp(8px, 1.2vw, 16px);
  border-bottom: 1px solid var(--border);
  align-items: center;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  transition:
    background .55s cubic-bezier(.2,.7,.2,1),
    padding .55s cubic-bezier(.2,.7,.2,1);
}
.problem-row:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: 4px;
}
/* Row hover — soft teal wash + glide-right indent */
.problem-row:hover {
  background: linear-gradient(90deg,
    rgba(15,118,110,0.055) 0%,
    rgba(15,118,110,0.028) 55%,
    rgba(15,118,110,0) 100%);
  padding-left: clamp(24px, 2.4vw, 32px);
}
/* Left accent bar — grows on hover */
.problem-row::before {
  content: "";
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(15,118,110,0) 0%,
    var(--primary) 30%,
    var(--primary) 70%,
    rgba(15,118,110,0) 100%);
  border-radius: 3px;
  opacity: 0;
  transform: scaleY(.35);
  transform-origin: center;
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.problem-row:hover::before { opacity: 1; transform: scaleY(1); }

@media (max-width: 820px) {
  .problem-row {
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
    row-gap: 10px;
    padding: 28px 4px;
  }
  .problem-row > .problem-body { grid-column: 2; }
  .problem-row > .problem-tag  { grid-column: 2; justify-self: start; margin-top: 4px; }
  .problem-row:hover { padding-left: 14px; }
}

/* Numeral — with halo on hover */
.problem-n {
  position: relative;
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(40px, 4.2vw, 58px);
  color: var(--primary); line-height: 1;
  letter-spacing: -0.03em;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), color .35s ease;
}
.problem-n::after {
  content: "";
  position: absolute;
  inset: -28px -34px;
  background: radial-gradient(circle,
    rgba(15,118,110,0.16) 0%,
    rgba(15,118,110,0.06) 45%,
    transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: -1;
  border-radius: 50%;
}
.problem-row:hover .problem-n {
  transform: translateX(2px) scale(1.07);
  color: var(--primary-dark);
}
.problem-row:hover .problem-n::after { opacity: 1; }

/* Title — with animated rule on hover */
.problem-h {
  position: relative;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text);
  padding-bottom: 6px;
  width: fit-content;
}
.problem-h::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 1.5px;
  background: hsl(24, 100%, 62%);
  box-shadow: 0 0 8px hsla(24, 100%, 55%, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), width .45s ease;
}
.problem-row:hover .problem-h::after { transform: scaleX(1); width: 64px; }

.problem-body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 52ch;
}

/* Category pill — redesigned as an intentional chip */
.problem-tag {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(250,250,247,0.6);
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  transition:
    border-color .45s cubic-bezier(.2,.7,.2,1),
    color .35s ease,
    background .45s ease,
    padding .4s cubic-bezier(.2,.7,.2,1),
    box-shadow .45s ease;
  white-space: nowrap;
}
.problem-tag .tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: hsl(24, 100%, 62%);
  box-shadow: 0 0 6px hsla(24, 100%, 55%, 0.5);
  transition: box-shadow .5s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.problem-tag .tag-arrow {
  width: 0; height: 12px;
  overflow: hidden;
  display: inline-flex; align-items: center;
  color: var(--primary);
  transition: width .5s cubic-bezier(.2,.7,.2,1), margin-left .4s;
  opacity: 0;
}
.problem-tag .tag-arrow svg { width: 12px; height: 12px; flex-shrink: 0; }
.problem-row:hover .problem-tag {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-50);
  padding-right: 11px;
  box-shadow: 0 6px 18px -10px rgba(15,118,110,0.35);
}
.problem-row:hover .problem-tag .tag-dot {
  box-shadow: 0 0 0 4px rgba(15,118,110,0.18);
  transform: scale(1.1);
}
.problem-row:hover .problem-tag .tag-arrow { width: 14px; opacity: 1; margin-left: 2px; }
@media (max-width: 820px) {
  .problem-tag { font-size: 9.5px; padding: 6px 12px 6px 10px; }
}

/* ====== WHAT WE FIX ====== */
.fix-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 28px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 880px) { .fix-grid { grid-template-columns: 1fr; } }

/* --- Base card (light) — stronger foundation so it holds its own next to dark --- */
.fix-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 4vw, 56px) clamp(36px, 3.8vw, 52px) clamp(36px, 3.8vw, 48px);
  box-shadow:
    0 1px 2px rgba(15,20,25,0.04),
    0 8px 20px -8px rgba(15,20,25,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transition:
    transform .6s cubic-bezier(.2,.7,.2,1),
    box-shadow .6s ease,
    border-color .4s ease;
}
/* Soft ambient wash — sits below content */
.fix-card > * { position: relative; z-index: 1; }
/* Top accent hairline */
.fix-card::after {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(15,118,110,0.35) 50%,
    transparent 100%);
  opacity: .5;
  transition: opacity .5s ease, left .5s ease, right .5s ease;
  z-index: 2;
}
.fix-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15,118,110,0.22);
  box-shadow:
    0 1px 2px rgba(15,20,25,0.04),
    0 20px 36px -14px rgba(15,20,25,0.14),
    0 40px 72px -24px rgba(15,118,110,0.22),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.fix-card:hover::after { opacity: 1; left: 4%; right: 4%; }

/* --- Dark card — layered teal with a luminous top rim --- */
.fix-card--dark {
  background:
    linear-gradient(180deg, #114E4C 0%, #0B3B3C 48%, #072C2D 100%);
  border-color: rgba(223,247,243,0.1);
  color: var(--cream);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.12),
    0 12px 30px -10px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(223,247,243,0.08);
}
.fix-card--dark::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(223,247,243,0.55) 50%,
    transparent 100%);
  opacity: .7;
}
.fix-card--dark h3 { color: var(--cream); }
.fix-card--dark > p { color: rgba(250,250,247,0.82); }
.fix-card--dark .fix-list li {
  color: rgba(250,250,247,0.94);
  border-top-color: rgba(250,250,247,0.1);
}
.fix-card--dark .fix-card__tag {
  background: rgba(223,247,243,0.1);
  color: var(--accent);
  border-color: rgba(223,247,243,0.22);
  box-shadow: inset 0 1px 0 rgba(223,247,243,0.08);
}
.fix-card--dark:hover {
  transform: translateY(-8px);
  border-color: rgba(223,247,243,0.28);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.12),
    0 24px 48px -14px rgba(0,0,0,0.42),
    0 48px 96px -24px rgba(15,118,110,0.5),
    inset 0 1px 0 rgba(223,247,243,0.12);
}

/* --- Big decorative serif digit (top-right corner) --- */
.fix-card__digit {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(22px, 2.4vw, 36px);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(88px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(160deg,
    rgba(15,118,110,0.18) 0%,
    rgba(15,118,110,0.05) 60%,
    transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), background .5s;
}
.fix-card--dark .fix-card__digit {
  background: linear-gradient(160deg,
    rgba(223,247,243,0.22) 0%,
    rgba(223,247,243,0.06) 50%,
    transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.fix-card:hover .fix-card__digit {
  transform: translateY(-4px) scale(1.04);
}

/* --- Corner accent mark (tiny crosshair) --- */
.fix-card__corner {
  position: absolute;
  top: 18px; left: 18px;
  width: 16px; height: 16px;
  pointer-events: none;
  z-index: 2;
}
.fix-card__corner::before,
.fix-card__corner::after {
  content: "";
  position: absolute;
  background: rgba(15,118,110,0.5);
}
.fix-card__corner::before { top: 0; left: 0; width: 12px; height: 1px; }
.fix-card__corner::after  { top: 0; left: 0; width: 1px; height: 12px; }
.fix-card--dark .fix-card__corner::before,
.fix-card--dark .fix-card__corner::after {
  background: rgba(223,247,243,0.6);
}

/* --- Glowing orb on the dark card (visible decorative element) --- */
.fix-card__orb {
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle,
    rgba(15,118,110,0.6) 0%,
    rgba(15,118,110,0.15) 40%,
    transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
  opacity: .9;
  transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.fix-card--dark:hover .fix-card__orb {
  opacity: 1;
  transform: translate3d(-8px, 6px, 0) scale(1.08);
}
/* Grid texture — visible on the dark card */
.fix-card--dark {
  background-image:
    linear-gradient(rgba(223,247,243,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223,247,243,0.025) 1px, transparent 1px),
    linear-gradient(180deg, #114E4C 0%, #0B3B3C 48%, #072C2D 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
}

/* --- Tag — elevated pill with live dot --- */
.fix-card__tag {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary);
  border: 1px solid rgba(15,118,110,0.18);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow:
    0 1px 2px rgba(15,118,110,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.fix-card__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.18);
  animation: tagDotPulse 2.4s ease-in-out infinite;
}
@keyframes tagDotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(15,118,110,0.18); transform: scale(1); }
  50%     { box-shadow: 0 0 0 5px rgba(15,118,110,0.08); transform: scale(1.12); }
}
.fix-card--dark .fix-card__tag-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(223,247,243,0.18);
  animation: tagDotPulseDark 2.4s ease-in-out infinite;
}
@keyframes tagDotPulseDark {
  0%,100% { box-shadow: 0 0 0 3px rgba(223,247,243,0.18); transform: scale(1); }
  50%     { box-shadow: 0 0 0 5px rgba(223,247,243,0.08); transform: scale(1.12); }
}

.fix-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.fix-card h3 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); }
.fix-card--dark h3 em { color: var(--accent); }
.fix-card > p {
  color: var(--muted); font-size: 15.5px;
  margin-bottom: 32px; line-height: 1.6;
  max-width: 42ch;
}

/* --- Bullet list — polished, with subtle hover --- */
.fix-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.fix-list li {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-size: 15px; line-height: 1.5;
  color: var(--text);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  transition: color .3s ease;
}
.fix-list li:last-child { padding-bottom: 0; }
.fix-list .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: grid; place-items: center;
  margin-top: 1px;
  box-shadow:
    0 2px 6px -2px rgba(15,118,110,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.fix-card--dark .fix-list .check {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow:
    0 4px 10px -2px rgba(223,247,243,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.fix-list .check svg { width: 12px; height: 12px; }
.fix-card:hover .fix-list .check {
  box-shadow:
    0 2px 6px -2px rgba(15,118,110,0.35),
    0 0 0 5px rgba(15,118,110,0.12),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.fix-card--dark:hover .fix-list .check {
  box-shadow:
    0 4px 10px -2px rgba(223,247,243,0.3),
    0 0 0 5px rgba(223,247,243,0.12),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ====== Before / After — rich framed mockups ====== */
.fix-ba {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15,20,25,0.04),
    0 10px 24px -10px rgba(15,20,25,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.fix-ba__header {
  padding: clamp(26px, 2.6vw, 36px) clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, transparent 100%);
}
.fix-ba__header h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.fix-ba__header h3 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); }
.fix-ba__header p { color: var(--muted); font-size: 14.5px; }
/* "Transform" — elevated badge with live dot + arrow */
.fix-ba__header .arrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-50) 0%, #D9EFEC 100%);
  border: 1px solid rgba(15,118,110,0.22);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary-dark);
  box-shadow:
    0 1px 2px rgba(15,118,110,0.1),
    inset 0 1px 0 rgba(255,255,255,0.75);
}
.fix-ba__header .arrow .arrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.2);
  animation: tagDotPulse 2.4s ease-in-out infinite;
}
.fix-ba__header .arrow svg { width: 12px; height: 12px; color: var(--primary); }

/* Split grid — desktop has narrow center divider column */
.fix-ba__split {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  position: relative;
}
@media (max-width: 820px) {
  .fix-ba__split { grid-template-columns: 1fr; }
  /* Reorient the divider for the vertical mobile stack: horizontal bar
     between the stacked cards, with the arrow pointing DOWN */
  .fix-ba__divider {
    flex-direction: row;
    border-left: none;
    border-right: none;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    background: linear-gradient(90deg, var(--cream-2) 0%, rgba(250,250,247,0.6) 50%, var(--cream-2) 100%);
    padding: 14px 0;
  }
  .fix-ba__divider-line {
    flex: 1;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }
  .fix-ba__divider-badge {
    margin: 0 14px;
    transform: rotate(90deg);
  }
}

.fix-ba__col {
  padding: clamp(28px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 440px;
  position: relative;
}
@media (max-width: 820px) {
  .fix-ba__col + .fix-ba__col { border-top: 1px solid var(--border); }
}

/* Column labels — distinct styling for before vs after */
.fix-ba__col-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.fix-ba__col-label .pill {
  padding: 4px 10px; border-radius: 999px;
  background: var(--cream-2); color: var(--muted);
  border: 1px solid var(--border);
  font-size: 10px; letter-spacing: 0.1em; font-weight: 500;
}
.fix-ba__col--after .fix-ba__col-label { color: var(--primary-dark); }
.fix-ba__col--after .fix-ba__col-label .pill {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: rgba(15,118,110,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Before column background — muted, flat */
.fix-ba__col--before {
  background:
    linear-gradient(180deg, var(--cream-2) 0%, #E8E5D8 100%);
}
.fix-ba__col--before::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: .6;
}
.fix-ba__col--before > * { position: relative; z-index: 1; }

/* After column — rewarding teal wash */
.fix-ba__col--after {
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%,
      rgba(223,247,243,0.75) 0%,
      rgba(223,247,243,0.15) 45%,
      transparent 75%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%);
}
.fix-ba__col--after::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; height: 80%;
  background: radial-gradient(circle,
    rgba(15,118,110,0.1) 0%,
    transparent 60%);
  pointer-events: none;
}
.fix-ba__col--after > * { position: relative; z-index: 1; }

/* Center divider (desktop) */
.fix-ba__divider {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--cream-2) 0%, rgba(250,250,247,0.6) 50%, var(--cream-2) 100%);
  border-left: 1px dashed var(--border);
  border-right: 1px dashed var(--border);
  position: relative;
}
.fix-ba__divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.fix-ba__divider-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1A8A82 0%, var(--primary) 100%);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow:
    0 1px 2px rgba(15,118,110,0.3),
    0 8px 20px -4px rgba(15,118,110,0.5),
    0 0 0 6px rgba(250,250,247,0.9),
    inset 0 1px 0 rgba(255,255,255,0.2);
  margin: 10px 0;
}
.fix-ba__divider-badge svg { width: 18px; height: 18px; }

/* ==== BEFORE MOCKUP — dated HVAC site ==== */
.ba-mock--before {
  background: #E6E1D0;
  border: 1px solid #C8C3B2;
  border-radius: 6px;
  overflow: hidden;
  flex: 1;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.03),
    0 2px 4px rgba(0,0,0,0.04);
  position: relative;
  filter: saturate(0.4);
  font-family: "Times New Roman", Times, serif;
  color: #4A4638;
}
.ba-mock--before::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,240,200,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.ba-old__bar {
  background: linear-gradient(180deg, #B5A985 0%, #9B9071 100%);
  color: #2C2818;
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #7B7258;
  flex-wrap: wrap; gap: 8px;
}
.ba-old__logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}
.ba-old__logo span {
  font-weight: 400;
  font-size: 11px;
  display: block;
  letter-spacing: 0;
}
.ba-old__nav {
  font-size: 10.5px;
  font-weight: 700;
  color: #3A351F;
}
.ba-old__nav span { padding: 0 5px; }
.ba-old__banner {
  background: repeating-linear-gradient(45deg, #C9B85A 0, #C9B85A 6px, #B5A648 6px, #B5A648 12px);
  color: #3A3310;
  padding: 6px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #9B8C30;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}
.ba-old__body {
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: Arial, sans-serif;
}
.ba-old__welcome {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px; font-weight: 700;
  color: #4A4230;
  font-style: italic;
}
.ba-old__copy { display: flex; flex-direction: column; gap: 5px; }
.ba-old__copy span {
  display: block;
  height: 6px;
  background: #A8A08C;
  border-radius: 1px;
  width: 100%;
}
.ba-old__copy span.short { width: 72%; }
.ba-old__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.ba-old__grid > div {
  aspect-ratio: 4/3;
  background: #C5BCA3;
  border: 1px solid #A9A088;
  display: grid; place-items: center;
  font-family: Arial, sans-serif;
  font-size: 10px; color: #726a54; font-weight: 700;
}
.ba-old__footer {
  background: #CFC5AB;
  padding: 7px;
  font-size: 10px;
  color: #4A4230;
  text-align: center;
  border-top: 1px solid #A9A088;
  margin: 0 -14px -14px;
  font-family: Arial, sans-serif;
}
.ba-old__stamp {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(74,70,56,0.5);
  border: 1px solid rgba(74,70,56,0.3);
  padding: 2px 6px;
  transform: rotate(-6deg);
  background: rgba(255,255,255,0.2);
}

/* ==== AFTER MOCKUP — modern HVAC site ==== */
.ba-mock--after {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  box-shadow:
    0 2px 4px rgba(15,20,25,0.04),
    0 14px 28px -8px rgba(15,20,25,0.12),
    0 24px 48px -16px rgba(15,118,110,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Photo variant — real screenshots replace the coded mockups.
   Wins over .ba-mock--before / .ba-mock--after due to source order. */
.ba-mock--photo {
  flex: 1;
  display: block;
  position: relative;
  padding: 0;
  background: transparent;
  filter: none;
  font-family: inherit;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ba-mock--photo::before,
.ba-mock--photo::after {
  display: none;
  content: none;
}
.ba-mock--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ba-new__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FDFDFA 0%, #FAF9F2 100%);
}
.ba-new__logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: -0.015em; color: var(--text);
}
.ba-new__logo-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--primary-dark);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 15px;
}
.ba-new__nav {
  display: flex; gap: 18px;
  font-size: 11.5px; color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}
.ba-new__phone {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  color: var(--primary-dark);
  padding: 6px 12px;
  border: 1px solid rgba(15,118,110,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
}
.ba-new__hero {
  padding: 22px 20px 18px;
  display: flex; flex-direction: column; gap: 12px;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(223,247,243,0.6) 0%, transparent 55%);
}
.ba-new__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 10px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  border: 1px solid rgba(15,118,110,0.18);
}
.ba-new__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 2.5px rgba(15,118,110,0.22);
  animation: tagDotPulse 2.4s ease-in-out infinite;
}
.ba-new__cta-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.ba-new__cta-ghost {
  font-size: 12px; font-weight: 600;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  color: var(--text);
}

/* Shared mock typography */
.mock-h-big {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--text);
}
.mock-h-big em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); }
.mock-sub { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* Primary CTA — elevated with shine */
.mock-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #1A8A82 0%, var(--primary) 100%);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 11px 18px;
  border-radius: 8px;
  width: fit-content;
  box-shadow:
    0 1px 2px rgba(15,118,110,0.25),
    0 10px 22px -6px rgba(15,118,110,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  letter-spacing: 0.005em;
}
.mock-cta::after {
  content: "";
  position: absolute; top: 0; left: -40%; height: 100%; width: 40%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: skewX(-20deg);
  animation: mockShine 6s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}
@keyframes mockShine {
  0%, 20%   { transform: translateX(0) skewX(-20deg); opacity: 0; }
  30%       { opacity: 1; }
  45%, 100% { transform: translateX(360%) skewX(-20deg); opacity: 0; }
}

.mock-trust {
  margin: 0 20px 20px;
  padding: 12px 14px;
  background: linear-gradient(90deg, var(--primary-50) 0%, rgba(255,255,255,0.8) 100%);
  border: 1px solid rgba(15,118,110,0.18);
  border-radius: 10px;
  font-size: 12px; color: var(--primary-dark);
  display: flex; align-items: center; gap: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.mock-trust .stars { color: #F59E0B; letter-spacing: -1px; font-size: 13px; }
.mock-trust strong { font-weight: 700; color: var(--text); }

/* Captions under each mockup */
.ba-caption {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  padding-top: 4px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  margin-top: auto;
}
.ba-caption--after { color: var(--primary-dark); border-top-color: rgba(15,118,110,0.18); font-weight: 500; }

/* ====== WHY LORIXEN ====== */
.why-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* --- The 4-reason list — refined with mono tags + hover accent bar --- */
.why-list {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: flex; flex-direction: column;
}
.why-list li {
  position: relative;
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 30px 18px 30px 4px;
  border-bottom: 1px solid rgba(250,250,247,0.12);
  align-items: start;
  transition: background .5s cubic-bezier(.2,.7,.2,1),
              padding .5s cubic-bezier(.2,.7,.2,1);
}
.why-list li:first-child { border-top: 1px solid rgba(250,250,247,0.12); }
/* Left accent bar — grows on hover */
.why-list li::before {
  content: "";
  position: absolute;
  left: -18px; top: 28%; bottom: 28%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleY(.35);
  transition: opacity .5s, transform .6s cubic-bezier(.2,.7,.2,1);
}
.why-list li:hover {
  background: linear-gradient(90deg, rgba(223,247,243,0.04) 0%, transparent 80%);
  padding-left: 18px;
}
.why-list li:hover::before { opacity: 1; transform: scaleY(1); }

.why-list .num {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(28px, 2.6vw, 34px);
  color: var(--accent); line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  /* Push the numeral down so its cap-height aligns with the H4 title baseline,
     not the small uppercase mono tag above it. */
  padding-top: 26px;
  display: inline-block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.why-list .num::after {
  content: "";
  position: absolute;
  inset: -24px -26px;
  background: radial-gradient(circle,
    rgba(223,247,243,0.18) 0%,
    rgba(223,247,243,0.05) 45%,
    transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  border-radius: 50%;
  z-index: -1;
}
.why-list li:hover .num { transform: translateX(2px) scale(1.08); }
.why-list li:hover .num::after { opacity: 1; }

/* Mono sub-label above each reason title */
.why-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(223,247,243,0.55);
  margin-bottom: 10px;
  transition: color .35s ease, letter-spacing .5s cubic-bezier(.2,.7,.2,1);
}
.why-tag-dash {
  width: 14px; height: 1px;
  background: rgba(223,247,243,0.35);
  transition: width .55s cubic-bezier(.2,.7,.2,1), background .4s;
}
.why-list li:hover .why-tag { color: var(--accent); letter-spacing: 0.16em; }
.why-list li:hover .why-tag-dash { width: 24px; background: var(--accent); }

.why-list h4 {
  margin: 0 0 8px;
  color: var(--cream);
  font-family: var(--serif); font-weight: 400;
  font-size: 23px; line-height: 1.12; letter-spacing: -0.02em;
}
.why-list p {
  font-size: 15px;
  color: rgba(250,250,247,0.72);
  line-height: 1.55;
  max-width: 44ch;
}

/* ======================================================
   RIGHT COLUMN — editorial composition (stacked cards)
   ====================================================== */
.why-visual {
  position: relative;
  display: flex; flex-direction: column;
  gap: 0;
}

/* --- Main research card --- */
.trust-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%);
  color: var(--text);
  border: 1px solid rgba(15,20,25,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 3.5vw, 44px) clamp(28px, 3vw, 40px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 16px 36px -12px rgba(0,0,0,0.3),
    0 32px 68px -22px rgba(15,118,110,0.28),
    inset 0 1px 0 rgba(255,255,255,0.8);
  z-index: 2;
}

/* Editorial ribbon at the top of the research card */
.trust-card__ribbon {
  position: absolute;
  top: -14px; left: clamp(24px, 3vw, 36px);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px;
  background: linear-gradient(180deg, #0E5E57 0%, var(--primary-dark) 100%);
  color: var(--accent);
  border: 1px solid rgba(223,247,243,0.2);
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow:
    0 6px 14px -6px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(223,247,243,0.12);
}
.trust-card__ribbon-sep {
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .6;
}
.trust-card__ribbon-num { color: var(--cream); letter-spacing: 0.14em; }

.trust-card__top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
  margin-top: 6px;
}
.trust-card__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(180deg, #0E5E57 0%, var(--primary-dark) 100%);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 24px;
  flex-shrink: 0;
  box-shadow:
    0 4px 10px -2px rgba(11,59,60,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.trust-card__who h5 { margin: 0; font-size: 15px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.trust-card__who p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.trust-card blockquote {
  margin: 0 0 26px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.85vw, 23px); line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}
.trust-card blockquote em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); }
.trust-card__meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px; border-top: 1px solid var(--border);
}
.trust-card__meta > div { font-size: 12px; color: var(--muted); letter-spacing: 0.01em; }
.trust-card__meta strong {
  display: block;
  font-family: var(--serif); font-weight: 400;
  color: var(--primary); font-size: 30px;
  line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.trust-card__meta strong em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

/* Circular stamp — bottom-right, editorial seal */
.trust-card__stamp {
  position: absolute;
  right: -22px; bottom: -22px;
  width: 104px; height: 104px;
  pointer-events: none;
  z-index: 3;
}
.stamp-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: stampRotate 40s linear infinite;
  transform-origin: 50% 50%;
}
.stamp-core {
  position: absolute; inset: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%);
  border: 1px solid rgba(15,118,110,0.25);
  display: grid; place-items: center;
  box-shadow:
    0 2px 4px rgba(15,118,110,0.1),
    inset 0 1px 2px rgba(15,118,110,0.06);
}
.stamp-core em {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 30px; color: var(--primary-dark);
  font-weight: 400; line-height: 1;
}
@keyframes stampRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .stamp-ring { animation: none; }
}

/* --- Field manual card — offset below, different aesthetic --- */
.field-card {
  position: relative;
  margin: -20px 0 0 clamp(-4px, -1vw, -16px);
  padding: clamp(26px, 2.8vw, 32px) clamp(28px, 3vw, 36px) clamp(22px, 2.4vw, 28px);
  background:
    repeating-linear-gradient(0deg, rgba(11,59,60,0) 0, rgba(11,59,60,0) 31px, rgba(11,59,60,0.06) 31px, rgba(11,59,60,0.06) 32px),
    linear-gradient(180deg, #F5F1E4 0%, #EDE7D4 100%);
  border: 1px solid rgba(11,59,60,0.18);
  border-radius: 6px;
  color: var(--primary-dark);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 14px 28px -12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transform: rotate(-1deg);
  z-index: 1;
  font-family: var(--serif);
  overflow: hidden;
}
.field-card::before {
  /* subtle paper texture — noise via tiny repeating dots */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11,59,60,0.04) 1px, transparent 0);
  background-size: 5px 5px;
  pointer-events: none;
  opacity: .7;
}
.field-card > * { position: relative; }

/* Corner marks — draftsman crosshairs */
.field-card__corner {
  position: absolute;
  width: 16px; height: 16px;
  pointer-events: none;
}
.field-card__corner::before,
.field-card__corner::after {
  content: "";
  position: absolute;
  background: rgba(11,59,60,0.45);
}
.field-card__corner::before { width: 10px; height: 1px; top: 0; }
.field-card__corner::after  { width: 1px; height: 10px; left: 0; }
.field-card__corner--tl { top: 8px; left: 8px; }
.field-card__corner--tr { top: 8px; right: 8px; transform: scaleX(-1); }
.field-card__corner--bl { bottom: 8px; left: 8px; transform: scaleY(-1); }
.field-card__corner--br { bottom: 8px; right: 8px; transform: scale(-1, -1); }

.field-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(11,59,60,0.18);
  gap: 12px;
}
.field-card__label {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark);
}
.field-card__num {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(11,59,60,0.55);
}

.field-card__rules {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.field-card__rules li {
  display: grid; grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: baseline;
  font-family: var(--serif);
}
.rule-num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-align: right;
}
.rule-text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--primary-dark);
}
.rule-text em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--primary);
}

.field-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  margin-top: 18px;
  border-top: 1px solid rgba(11,59,60,0.18);
  font-family: var(--mono); font-size: 10px;
  color: rgba(11,59,60,0.55);
  letter-spacing: 0.06em;
}
.field-card__foot-year {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--primary);
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .field-card { margin-left: 0; transform: rotate(0); margin-top: 20px; }
  .trust-card__stamp { right: 12px; bottom: -30px; width: 82px; height: 82px; }
  .stamp-core em { font-size: 22px; }
  .stamp-core { inset: 12px; }
}

/* ====== PROCESS — premium cards with subtle connector ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  position: relative;
  padding-top: 34px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

/* Connector line — gradient hairline running across the tops of cards */
.process-grid::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 4%; right: 4%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(15,118,110,0) 0%,
    rgba(15,118,110,0.35) 8%,
    rgba(15,118,110,0.35) 92%,
    rgba(15,118,110,0) 100%);
  pointer-events: none;
  z-index: 0;
}

.step-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF4 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(32px, 3vw, 40px) clamp(24px, 2.4vw, 32px) clamp(26px, 2.4vw, 32px);
  overflow: visible;
  box-shadow:
    0 1px 2px rgba(15,20,25,0.03),
    0 6px 16px -8px rgba(15,20,25,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .55s ease,
    border-color .4s ease,
    background .4s ease;
  z-index: 1;
}

/* Step marker on the connector line — small orange bulb with a cream ring
   and faint teal halo. Controlled accent, one per card. */
.step-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: clamp(24px, 2.4vw, 32px);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: hsl(24, 100%, 62%);
  box-shadow:
    0 0 0 4px var(--cream),
    0 0 0 5px rgba(15,118,110,0.28),
    0 0 8px hsla(24, 100%, 55%, 0.55);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
  z-index: 2;
}
.step-card:hover::before {
  transform: scale(1.3);
  box-shadow:
    0 0 0 4px var(--cream),
    0 0 0 8px rgba(15,118,110,0.32),
    0 0 14px hsla(24, 100%, 58%, 0.7);
}

/* Top hairline accent — brightens on hover */
.step-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 22%; right: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition:
    opacity .5s ease,
    left .55s cubic-bezier(.2,.7,.2,1),
    right .55s cubic-bezier(.2,.7,.2,1);
}
.step-card:hover::after { opacity: .7; left: 8%; right: 8%; }

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15,118,110,0.22);
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F9F7 100%);
  box-shadow:
    0 1px 2px rgba(15,20,25,0.04),
    0 16px 30px -12px rgba(15,20,25,0.14),
    0 32px 60px -22px rgba(15,118,110,0.24),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Number — bigger, with radial halo on hover */
.step-card__num {
  position: relative;
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(60px, 5.6vw, 78px);
  line-height: 0.9;
  color: var(--primary);
  letter-spacing: -0.04em;
  margin-bottom: clamp(28px, 2.6vw, 36px);
  transition:
    transform .6s cubic-bezier(.2,.7,.2,1),
    color .35s ease;
}
.step-card__num::after {
  content: "";
  position: absolute;
  inset: -18px -22px;
  background: radial-gradient(circle,
    rgba(15,118,110,0.2) 0%,
    rgba(15,118,110,0.06) 45%,
    transparent 70%);
  opacity: 0;
  transition: opacity .55s ease;
  z-index: -1;
  border-radius: 50%;
}
.step-card:hover .step-card__num {
  transform: translateY(-3px) scale(1.04);
  color: var(--primary-dark);
}
.step-card:hover .step-card__num::after { opacity: 1; }

.step-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  transition: color .35s ease;
}
.step-card:hover h3 { color: var(--primary-dark); }

.step-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 32ch;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); padding-top: 30px; }
  .process-grid::before { left: 10%; right: 10%; top: 14px; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; padding-top: 0; gap: 14px; }
  .process-grid::before { display: none; }
  .step-card::before { display: none; }
}

/* ====== AI VOICE — premium surface + realistic iOS phone ====== */
.ai-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 55% at 72% 8%, rgba(15,118,110,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 8% 92%, rgba(223,247,243,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0E5E57 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(223,247,243,0.14);
  border-radius: 24px;
  padding: clamp(48px, 5vw, 88px) clamp(44px, 4.8vw, 80px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    0 22px 52px -20px rgba(0,0,0,0.45),
    0 40px 80px -34px rgba(15,118,110,0.35),
    inset 0 1px 0 rgba(223,247,243,0.08);
}

/* Corner crosshair marks (matching the editorial field-card treatment) */
.ai-card__corner {
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
  z-index: 4;
}
.ai-card__corner::before,
.ai-card__corner::after {
  content: "";
  position: absolute;
  background: rgba(15,118,110,0.55);
}
.ai-card__corner::before { width: 14px; height: 1.5px; top: 0; }
.ai-card__corner::after  { width: 1.5px; height: 14px; left: 0; }
.ai-card__corner--tl { top: 18px; left: 18px; }
.ai-card__corner--tr { top: 18px; right: 18px; transform: scaleX(-1); }
.ai-card__corner--bl { bottom: 18px; left: 18px; transform: scaleY(-1); }
.ai-card__corner--br { bottom: 18px; right: 18px; transform: scale(-1, -1); }
/* Ambient backdrop washes inside the outer card */
.ai-card::before {
  content: ""; position: absolute;
  top: -220px; right: -200px;
  width: 640px; height: 640px;
  background: radial-gradient(circle,
    rgba(223,247,243,0.18) 0%,
    rgba(223,247,243,0.06) 35%,
    transparent 65%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.ai-card::after {
  content: ""; position: absolute;
  bottom: -260px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle,
    rgba(223,247,243,0.09) 0%,
    rgba(223,247,243,0.03) 40%,
    transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.ai-card > * { position: relative; z-index: 2; }

@media (max-width: 960px) {
  .ai-card {
    grid-template-columns: 1fr;
    padding: clamp(48px, 6vw, 64px) clamp(32px, 5vw, 48px);
    gap: 56px;
  }
}

/* ============================================================
   LEFT COLUMN — editorial copy with numbered checklist
   ============================================================ */
.ai-card__copy { position: relative; z-index: 2; }

.ai-card__meta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.ai-card__meta-num {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark);
  padding: 5px 10px;
  background: rgba(15,118,110,0.08);
  border: 1px solid rgba(15,118,110,0.18);
  border-radius: 999px;
}
.ai-card__meta-sep {
  width: 24px; height: 1px;
  background: rgba(15,118,110,0.25);
}
.ai-card__meta .eyebrow { margin: 0; }

.ai-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 13ch;
}
.ai-card h3 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--primary); }
.ai-card__copy > p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 44ch;
  letter-spacing: -0.005em;
  border-left: 2px solid rgba(15,118,110,0.22);
  padding-left: 18px;
}

/* Numbered editorial checklist */
.ai-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 2px;
}
.ai-bullets li {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(15,20,25,0.08);
  transition: padding .4s cubic-bezier(.2,.7,.2,1), background .4s;
  position: relative;
}
.ai-bullets li:last-child { border-bottom: 1px solid rgba(15,20,25,0.08); }
.ai-bullets li:hover { padding-left: 10px; }
.ai-bullets li::before {
  content: "";
  position: absolute;
  left: -14px; top: 40%;
  width: 8px; height: 1px;
  background: hsl(24, 100%, 62%);
  box-shadow: 0 0 6px hsla(24, 100%, 55%, 0.45);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: opacity .4s, transform .5s cubic-bezier(.2,.7,.2,1);
}
.ai-bullets li:hover::before { opacity: 1; transform: scaleX(1); }

.ai-bullet-num {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 30px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color .3s, transform .5s cubic-bezier(.2,.7,.2,1);
}
.ai-bullets li:hover .ai-bullet-num { color: var(--primary-dark); transform: scale(1.08); }
.ai-bullet-body {
  display: flex; flex-direction: column; gap: 4px;
}
.ai-bullet-body strong {
  font-family: var(--sans); font-weight: 600;
  font-size: 16px; color: var(--text);
  letter-spacing: -0.01em;
}
.ai-bullet-body span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 42ch;
}

/* ============================================================
   RIGHT COLUMN — realistic iOS-style phone + atmosphere
   ============================================================ */
/* Phone column — no nested panel; sits directly on the card's green surface */
.ai-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* Ambient cream halo behind the phone — reads as soft light on the green */
.ai-visual__atmosphere {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(360px, 30vw, 480px);
  height: clamp(460px, 42vw, 620px);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 55% 45% at 50% 25%, rgba(223,247,243,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 45% 70%, rgba(223,247,243,0.16) 0%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
  animation: aiGlowDrift 14s ease-in-out infinite alternate;
}
@keyframes aiGlowDrift {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-52%, -48%) scale(1.08); opacity: .88; }
}

/* ---- The phone ---- */
.phone {
  position: relative;
  z-index: 2;
  width: clamp(300px, 26vw, 340px);
  background: linear-gradient(180deg, #0F1419 0%, #1A2126 100%);
  border-radius: 36px;
  padding: 10px 10px 12px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.12),
    0 20px 44px -12px rgba(15,20,25,0.35),
    0 48px 96px -28px rgba(15,118,110,0.45),
    0 0 0 1px rgba(15,20,25,0.1),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
/* Inner screen */
.phone::before {
  content: "";
  position: absolute;
  inset: 10px 10px 12px 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #FAFAF7 0%, #F5F3EB 100%);
  z-index: 0;
}
.phone > * { position: relative; z-index: 1; }

/* Dynamic island */
.phone__notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 26px;
  background: #0F1419;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* iOS status bar */
.phone__status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px 4px;
  font-family: var(--sans);
  color: #0F1419;
}
.phone__time {
  font-weight: 600; font-size: 13px;
  letter-spacing: -0.01em;
  padding-left: 4px;
}
.phone__icons {
  display: inline-flex; align-items: center; gap: 6px;
  padding-right: 4px;
}
.phone__icon-signal { width: 16px; height: 10px; color: #0F1419; }
.phone__icon-text { font-size: 11px; font-weight: 600; }
.phone__icon-battery { width: 24px; height: 11px; color: #0F1419; }

/* Chat header */
.phone__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 14px 12px;
  border-bottom: 0.5px solid rgba(15,20,25,0.1);
  background: rgba(250,250,247,0.75);
  backdrop-filter: saturate(180%) blur(8px);
}
.phone__header-left { display: inline-flex; align-items: center; gap: 10px; }
.phone__back {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  color: var(--primary);
  background: none; padding: 0; border: 0;
}
.phone__back svg { width: 10px; height: 10px; }
.phone__avatar {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1A8A82 0%, var(--primary-dark) 100%);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 17px;
  box-shadow:
    0 2px 6px -2px rgba(15,118,110,0.4),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.phone__avatar-presence {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #22C55E;
  border: 2px solid #FAFAF7;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}
.phone__contact { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.phone__contact strong {
  font-family: var(--sans); font-weight: 600;
  font-size: 13.5px; color: #0F1419;
  letter-spacing: -0.01em;
}
.phone__contact span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; color: var(--muted);
  font-family: var(--mono); letter-spacing: 0.04em;
}
.phone__presence-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%     { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.phone__action {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(15,118,110,0.1);
  color: var(--primary);
  border: 0; padding: 0;
}
.phone__action svg { width: 14px; height: 14px; }

/* Thread */
.phone__thread {
  padding: 14px 14px 8px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.phone__timestamp {
  display: flex; justify-content: center;
  margin: 2px 0 4px;
}
.phone__timestamp span {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  padding: 3px 10px;
  background: rgba(15,20,25,0.04);
  border-radius: 999px;
}

.msg { display: flex; gap: 8px; animation: slideIn .4s ease both; }
@keyframes slideIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.msg--in  { justify-content: flex-start; }
.msg--out { justify-content: flex-end; flex-direction: row-reverse; }

.msg__avatar {
  flex-shrink: 0; align-self: flex-end;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #E8E3D2 0%, #D4CDBB 100%);
  color: #6B5E40;
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}

.msg__stack { display: flex; flex-direction: column; gap: 3px; max-width: 80%; }
.msg--out .msg__stack { align-items: flex-end; }

.msg__meta {
  font-family: var(--mono); font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 0 4px 1px;
}
.msg__meta--out { color: var(--primary); }

.msg__bubble {
  padding: 9px 13px;
  border-radius: 17px;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.msg--in .msg__bubble {
  background: #FFFFFF;
  color: #0F1419;
  border-bottom-left-radius: 6px;
  box-shadow:
    0 1px 1px rgba(15,20,25,0.04),
    0 1px 3px rgba(15,20,25,0.04);
}
.msg--out .msg__bubble {
  background: linear-gradient(180deg, #1A8A82 0%, var(--primary) 100%);
  color: var(--white);
  border-bottom-right-radius: 6px;
  box-shadow:
    0 1px 2px rgba(15,118,110,0.2),
    0 4px 10px -2px rgba(15,118,110,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Typing indicator */
.msg__bubble--typing {
  padding: 10px 14px;
  display: inline-flex; align-items: center; gap: 4px;
  min-height: 26px;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: typingBounce 1.3s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: .18s; }
.typing-dot:nth-child(3) { animation-delay: .36s; }
@keyframes typingBounce {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* System banner — "Lead sent to your phone" */
.phone__system {
  margin: 10px 14px 0;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, var(--primary-50) 0%, rgba(223,247,243,0.5) 100%);
  border: 1px solid rgba(15,118,110,0.2);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.phone__system-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1A8A82 0%, var(--primary) 100%);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow:
    0 2px 4px -1px rgba(15,118,110,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.phone__system-check svg { width: 11px; height: 11px; }
.phone__system-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.phone__system-body strong {
  font-family: var(--sans); font-weight: 600;
  font-size: 11.5px; color: var(--primary-dark);
  letter-spacing: -0.005em;
}
.phone__system-body span {
  font-family: var(--mono); font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Input bar */
.phone__input {
  margin: 10px 14px 0;
  padding: 6px 8px 6px 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  background: #FFFFFF;
  border: 0.5px solid rgba(15,20,25,0.1);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15,20,25,0.03);
}
.phone__input-field {
  font-family: var(--sans); font-size: 12px;
  color: var(--muted);
  padding: 4px 0;
}
.phone__input-mic {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(15,118,110,0.1);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.phone__input-mic svg { width: 12px; height: 12px; }

/* Home indicator bar */
.phone__home {
  margin: 14px auto 6px;
  width: 120px; height: 4px;
  background: #0F1419;
  border-radius: 999px;
  opacity: .85;
}

/* ====== FINAL CTA ====== */
.cta {
  padding: clamp(88px, 11vw, 160px) 0;
  background: var(--primary-dark); color: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(15,118,110,0.5) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(223,247,243,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta__inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.cta .eyebrow { color: var(--accent); margin-bottom: 24px; }
.cta h2 { color: var(--cream); margin-bottom: 24px; font-size: clamp(40px, 5.5vw, 72px); line-height: 1; }
.cta h2 em { color: var(--accent); }
.cta p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: rgba(250,250,247,0.78);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
  max-width: 52ch; margin-left: auto; margin-right: auto;
}
.cta .btn--invert { height: 60px; padding: 0 32px; font-size: 16px; }
.cta__contact { margin-top: 28px; font-size: 14px; color: rgba(250,250,247,0.6); }
.cta__contact a { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(250,250,247,0.4); }
.cta__contact a:hover { text-decoration-color: var(--cream); }

/* Footer */
/* Booking section — Calendly embed */
.sec--book { padding: clamp(64px, 7vw, 112px) 0 clamp(64px, 7vw, 112px); }
.sec--book .sec__head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 56px); }
.book-embed {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 24px 48px -20px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.04) inset;
}
.book-embed .calendly-inline-widget { display: block; }
@media (max-width: 720px) {
  .book-embed { border-radius: 12px; }
  .book-embed .calendly-inline-widget { height: 760px !important; }
}

.footer {
  padding: 72px 0 28px;
  background: var(--primary-dark);
  color: rgba(250,250,247,0.65);
  border-top: 1px solid rgba(250,250,247,0.08);
}
/* Multi-column footer grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.9fr 0.9fr;
  gap: 40px clamp(28px, 3vw, 48px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,250,247,0.06);
}
.footer__col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.footer__col--brand { gap: 18px; }
.footer__col--brand .brand--footer { display: inline-flex; }
.footer__about {
  margin: 0;
  color: rgba(250,250,247,0.62);
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}
.footer__h {
  display: inline-block;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250,250,247,0.62);
}
.footer__list--nav { gap: 8px; }
.footer__list li { margin: 0; }
.footer__list strong { color: var(--cream); font-weight: 600; }
.footer__list a {
  color: rgba(250,250,247,0.78);
  text-decoration: none;
  transition: color .15s;
}
.footer__list a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  letter-spacing: 0.04em;
  color: rgba(250,250,247,0.50);
}
.footer__copy { color: rgba(250,250,247,0.55); }
.footer__loc { color: rgba(250,250,247,0.45); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer { padding: 56px 0 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; padding-bottom: 36px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__about { max-width: none; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__col--brand { grid-column: auto; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

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

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

/* ============================================================
   AUTO-CYCLE — mirror :hover appearance onto .is-active
   JS rotates the class through each group on a timer so the
   visual "active" state is visible without hovering (mobile,
   non-interactive visits). All existing :hover rules still apply.
   ============================================================ */

/* ---------- Problem rows — auto-active: orange ONLY on small accents,
   never on the row/card or pill background ---------- */
.problem-row.is-active {
  /* card background unchanged — no orange wash, no indent */
  background: transparent;
}
.problem-row.is-active::before {
  opacity: 1;
  transform: scaleY(1);
  background: linear-gradient(to bottom,
    hsla(24, 100%, 55%, 0) 0%,
    hsl(24, 100%, 62%) 30%,
    hsl(24, 100%, 62%) 70%,
    hsla(24, 100%, 55%, 0) 100%);
}
.problem-row.is-active .problem-n {
  color: hsl(24, 100%, 42%);
}
.problem-row.is-active .problem-n::after {
  /* no halo wash around the numeral — would color the card area */
  opacity: 0;
}
.problem-row.is-active .problem-h::after { transform: scaleX(1); width: 64px; }
.problem-row.is-active .problem-tag {
  /* keep pill in original style — no orange fill, no border tint */
  border-color: var(--border);
  color: var(--muted);
  background: rgba(250,250,247,0.6);
  box-shadow: none;
}
.problem-row.is-active .problem-tag .tag-dot {
  /* the dot is already orange in the base style — leave it as the small accent */
  box-shadow: 0 0 6px hsla(24, 100%, 55%, 0.5);
  transform: none;
}
.problem-row.is-active .problem-tag .tag-arrow {
  width: 0;
  opacity: 0;
  margin-left: 0;
}

/* ---------- Process steps — auto-active uses orange ---------- */
.step-card.is-active {
  transform: translateY(-6px);
  border-color: hsla(24, 100%, 55%, 0.4);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF4EC 100%);
  box-shadow:
    0 1px 2px rgba(15,20,25,0.04),
    0 16px 30px -12px rgba(15,20,25,0.14),
    0 32px 60px -22px hsla(24, 100%, 55%, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.step-card.is-active::before {
  transform: scale(1.3);
  box-shadow:
    0 0 0 4px var(--cream),
    0 0 0 8px hsla(24, 100%, 55%, 0.3),
    0 0 14px hsla(24, 100%, 58%, 0.7);
}
.step-card.is-active::after {
  opacity: .7;
  left: 8%; right: 8%;
  background: linear-gradient(90deg, transparent, hsl(24, 100%, 62%), transparent);
}
.step-card.is-active .step-card__num {
  transform: translateY(-3px) scale(1.04);
  color: hsl(24, 100%, 42%);
}
.step-card.is-active .step-card__num::after {
  opacity: 1;
  background: radial-gradient(circle,
    hsla(24, 100%, 55%, 0.22) 0%,
    hsla(24, 100%, 55%, 0.06) 45%,
    transparent 70%);
}
.step-card.is-active h3 { color: hsl(24, 100%, 30%); }

/* ---------- Why Lorixen list — auto-active (cream surface + orange underline) ---------- */
.why-list li.is-active {
  background: linear-gradient(90deg, rgba(223,247,243,0.04) 0%, transparent 80%);
  padding-left: 18px;
}
.why-list li.is-active::before { opacity: 1; transform: scaleY(1); }
.why-list li.is-active .num { transform: translateX(2px) scale(1.08); }
.why-list li.is-active .num::after { opacity: 1; }
.why-list li.is-active .why-tag { color: var(--accent); letter-spacing: 0.16em; }
.why-list li.is-active .why-tag-dash { width: 24px; background: var(--accent); }
/* Mirror the orange hover-underline on the auto-active state too */
#why .why-list li.is-active .num::before {
  width: 42px;
  background: linear-gradient(90deg,
    hsl(24, 100%, 66%) 0%,
    hsla(24, 100%, 58%, 0.55) 100%);
  box-shadow: 0 0 10px hsla(24, 100%, 55%, 0.45);
}

/* ---------- AI voice bullets ---------- */
.ai-bullets li.is-active { padding-left: 10px; }
.ai-bullets li.is-active::before { opacity: 1; transform: scaleX(1); }
.ai-bullets li.is-active .ai-bullet-num {
  color: var(--primary-dark);
  transform: scale(1.08);
}

/* =========================================================
   #fix — DEEP HERO-DARK SURFACE
   Unifies with the hero by using --primary-dark as the ground.
   Cream/white as the default accent, with tiny, deliberate
   orange moments on a few small circles + one transition word.
   ========================================================= */

#fix {
  background: var(--primary-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Atmospheric lifts — same pattern as the hero band */
#fix::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 12%, rgba(15,118,110,0.38) 0%, transparent 58%),
    radial-gradient(ellipse at 12% 88%, rgba(223,247,243,0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle cream grid */
#fix::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(223,247,243,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223,247,243,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
#fix > .wrap { position: relative; z-index: 1; }

/* ---- Section head ---- */
#fix .eyebrow { color: var(--accent); }
#fix .sec__head h2 { color: var(--cream); }
#fix .sec__head h2 em { color: var(--accent); }
#fix .sec__head .lede { color: rgba(250,250,247,0.7); }

/* ---- Focus cards — elevated glass panels on the deep green ---- */
#fix .fix-card {
  background:
    linear-gradient(180deg, rgba(14,78,72,0.55) 0%, rgba(9,52,49,0.68) 100%);
  border: 1px solid rgba(223,247,243,0.14);
  color: var(--cream);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    0 22px 48px -20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(223,247,243,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#fix .fix-card::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(223,247,243,0.55) 50%,
    transparent 100%);
  opacity: 0.7;
}
#fix .fix-card h3 { color: var(--cream); }
#fix .fix-card h3 em { color: var(--accent); }
#fix .fix-card > p { color: rgba(250,250,247,0.78); }
#fix .fix-card:hover {
  border-color: rgba(223,247,243,0.3);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    0 30px 64px -22px rgba(0,0,0,0.55),
    0 56px 110px -30px rgba(223,247,243,0.26),
    inset 0 1px 0 rgba(223,247,243,0.12);
}

/* Second card — deeper tone with subtle grid texture */
#fix .fix-card--dark {
  background-image:
    linear-gradient(rgba(223,247,243,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223,247,243,0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6,38,37,0.85) 0%, rgba(2,22,23,0.9) 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
}
#fix .fix-card--dark .fix-card__orb {
  background: radial-gradient(circle,
    rgba(223,247,243,0.26) 0%,
    rgba(223,247,243,0.06) 40%,
    transparent 70%);
}

/* Card tag pill — cream chip with an ORANGE pulse dot (tiny accent) */
#fix .fix-card__tag {
  background: rgba(223,247,243,0.08);
  color: var(--accent);
  border-color: rgba(223,247,243,0.22);
  box-shadow: inset 0 1px 0 rgba(223,247,243,0.08);
}
#fix .fix-card__tag-dot {
  background: hsl(24, 100%, 62%);
  box-shadow: 0 0 0 3px hsla(24, 100%, 55%, 0.22);
  animation: tagDotPulseOrange 2.4s ease-in-out infinite;
}
@keyframes tagDotPulseOrange {
  0%, 100% { box-shadow: 0 0 0 3px hsla(24, 100%, 55%, 0.22); transform: scale(1); }
  50%      { box-shadow: 0 0 0 5px hsla(24, 100%, 55%, 0.1);  transform: scale(1.12); }
}

/* Decorative digit — cream gradient */
#fix .fix-card__digit {
  background: linear-gradient(160deg,
    rgba(223,247,243,0.2) 0%,
    rgba(223,247,243,0.06) 55%,
    transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Corner crosshair — cream */
#fix .fix-card__corner::before,
#fix .fix-card__corner::after {
  background: rgba(223,247,243,0.45);
}

/* Bullet list — cream checks */
#fix .fix-list li {
  color: rgba(250,250,247,0.94);
  border-top-color: rgba(250,250,247,0.1);
}
#fix .fix-list .check {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow:
    0 4px 10px -2px rgba(223,247,243,0.22),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
#fix .fix-card:hover .fix-list .check {
  box-shadow:
    0 4px 10px -2px rgba(223,247,243,0.3),
    0 0 0 5px rgba(223,247,243,0.12),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ---- Before/After container ---- */
#fix .fix-ba {
  background:
    linear-gradient(180deg, rgba(8,44,45,0.6) 0%, rgba(4,26,27,0.76) 100%);
  border: 1px solid rgba(223,247,243,0.14);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.22),
    0 20px 48px -18px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(223,247,243,0.08);
}
#fix .fix-ba__header {
  border-bottom-color: rgba(223,247,243,0.12);
  background: linear-gradient(180deg, rgba(223,247,243,0.06) 0%, transparent 100%);
}
#fix .fix-ba__header h3 { color: var(--cream); }
/* The one orange "selected word" in this section — small, deliberate */
#fix .fix-ba__header h3 em {
  color: hsl(24, 100%, 66%);
  text-shadow: 0 0 24px hsla(24, 100%, 55%, 0.28);
}
#fix .fix-ba__header p { color: rgba(250,250,247,0.7); }

/* Transform pill — cream chip with ORANGE pulse dot */
#fix .fix-ba__header .arrow {
  background: rgba(223,247,243,0.08);
  border-color: rgba(223,247,243,0.26);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(223,247,243,0.08);
}
#fix .fix-ba__header .arrow svg { color: var(--accent); }
#fix .fix-ba__header .arrow .arrow-dot {
  background: hsl(24, 100%, 62%);
  box-shadow: 0 0 0 3px hsla(24, 100%, 55%, 0.22);
  animation: tagDotPulseOrange 2.4s ease-in-out infinite;
}

/* Column labels & pills */
#fix .fix-ba__col-label { color: rgba(250,250,247,0.6); }
#fix .fix-ba__col-label .pill {
  background: rgba(223,247,243,0.08);
  color: rgba(250,250,247,0.78);
  border-color: rgba(223,247,243,0.2);
}
#fix .fix-ba__col--after .fix-ba__col-label { color: var(--accent); }
#fix .fix-ba__col--after .fix-ba__col-label .pill {
  background: rgba(223,247,243,0.2);
  color: var(--cream);
  border-color: rgba(223,247,243,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

/* Before column — flat, muted */
#fix .fix-ba__col--before {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.32) 100%);
}
#fix .fix-ba__col--before::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  opacity: 0.5;
}

/* After column — luminous cream wash (the visual reward) */
#fix .fix-ba__col--after {
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%,
      rgba(223,247,243,0.22) 0%,
      rgba(223,247,243,0.06) 45%,
      transparent 75%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.2) 100%);
}
#fix .fix-ba__col--after::before {
  background: radial-gradient(circle,
    rgba(223,247,243,0.14) 0%,
    transparent 60%);
}
/* Tiny orange corner tick inside the After column — subtle detail */
#fix .fix-ba__col--after > .fix-ba__col-label::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: hsl(24, 100%, 62%);
  box-shadow: 0 0 10px hsla(24, 100%, 55%, 0.6);
  margin-left: 6px;
  vertical-align: middle;
}

/* Captions under the mockups */
#fix .ba-caption {
  color: rgba(250,250,247,0.6);
  border-top-color: rgba(223,247,243,0.12);
}
#fix .ba-caption--after {
  color: var(--accent);
  border-top-color: rgba(223,247,243,0.3);
  font-weight: 500;
}

/* Divider column — cream with a small orange ring on the badge */
#fix .fix-ba__divider {
  background: linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.14) 100%);
  border-left-color: rgba(223,247,243,0.12);
  border-right-color: rgba(223,247,243,0.12);
}
#fix .fix-ba__divider-line {
  background: linear-gradient(to bottom, transparent, rgba(223,247,243,0.24), transparent);
}
#fix .fix-ba__divider-badge {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.25),
    0 8px 20px -4px rgba(0,0,0,0.4),
    0 0 0 2px hsla(24, 100%, 58%, 0.55),
    0 0 0 8px rgba(223,247,243,0.08),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
@media (max-width: 820px) {
  #fix .fix-ba__divider {
    background: linear-gradient(90deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.14) 100%);
    border-top-color: rgba(223,247,243,0.12);
    border-bottom-color: rgba(223,247,243,0.12);
  }
  #fix .fix-ba__divider-line {
    background: linear-gradient(to right, transparent, rgba(223,247,243,0.24), transparent);
  }
}

/* =========================================================
   #why — WHY LORIXEN — polish pass
   Tighter rhythm, clearer number markers, a few controlled
   orange accents. Structure and copy are unchanged.
   ========================================================= */

/* ---- Balance & breathing room ---- */
#why .why-grid { gap: clamp(48px, 6vw, 104px); }
#why .why-list { margin-top: 56px; }
#why .why-list li {
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 36px 18px 36px 4px;
}

/* ---- Number markers (i, ii, iii, iv) — numerals stay cream,
   the small underline beneath each is a subtle orange accent. ---- */
#why .why-list .num {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
#why .why-list .num::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 22px;
  height: 1px;
  background: rgba(223,247,243,0.32);
  box-shadow: none;
  transition:
    width .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .4s ease,
    background .4s ease;
}
#why .why-list li:hover .num::before {
  width: 42px;
  background: linear-gradient(90deg,
    hsl(24, 100%, 66%) 0%,
    hsla(24, 100%, 58%, 0.55) 100%);
  box-shadow: 0 0 10px hsla(24, 100%, 55%, 0.45);
}

/* ---- One highlighted word — "not" in the h2 ---- */
#why h2 em {
  color: hsl(24, 100%, 66%);
  text-shadow: 0 0 24px hsla(24, 100%, 55%, 0.25);
}

/* ---- Trust card ribbon — small orange separator dot ---- */
#why .trust-card__ribbon-sep {
  background: hsl(24, 100%, 62%);
  opacity: 1;
  box-shadow: 0 0 6px hsla(24, 100%, 55%, 0.55);
}

/* ---- Field manual — cleaner gap instead of overlap ---- */
#why .field-card {
  margin-top: 22px;
}

/* Rule numbers — slightly larger for clearer hierarchy */
#why .rule-num { font-size: 22px; }

/* =========================================================
   #ai — AI VOICE card — text retuned for the green surface
   ========================================================= */

/* Meta row — cream pill + cream separator */
#ai .ai-card__meta-num {
  color: var(--accent);
  background: rgba(223,247,243,0.08);
  border-color: rgba(223,247,243,0.24);
}
#ai .ai-card__meta-sep {
  background: rgba(223,247,243,0.3);
}
#ai .ai-card__meta .eyebrow { color: var(--accent); }

/* Headline + em accent */
#ai .ai-card h3 { color: var(--cream); }
#ai .ai-card h3 em { color: var(--accent); }

/* Lede paragraph — cream body + cream side rule */
#ai .ai-card__copy > p {
  color: rgba(250,250,247,0.78);
  border-left-color: rgba(223,247,243,0.3);
}

/* Bullets */
#ai .ai-bullets li {
  border-top-color: rgba(223,247,243,0.14);
}
#ai .ai-bullets li:last-child {
  border-bottom-color: rgba(223,247,243,0.14);
}
#ai .ai-bullet-num { color: var(--accent); }
#ai .ai-bullets li:hover .ai-bullet-num { color: var(--cream); }
#ai .ai-bullets li.is-active .ai-bullet-num { color: var(--cream); }
#ai .ai-bullet-body strong { color: var(--cream); }
#ai .ai-bullet-body span { color: rgba(250,250,247,0.72); }
