/* Frayor V59 - site court, lisible, premium. Voir /DESIGN.md. */
:root {
  --paper: #f4f1e8;
  --paper-2: #ebe5d7;
  --surface: #fbf8ef;
  --surface-2: #f7f0e2;
  --ink: #14180f;
  --ink-2: #293125;
  --muted: #64705f;
  --pine: #123a2e;
  --pine-2: #0b261e;
  --pine-3: #071a15;
  --pine-bright: #1c6b54;
  --mint: #4bd6b6;
  --ember: #c0531f;
  --ember-2: #d86532;
  --ember-soft: #f5dfd0;
  --line: #d8cfbb;
  --line-2: #c9bea7;
  --ok: #1c6b54;
  --danger: #a73824;
  --white: #fffdf8;
  --shadow-1: 0 14px 34px rgba(31, 38, 25, .10);
  --shadow-2: 0 22px 60px rgba(31, 38, 25, .16);
  --shadow-3: 0 34px 90px rgba(10, 30, 24, .28);
  --r-xs: 7px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --header-h: 78px;
  --wrap: 1180px;
  --ease: cubic-bezier(.32, .72, 0, 1);
  color-scheme: light;
}

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

html {
  min-width: 320px;
  scroll-padding-top: calc(var(--header-h) + 18px);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(18, 58, 46, .08), transparent 360px),
    radial-gradient(circle at 6% 4%, rgba(192, 83, 31, .12), transparent 260px),
    var(--paper);
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.dark {
  color: #f5f1e7;
  background:
    linear-gradient(180deg, rgba(75, 214, 182, .07), transparent 420px),
    radial-gradient(circle at 12% 2%, rgba(192, 83, 31, .16), transparent 300px),
    var(--pine-3);
  --paper: #071a15;
  --paper-2: #0b241d;
  --surface: #102c24;
  --surface-2: #12352b;
  --ink: #f8f4ea;
  --ink-2: #e4ded0;
  --muted: #b8c0b4;
  --line: rgba(232, 224, 207, .16);
  --line-2: rgba(232, 224, 207, .25);
  color-scheme: dark;
}

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

img { height: auto; }

a { color: inherit; text-decoration: none; }

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(75, 214, 182, .9);
  outline-offset: 3px;
}

::selection {
  background: rgba(192, 83, 31, .22);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
  color: var(--surface);
  background: var(--pine);
  box-shadow: var(--shadow-2);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 18px);
  padding: clamp(58px, 8vw, 110px) 0;
}

.section + .section { border-top: 1px solid rgba(18, 58, 46, .09); }
body.dark .section + .section { border-top-color: rgba(245, 241, 231, .08); }

.ico {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: .75rem max(24px, calc((100vw - var(--wrap)) / 2));
  border-bottom: 1px solid rgba(18, 58, 46, .12);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}

body.dark .site-header {
  border-bottom-color: rgba(245, 241, 231, .10);
  background: rgba(7, 26, 21, .9);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff9ec;
  background: linear-gradient(135deg, var(--pine), #0d5d4b);
  box-shadow: 0 14px 28px rgba(18, 58, 46, .20);
  font-weight: 800;
  font-size: 1.35rem;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy b {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 650;
}

.brand-copy small {
  margin-top: .18rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(.45rem, 1vw, 1.1rem);
}

.nav a {
  position: relative;
  padding: .55rem .35rem;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-weight: 750;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: .35rem;
  right: .35rem;
  bottom: .28rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ember);
  transition: transform .22s var(--ease);
}

.nav a:hover,
.nav a.is-active { color: var(--ink); }

.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

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

.theme-toggle,
.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.theme-toggle {
  position: relative;
}

.theme-toggle .ico-sun { display: none; }
body.dark .theme-toggle .ico-moon { display: none; }
body.dark .theme-toggle .ico-sun { display: block; }

.nav-toggle { display: none; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: .82rem 1.08rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #11180f;
  background: linear-gradient(135deg, #50dfbd, #33c6a7);
  box-shadow: 0 16px 34px rgba(28, 107, 84, .22);
}

.btn--primary:hover {
  box-shadow: 0 22px 44px rgba(28, 107, 84, .28);
}

.btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(28, 107, 84, .22);
  border-radius: 999px;
  padding: .35rem .62rem;
  color: var(--pine-bright);
  background: rgba(75, 214, 182, .10);
  font-weight: 850;
  font-size: .86rem;
  line-height: 1.1;
}

body.dark .eyebrow {
  color: #63e1c5;
  background: rgba(75, 214, 182, .12);
  border-color: rgba(75, 214, 182, .25);
}

h1,
h2,
h3,
p { margin: 0; }

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: .98;
  text-wrap: balance;
}

h1 {
  margin-top: 1.05rem;
  max-width: 12.8ch;
  font-size: clamp(3.05rem, 5.8vw, 5.35rem);
  font-weight: 520;
}

h2 {
  margin-top: .9rem;
  max-width: 12.4ch;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 500;
}

h3 {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  line-height: 1.12;
}

.lead {
  margin-top: 1rem;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.62;
}

.section-head {
  max-width: 780px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow,
.section-head--center h2,
.section-head--center .lead {
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  padding-top: clamp(44px, 7vw, 86px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.hero-copy { min-width: 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.7rem;
}

.hero-proof {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  max-width: 640px;
}

.hero-proof span {
  min-width: 0;
  padding: .72rem .78rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--muted);
  background: rgba(255, 253, 248, .46);
  font-size: .9rem;
}

body.dark .hero-proof span { background: rgba(255, 255, 255, .04); }

.hero-proof b {
  display: block;
  color: var(--ink);
  font-size: .95rem;
}

.hero-visual {
  min-width: 0;
}

.hero-mockup {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1.18 / .86;
  min-height: 430px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--pine);
  box-shadow: var(--shadow-3);
}

.hero-mockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 34%, rgba(7, 26, 21, .12));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.problem-grid {
  display: grid;
  gap: .85rem;
}

.problem-grid article,
.deliverable,
.price-card,
.visibility-panel,
.demo-panel,
.audit-result,
.form,
.offer-fastlane,
.faq-block details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-1);
}

.problem-grid article {
  display: grid;
  gap: .35rem;
  padding: 1.2rem;
}

.problem-grid span,
.deliverable span,
.price-card > span,
.offer-fastlane span,
.chat-reco span,
.demo-head span,
.search-card span,
.audit-topline span,
.audit-offer span {
  color: var(--pine-bright);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.dark .problem-grid span,
body.dark .deliverable span,
body.dark .price-card > span,
body.dark .offer-fastlane span,
body.dark .chat-reco span,
body.dark .demo-head span,
body.dark .search-card span,
body.dark .audit-topline span,
body.dark .audit-offer span {
  color: #73e8cf;
}

.problem-grid p,
.deliverable p,
.price-card li,
.offer-fastlane p,
.visibility-panel p,
.demo-panel p,
.faq-block p,
.contact-steps,
.site-footer p {
  color: var(--muted);
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.audit-controls,
.need-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .62rem;
  margin-top: 1.25rem;
}

.audit-select-mobile {
  display: none;
  margin-top: 1rem;
}

.audit-pill,
.need-card,
.demo-actions button,
.chat-choices button {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}

.audit-pill {
  min-height: 44px;
  padding: .68rem .85rem;
  font-weight: 850;
}

.audit-pill:hover,
.need-card:hover,
.demo-actions button:hover,
.chat-choices button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--pine-bright) 45%, var(--line));
}

.audit-pill.is-active,
.need-card.is-active {
  color: #071a15;
  border-color: transparent;
  background: #58dfc1;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.need-card {
  min-width: 0;
  padding: .9rem;
  text-align: left;
}

.need-card span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
}

.need-card b {
  display: block;
  margin-top: .15rem;
  line-height: 1.1;
}

.audit-result {
  padding: 1rem;
  overflow: hidden;
}

.audit-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .85rem;
}

.audit-topline b {
  color: var(--muted);
  font-size: .92rem;
  text-align: right;
}

.audit-screen {
  --blueprint-img: url("images/site-artisan-btp-premium.webp?v=61");
  min-height: 330px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-md);
  color: #fff8ec;
  background-image:
    linear-gradient(180deg, rgba(7, 26, 21, .15), rgba(7, 26, 21, .84)),
    var(--blueprint-img);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -90px 110px rgba(7, 26, 21, .64);
}

.audit-browser {
  height: 42px;
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .85rem;
  background: rgba(255, 248, 236, .86);
  color: #384033;
}

.audit-browser span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d8c8a8;
}

.audit-browser b {
  margin-left: .25rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .82rem;
}

.audit-hero-card {
  width: min(430px, calc(100% - 28px));
  margin: 0 14px 14px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-md);
  background: rgba(7, 26, 21, .82);
  backdrop-filter: blur(10px);
}

.audit-hero-card span {
  color: #8df3dc;
  font-weight: 850;
}

.audit-hero-card h3 {
  margin-top: .35rem;
  color: #fff8ec;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.42rem, 2.4vw, 2rem);
}

.audit-hero-card button {
  margin-top: .9rem;
  border: 0;
  border-radius: var(--r-sm);
  padding: .72rem .95rem;
  color: #fff8ec;
  background: var(--ember);
  font-weight: 850;
}

.audit-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: .85rem;
}

.audit-lists > div,
.audit-offer {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .95rem;
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
}

.audit-lists h3 {
  margin-bottom: .45rem;
  font-size: 1rem;
}

.audit-lists ul,
.price-card ul,
.chat-reco ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-lists li,
.price-card li,
.chat-reco li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.35;
}

.audit-lists li + li,
.price-card li + li,
.chat-reco li + li { margin-top: .46rem; }

.audit-lists li::before,
.price-card li::before,
.chat-reco li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pine-bright);
}

.audit-offer {
  margin-top: .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.audit-offer b {
  font-size: 1.2rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 2rem;
}

.deliverable {
  padding: 1.15rem;
}

.deliverable h3 { margin-top: .75rem; }
.deliverable p { margin-top: .55rem; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.case-dots {
  display: none;
}

.case-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.case-tile:hover,
.case-tile.is-active {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--pine-bright) 38%, var(--line));
  box-shadow: var(--shadow-2);
}

.case-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #e9e0cf;
}

body.dark .case-tile img { background: #0c241d; }

.case-tile div {
  padding: 1rem;
}

.case-tile span {
  display: inline-flex;
  border: 1px solid rgba(28, 107, 84, .24);
  border-radius: 999px;
  padding: .28rem .5rem;
  color: var(--pine-bright);
  background: rgba(75, 214, 182, .10);
  font-weight: 850;
  font-size: .82rem;
}

.case-tile h3 {
  margin-top: .65rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.case-tile p {
  margin-top: .45rem;
  color: var(--muted);
}

.visibility-grid,
.assistant-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.visibility-panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.search-card {
  padding: 1.1rem;
  border-radius: var(--r-md);
  color: #fff8ec;
  background: linear-gradient(135deg, var(--pine), var(--pine-2));
}

.search-card b {
  display: block;
  margin-top: .45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.signal-list {
  display: grid;
  gap: .65rem;
}

.signal-list span {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .78rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  font-weight: 750;
}

.signal-list i {
  width: 10px;
  height: 10px;
  margin-top: .42rem;
  border-radius: 999px;
  background: var(--ember);
}

.demo-panel {
  overflow: hidden;
}

.demo-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: #fff8ec;
  background: var(--pine);
}

.demo-head span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #8df3dc;
}

.demo-head i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8df3dc;
}

.demo-thread {
  display: grid;
  gap: .8rem;
  padding: 1rem;
}

.msg {
  width: fit-content;
  max-width: 86%;
  padding: .85rem 1rem;
  border-radius: 16px;
}

.msg.user {
  justify-self: end;
  color: #fff8ec;
  background: var(--ember);
}

.msg.bot {
  justify-self: start;
  color: var(--ink);
  background: var(--paper-2);
}

.demo-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
  padding: 0 1rem 1rem;
}

.demo-actions button {
  min-height: 46px;
  padding: .7rem;
  font-weight: 850;
}

.offer-fastlane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(18, 58, 46, .95), rgba(9, 35, 27, .98));
  color: #fff8ec;
  box-shadow: var(--shadow-3);
}

.offer-fastlane h3 {
  margin-top: .35rem;
  color: #fff8ec;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}

.offer-fastlane p { margin-top: .35rem; color: rgba(255, 248, 236, .72); }

.fastlane-price {
  display: grid;
  min-width: 160px;
  padding: .95rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
}

.fastlane-price b {
  font-size: 1.6rem;
  line-height: 1;
}

.fastlane-price span {
  color: rgba(255, 248, 236, .68);
  font-family: inherit;
  text-transform: none;
}

.fastlane-price strong {
  margin-top: .3rem;
  color: #8df3dc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-card {
  display: grid;
  gap: .95rem;
  align-content: start;
  padding: 1.15rem;
}

.price-card--featured {
  border-color: rgba(192, 83, 31, .55);
  box-shadow: 0 24px 60px rgba(192, 83, 31, .14);
}

.price-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: .9;
}

.monthly {
  width: fit-content;
  border-radius: 999px;
  padding: .34rem .6rem;
  color: #fff8ec;
  background: var(--ember);
  font-weight: 850;
}

.price-card .btn {
  margin-top: .4rem;
}

.offer-note {
  max-width: 78ch;
  margin: 1rem auto 0;
  color: var(--muted);
  text-align: center;
}

.contact {
  padding-bottom: clamp(76px, 10vw, 130px);
}

.contact-grid {
  align-items: start;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.4rem;
}

.contact-steps span {
  padding: .8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.contact-steps b {
  display: block;
  color: var(--ember);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .82rem;
}

.faq-block {
  display: grid;
  gap: .65rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.contact-grid > .faq-block {
  grid-column: 1 / -1;
  margin-top: 0;
}

.faq-block .eyebrow { margin-bottom: .15rem; }

.faq-block details {
  box-shadow: none;
  background: color-mix(in srgb, var(--surface-2) 80%, transparent);
}

.faq-block summary {
  padding: .88rem 1rem;
  font-weight: 850;
  cursor: pointer;
}

.faq-block p {
  padding: 0 1rem 1rem;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  padding: 1.1rem;
}

.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field {
  display: grid;
  gap: .38rem;
  min-width: 0;
}

.field--full,
.field--check,
.form-status {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--ink-2);
  font-weight: 850;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: .9rem .95rem;
  color: var(--ink);
  background: var(--surface);
}

select {
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
  font-weight: 800;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--pine-bright);
  outline: 3px solid rgba(75, 214, 182, .18);
}

.select-wrap {
  position: relative;
}

.select-wrap .ico {
  position: absolute;
  right: .95rem;
  top: 50%;
  width: 1.15rem;
  height: 1.15rem;
  transform: translateY(-50%);
  color: var(--pine-bright);
  pointer-events: none;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.choice-card {
  position: relative;
  min-width: 0;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .65rem;
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  text-align: center;
  font-weight: 850;
}

.choice-card input:checked + span {
  border-color: transparent;
  color: #071a15;
  background: #58dfc1;
}

.choice-card input:focus-visible + span {
  outline: 3px solid rgba(75, 214, 182, .65);
  outline-offset: 2px;
}

.field--check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--muted);
}

.field--check input {
  width: 20px;
  height: 20px;
  margin-top: .12rem;
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.25em;
  color: var(--danger);
  font-weight: 700;
}

.form-status.ok { color: var(--ok); }
body.dark .form-status.ok { color: #8df3dc; }

.site-footer {
  padding: 48px 0 26px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(140px, .7fr));
  gap: 1.2rem;
  align-items: start;
}

.site-footer p {
  max-width: 38ch;
  margin-top: .8rem;
}

.footer-col {
  display: grid;
  gap: .5rem;
}

.footer-col h3 {
  font-size: .95rem;
}

.footer-col a {
  color: var(--muted);
  font-weight: 700;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.chat-system {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  pointer-events: none;
}

.chat-panel {
  width: min(420px, calc(100vw - 32px));
  max-height: min(690px, calc(100svh - 112px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-3);
  pointer-events: auto;
  transform: translateY(14px) scale(.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}

.chat-system.is-open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: #fff8ec;
  background: var(--pine);
}

.chat-head b {
  display: block;
  font-size: 1.05rem;
}

.chat-head span {
  color: rgba(255, 248, 236, .68);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .78rem;
}

.chat-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-sm);
  color: #fff8ec;
  background: rgba(255, 255, 255, .08);
}

.chat-body {
  min-height: 0;
  overflow: auto;
  padding: 1rem;
}

.chat-log {
  display: grid;
  gap: .72rem;
}

.chat-msg {
  max-width: 92%;
  border-radius: 16px;
  padding: .82rem .95rem;
}

.chat-msg.bot {
  color: var(--ink);
  background: var(--paper-2);
}

.chat-msg.user {
  justify-self: end;
  color: #fff8ec;
  background: var(--ember);
}

.chat-reco {
  display: grid;
  gap: .55rem;
  margin-top: .9rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--surface-2) 84%, transparent);
}

.chat-reco[hidden] { display: none; }

.chat-reco b {
  font-size: 1.2rem;
}

.chat-actions {
  display: grid;
  gap: .7rem;
  padding: 0 1rem 1rem;
}

.chat-choices {
  display: grid;
  gap: .55rem;
}

.chat-choices button {
  width: 100%;
  min-height: 48px;
  padding: .75rem;
  font-weight: 850;
  text-align: left;
}

.chat-cta {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  color: #fff8ec;
  background: var(--ember);
  font-weight: 850;
}

.chat-launcher {
  min-width: 60px;
  min-height: 60px;
  margin-top: .75rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  border-radius: 999px;
  color: #fff8ec;
  background: var(--pine);
  box-shadow: var(--shadow-3);
  pointer-events: auto;
}

.chat-launcher span {
  display: none;
  font-weight: 850;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle { display: grid; }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    left: 24px;
    right: 24px;
    display: none;
    z-index: 55;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
    box-shadow: var(--shadow-3);
  }

  body.nav-open .nav {
    display: grid;
    gap: .25rem;
  }

  .nav a {
    padding: .9rem 1rem;
    border-radius: var(--r-sm);
    background: color-mix(in srgb, var(--surface-2) 76%, transparent);
  }

  .nav a::after { display: none; }

  .hero-grid,
  .audit-grid,
  .visibility-grid,
  .assistant-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  h1 { max-width: 12ch; }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-mockup {
    min-height: 380px;
  }

  .deliverables,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-tile {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
    align-items: stretch;
  }

  .case-tile img {
    height: 100%;
    min-height: 260px;
  }

  .offer-fastlane {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }

  body {
    background:
      linear-gradient(180deg, rgba(18, 58, 46, .08), transparent 300px),
      var(--paper);
  }

  .wrap {
    width: min(100% - 32px, var(--wrap));
  }

  .section { padding: 26px 0; }

  .hero { padding-top: 32px; }

  .site-header {
    min-height: var(--header-h);
    padding: .65rem 16px;
    gap: .75rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy small {
    display: none;
  }

  .theme-toggle,
  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .header-cta { display: none; }

  .nav {
    top: calc(var(--header-h) + 8px);
    left: 12px;
    right: 12px;
    border-radius: var(--r-md);
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2.58rem, 11.4vw, 3.55rem);
    line-height: .96;
  }

  h2 {
    max-width: 13.5ch;
    font-size: clamp(2.05rem, 9.6vw, 2.92rem);
    line-height: .98;
  }

  .lead {
    font-size: .98rem;
    line-height: 1.42;
  }

  .section-head .lead,
  .hero-copy .lead {
    margin-top: .65rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: .55rem;
    margin-top: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    margin-top: .82rem;
  }

  .hero-proof span {
    padding: .55rem;
    font-size: .78rem;
    line-height: 1.2;
  }

  .hero-proof b { font-size: .84rem; }

  .hero-mockup {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: min(300px, calc((100vw - 32px) * .9));
    border-radius: var(--r-md);
    aspect-ratio: auto;
  }

  .problem-grid article {
    padding: .78rem;
  }

  .need-grid,
  .demo-actions,
  .contact-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audit-lists,
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-select-mobile {
    display: grid;
  }

  .audit-controls {
    display: none;
  }

  .choice-field,
  .choice-grid {
    overflow: clip;
  }

  .audit-lists,
  .audit-lists *,
  .choice-card,
  .choice-card span {
    min-width: 0;
    overflow: clip;
  }

  .audit-lists li,
  .price-card li,
  .deliverable p,
  .case-tile p,
  .choice-card span {
    overflow-wrap: anywhere;
  }

  .form { grid-template-columns: 1fr; }

  .audit-pill,
  .need-card,
  .demo-actions button {
    min-height: 42px;
    padding: .58rem .64rem;
    font-size: .86rem;
  }

  .audit-topline,
  .audit-offer {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-topline b { text-align: left; }

  .audit-screen {
    min-height: 194px;
  }

  .audit-hero-card {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    padding: .78rem;
  }

  .audit-hero-card h3 {
    font-size: 1.28rem;
  }

  .audit-hero-card button {
    margin-top: .62rem;
    padding: .62rem .78rem;
  }

  .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-top: .95rem;
  }

  .case-grid,
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .72rem;
    margin-top: 1.2rem;
  }

  .case-grid {
    position: relative;
  }

  .case-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: .82rem;
  }

  .case-dot {
    width: 38px;
    height: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-2) 84%, transparent);
  }

  .case-dot.is-active {
    border-color: transparent;
    background: var(--mint);
  }

  .offer-fastlane { margin-top: 1.2rem; }

  .case-tile {
    grid-area: 1 / 1;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .28s var(--ease), visibility .28s;
  }

  .case-tile.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .case-tile img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .case-tile div,
  .price-card,
  .deliverable,
  .form,
  .visibility-panel,
  .audit-result,
  .demo-thread,
  .faq-block {
    padding: .9rem;
  }

  .case-tile h3 {
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .case-tile p {
    font-size: .86rem;
    line-height: 1.28;
  }

  .price-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .55rem .72rem;
    align-items: start;
  }

  .price-card > span,
  .price-card h3 {
    grid-column: 1;
  }

  .price-card h3 {
    font-size: 1.72rem;
    line-height: .95;
  }

  .price-card .monthly {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    max-width: 118px;
    padding: .3rem .5rem;
    font-size: .78rem;
    line-height: 1.16;
    text-align: center;
  }

  .price-card ul {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .32rem .56rem;
    font-size: .82rem;
  }

  .price-card li {
    margin-top: 0;
    line-height: 1.25;
  }

  .price-card .btn {
    grid-column: 1 / -1;
    min-height: 42px;
    margin-top: .1rem;
    padding: .62rem .75rem;
  }

  .form {
    gap: .58rem;
  }

  .field { gap: .28rem; }

  input,
  textarea,
  select {
    padding: .68rem .76rem;
  }

  select {
    min-height: 48px;
    padding-right: 2.7rem;
  }

  textarea { min-height: 92px; }

  .choice-card span {
    min-height: 38px;
    padding: .46rem;
    font-size: .86rem;
    line-height: 1.12;
  }

  .offer-fastlane {
    grid-template-columns: 1fr auto;
    gap: .72rem;
    padding: .85rem;
  }

  .offer-fastlane > div:first-child {
    grid-column: 1 / -1;
  }

  .offer-fastlane h3 {
    font-size: 1.48rem;
    line-height: 1;
  }

  .fastlane-price {
    min-width: 0;
    padding: .72rem;
  }

  .fastlane-price b {
    font-size: 1.32rem;
  }

  .offer-fastlane .btn {
    align-self: stretch;
    min-height: 54px;
    padding-inline: .8rem;
  }

  .contact {
    padding-bottom: 56px;
  }

  .contact-steps {
    gap: .45rem;
  }

  .contact-steps span {
    padding: .62rem;
    font-size: .82rem;
    line-height: 1.2;
  }

  .faq-block {
    gap: .45rem;
    padding: .8rem;
  }

  .faq-block summary {
    padding: .68rem .78rem;
    line-height: 1.18;
  }

  .faq-block p {
    padding: 0 .78rem .78rem;
  }

  .msg {
    max-width: 96%;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .chat-system {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    justify-items: end;
  }

  .chat-panel {
    width: 100%;
    max-height: min(620px, calc(100svh - 96px));
    border-radius: 18px;
  }

  .chat-body {
    padding: .9rem;
  }

  .chat-actions {
    padding: 0 .9rem .9rem;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .case-tile:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }

  .js .case-tile.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}

@media (max-width: 390px) {
  .wrap { width: min(100% - 24px, var(--wrap)); }

  .section { padding: 24px 0; }

  h1 { font-size: clamp(2.38rem, 11vw, 3.25rem); }
  h2 { font-size: clamp(1.92rem, 9.3vw, 2.58rem); }

  .btn {
    padding-inline: .85rem;
  }

  .hero-mockup {
    height: min(272px, calc((100vw - 24px) * .88));
    min-height: 0;
  }


  .case-tile {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .chat-head {
    padding: .85rem;
  }

  .chat-close {
    width: 42px;
    height: 42px;
  }
}

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