/* ==========================================================================
   Onlineprachar — site styles
   Brand: Black + #0E1116 do the work, Bone for reading, Orange #F48754 is the signal.
   ========================================================================== */

:root {
  --orange: #F48754;
  --amber: #F9A47E;
  --orange-ink: #F9A47E;
  --black: #000000;
  --bg: #0E1116;
  --bg-2: #11151B;
  --card: #151A21;
  --card-2: #1A2029;
  --line: #242C36;
  --line-2: #38434F;
  --text: #F2F1EE;
  --text-2: #C3CAD2;
  --muted: #8E99A6;
  --bone: #F2F1EE;
  --paper: #FFFFFF;
  --ink: #121212;
  --graphite: #5E5C57;
  --rule: #DCD9D3;
  --good: #19A273;
  --bad: #DB5245;
  --warn: #FFA23A;
  --wa: #25D366;

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --deva: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 20px 50px -30px rgba(0,0,0,.9);
  --header-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.1; }
::selection { background: var(--orange); color: #000; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--orange); color: #000; padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }
.deva { font-family: var(--deva); font-weight: 600; font-stretch: 100%; letter-spacing: 0; }
.i { width: 22px; height: 22px; flex: none; }
.i-sm { width: 16px; height: 16px; flex: none; }
.muted { color: var(--muted); }
.accent { color: var(--orange); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.narrow { max-width: 720px; margin-inline: auto; }
.mt { margin-top: 16px; } .mt-lg { margin-top: 40px; } .mb { margin-bottom: 16px; } .mb-lg { margin-bottom: 40px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 780px; }
.container--mid { max-width: 1000px; }

/* ---------- Type ---------- */
.display {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 800;
  font-stretch: 125%;
  letter-spacing: -0.045em;
  line-height: .98;
}
.display-2 {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  font-weight: 800;
  font-stretch: 122%;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  font-weight: 700;
  font-stretch: 118%;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 700; font-stretch: 110%; letter-spacing: -0.02em; line-height: 1.15; }
.h4 { font-size: 1.15rem; font-weight: 700; font-stretch: 106%; letter-spacing: -0.01em; line-height: 1.25; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-2); line-height: 1.6; max-width: 62ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--muted);
  margin-bottom: 18px; font-variant-numeric: tabular-nums;
}
.eyebrow--center { justify-content: center; }
.hex-dot {
  width: 10px; height: 11.5px; background: var(--orange); flex: none;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; font-stretch: 105%; letter-spacing: -0.005em; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  border: 1px solid transparent; cursor: pointer; user-select: none;
}
.btn .i { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover .i:last-child { transform: translateX(3px); }
.btn--primary { background: var(--orange); color: #0B0B0B; box-shadow: 0 10px 30px -12px rgba(244,135,84,.7); }
.btn--primary:hover { background: var(--amber); }
.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,.06); }
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: #000; }
.btn--text { height: auto; padding: 8px 4px; color: var(--muted); }
.btn--text:hover { color: var(--text); }
.btn--sm { height: 40px; padding: 0 16px; font-size: .9rem; }
.btn--lg { height: 56px; padding: 0 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-row--center { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--orange); font-stretch: 105%; }
.link-arrow .i-sm { transition: transform .2s var(--ease); }
.link-arrow:hover .i-sm, .card--link:hover .link-arrow .i-sm { transform: translateX(4px); }
.linklike { color: var(--orange); text-decoration: underline; font-weight: 600; }

/* ---------- Tags, chips, badges ---------- */
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; font-style: normal; padding: 4px 10px; border-radius: 999px; line-height: 1.3; letter-spacing: .01em; }
.tag--orange { background: rgba(244,135,84,.14); color: var(--orange-ink); border: 1px solid rgba(244,135,84,.35); }
.tag--muted { background: rgba(255,255,255,.05); color: var(--text-2); border: 1px solid var(--line); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: .9rem; color: var(--text-2); background: rgba(255,255,255,.02); }
.chip--orange { border-color: rgba(244,135,84,.45); color: var(--text); background: rgba(244,135,84,.08); }
.hex-badge {
  display: inline-grid; place-items: center; width: 48px; height: 54px; flex: none;
  background: linear-gradient(160deg, rgba(244,135,84,.22), rgba(244,135,84,.06));
  color: var(--orange-ink);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hex-badge .i { width: 22px; height: 22px; }
.hex-badge--lg { width: 58px; height: 66px; }
.hex-badge--lg .i { width: 26px; height: 26px; }
.hex-badge--xl { width: 88px; height: 100px; margin: 0 auto 24px; background: var(--orange); color: #000; }
.hex-badge--xl .i { width: 40px; height: 40px; }
.hex-badge--bad { background: var(--bad); }
.hex-badge--wa { background: rgba(37,211,102,.16); color: var(--wa); }
.avatar { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--card-2); border: 1px solid var(--line-2); font-weight: 700; font-size: .85rem; color: var(--text); flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(0,0,0,.72); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: rgba(255,255,255,.08); background: rgba(0,0,0,.86); }
.site-header__bar { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand img { width: 136px; height: auto; }
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 12px; border-radius: 999px;
  font-size: .93rem; font-weight: 600; color: var(--text-2); transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--text); background: rgba(255,255,255,.06); }
.nav__link.is-active { color: var(--text); }
.nav__link .i-sm { transition: transform .2s; opacity: .7; }
.nav__link[aria-expanded="true"] .i-sm { transform: rotate(180deg); }
.site-header__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 6px);
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 110;
}
.nav__item.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.mega__inner {
  background: #0B0E12; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.9);
}
.mega--solutions .mega__inner { display: grid; grid-template-columns: 250px 330px; gap: 12px; }
.mega__feature {
  display: flex; flex-direction: column; gap: 8px; padding: 20px; border-radius: 14px;
  background: radial-gradient(120% 80% at 0% 0%, rgba(244,135,84,.22), transparent 60%), var(--card);
  border: 1px solid var(--line);
}
.mega__feature strong { font-size: 1.1rem; font-stretch: 110%; }
.mega__feature span:not(.hex-badge):not(.link-arrow) { color: var(--muted); font-size: .88rem; line-height: 1.45; }
.mega__feature .link-arrow { margin-top: auto; font-size: .88rem; }
.mega__list { display: grid; gap: 2px; }
.mega__item { display: flex; gap: 12px; padding: 12px; border-radius: 12px; transition: background .15s; }
.mega__item:hover { background: rgba(255,255,255,.05); }
.mega__item strong { display: flex; align-items: center; gap: 8px; font-size: .95rem; }
.mega__item small { display: block; color: var(--muted); font-size: .82rem; line-height: 1.4; margin-top: 2px; }
.mega__icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: var(--card-2); color: var(--orange-ink); flex: none; }
.mega__icon .i { width: 18px; height: 18px; }
.mega__cols { display: grid; grid-template-columns: repeat(3, 210px); gap: 8px 16px; position: relative; padding-bottom: 54px; }
.mega__label { font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; margin: 6px 10px 6px; }
.mega__link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; font-size: .92rem; color: var(--text-2); }
.mega__link:hover { background: rgba(255,255,255,.05); color: var(--text); }
.mega__link .i-sm { color: var(--orange-ink); }
.mega__cta { position: absolute; left: 14px; right: 14px; bottom: 12px; display: flex; align-items: center; gap: 8px; justify-content: center; padding: 10px; border-radius: 10px; background: var(--card); font-weight: 700; font-size: .9rem; }
.mega__cta:hover { background: var(--card-2); }
.mega__grid { display: grid; grid-template-columns: repeat(2, 290px); gap: 2px; }
.mega--resources .mega__inner { width: 330px; }
.em, .mega__item em { font-style: normal; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { position: fixed; inset: var(--header-h) 0 0 0; background: #000; overflow-y: auto; z-index: 99; border-top: 1px solid var(--line); }
.mobile-nav__inner { padding: 12px var(--gutter) 40px; }
.mnav { border-bottom: 1px solid var(--line); }
.mnav summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 1.15rem; font-weight: 700; font-stretch: 108%; cursor: pointer; }
.mnav summary::-webkit-details-marker { display: none; }
.mnav[open] summary .i-sm { transform: rotate(180deg); }
.mnav a { display: block; padding: 10px 0 10px 14px; color: var(--text-2); border-left: 1px solid var(--line-2); }
.mnav a:last-child { margin-bottom: 14px; }
.mnav__link { display: block; padding: 18px 0; font-size: 1.15rem; font-weight: 700; font-stretch: 108%; border-bottom: 1px solid var(--line); }
.mobile-nav__cta { display: grid; gap: 10px; margin-top: 24px; }
.mobile-nav__tag { margin-top: 28px; color: var(--muted); text-align: center; }
body.nav-open { overflow: hidden; }
/* backdrop-filter creates a containing block that would trap the fixed menu inside the header */
body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #000; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--alt { background: var(--bg-2); border-block: 1px solid rgba(255,255,255,.03); }
.section--bone { background: var(--bone); color: var(--ink); }
.section--bone .lead, .section--bone .muted { color: var(--graphite); }
.section--bone .eyebrow { color: var(--graphite); }
.section--bone .accent { color: #A8461F; }
.section-head { margin-bottom: clamp(32px, 4vw, 56px); max-width: 780px; }
.section-head .lead { margin-top: 18px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head-row .section-head { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.split--center { align-items: center; }
.split--faq { grid-template-columns: .8fr 1.2fr; }
.split--audit { grid-template-columns: .85fr 1.15fr; }
.split--workflow { grid-template-columns: .9fr 1.1fr; }
.split--booking { grid-template-columns: .85fr 1.15fr; }
.split--contact { grid-template-columns: 1fr 1fr; }
.split--problem { align-items: center; }
.split__sticky { position: sticky; top: calc(var(--header-h) + 32px); }

/* ---------- Cards ---------- */
.card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 30px); box-shadow: var(--shadow);
}
.card--link { display: block; transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease); }
.card--link:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--card-2); }
.card--accent { border-color: rgba(244,135,84,.35); background: radial-gradient(120% 90% at 100% 0%, rgba(244,135,84,.10), transparent 60%), var(--card); }
.card__arrow { position: absolute; top: 22px; right: 22px; color: var(--muted); transition: color .2s, transform .25s var(--ease); }
.card--link:hover .card__arrow { color: var(--orange); transform: translate(3px, -3px); }
.card h3 + p, .card .h4 + p { margin-top: 10px; color: var(--text-2); }
.card-grid { display: grid; gap: clamp(14px, 1.6vw, 20px); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.section--bone .card { background: var(--paper); border-color: var(--rule); box-shadow: 0 1px 2px rgba(0,0,0,.04); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--black); overflow: hidden; padding-top: clamp(48px, 7vw, 96px); }
.hero__bg, .page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 60% at 80% 42%, rgba(244,135,84,.11), transparent 70%),
    radial-gradient(40% 45% at 0% 0%, rgba(255,255,255,.035), transparent 70%);
}
/* Honeycomb background — hero, page heroes and CTA band */
.hero__bg::before, .page-hero__bg::before, .cta-band__bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 0L56 16.17V48.5L28 64.67L0 48.5V16.17Z M28 64.67V97' fill='none' stroke='%23ffffff' stroke-opacity='0.085' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 97px;
  background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 90% 95% at 50% 35%, #000 50%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 95% at 50% 35%, #000 50%, transparent 100%);
}
.cta-band__bg::before { -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 60%, #000 35%, transparent 100%); mask-image: radial-gradient(ellipse 80% 90% at 50% 60%, #000 35%, transparent 100%); }
.hero__inner { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(32px, 4vw, 56px); align-items: center; padding-bottom: clamp(48px, 6vw, 88px); }
.hero .display { font-size: clamp(2.6rem, 5.2vw, 4.7rem); }
.hero__tag { margin-bottom: 22px; }
.hero__tag .deva { display: inline-flex; align-items: center; gap: 10px; font-size: 1.05rem; color: var(--text); padding: 7px 16px 7px 12px; border-radius: 999px; border: 1px solid rgba(244,135,84,.35); background: rgba(244,135,84,.08); }
.hero__tag .deva::before { content: ""; width: 9px; height: 10px; background: var(--orange); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.hero__lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--text-2); max-width: 56ch; margin-top: 24px; line-height: 1.6; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 32px; color: var(--muted); font-size: .92rem; }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts .i-sm { color: var(--orange); }
.hero__ticker { border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; background: #000; }
.ticker { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker__row { display: flex; align-items: center; gap: 22px; padding: 18px 11px; font-weight: 700; font-stretch: 118%; font-size: clamp(1rem, 1.6vw, 1.25rem); color: rgba(242,241,238,.5); white-space: nowrap; }
.ticker__row span:nth-child(4n+1) { color: var(--text); }
.ticker__arrow { color: var(--orange) !important; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Hero live demo: dashboard + cost card + WhatsApp phone. Sized in em off the container width so it scales like an image. */
.hero-demo { container-type: inline-size; width: 100%; }
.hd-stage { position: relative; aspect-ratio: 100 / 74; font-size: 11px; font-size: 1.8cqw; }
.hd-stage * { box-sizing: border-box; }

.hd-main { position: absolute; top: 0; right: 0; width: 90%; background: #fff; color: #121212; border-radius: 1.2em; overflow: hidden; box-shadow: 0 3em 6em -2em rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.08); }
.hd-top { display: flex; align-items: center; gap: .5em; height: 2.9em; padding: 0 1.1em; border-bottom: 1px solid #ECEAE6; font-size: .95em; white-space: nowrap; }
.hd-top img { width: 1.15em; height: auto; }
.hd-top strong { font-weight: 700; }
.hd-muted { color: #8A8780; overflow: hidden; text-overflow: ellipsis; }
.hd-live { margin-left: auto; display: inline-flex; align-items: center; gap: .4em; color: #15784A; font-weight: 700; font-size: .85em; }
.hd-live i { width: .55em; height: .55em; border-radius: 50%; background: #19A273; animation: hdPulse 2s infinite; }
.hd-live--sm { margin-left: 0; font-size: .9em; font-weight: 600; }
.hd-time { color: #8A8780; font-variant-numeric: tabular-nums; font-size: .85em; }
.hd-chip { background: #121212; color: #fff; font-size: .75em; font-weight: 700; padding: .25em .65em; border-radius: .4em; }
.hd-body { display: grid; grid-template-columns: 2.7em 1fr; }
.hd-side { display: flex; flex-direction: column; align-items: center; gap: .75em; padding: 1.1em 0; border-right: 1px solid #ECEAE6; background: #FAFAF8; }
.hd-side i { width: 1.1em; height: 1.1em; border-radius: .3em; background: #E6E3DD; }
.hd-side i.is-on { background: var(--orange); }
.hd-content { padding: 1em 1.1em 1.1em; min-width: 0; }
.hd-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8em; }
.hd-head strong { font-size: 1.3em; font-weight: 800; font-stretch: 110%; letter-spacing: -.02em; }
.hd-select { font-size: .78em; border: 1px solid #E3E0DA; padding: .3em .7em; border-radius: .45em; color: #5E5C57; }
.hd-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6em; margin-bottom: .75em; }
.hd-kpi { border: 1px solid #ECEAE6; border-radius: .65em; padding: .6em .75em; min-width: 0; }
.hd-kpi span { display: block; font-size: .72em; color: #6B6B66; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hd-kpi b { display: block; font-size: 1.7em; font-weight: 800; font-stretch: 112%; letter-spacing: -.02em; line-height: 1.15; font-variant-numeric: tabular-nums; }
.hd-kpi small { display: block; font-size: .68em; color: #15784A; font-weight: 600; white-space: nowrap; }
.hd-kpi.is-hi { border-color: rgba(244,135,84,.6); background: #FEF0E9; }
.hd-kpi.is-hi b { color: #C8603A; }
.hd-panels { display: grid; grid-template-columns: 1fr 1.2fr; gap: .6em; }
.hd-panel { border: 1px solid #ECEAE6; border-radius: .65em; padding: .75em .85em; min-width: 0; }
.hd-panel__h { display: flex; justify-content: space-between; align-items: center; font-size: .8em; font-weight: 700; margin: 0 0 .55em !important; }
.hd-bar { display: grid; grid-template-columns: 6.6em 1fr 2.2em; align-items: center; gap: .5em; font-size: .72em; padding: .32em 0; }
.hd-bar span { color: #5E5C57; white-space: nowrap; }
.hd-bar i { height: .6em; background: #F1EFEB; border-radius: 1em; overflow: hidden; }
.hd-bar b { display: block; height: 100%; background: linear-gradient(90deg, #F48754, #F9A47E); border-radius: 1em; transform-origin: left; animation: hdGrow 1.1s var(--ease) both; }
.hd-bar:nth-child(3) b { animation-delay: .1s; } .hd-bar:nth-child(4) b { animation-delay: .2s; } .hd-bar:nth-child(5) b { animation-delay: .3s; } .hd-bar:nth-child(6) b { animation-delay: .4s; }
.hd-bar em { font-style: normal; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
.hd-list { display: grid; }
.hd-list li { display: grid; grid-template-columns: 2.1em 1fr auto; gap: .55em; align-items: center; padding: .38em 0; border-bottom: 1px solid #F3F1ED; font-size: .72em; }
.hd-list li:last-child { border-bottom: 0; }
.hd-list li.is-new { animation: hdRow .6s var(--ease); }
.hd-av { width: 2.1em; height: 2.1em; border-radius: 50%; background: #121212; color: #fff; display: grid; place-items: center; font-size: .82em; font-weight: 700; }
.hd-who { min-width: 0; }
.hd-who b { display: block; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hd-who small { display: block; color: #8A8780; font-size: .92em; white-space: nowrap; }
.hd-pill { font-size: .86em; font-weight: 700; padding: .28em .65em; border-radius: 1em; white-space: nowrap; transition: background .3s, color .3s; }
.hd-pill--green { background: #E3F5EC; color: #15784A; }
.hd-pill--dark { background: #121212; color: #fff; }
.hd-pill--orange { background: #FDE4D8; color: #A8461F; }
.hd-pill--new { background: #FDE9E6; color: #B32D16; }

.hd-cost { position: absolute; left: 0; bottom: 5%; width: 33%; background: #0B0E12; border: 1px solid #242C36; border-radius: 1.1em; padding: 1em 1.1em; color: #F2F1EE; box-shadow: 0 2.5em 5em -1.5em rgba(0,0,0,.95); animation: hdFloat 7s ease-in-out infinite; }
.hd-cost__label { display: block; font-size: .78em; color: #8E99A6; }
.hd-cost__value { display: block; font-size: 2.6em; font-weight: 800; font-stretch: 115%; letter-spacing: -.03em; line-height: 1.1; }
.hd-cost__delta { display: block; font-size: .75em; color: #4FD1A0; font-weight: 600; margin-bottom: .5em; }
.hd-chart { width: 100%; height: 5.4em; display: block; overflow: visible; }
.hd-chart__line { stroke-dasharray: 260; stroke-dashoffset: 260; animation: hdDraw 1.8s .3s var(--ease) forwards; }
.hd-months { display: flex; justify-content: space-between; font-size: .62em; color: #6B7682; margin: .35em 0 .8em; }
.hd-cost__foot { display: grid; grid-template-columns: 1fr 1fr; gap: .6em; padding-top: .7em; border-top: 1px solid #242C36; }
.hd-cost__foot small { display: block; font-size: .66em; color: #8E99A6; }
.hd-cost__foot b { font-size: 1.05em; font-weight: 800; font-variant-numeric: tabular-nums; }

.hd-badge { position: absolute; left: 36%; bottom: 9%; display: inline-flex; align-items: center; gap: .45em; background: var(--orange); color: #0B0B0B; font-weight: 700; font-size: 1em; padding: .65em 1.05em; border-radius: .75em; box-shadow: 0 1.2em 2.5em -.8em rgba(244,135,84,.85); white-space: nowrap; z-index: 2; }
.hd-badge .i-sm { width: 1.15em; height: 1.15em; }
.hd-badge b { font-variant-numeric: tabular-nums; font-weight: 800; min-width: 2.1em; }

.hd-phone { position: absolute; right: 2%; bottom: 0; width: 24%; aspect-ratio: 9 / 18.5; background: #0B0B0B; border-radius: 2.3em; padding: .5em; box-shadow: 0 0 0 1px #2A2F36, 0 3em 6em -1.5em rgba(0,0,0,.95); z-index: 3; animation: hdFloat 7s 1.5s ease-in-out infinite; }
.hd-phone::before { content: ""; position: absolute; top: 1em; left: 50%; width: 28%; height: .9em; margin-left: -14%; border-radius: 1em; background: #000; z-index: 2; }
.hd-screen { height: 100%; border-radius: 1.85em; overflow: hidden; background: #EFE7DD; display: flex; flex-direction: column; }
.hd-wa-head { display: flex; align-items: center; gap: .55em; background: #128C7E; color: #fff; padding: 2.4em .8em .7em; }
.hd-wa-av { width: 2.2em; height: 2.2em; border-radius: 50%; background: #fff; color: #128C7E; display: grid; place-items: center; font-weight: 800; font-size: .72em; flex: none; }
.hd-wa-head b { display: block; font-size: .78em; line-height: 1.2; }
.hd-wa-head small { display: block; font-size: .6em; opacity: .85; }
.hd-chat { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: .4em; padding: .6em .55em .9em; overflow: hidden; }
.hd-msg { max-width: 88%; background: #fff; color: #111; font-size: .64em; line-height: 1.35; padding: .5em .65em .35em; border-radius: .75em .75em .75em .15em; box-shadow: 0 1px 0 rgba(0,0,0,.08); margin: 0 !important; align-self: flex-start; }
.hd-msg time { display: block; text-align: right; font-size: .8em; color: #8A8780; margin-top: .1em; }
.hd-msg--me { align-self: flex-end; background: #D9FDD3; border-radius: .75em .75em .15em .75em; }
.hd-quick { display: flex; gap: .3em; flex-wrap: wrap; }
.hd-quick span { background: #fff; color: #128C7E; font-size: .58em; font-weight: 700; padding: .4em .65em; border-radius: 1em; border: 1px solid #D4EDE6; }
.hd-quick span.is-picked { background: #128C7E; color: #fff; }
.hd-chat > :not(.is-in) { display: none; }
.hd-chat > .is-in.is-new { animation: hdPop .35s var(--ease); }

.hd-pause { display: flex; align-items: center; gap: 8px; margin: 18px 0 0 auto; font-size: .82rem; font-weight: 600; color: var(--text-2); padding: 8px 14px; border-radius: 10px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03); }
.hd-pause:hover { color: var(--text); border-color: var(--muted); }
.hd-pause__ico { width: 10px; height: 11px; border-left: 3px solid currentColor; border-right: 3px solid currentColor; }
.hd-pause[aria-pressed="true"] .hd-pause__ico { width: 0; height: 0; border-right: 0; border-left: 9px solid currentColor; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.hero-demo.is-paused *, .hero-demo.is-paused *::before { animation-play-state: paused !important; }

@container (max-width: 460px) {
  .hd-stage { aspect-ratio: 100 / 96; font-size: 2.3cqw; }
  .hd-main { width: 100%; }
  .hd-top .hd-muted, .hd-time { display: none; }
  .hd-panels { grid-template-columns: 1fr; }
  .hd-panel:first-child { display: none; }
  .hd-cost { width: 40%; bottom: 2%; }
  .hd-phone { width: 31%; }
  .hd-badge { left: 30%; bottom: 40%; }
}

@keyframes hdPulse { 0% { box-shadow: 0 0 0 0 rgba(25,162,115,.5); } 70% { box-shadow: 0 0 0 .55em rgba(25,162,115,0); } 100% { box-shadow: 0 0 0 0 rgba(25,162,115,0); } }
@keyframes hdDraw { to { stroke-dashoffset: 0; } }
@keyframes hdGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes hdPop { from { opacity: 0; transform: translateY(.5em) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes hdRow { from { opacity: 0; transform: translateY(-.6em); background: #FEF0E9; } to { opacity: 1; transform: none; background: transparent; } }
@keyframes hdFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-.5em); } }

/* Page hero */
.page-hero { position: relative; background: var(--black); overflow: hidden; padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); }
.page-hero--compact { padding-bottom: clamp(28px, 4vw, 48px); }
.page-hero--center { padding-block: clamp(72px, 10vw, 140px); }
.page-hero__inner { position: relative; }
.page-hero--split .page-hero__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 64px); align-items: end; }
.page-hero .display-2 { max-width: 18ch; }
.page-hero--center .display-2 { max-width: none; }
.page-hero .container { position: relative; }
.crumbs { margin-bottom: 28px; font-size: .85rem; color: var(--muted); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: .5; }
.crumbs a:hover { color: var(--text); }
.crumbs [aria-current] { color: var(--text-2); }

.kpi-card, .journey-card { background: rgba(21,26,33,.8); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.kpi-card__label { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.kpi-card__value { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; font-stretch: 118%; letter-spacing: -.02em; color: var(--orange); line-height: 1.1; margin-bottom: 20px; }
.kpi-card__sub { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.journey-card__close { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.journey-card__close strong { color: var(--text); }

/* ---------- Lists ---------- */
.check-list { display: grid; gap: 12px; margin-top: 20px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .i-sm { color: var(--orange); margin-top: 5px; }
.check-list--sm { gap: 8px; margin-top: 0; font-size: .93rem; color: var(--text-2); }
.check-list--card { margin-top: 0; }
.x-list { display: grid; gap: 14px; }
.x-list li { display: flex; gap: 12px; align-items: flex-start; }
.x-list .i-sm { color: var(--bad); margin-top: 5px; }
.x-list--muted li { color: var(--muted); }
.q-list { display: grid; gap: 12px; margin: 18px 0; counter-reset: q; }
.q-list li { display: flex; align-items: center; gap: 14px; font-size: 1.15rem; font-weight: 700; font-stretch: 108%; }
.q-list span { display: grid; place-items: center; width: 34px; height: 38px; background: var(--orange); color: #000; font-size: .9rem; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); flex: none; }
.link-list { display: grid; gap: 4px; }
.link-list a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text-2); }
.link-list a:hover { color: var(--text); }

/* ---------- Flow (arrow chains) ---------- */
.flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px; margin: 18px 0; }
.flow li { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line-2); font-weight: 700; font-size: .9rem; font-stretch: 104%; }
.flow li:not(:last-child)::after { content: "→"; position: absolute; right: -19px; color: var(--orange); font-weight: 400; }
.flow li.is-ai { border-color: rgba(244,135,84,.55); background: rgba(244,135,84,.12); }
.flow li.is-end { background: var(--orange); color: #000; border-color: var(--orange); }
.flow--muted li { color: var(--muted); background: transparent; }
.flow--muted li:not(:last-child)::after { color: var(--muted); }
.flow--vertical { flex-direction: column; align-items: stretch; gap: 8px; }
.flow--vertical li { justify-content: center; }
.flow--vertical li:not(:last-child)::after { content: none; }
.flow--center { justify-content: center; }
.flow--dark li { background: var(--paper); border-color: var(--rule); color: var(--ink); }
.flow--dark li.is-end { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.flow--dark li:not(:last-child)::after { color: #A8461F; }

/* ---------- Growth system (interactive) ---------- */
.gsys { position: relative; }
.gsys__rail { position: relative; margin-bottom: 20px; }
.gsys__line { position: absolute; left: 4%; right: 4%; top: 34px; height: 2px; background: linear-gradient(90deg, var(--line-2), var(--orange), var(--line-2)); opacity: .6; overflow: hidden; }
.gsys__pulse { position: absolute; top: -3px; left: 0; width: 60px; height: 8px; border-radius: 8px; background: radial-gradient(closest-side, var(--amber), transparent); animation: flow 3.6s linear infinite; }
.gsys__pulse--2 { animation-delay: 1.8s; }
@keyframes flow { from { transform: translateX(-60px); } to { transform: translateX(1400px); } }
.gsys__track { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.gsys__node {
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 4px 14px; border-radius: 16px;
  color: var(--text-2); transition: color .2s;
}
.gsys__icon {
  display: grid; place-items: center; width: 62px; height: 70px;
  background: var(--card-2); color: var(--text-2);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  position: relative;
}
.gsys__node.is-engine .gsys__icon { background: #2A1A0E; color: var(--orange-ink); }
.gsys__label { font-weight: 700; font-size: .92rem; font-stretch: 106%; text-align: center; }
.gsys__node:hover .gsys__icon { transform: translateY(-3px); }
.gsys__node[aria-selected="true"] { color: var(--text); }
.gsys__node[aria-selected="true"] .gsys__icon { background: var(--orange); color: #000; transform: scale(1.06); }
.gsys__panels { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 3vw, 40px); }
.gsys__panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px); align-items: start; animation: fadeUp .35s var(--ease); }
.gsys__kicker { font-size: .8rem; font-weight: 600; color: var(--orange-ink); margin-bottom: 10px; }
.gsys__copy p { color: var(--text-2); margin-top: 12px; }
.gsys__number { display: flex; flex-direction: column; gap: 2px; margin: 20px 0 18px !important; padding: 14px 16px; border-left: 3px solid var(--orange); background: rgba(244,135,84,.06); border-radius: 0 10px 10px 0; }
.gsys__number span { font-size: .78rem; color: var(--muted); }
.gsys__number strong { color: var(--text); font-size: 1.05rem; font-stretch: 108%; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Problem funnel ---------- */
.big-q { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; font-stretch: 118%; letter-spacing: -.03em; margin-top: 28px; }
.funnel { background: var(--paper); border: 1px solid var(--rule); border-radius: 22px; padding: clamp(20px, 3vw, 32px); }
.funnel__row { display: grid; grid-template-columns: 1fr 110px; align-items: center; gap: 14px; }
.funnel__bar { display: flex; align-items: center; height: 44px; width: var(--w); min-width: 54px; background: var(--ink); color: var(--bone); border-radius: 10px; padding: 0 14px; font-variant-numeric: tabular-nums; transform-origin: left; }
.funnel__bar strong { font-size: 1.05rem; font-stretch: 112%; }
.funnel__bar.is-last { background: var(--orange); color: #000; }
.funnel__label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.funnel__leak { display: flex; align-items: center; gap: 6px; padding: 6px 0 6px 12px; font-size: .82rem; font-weight: 600; color: #B32D16; }
.funnel__note { margin-top: 14px; font-size: .78rem; color: var(--graphite); }
.funnel [data-reveal] .funnel__bar { transform: scaleX(.05); transition: transform 1s var(--ease) var(--d, 0ms); }
.funnel .is-visible .funnel__bar, .funnel .is-visible.funnel__row .funnel__bar { transform: scaleX(1); }

/* ---------- Versus ---------- */
.versus { display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
.versus__col { border-radius: 22px; padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); background: var(--card); }
.versus__col--them { background: transparent; border-style: dashed; }
.versus__col--us { border-color: rgba(244,135,84,.45); background: radial-gradient(90% 70% at 100% 0%, rgba(244,135,84,.14), transparent 60%), var(--card); }
.versus__h { display: flex; align-items: center; gap: 10px; font-weight: 800; font-stretch: 112%; font-size: 1.2rem; }
.versus__col--them .versus__h { color: var(--muted); }
.versus__end { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 700; margin: 4px 0 20px; }
.versus .check-list, .versus .x-list { margin-top: 14px; }

/* ---------- Engines ---------- */
.engines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.engine { display: flex; flex-direction: column; min-height: 100%; }
.engine__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.engine__num { font-size: .85rem; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.engine__line { font-size: 1.05rem; color: var(--text); margin-top: 8px; font-weight: 600; }
.engine__list { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0 24px; }
.engine__list li { font-size: .82rem; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--text-2); }
.engine__number { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.engine__number span { font-size: .76rem; color: var(--muted); }
.engine__number strong { color: var(--orange-ink); font-stretch: 108%; }
.engine .card__arrow { top: 26px; right: 90px; }
.engine-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.engine-head .engine__num { font-size: 1rem; padding-top: 12px; }
.engine-head .lead { margin-top: 10px; }
.engine-head .link-arrow { margin-left: 8px; font-size: .95rem; }

/* ---------- Dashboard demo ---------- */
.dash { background: #0A0D11; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 50px 120px -60px rgba(244,135,84,.35), 0 30px 60px -30px rgba(0,0,0,.8); }
.dash__chrome { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #0D1116; }
.dash__title { display: flex; align-items: center; gap: 10px; }
.dash__title img { width: 20px; height: auto; }
.dash__controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dash__select select { appearance: none; background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238E99A6' stroke-width='2'%3E%3Cpath d='m2 4 4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 34px 8px 14px; font-size: .86rem; font-weight: 600; cursor: pointer; }
.toggle { display: inline-flex; background: var(--card); border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; }
.toggle__btn { padding: 6px 14px; border-radius: 999px; font-size: .84rem; font-weight: 700; color: var(--muted); transition: all .2s; }
.toggle__btn.is-on { background: var(--orange); color: #000; }
.dash__tabs { display: flex; gap: 4px; padding: 10px 14px 0; border-bottom: 1px solid var(--line); overflow-x: auto; }
.dash__tab { padding: 10px 14px; font-size: .9rem; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; }
.dash__tab.is-active { color: var(--text); border-bottom-color: var(--orange); }
.dash__body { padding: clamp(14px, 2vw, 22px); min-height: 360px; }
.dash__loading { color: var(--muted); padding: 40px; text-align: center; }
.dash__foot { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted); }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kpi { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.kpi span { display: block; font-size: .78rem; color: var(--muted); }
.kpi strong { display: block; font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; font-stretch: 115%; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.15; margin-top: 4px; }
.kpi small { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.kpi small.up { color: var(--good); }
.kpi small.down { color: var(--bad); }
.dash__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 12px; margin-top: 12px; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.panel__h { display: flex; justify-content: space-between; align-items: center; font-size: .86rem; font-weight: 700; margin-bottom: 14px; }
.panel__h small { font-weight: 500; color: var(--muted); }
.jrow { display: grid; grid-template-columns: 130px 1fr 74px; gap: 10px; align-items: center; padding: 5px 0; cursor: default; }
.jrow__label { font-size: .84rem; color: var(--text-2); }
.jrow__bar { height: 22px; background: rgba(255,255,255,.04); border-radius: 6px; overflow: hidden; }
.jrow__bar span { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, #3A4552, #56626F); width: 0; transition: width .8s var(--ease); }
.jrow:last-child .jrow__bar span { background: linear-gradient(90deg, var(--orange), var(--amber)); }
.jrow__val { font-size: .82rem; text-align: right; font-variant-numeric: tabular-nums; }
.jrow__val b { font-weight: 700; }
.jrow__val small { color: var(--muted); margin-left: 4px; }
.jleak { font-size: .76rem; color: var(--bad); padding: 0 0 4px 140px; }
.alerts { display: grid; gap: 8px; }
.alert { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.025); border: 1px solid var(--line); text-align: left; width: 100%; transition: border-color .2s, background .2s; }
button.alert:hover { border-color: var(--line-2); background: rgba(255,255,255,.05); }
.alert__dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex: none; }
.alert--red .alert__dot { background: var(--bad); box-shadow: 0 0 0 4px rgba(219,82,69,.15); }
.alert--amber .alert__dot { background: var(--warn); box-shadow: 0 0 0 4px rgba(244,135,84,.15); }
.alert--green .alert__dot { background: var(--good); box-shadow: 0 0 0 4px rgba(25,162,115,.15); }
.alert strong { display: block; font-size: .9rem; }
.alert small { display: block; color: var(--muted); font-size: .8rem; }
.team { display: grid; gap: 12px; }
.team__row { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; }
.team__row .avatar { width: 34px; height: 34px; font-size: .75rem; }
.team__name { font-size: .88rem; font-weight: 600; }
.team__bar { height: 6px; background: rgba(255,255,255,.06); border-radius: 6px; margin-top: 6px; overflow: hidden; }
.team__bar span { display: block; height: 100%; background: var(--good); border-radius: 6px; transition: width .8s var(--ease); }
.team__bar span.mid { background: var(--warn); }
.team__bar span.low { background: var(--bad); }
.team__pct { font-size: .86rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.ltable-wrap { overflow-x: auto; }
.ltable { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 640px; }
.ltable th { text-align: left; font-size: .74rem; color: var(--muted); font-weight: 600; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.ltable td { padding: 11px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ltable tr.is-click { cursor: pointer; transition: background .15s; }
.ltable tr.is-click:hover { background: rgba(255,255,255,.03); }
.ltable td small { display: block; color: var(--muted); font-size: .76rem; }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--red { color: #F0857A; background: rgba(219,82,69,.12); }
.status--amber { color: #FFB057; background: rgba(244,135,84,.12); }
.status--green { color: #4FD1A0; background: rgba(25,162,115,.12); }
.status--blue { color: #7FB2E5; background: rgba(66,133,196,.14); }
.status--grey { color: var(--text-2); background: rgba(255,255,255,.06); }
.filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.filters button { padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-weight: 600; border: 1px solid var(--line-2); color: var(--text-2); }
.filters button.is-on { background: var(--text); color: #000; border-color: var(--text); }
.drawer { margin-top: 12px; background: var(--card-2); border: 1px solid var(--line-2); border-radius: 14px; padding: 18px; animation: fadeUp .3s var(--ease); }
.drawer__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.drawer__head .status { margin-left: auto; }
.tl { display: grid; gap: 0; border-left: 2px solid var(--line-2); margin-left: 6px; padding-left: 18px; }
.tl li { position: relative; padding: 6px 0 10px; font-size: .86rem; color: var(--text-2); }
.tl li::before { content: ""; position: absolute; left: -24px; top: 11px; width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); border: 2px solid var(--card-2); }
.tl li.is-ai::before { background: var(--orange); }
.tl li.is-good::before { background: var(--good); }
.tl li.is-bad::before { background: var(--bad); }
.tl time { display: block; font-size: .72rem; color: var(--muted); }
.stable { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 640px; }
.stable th { text-align: right; font-size: .74rem; color: var(--muted); font-weight: 600; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.stable th:first-child, .stable td:first-child { text-align: left; }
.stable td { text-align: right; padding: 12px 10px; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.stable tfoot td { font-weight: 800; border-bottom: 0; }
.stable .best { color: var(--good); font-weight: 700; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind-card { display: flex; flex-direction: column; gap: 10px; }
.ind-card--focus { grid-column: span 1; border-color: rgba(244,135,84,.45); background: radial-gradient(120% 90% at 100% 0%, rgba(244,135,84,.16), transparent 60%), var(--card); }
.ind-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.ind-card__line { color: var(--text-2); font-size: .95rem; }
.ind-card .link-arrow { margin-top: auto; padding-top: 10px; font-size: .92rem; }
.journey { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 8px; }
.journey li { font-size: .78rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--text-2); }
.journey li.is-end { background: rgba(244,135,84,.14); border-color: rgba(244,135,84,.4); color: var(--orange-ink); }
.journey--vertical { flex-direction: column; gap: 0; margin: 12px 0 0; }
.journey--vertical li { position: relative; border: 0; background: none; border-radius: 0; padding: 10px 0 10px 28px; font-size: .95rem; color: var(--text); }
.journey--vertical li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 10px; height: 11px; background: var(--line-2); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.journey--vertical li:not(:last-child)::after { content: ""; position: absolute; left: 8px; top: 28px; bottom: -8px; width: 2px; background: var(--line); }
.journey--vertical li.is-end { color: var(--orange-ink); }
.journey--vertical li.is-end::before { background: var(--orange); }

/* Workflow */
.wflow .tabs { margin-bottom: 18px; }
.tabs { display: inline-flex; gap: 4px; background: var(--card); padding: 4px; border-radius: 999px; border: 1px solid var(--line); flex-wrap: wrap; }
.tabs__btn { padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem; color: var(--muted); }
.tabs__btn.is-active { background: var(--text); color: #000; }
.wflow__steps { display: grid; gap: 8px; }
.wstep { display: flex; gap: 14px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; }
.wstep__num { font-size: .78rem; font-weight: 700; color: var(--muted); width: 26px; font-variant-numeric: tabular-nums; }
.wstep__body { display: flex; flex-direction: column; }
.wstep__tag { font-size: .72rem; font-weight: 600; color: var(--muted); }
.wstep__label { font-weight: 700; }
.wstep--ai, .wstep--data { border-color: rgba(244,135,84,.45); background: rgba(244,135,84,.08); }
.wstep--ai .wstep__tag, .wstep--data .wstep__tag { color: var(--orange-ink); }
.wstep--data { margin-left: 28px; border-style: dashed; }
.wstep--end { background: var(--orange); border-color: var(--orange); color: #000; }
.wstep--end .wstep__tag, .wstep--end .wstep__num { color: rgba(0,0,0,.6); }
.ai-asks { margin-top: 8px; }
.ai-asks .chip-list { margin: 14px 0; }

.leak-card__n { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; color: var(--bad); margin-bottom: 12px; }
.info-card .hex-badge { margin-bottom: 16px; }

/* ---------- Steps / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; counter-reset: s; }
.step { position: relative; padding: 22px 18px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); }
.step__num { position: absolute; top: 18px; right: 18px; font-size: .8rem; font-weight: 700; color: var(--muted); }
.step .hex-badge { margin-bottom: 18px; }
.step p { color: var(--text-2); font-size: .92rem; margin-top: 8px; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.timeline__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.timeline__num { display: inline-grid; place-items: center; width: 36px; height: 40px; background: var(--orange); color: #000; font-weight: 800; font-size: .85rem; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); margin-bottom: 16px; }
.timeline__item p { color: var(--text-2); font-size: .93rem; margin-top: 8px; }
.big-steps { display: grid; gap: 0; max-width: 860px; margin-inline: auto; }
.big-step { display: grid; grid-template-columns: 70px 1fr; gap: 20px; }
.big-step__rail { position: relative; display: flex; justify-content: center; }
.big-step__rail::after { content: ""; position: absolute; top: 56px; bottom: -8px; width: 2px; background: linear-gradient(var(--line-2), var(--line)); }
.big-step:last-child .big-step__rail::after { display: none; }
.big-step__num { display: grid; place-items: center; width: 52px; height: 58px; background: var(--card-2); color: var(--orange-ink); font-weight: 800; font-stretch: 110%; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.big-step__card { margin-bottom: 18px; }
.big-step__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.big-step__card p { color: var(--text-2); margin-top: 10px; }
.roadmap { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.roadmap__item { padding: 18px; border-radius: 14px; border: 1px solid var(--line); background: var(--card); font-weight: 700; font-stretch: 106%; }
.roadmap__item span { display: block; font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.roadmap__item.is-now { border-color: var(--orange); background: rgba(244,135,84,.1); }
.roadmap__item.is-now span { color: var(--orange-ink); }

/* ---------- Proof ---------- */
.proof { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proof__h { display: flex; align-items: center; gap: 10px; font-weight: 800; font-stretch: 108%; font-size: 1.05rem; margin-bottom: 18px; }
.proof__h .i { color: var(--orange); }
.proof__note { display: flex; gap: 10px; align-items: flex-start; margin-top: 24px; color: var(--muted); font-size: .92rem; }
.proof__note .i-sm { margin-top: 4px; color: var(--orange); }
.proof__note a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.cs-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.cs-card__stats dt { font-size: .76rem; color: var(--muted); }
.cs-card__stats dd { margin: 0; font-size: 1.3rem; font-weight: 800; font-stretch: 112%; color: var(--orange-ink); }
.cs-template h3 { margin: 12px 0; }
.cs-template__rows { display: grid; gap: 0; margin: 0 0 18px; }
.cs-template__rows div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.cs-template__rows dt { color: var(--muted); }
.cs-template__rows dd { margin: 0; color: var(--text-2); }
.cs-funnel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.cs-funnel span { display: flex; flex-direction: column; gap: 4px; padding: 12px; border-radius: 10px; background: var(--card-2); font-size: .74rem; color: var(--muted); }
.cs-funnel b { font-size: 1.1rem; color: var(--text); font-stretch: 110%; }
.cs-funnel--big span { padding: 22px; font-size: .85rem; }
.cs-funnel--big b { font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--orange-ink); }
.cs-cover { border-radius: var(--radius); margin-bottom: 24px; width: 100%; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ba__col { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--card); }
.ba__col--after { border-color: rgba(244,135,84,.45); }
.ba__h { font-weight: 800; font-size: 1.1rem; margin-bottom: 12px; }
.ba dl div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.ba dt { color: var(--muted); }
.ba dd { margin: 0; font-weight: 800; font-stretch: 110%; }
.big-quote { max-width: 900px; margin: 0 auto; text-align: center; }
.big-quote blockquote { margin: 16px 0; font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 700; font-stretch: 110%; letter-spacing: -.02em; line-height: 1.3; }
.big-quote figcaption { color: var(--muted); }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.quote blockquote { margin: 12px 0 20px; font-size: 1.05rem; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption img { border-radius: 50%; }
.quote figcaption small { display: block; color: var(--muted); }
.quote__mark { width: 28px; height: 28px; color: var(--orange); }
.big-quote .quote__mark { margin: 0 auto; width: 40px; height: 40px; }
.logo-row { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; opacity: .8; }
.logo-row img { height: 36px; width: auto; filter: grayscale(1) brightness(1.6); }

/* ---------- Audit ---------- */
.audit, .booking { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(20px, 3vw, 36px); box-shadow: 0 40px 100px -50px rgba(244,135,84,.35); position: relative; }
.audit-wrap { max-width: 820px; margin: 0 auto; }
.audit__top { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--muted); font-weight: 600; }
.audit__time { display: inline-flex; align-items: center; gap: 6px; }
.audit__bar { height: 4px; background: var(--line); border-radius: 4px; margin: 12px 0 26px; overflow: hidden; }
.audit__bar span { display: block; height: 100%; width: 11%; background: linear-gradient(90deg, var(--orange), var(--amber)); border-radius: 4px; transition: width .4s var(--ease); }
.audit__step { border: 0; padding: 0; margin: 0 0 28px; min-width: 0; }
.js .audit__step { display: none; margin: 0; }
.js .audit__step.is-current { display: block; animation: fadeUp .3s var(--ease); }
.audit__q { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 800; font-stretch: 110%; letter-spacing: -.02em; line-height: 1.2; padding: 0; margin-bottom: 18px; }
.audit__hint { color: var(--muted); font-size: .92rem; margin: -8px 0 18px; }
.opts { display: grid; gap: 10px; }
.opts--grid { grid-template-columns: repeat(2, 1fr); }
.opts--stack { grid-template-columns: 1fr; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt__box { display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 12px 16px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02); font-weight: 600; font-size: .96rem; transition: all .15s var(--ease); cursor: pointer; }
.opt__box .i-sm { color: var(--orange-ink); }
.opt:hover .opt__box { border-color: var(--muted); background: rgba(255,255,255,.04); }
.opt input:checked + .opt__box { border-color: var(--orange); background: rgba(244,135,84,.12); box-shadow: 0 0 0 1px var(--orange) inset; }
.opt input[type="checkbox"] + .opt__box::after { content: ""; margin-left: auto; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line-2); flex: none; }
.opt input[type="checkbox"]:checked + .opt__box::after { background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; border-color: var(--orange); }
.opt input:focus-visible + .opt__box { outline: 2px solid var(--orange); outline-offset: 2px; }
.audit__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.audit__teaser { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.audit__teaser .audit__q { margin-bottom: 4px; }
.audit__teaser .audit__hint { margin: 0; }
.score-ring { --p: 0; --c: var(--orange); position: relative; width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; flex: none; background: conic-gradient(var(--c) calc(var(--p) * 1%), var(--line) 0); transition: --p .8s; }
.score-ring::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: var(--card); }
.score-ring > div { position: relative; text-align: center; }
.score-ring span { position: relative; font-size: 2.6rem; font-weight: 800; font-stretch: 118%; font-variant-numeric: tabular-nums; }
.score-ring small { position: relative; display: block; font-size: .8rem; color: var(--muted); text-align: center; margin-top: -6px; }
.score-ring--sm { width: 78px; height: 78px; }
.score-ring--sm::before { inset: 7px; }
.score-ring--sm span { font-size: 1.4rem; filter: blur(4px); }
.result__top { display: flex; gap: 26px; align-items: center; margin-bottom: 26px; }
.result__band { display: inline-block; font-size: .8rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.result__band--bad { background: rgba(219,82,69,.15); color: #F0857A; }
.result__band--mid { background: rgba(244,135,84,.15); color: #FFB057; }
.result__band--good { background: rgba(25,162,115,.15); color: #4FD1A0; }
.pillars { display: grid; gap: 12px; margin-bottom: 24px; }
.pillar { display: grid; grid-template-columns: 110px 1fr 50px; gap: 12px; align-items: center; font-size: .9rem; }
.pillar__bar { height: 8px; border-radius: 8px; background: var(--line); overflow: hidden; }
.pillar__bar span { display: block; height: 100%; border-radius: 8px; background: var(--good); transition: width .8s var(--ease); }
.pillar.is-weak .pillar__bar span { background: var(--bad); }
.pillar.is-weak { color: var(--text); font-weight: 700; }
.pillar__v { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.result__box { padding: 18px; border-radius: 14px; background: rgba(244,135,84,.08); border: 1px solid rgba(244,135,84,.35); margin-bottom: 18px; }
.result__box h4 { margin-bottom: 8px; font-size: 1.05rem; }
.result__box p { color: var(--text-2); font-size: .95rem; }
.result__fixes { display: grid; gap: 8px; margin: 14px 0 22px; }
.result__fixes a { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line-2); font-weight: 600; font-size: .93rem; }
.result__fixes a:hover { border-color: var(--orange); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: .84rem; font-weight: 600; color: var(--text-2); }
.field em { font-style: normal; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea, .money {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 14px; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238E99A6' stroke-width='2'%3E%3Cpath d='m2 4 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus, .field textarea:focus, .money:focus-within { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,135,84,.18); }
.field input::placeholder, .field textarea::placeholder { color: #5C6671; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--bad); }
.field-error, .field .err { color: #F0857A; font-size: .82rem; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }
.form-note a { color: var(--text); text-decoration: underline; }
.form-error { margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(219,82,69,.12); color: #F0857A; font-size: .9rem; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin-bottom: 14px; }
.form-success { text-align: center; padding: 20px 0; animation: fadeUp .4s var(--ease); }
.form-success .hex-badge { margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--text-2); }
.form-success .btn-row { justify-content: center; }

/* ---------- Calculators ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(20px, 3vw, 36px); }
.calc__inputs { display: grid; gap: 26px; align-content: start; }
.range { display: block; }
.range__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; font-weight: 600; font-size: .95rem; color: var(--text-2); }
.range output { font-weight: 800; font-stretch: 112%; font-size: 1.2rem; color: var(--text); font-variant-numeric: tabular-nums; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 30px; padding: 0; background: transparent; outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--orange) var(--fill, 50%), var(--line-2) var(--fill, 50%)); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; margin-top: -9px; border-radius: 50%; background: var(--text); border: 4px solid var(--orange); box-shadow: 0 2px 10px rgba(0,0,0,.5); }
input[type="range"]::-moz-range-track { height: 6px; border-radius: 6px; background: var(--line-2); }
input[type="range"]::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--orange); }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--text); border: 4px solid var(--orange); }
input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(244,135,84,.35); }
.field--money .money { display: flex; align-items: center; gap: 8px; padding: 0 14px; }
.money em { font-style: normal; color: var(--muted); font-weight: 700; }
.money input { border: 0; background: none; padding: 13px 0; width: 100%; font-weight: 700; font-size: 1.05rem; outline: none; box-shadow: none !important; }
.calc__out { background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: clamp(18px, 2.4vw, 28px); display: flex; flex-direction: column; gap: 18px; }
.calc__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc__col { padding: 16px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.calc__col--hi { border-color: rgba(244,135,84,.45); background: rgba(244,135,84,.07); }
.calc__label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.calc__big { font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 800; font-stretch: 115%; letter-spacing: -.02em; font-variant-numeric: tabular-nums; margin: 4px 0 !important; }
.calc__col--hi .calc__big { color: var(--orange-ink); }
.calc__small { font-size: .86rem; color: var(--text-2); }
.calc__bar { height: 6px; background: var(--line); border-radius: 6px; margin-top: 12px; overflow: hidden; }
.calc__bar span { display: block; height: 100%; background: var(--muted); border-radius: 6px; transition: width .5s var(--ease); }
.calc__col--hi .calc__bar span { background: var(--orange); }
.calc__delta { display: flex; flex-direction: column; gap: 2px; padding: 16px 18px; border-radius: 14px; background: var(--orange); color: #000; }
.calc__delta span { font-size: .82rem; font-weight: 600; opacity: .75; }
.calc__delta strong { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; font-stretch: 115%; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.calc__delta em { font-style: normal; font-size: .9rem; font-weight: 600; }
.calc__delta--bad { background: #2A1210; color: var(--text); border: 1px solid rgba(219,82,69,.5); }
.calc__delta--bad strong { color: #F0857A; }
.calc__note { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); }
.leak-funnel { display: grid; gap: 6px; }
.lf-row { display: grid; grid-template-columns: 1fr 64px; gap: 10px; align-items: center; }
.lf-bar { height: 34px; border-radius: 8px; background: #2B3440; display: flex; align-items: center; padding: 0 12px; font-size: .82rem; font-weight: 700; white-space: nowrap; overflow: hidden; transition: width .5s var(--ease); min-width: 40px; }
.lf-bar.is-end { background: var(--orange); color: #000; }
.lf-val { font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.lf-leak { font-size: .78rem; color: #F0857A; padding-left: 8px; }

/* ---------- Booking ---------- */
.booking__label { display: flex; align-items: center; gap: 10px; font-weight: 800; font-stretch: 108%; margin: 0 0 14px; }
.booking__label > span { display: grid; place-items: center; width: 26px; height: 29px; background: var(--orange); color: #000; font-size: .8rem; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.booking__label em { font-weight: 500; font-size: .85rem; font-style: normal; margin-left: auto; }
.booking__step { margin-bottom: 26px; }
.date-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 24px; }
.date-chip { display: flex; flex-direction: column; align-items: center; padding: 10px 4px; border-radius: 12px; border: 1px solid var(--line-2); transition: all .15s; }
.date-chip small { font-size: .72rem; color: var(--muted); }
.date-chip strong { font-size: 1.3rem; font-weight: 800; font-stretch: 112%; line-height: 1.2; }
.date-chip:hover { border-color: var(--muted); }
.date-chip[aria-checked="true"] { border-color: var(--orange); background: rgba(244,135,84,.14); box-shadow: 0 0 0 1px var(--orange) inset; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; min-height: 48px; }
.slot { padding: 12px; border-radius: 12px; border: 1px solid var(--line-2); font-weight: 700; font-size: .92rem; font-variant-numeric: tabular-nums; }
.slot:hover:not([disabled]) { border-color: var(--muted); }
.slot[aria-checked="true"] { background: var(--orange); color: #000; border-color: var(--orange); }
.slot[disabled] { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.booking-info .display-2 { margin-bottom: 8px; }
.call-agenda { display: grid; gap: 16px; margin: 32px 0; }
.call-agenda li { display: flex; gap: 14px; }
.call-agenda li > span { display: grid; place-items: center; width: 34px; height: 38px; background: var(--card-2); color: var(--orange-ink); font-weight: 800; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); flex: none; }
.call-agenda strong { display: block; }
.call-agenda small { color: var(--muted); font-size: .92rem; }
.booking-alt .btn-row { margin-top: 12px; }
.booking-section { background: var(--bg); }

/* ---------- Contact ---------- */
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; }
.contact-card strong { display: block; font-size: 1.02rem; }
.contact-card small { color: var(--muted); font-size: .88rem; }
.contact-card__arrow { margin-left: auto; color: var(--muted); }
.contact-form .muted { margin: 6px 0 22px; }
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); }
.contact-list .i { color: var(--orange); margin-top: 2px; }
.map-embed { margin-top: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 300px; background: var(--card) radial-gradient(circle at 50% 50%, rgba(244,135,84,.12), transparent 60%); display: grid; place-items: center; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-embed__load { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line-2); font-weight: 700; }

/* ---------- Misc blocks ---------- */
.problem-list { display: grid; gap: 12px; }
.problem-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.problem-list__x { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(219,82,69,.14); color: #F0857A; flex: none; }
.included { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.included li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.included .i { color: var(--orange); }
.standards { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 32px; color: var(--muted); font-size: .9rem; }
.standards span { display: inline-flex; align-items: center; gap: 8px; }
.standards .i-sm { color: var(--orange); }
.mini-system { display: grid; gap: 10px; }
.mini-system__node { display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; column-gap: 16px; align-items: center; padding: 16px 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--card); opacity: .6; }
.mini-system__node .hex-badge { grid-row: span 2; }
.mini-system__node small { color: var(--muted); grid-column: 2; }
.mini-system__node .tag { grid-row: 1 / span 2; grid-column: 3; }
.mini-system__node.is-active { opacity: 1; border-color: rgba(244,135,84,.5); background: rgba(244,135,84,.08); }
.pay-list { display: grid; gap: 12px; }
.pay-list li { display: flex; gap: 16px; align-items: center; }
.pay-list strong { display: block; font-size: 1.05rem; }
.pay-list small { color: var(--muted); font-size: .92rem; }
.split-duties { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duty { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px; }
.duty__h { display: flex; align-items: center; gap: 10px; font-weight: 800; font-stretch: 110%; font-size: 1.15rem; }
.duty .check-list .i-sm { color: #A8461F; }
.section:not(.section--bone) .duty { background: var(--card); border-color: var(--line); }
.module-card .hex-badge { margin-bottom: 16px; }
.module-card__num { display: flex; align-items: center; gap: 8px; margin-top: 16px !important; padding-top: 14px; border-top: 1px solid var(--line); color: var(--orange-ink) !important; font-size: .88rem; font-weight: 600; }
.job-card { display: flex; flex-direction: column; gap: 10px; }
.job-card .engine__num { margin-bottom: 8px; }
.job-card .engine__number { margin: 12px 0; }
.job-card__links { display: grid; gap: 6px; margin-top: auto; }
.job-card__links a { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--line); font-weight: 600; font-size: .9rem; }
.job-card__links a:hover { border-color: var(--orange); }
.feature-card { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; background: radial-gradient(100% 90% at 0% 0%, rgba(244,135,84,.16), transparent 55%), var(--card); border-color: rgba(244,135,84,.4); padding: clamp(28px, 4vw, 48px); }
.feature-card .h2 { margin: 16px 0; }
.feature-card .link-arrow { margin-top: 20px; }
.svc-card .hex-badge, .res-card .hex-badge, .tool-card .hex-badge { margin-bottom: 18px; }
.svc-card__kpi { margin-top: 18px !important; padding-top: 14px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--text) !important; font-weight: 600; }
.svc-card__kpi span { color: var(--muted); font-weight: 500; margin-right: 4px; }
.res-card .link-arrow, .tool-card .link-arrow { margin-top: 18px; }
.tool-card--main { border-color: rgba(244,135,84,.45); background: radial-gradient(100% 90% at 100% 0%, rgba(244,135,84,.14), transparent 60%), var(--card); }
.ask-table { display: grid; }
.ask-table div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.ask-table dt { font-weight: 700; }
.ask-table dd { margin: 0; color: var(--text-2); }
.outcome-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.outcome-table__head, .outcome-table__row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 16px 24px; }
.outcome-table__head { background: var(--card-2); font-size: .8rem; font-weight: 700; color: var(--muted); }
.outcome-table__row { border-top: 1px solid var(--line); align-items: center; }
.outcome-table__row span:first-child { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(219,82,69,.6); }
.outcome-table__row span:last-child { display: flex; gap: 10px; align-items: center; font-weight: 600; }
.outcome-table__row .i-sm { color: var(--orange); }
.hex-art { display: grid; place-items: center; padding: 40px; }
.hex-art img { width: min(300px, 70%); filter: drop-shadow(0 30px 80px rgba(244,135,84,.35)); animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-12px); } }

/* Founder */
.founder { display: grid; grid-template-columns: 340px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.founder--compact { grid-template-columns: 150px 1fr; gap: 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.founder__photo img, .founder__mono { width: 100%; aspect-ratio: 6 / 7; object-fit: cover; border-radius: var(--radius); }
.founder__mono { display: grid; place-items: center; background: radial-gradient(90% 90% at 30% 20%, rgba(244,135,84,.3), transparent 60%), var(--card-2); border: 1px solid var(--line); }
.founder__mono span { display: grid; place-items: center; width: 44%; aspect-ratio: 6 / 7; background: var(--orange); color: #000; font-weight: 800; font-stretch: 120%; font-size: clamp(1.4rem, 3vw, 2.6rem); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.founder__text p { color: var(--text-2); font-size: 1.05rem; }
.founder--compact .founder__text p { font-size: .98rem; }
.founder__sign { display: flex; flex-direction: column; margin-top: 18px !important; color: var(--text) !important; }
.founder__sign span { color: var(--muted); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: 16px; background: var(--card); transition: border-color .2s; }
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-weight: 700; font-stretch: 104%; cursor: pointer; font-size: 1.02rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); flex: none; transition: transform .25s var(--ease), background .2s; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #000; }
.faq__a { padding: 0 22px 20px; color: var(--text-2); }
.section--bone .faq__item { background: var(--paper); border-color: var(--rule); }
.section--bone .faq__a { color: var(--graphite); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: #000; overflow: hidden; padding-block: clamp(80px, 10vw, 140px); text-align: center; border-top: 1px solid rgba(255,255,255,.06); }
.cta-band__bg { position: absolute; inset: 0; background: radial-gradient(55% 65% at 50% 115%, rgba(244,135,84,.22), transparent 70%); }
.cta-band__inner { position: relative; }
.cta-band__tag { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--orange-ink); margin-bottom: 18px; }
.cta-band .lead { margin: 22px auto 0; }
.cta-band__micro { margin-top: 22px; color: var(--muted); font-size: .88rem; }

/* ---------- Blog ---------- */
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.search { display: flex; align-items: center; gap: 10px; width: min(340px, 100%); padding: 0 16px; height: 48px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03); color: var(--muted); }
.search input { flex: 1; border: 0; background: none; outline: none; height: 100%; color: var(--text); }
.search:focus-within { border-color: var(--orange); }
.cat-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.cat-nav a { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: .88rem; font-weight: 600; color: var(--text-2); }
.cat-nav a span { color: var(--muted); margin-left: 4px; font-weight: 500; }
.cat-nav a:hover { color: var(--text); border-color: var(--muted); }
.cat-nav a.is-active { background: var(--text); color: #000; border-color: var(--text); }
.cat-nav a.is-active span { color: #555; }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, transform .25s var(--ease); }
.post-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.post-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.03); }
.post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.post-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .8rem; color: var(--muted); }
.post-card h3 a:hover { color: var(--orange-ink); }
.post-card__excerpt { color: var(--text-2); font-size: .95rem; }
.post-card--large { display: grid; grid-template-columns: 1.2fr 1fr; }
.post-card--large .post-card__media { aspect-ratio: auto; min-height: 100%; }
.post-card--large .post-card__body { padding: clamp(24px, 3vw, 40px); justify-content: center; }
.post-card--large h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.gen-cover { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; width: 100%; height: 100%; min-height: 180px; padding: 22px; background: radial-gradient(90% 90% at 100% 0%, rgba(244,135,84,.35), transparent 55%), #000; overflow: hidden; }
.gen-cover__hex { position: absolute; right: -30px; top: -30px; width: 170px; height: 196px; border: 2px solid rgba(244,135,84,.5); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); background: linear-gradient(160deg, rgba(244,135,84,.4), rgba(244,135,84,.05)); }
.gen-cover__cat { position: relative; font-size: .72rem; font-weight: 700; color: var(--orange-ink); }
.gen-cover__title { position: relative; font-weight: 800; font-stretch: 115%; font-size: 1.15rem; line-height: 1.15; letter-spacing: -.02em; color: var(--text); }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pager a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); font-weight: 700; }
.pager a.is-active { background: var(--orange); border-color: var(--orange); color: #000; }
.empty { text-align: center; padding: 48px; }
.newsletter { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

.article__head { position: relative; background: #000; padding: clamp(36px, 5vw, 64px) 0 clamp(40px, 5vw, 64px); overflow: hidden; }
.article__head .container { position: relative; }
.article__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .88rem; color: var(--muted); margin-bottom: 20px; }
.article__title { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; font-stretch: 118%; letter-spacing: -.035em; line-height: 1.06; }
.article__dek { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--text-2); margin-top: 20px; line-height: 1.55; }
.article__byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.article__byline img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.article__byline strong { display: block; font-size: .95rem; }
.article__byline small { color: var(--muted); font-size: .82rem; }
.article__cover { width: 100%; border-radius: var(--radius); margin-top: -24px; position: relative; border: 1px solid var(--line); }
.article__layout { display: grid; grid-template-columns: 240px minmax(0, 720px); gap: clamp(32px, 5vw, 72px); justify-content: center; padding-block: clamp(40px, 5vw, 64px) clamp(64px, 8vw, 104px); }
.article__aside { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; display: grid; gap: 28px; }
.toc__h { font-size: .78rem; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.toc ol { display: grid; gap: 2px; border-left: 1px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 14px; margin-left: -1px; border-left: 2px solid transparent; font-size: .88rem; color: var(--muted); line-height: 1.4; }
.toc a:hover { color: var(--text); }
.toc a.is-active { color: var(--text); border-left-color: var(--orange); }
.share { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.share .toc__h { width: 100%; }
.share a, .share button { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--text-2); }
.share a:hover, .share button:hover { border-color: var(--orange); color: var(--orange); }
.share .i { width: 18px; height: 18px; }

.prose { font-size: 1.09rem; line-height: 1.75; color: #DADFE4; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; font-stretch: 112%; letter-spacing: -.025em; line-height: 1.2; color: var(--text); margin-top: 2em; }
.prose h3 { font-size: 1.25rem; font-weight: 700; font-stretch: 106%; color: var(--text); margin-top: 1.6em; }
.prose h4 { font-size: 1.08rem; color: var(--text); margin-top: 1.4em; }
.prose p { margin: 0; }
.prose a { color: var(--orange-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li { position: relative; padding-left: 26px; }
.prose ul > li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 9px; height: 10px; background: var(--orange); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.prose ol { list-style: decimal; }
.prose ol > li::marker { color: var(--orange-ink); font-weight: 700; }
.prose li + li { margin-top: .5em; }
.prose blockquote { margin-inline: 0; padding: 18px 22px; border-left: 3px solid var(--orange); background: rgba(244,135,84,.06); border-radius: 0 12px 12px 0; color: var(--text); font-size: 1.05rem; }
.prose img { border-radius: 14px; border: 1px solid var(--line); }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--card); color: var(--text); font-size: .85rem; }
.prose code { background: var(--card-2); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.prose pre { background: var(--card); padding: 18px; border-radius: 12px; overflow-x: auto; border: 1px solid var(--line); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 14px; }
.prose .ql-align-center { text-align: center; }
.prose .ql-align-right { text-align: right; }
.article-cta { margin-top: 3em !important; padding: 28px; border-radius: var(--radius); background: radial-gradient(100% 100% at 100% 0%, rgba(244,135,84,.18), transparent 60%), var(--card); border: 1px solid rgba(244,135,84,.4); }
.article-cta__h { font-size: 1.35rem; font-weight: 800; font-stretch: 112%; color: var(--text); margin-bottom: 8px !important; }
.article-cta p { color: var(--text-2); }
.article-cta .btn { margin-top: 18px; text-decoration: none; color: #0B0B0B; }
.preview-bar { position: sticky; top: var(--header-h); z-index: 50; background: var(--warn); color: #000; text-align: center; padding: 8px; font-size: .9rem; }
.preview-bar a { text-decoration: underline; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: #000; border-top: 1px solid rgba(255,255,255,.07); padding: clamp(56px, 7vw, 88px) 0 28px; font-size: .94rem; }
.footer-top { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(32px, 6vw, 80px); }
.footer-brand img { width: 150px; }
.footer-tag { color: var(--orange-ink); font-size: 1.1rem; margin-top: 22px; }
.footer-line { color: var(--muted); margin-top: 8px; max-width: 34ch; }
.footer-contact { display: grid; gap: 10px; margin-top: 24px; color: var(--text-2); }
.footer-contact a, .footer-contact span { display: inline-flex; gap: 10px; align-items: flex-start; }
.footer-contact .i-sm { margin-top: 4px; color: var(--orange); }
.footer-contact a:hover { color: var(--text); }
.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--text-2); }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-social .i { width: 18px; height: 18px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-cols a { display: block; padding: 5px 0; color: var(--muted); }
.footer-cols a:hover { color: var(--text); }
.footer-h { font-weight: 700; color: var(--text); margin-bottom: 12px; font-stretch: 106%; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); color: var(--muted); font-size: .85rem; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--text); }

/* ---------- Floating ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 0; padding: 7px; border-radius: 999px; background: #0B0E12; border: 1px solid var(--line-2); box-shadow: 0 20px 40px -12px rgba(0,0,0,.8); font-weight: 700; font-size: .9rem; transition: transform .25s var(--ease), border-color .2s; }
.wa-float:hover, .wa-float:focus-visible { transform: translateY(-3px); border-color: var(--wa); }
.wa-float__text { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .35s var(--ease), margin .35s var(--ease); }
.wa-float:hover .wa-float__text, .wa-float:focus-visible .wa-float__text, .wa-float.is-intro .wa-float__text { max-width: 220px; margin: 0 12px 0 10px; }
.wa-float__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--wa); color: #fff; }
.wa-float__icon .i { width: 22px; height: 22px; }
.mobile-bar { display: none; }
.consent { position: fixed; left: 22px; bottom: 22px; z-index: 120; width: min(420px, calc(100% - 44px)); background: #0B0E12; border: 1px solid var(--line-2); border-radius: 16px; padding: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.9); font-size: .9rem; color: var(--text-2); animation: fadeUp .4s var(--ease); }
.consent a { color: var(--text); text-decoration: underline; }
.consent__btns { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }

/* ---------- Photos & 3D icons ---------- */
.icon-3d { width: 60px; height: 60px; flex: none; filter: drop-shadow(0 10px 16px rgba(0,0,0,.55)); }
.icon-3d--lg { width: 72px; height: 72px; }
.icon-3d--sm { width: 40px; height: 40px; filter: none; }
.mega__icon--3d { background: none; width: 40px; height: 40px; }
.mega__icon--3d .icon-3d { width: 40px; height: 40px; filter: none; }
.tag--float { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(11,14,18,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* Photo cards (industries + engines) */
.ind-card--media, .engine--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.ind-card__media, .engine__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0B0E12; }
.ind-card__media img, .engine__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ind-card__media::after, .engine__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(21,26,33,.85) 88%, var(--card) 100%); transition: opacity .3s; }
.card--link:hover .ind-card__media img, .card--link:hover .engine__media img { transform: scale(1.045); }
.card--link.ind-card--media:hover .ind-card__media::after, .card--link.engine--media:hover .engine__media::after { background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(26,32,41,.85) 88%, var(--card-2) 100%); }
.ind-card--media .ind-card__body, .engine--media .engine__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 0 24px 26px; margin-top: -34px; }
.ind-card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ind-card--media .ind-card__top { margin-bottom: 4px; }
.engine__body { display: flex; flex-direction: column; flex: 1; }
.engine--media .engine__body { gap: 0; margin-top: -40px; }
.engine--media .engine__top { align-items: flex-end; margin-bottom: 18px; }
.engine--media .engine__num { padding-bottom: 6px; }
.engine--media .card__arrow { top: 14px; right: 14px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(11,14,18,.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: var(--text); z-index: 2; }
.engine--media .card__arrow .i { width: 18px; height: 18px; }
.ind-card--focus.ind-card--media { border-color: rgba(244,135,84,.5); background: var(--card); }

/* Hero photo with glass card (industry + engine pages) */
.page-hero--split .page-hero__inner:has(.hero-photo) { grid-template-columns: 1fr 1fr; align-items: center; }
.hero-photo { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 12; border: 1px solid var(--line); box-shadow: 0 40px 90px -40px rgba(0,0,0,.95), 0 30px 80px -50px rgba(244,135,84,.35); }
.hero-photo > img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%); pointer-events: none; }
.hero-photo__card { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; padding: 14px 16px; border-radius: 16px; background: rgba(11,14,18,.78); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hero-photo__head { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 700; color: var(--text-2); margin-bottom: 8px; }
.hero-photo__card .journey { margin: 0; }
.hero-photo__foot { margin: 10px 0 0 !important; font-size: .85rem; color: var(--muted); }
.hero-photo__foot strong { color: var(--text); }
.hero-photo__kpi { margin: 0 !important; font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; font-stretch: 116%; letter-spacing: -.02em; color: var(--orange-ink); }

/* Framed photo (About) */
.photo-frame { position: relative; margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; box-shadow: 0 40px 90px -40px rgba(0,0,0,.95); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame figcaption { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-size: .85rem; font-weight: 700; background: rgba(11,14,18,.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); }
.photo-frame figcaption .i-sm { color: var(--orange); }

/* ---------- SEO blocks: keyword line in H1, services strip, areas served ---------- */
.h1-kicker { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; font-size: .9rem; font-weight: 600; font-stretch: 100%; letter-spacing: .01em; line-height: 1.4; color: var(--muted); }
.hero .h1-kicker { font-size: 1rem; color: var(--text-2); margin-bottom: 16px; }
.h1-kicker .tag { font-size: .72rem; }
.svc-strip { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.svc-strip__h { font-size: 1.15rem; font-weight: 700; font-stretch: 108%; letter-spacing: -.01em; margin-bottom: 16px; }
.svc-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.svc-link { display: flex; align-items: center; gap: 12px; min-height: 54px; padding: 12px 16px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.02); font-weight: 600; color: var(--text-2); transition: border-color .2s, background .2s, color .2s; }
.svc-link > .i-sm { color: var(--orange); }
.svc-link__arrow { margin-left: auto; color: var(--muted); transition: transform .2s var(--ease); }
.svc-link:hover { border-color: var(--line-2); background: var(--card); color: var(--text); }
.svc-link:hover .svc-link__arrow { transform: translateX(3px); color: var(--orange); }
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.split .areas, .split--local .areas { grid-template-columns: 1fr; align-content: start; }
.areas__h { display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 10px !important; }
.areas__h .i-sm { color: var(--orange); }
.areas__list { display: flex; flex-wrap: wrap; gap: 6px; }
.areas__list li { font-size: .85rem; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--text-2); }
.areas__note { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; }
.split--local { align-items: center; }
.split--local .areas { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }

/* ---------- Testimonials ---------- */
.tst { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst--single { grid-template-columns: minmax(0, 720px); }
.tst--compact { grid-template-columns: 1fr; gap: 12px; }
.tst-card { position: relative; margin: 0; display: flex; flex-direction: column; gap: 16px; padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.tst-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tst-stars { display: inline-flex; gap: 2px; color: var(--line-2); }
.tst-stars .is-on { color: var(--amber); fill: currentColor; }
.tst-card__mark { width: 28px; height: 28px; color: var(--orange); }
.tst-src { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; color: var(--text-2); padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.tst-src .i-sm { width: 13px; height: 13px; color: var(--orange); }
.tst-card__quote { margin: 0; font-size: 1.04rem; line-height: 1.6; color: var(--text); flex: 1; }
.tst-card__quote p { margin: 0; }
.tst-card__who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.tst-card__who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.tst-card__who .avatar { width: 48px; height: 48px; }
.tst-card__who strong { display: block; font-size: .98rem; }
.tst-card__who small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.4; }
.tst-proof { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; min-height: 40px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: .84rem; font-weight: 700; color: var(--text-2); }
.tst-proof:hover { border-color: var(--orange); color: var(--text); }
.tst--compact .tst-card { padding: 20px; gap: 12px; }
.tst--compact .tst-card__quote { font-size: .96rem; }
.booking-tst { margin-bottom: 18px; }
.proof-dialog { padding: 0; border: 1px solid var(--line-2); border-radius: 18px; background: #0B0E12; max-width: min(92vw, 520px); max-height: 90vh; overflow: auto; }
.proof-dialog::backdrop { background: rgba(0,0,0,.8); backdrop-filter: blur(4px); }
.proof-dialog img { display: block; width: 100%; height: auto; }
.proof-dialog__close { position: sticky; top: 10px; float: right; margin: 10px 10px -54px 0; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.7); color: #fff; }
@media (max-width: 1060px) { .tst { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  /* Phones: swipe through testimonials */
  .tst:not(.tst--compact):not(.tst--single) { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 86%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .tst:not(.tst--compact):not(.tst--single)::-webkit-scrollbar { display: none; }
  .tst > .tst-card { scroll-snap-align: start; }
  .tst--single { grid-template-columns: 1fr; }
  .tst-card { padding: 20px; }
}

/* ---------- FAQ side visual & feature card icon ---------- */
.faq-aside { position: sticky; top: calc(var(--header-h) + 28px); }
.faq-side { display: grid; gap: 18px; justify-items: start; }
.faq-visual { margin: 0; width: 100%; max-width: 400px; aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: #050607; box-shadow: 0 40px 90px -45px rgba(244,135,84,.45), 0 30px 60px -30px rgba(0,0,0,.9); }
.faq-visual img { width: 100%; height: 100%; object-fit: cover; }
.section--alt .faq-visual { background: #060708; }
.feature-card__top { display: flex; align-items: center; gap: 14px; }
.mega__feature .icon-3d { width: 64px; height: 64px; }
@media (max-width: 1060px) { .faq-visual { max-width: 320px; } }
@media (max-width: 860px) { .faq-aside { position: static; } .faq-visual { display: none; } .faq-side { margin-bottom: 8px; } }

/* ---------- Reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease) var(--d, 0ms), transform .6s var(--ease) var(--d, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav__link { padding: 0 9px; font-size: .9rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .roadmap { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1060px) {
  .nav { display: none; }
  .burger { display: block; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 720px; width: 100%; }
  .page-hero--split .page-hero__inner, .page-hero--split .page-hero__inner:has(.hero-photo) { grid-template-columns: 1fr; align-items: start; }
  .engines, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gsys__track { grid-template-columns: repeat(7, minmax(88px, 1fr)); overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .gsys__track::-webkit-scrollbar { display: none; }
  .gsys__line { display: none; }
  .gsys__panel { grid-template-columns: 1fr; }
  .dash__grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .article__layout { grid-template-columns: minmax(0, 720px); }
  .article__aside { position: static; order: 2; }
  .toc { display: none; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .split, .split--faq, .split--audit, .split--workflow, .split--booking, .split--contact { grid-template-columns: 1fr; }
  .split__sticky { position: static; }
  .versus, .proof, .ba, .split-duties, .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 320px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .post-card--large { grid-template-columns: 1fr; }
  .post-card--large .post-card__media { aspect-ratio: 16 / 9; }
  .date-grid { grid-template-columns: repeat(4, 1fr); }
  .outcome-table__head, .outcome-table__row { grid-template-columns: 1fr; gap: 4px; }
  .outcome-table__head span:first-child { display: none; }
  .hide-sm { display: none !important; }
  .wa-float { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(0,0,0,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); transform: translateY(0); transition: transform .3s var(--ease);
  }
  .mobile-bar.is-hidden { transform: translateY(110%); }
  .mobile-bar__btn { display: flex; align-items: center; justify-content: center; gap: 8px; height: 50px; border-radius: 14px; font-weight: 700; }
  .mobile-bar__btn .i { width: 20px; height: 20px; }
  .mobile-bar__btn--wa { background: var(--wa); color: #04210F; }
  .mobile-bar__btn--call { background: var(--orange); color: #0B0B0B; }
  body:not(.no-mobile-bar) .site-footer { padding-bottom: 96px; }
  .consent { left: 12px; right: 12px; bottom: 84px; width: auto; }
}
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .brand img { width: 124px; }
  .engines, .ind-grid, .card-grid--4 { grid-template-columns: 1fr; }
  .steps, .timeline, .roadmap { grid-template-columns: 1fr 1fr; }
  .opts--grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .calc__compare { grid-template-columns: 1fr; }
  .kpis { gap: 8px; }
  .kpi { padding: 12px; }
  .jrow { grid-template-columns: 92px 1fr 62px; gap: 8px; }
  .jleak { padding-left: 100px; }
  .result__top, .audit__teaser { flex-direction: column; align-items: flex-start; }
  .pillar { grid-template-columns: 92px 1fr 44px; }
  .btn-row .btn--lg { width: 100%; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .cs-funnel { grid-template-columns: repeat(2, 1fr); }
  .mini-system__node { grid-template-columns: auto 1fr; }
  .mini-system__node .tag { grid-column: 2; grid-row: auto; justify-self: start; margin-top: 6px; }
  .big-step { grid-template-columns: 52px 1fr; gap: 12px; }
  .big-step__num { width: 42px; height: 48px; font-size: .9rem; }
  .big-step__rail::after { top: 50px; }
  .founder--compact { grid-template-columns: 1fr; }
  .founder--compact .founder__photo { max-width: 120px; }
}
/* ---------- Tablet & mobile refinements ---------- */
@media (max-width: 1060px) {
  .page-hero__aside { max-width: 640px; width: 100%; }
  .svc-links { grid-template-columns: repeat(2, 1fr); }
}
/* Tablet portrait: two columns instead of one long list */
@media (min-width: 601px) and (max-width: 860px) {
  .card-grid--2, .card-grid--3, .proof, .split-duties, .ba { grid-template-columns: repeat(2, 1fr); }
  .engines, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .split--local .areas { max-width: 640px; }
}
@media (max-width: 860px) {
  .section { padding-block: 64px; }
  .section--tight { padding-block: 40px; }
  .section-head { margin-bottom: 32px; }
  .page-hero { padding: 32px 0 56px; }
  .cta-band { padding-block: 72px; }
  .footer-cols a { padding: 8px 0; }
  .cat-nav a { display: inline-flex; align-items: center; min-height: 40px; }
  .filters button { min-height: 38px; padding: 8px 14px; }
  .toggle__btn { padding: 8px 14px; }
  .pager a { width: 46px; height: 46px; }
  .crumbs { margin-bottom: 20px; }
  .crumbs a, .crumbs [aria-current] { display: inline-block; padding: 6px 0; }
}
@media (max-width: 600px) {
  .section { padding-block: 56px; }
  .svc-links, .areas { grid-template-columns: 1fr; }
  .lead, .hero__lead { font-size: 1.02rem; }
  .h1-kicker, .hero .h1-kicker { font-size: .85rem; margin-bottom: 14px; }
  .card { padding: 20px; }
  .ind-card--media .ind-card__body, .engine--media .engine__body { padding: 0 20px 22px; }
  .faq__item summary { padding: 16px 18px; font-size: .98rem; }
  .faq__a { padding: 0 18px 18px; }
  .gsys__panels { padding: 20px; }
  .kpi-card, .journey-card { padding: 20px; }
  .hero-photo { aspect-ratio: 4 / 3.4; }
  .hero-photo__card { left: 10px; right: 10px; bottom: 10px; padding: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .btn--lg { height: 52px; padding: 0 18px; font-size: .98rem; }
  .date-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Phones: buttons may wrap, and every tap target is at least ~40px tall */
@media (max-width: 600px) {
  .btn { white-space: normal; text-align: center; height: auto; min-height: 48px; padding-block: 10px; line-height: 1.25; }
  .btn--lg { min-height: 52px; }
  .btn--sm { min-height: 42px; }
  .footer-contact a { padding: 7px 0; }
  .footer-bottom nav { flex-wrap: wrap; gap: 4px 20px; }
  .footer-bottom nav a { display: inline-block; padding: 10px 0; }
  a.link-arrow { padding: 8px 0; }
  a.tag { padding: 7px 12px; }
}

/* Grid/flex children may shrink; long words (emails, URLs) wrap instead of widening the page */
.split > *, .card-grid > *, .contact-card > div, .footer-contact a, .footer-contact span { min-width: 0; }
.contact-card small, .footer-contact, .contact-list, .article__dek, .kpi-card__value { overflow-wrap: anywhere; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
