/* ==========================================================================
   Paradigm Labs — paradigmlabs.tech
   Brand: Charcoal #252C32 · Warm ivory #F4F1E9 · Copper #B85F3D · Mist #E7E2D8 · Slate #636A6F
   Type:  Manrope 600 (headings) · Source Sans 3 400/600 (body)
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #252C32;
  --charcoal-2: #2E363D;
  --ivory: #F4F1E9;
  --copper: #B85F3D;
  --copper-dark: #9E4F31;
  --mist: #E7E2D8;
  --mist-2: #DDD7CA;
  --slate: #636A6F;
  --line: #DCD6CA;
  --white: #FBFAF6;

  --font-head: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 76px;
  --section-y: clamp(72px, 10vw, 128px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 900px) { body { font-size: 18px; } }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0; color: var(--charcoal); text-wrap: balance; }
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 21px; line-height: 1.3; letter-spacing: -0.01em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--copper); color: var(--ivory); }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 600px) { :root { --gutter: 16px; } }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--charcoal); color: var(--ivory); padding: 10px 16px; border-radius: var(--radius-sm);
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--copper); flex: none; }
.eyebrow-light { color: #B9BCBE; }

.num, .step-num {
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--copper);
  letter-spacing: .02em; font-variant-numeric: tabular-nums;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  font-family: var(--font-body); font-size: 17px; font-weight: 600; line-height: 1;
  border-radius: var(--radius-sm); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-dark { background: var(--charcoal); color: var(--ivory); }
.btn-dark:hover { background: #151A1E; }
.btn-dark::after {
  content: ""; width: 7px; height: 7px; background: var(--copper); flex: none;
  transition: transform .25s var(--ease);
}
.btn-dark:hover::after { transform: translateX(3px); }
.btn-ghost { color: var(--charcoal); border-color: var(--charcoal); background: transparent; }
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: 16px; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 233, .88);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; flex: none; }
.brand img { width: 200px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav ul { display: flex; gap: 32px; }
.site-nav ul a {
  text-decoration: none; font-size: 17px; color: var(--charcoal);
  position: relative; padding: 6px 0;
}
.site-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.site-nav ul a:hover::after, .site-nav ul a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--charcoal);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .brand img { width: 172px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 20px;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    box-shadow: 0 18px 30px -18px rgba(37, 44, 50, .25);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .2s, transform .25s var(--ease), visibility 0s linear .25s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .2s, transform .25s var(--ease); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 14px 0; font-size: 19px; border-bottom: 1px solid var(--line); }
  .site-nav ul a::after { display: none; }
  .site-nav .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero-copy h1 { max-width: 14ch; }
.lead { font-size: clamp(19px, 1.6vw, 21px); line-height: 1.5; color: var(--charcoal); max-width: 34em; margin: 26px 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-tags li { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.hero-tags li + li::before { content: "/"; margin-right: 22px; color: var(--mist-2); font-weight: 400; }

/* Illustrative dashboard */
.hero-visual { position: relative; padding: 0 0 40px 0; }
.mock {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 30px 60px -30px rgba(37, 44, 50, .35), 0 12px 24px -16px rgba(37, 44, 50, .18);
  overflow: hidden;
  position: relative;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 36px -40px -10px 40px; background: var(--mist);
  border-radius: calc(var(--radius) + 6px); z-index: -1;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--mist); background: var(--ivory); }
.mock-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mist-2); }
.mock-url {
  margin-left: 14px; font-size: 12px; color: var(--slate); background: var(--white);
  border: 1px solid var(--mist); border-radius: 999px; padding: 3px 12px; letter-spacing: .01em;
}
.mock-body { display: grid; grid-template-columns: 54px 1fr; min-height: 340px; }
.mock-side { background: var(--charcoal); padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mock-side img { width: 18px; margin-bottom: 10px; }
.mock-side .line { width: 22px; height: 4px; border-radius: 3px; background: #48525A; }
.mock-side .line.active { background: var(--copper); }
.mock-side .line.short { width: 14px; }
.mock-main { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 16px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; }
.mock-title { font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.mock-pill { font-size: 12px; color: var(--slate); border: 1px solid var(--mist-2); border-radius: 999px; padding: 3px 10px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { background: var(--ivory); border-radius: var(--radius-sm); padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.kpi-label { font-size: 11.5px; color: var(--slate); line-height: 1.2; }
.kpi-value { font-family: var(--font-head); font-weight: 600; font-size: 22px; letter-spacing: -.02em; }
.mock-chart {
  height: 112px; display: flex; align-items: flex-end; gap: 9px; padding: 12px 12px 0;
  border-bottom: 1px solid var(--mist-2);
  background: repeating-linear-gradient(to top, transparent 0 27px, var(--mist) 27px 28px);
}
.mock-chart span {
  flex: 1; height: var(--h); background: var(--charcoal); border-radius: 3px 3px 0 0; opacity: .88;
  transform-origin: bottom;
}
.mock-chart span.hi { background: var(--copper); opacity: 1; }
.mock-rows { display: flex; flex-direction: column; gap: 10px; }
.mock-rows .row { display: flex; align-items: center; gap: 10px; }
.mock-rows .status { width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--slate); }
.mock-rows .status.warn { background: var(--copper); }
.mock-rows .bar { height: 7px; border-radius: 4px; background: var(--mist); }
.mock-rows .bar.w70 { width: 70%; } .mock-rows .bar.w55 { width: 55%; } .mock-rows .bar.w62 { width: 62%; }
.mock-rows .bar.w20 { width: 16%; margin-left: auto; background: var(--mist-2); }

.mock-ai {
  position: absolute; left: -28px; bottom: 0; width: min(300px, 78%);
  background: var(--charcoal); color: var(--ivory); border-radius: 12px; padding: 16px 18px;
  box-shadow: 0 24px 40px -20px rgba(37, 44, 50, .55);
}
.mock-ai-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #C9C6BE; margin-bottom: 6px; }
.mock-ai .spark { width: 8px; height: 8px; background: var(--copper); transform: rotate(45deg); }
.mock-ai p { font-size: 15px; line-height: 1.45; margin: 0; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 600px; margin: 0 auto; width: 100%; padding-left: 20px; }
  .mock-ai { left: 0; }
}
@media (max-width: 520px) {
  .mock-body { grid-template-columns: 1fr; min-height: 0; }
  .mock-side { display: none; }
  .mock-main { padding: 16px; }
  .kpi-value { font-size: 19px; }
  .hero-visual { padding-left: 0; padding-bottom: 80px; }
  .hero-visual::before { inset: 28px -16px 40px 24px; }
  .mock-ai { width: 88%; left: 12px; }
  .btn { width: 100%; }
  .hero-tags li + li::before { display: none; }
  .hero-tags { gap: 10px 20px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-intro { font-size: 19px; color: var(--slate); margin-top: 18px; max-width: 36em; }
.section-intro a { color: var(--charcoal); text-decoration-color: var(--copper); text-underline-offset: 3px; }

/* Familiar */
.familiar { background: var(--mist); }
.familiar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.familiar-grid li { border-top: 2px solid var(--charcoal); padding-top: 20px; }
.familiar-grid .num { display: block; margin-bottom: 12px; }
.familiar-grid p { font-family: var(--font-head); font-weight: 500; font-size: 19px; line-height: 1.4; letter-spacing: -.01em; }
.familiar-close { margin-top: clamp(40px, 5vw, 64px); font-size: clamp(20px, 2vw, 24px); line-height: 1.45; max-width: 32em; }
@media (max-width: 960px) { .familiar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (max-width: 560px) { .familiar-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px 30px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service::before {
  content: ""; position: absolute; left: 30px; top: 0; width: 36px; height: 4px; background: var(--copper);
  border-radius: 0 0 3px 3px; transition: width .35s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(37, 44, 50, .45); border-color: var(--mist-2); }
.service:hover::before { width: 64px; }
.service h3 { font-size: 23px; margin-top: 6px; }
.service-sub { color: var(--copper-dark); font-weight: 600; margin: 6px 0 14px; font-size: 17px; }
.service > p:not(.service-sub) { color: var(--charcoal); }
.service ul { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--mist); display: grid; gap: 8px; }
.service > p + ul { margin-top: 22px; }
.service li { position: relative; padding-left: 20px; font-size: 16px; color: var(--slate); }
.service li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 2px; background: var(--copper); }
@media (max-width: 1020px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } .service { padding: 28px 22px 24px; } .service::before { left: 22px; } }

/* Approach (dark) */
.approach { background: var(--charcoal); color: var(--ivory); position: relative; overflow: hidden; }
.approach h2, .approach h3 { color: var(--ivory); }
.approach-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 104px); align-items: start; }
.approach-head { position: sticky; top: calc(var(--header-h) + 40px); }
.approach-head p:not(.eyebrow) { color: #C9C6BE; font-size: 19px; margin-top: 22px; max-width: 30em; }
.approach-points { display: grid; gap: 0; }
.approach-points li { padding: 28px 0; border-top: 1px solid #3A434B; display: grid; grid-template-columns: 14px 1fr; column-gap: 22px; }
.approach-points li:last-child { border-bottom: 1px solid #3A434B; }
.approach-points li::before { content: ""; width: 4px; height: 100%; min-height: 48px; background: var(--copper); border-radius: 2px; grid-row: span 2; }
.approach-points h3 { font-size: 22px; margin-bottom: 8px; }
.approach-points p { color: #B9BCBE; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; } .approach-head { position: static; } }

/* Principles */
.principles { padding-bottom: calc(var(--section-y) * .6); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--line); }
.principle { padding: 32px 28px 0 0; }
.principle h3 { font-size: 28px; margin: 12px 0 12px; }
.principle p { color: var(--charcoal); max-width: 22em; }
@media (max-width: 800px) { .principle-grid { grid-template-columns: 1fr; gap: 0; } .principle { padding: 28px 0; border-bottom: 1px solid var(--line); } }

/* Process */
.process { padding-top: calc(var(--section-y) * .6); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--mist); border-radius: var(--radius); padding: 28px 26px 30px; position: relative; }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ivory); margin-bottom: 22px; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: 16.5px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 49px; right: -20px; width: 20px; height: 2px; background: var(--copper); opacity: .6;
}
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, 1fr); } .step::after { display: none; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq { background: var(--mist); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-list { border-top: 1px solid var(--mist-2); }
.faq details { border-bottom: 1px solid var(--mist-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 19px; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 16px; height: 2px; background: var(--charcoal);
  transition: transform .25s var(--ease), background-color .2s;
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq details[open] summary::before { background: var(--copper); }
.faq details[open] summary::after { background: var(--copper); }
.faq summary:hover { color: #000; }
.faq details p { padding: 0 48px 24px 0; color: var(--charcoal); max-width: 42em; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } .faq .section-head { margin-bottom: 8px; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.contact-copy > p:not(.eyebrow) { font-size: 19px; margin-top: 22px; max-width: 28em; }
.contact-points { margin-top: 32px; display: grid; gap: 14px; }
.contact-points li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-points li::before { content: ""; width: 4px; height: 26px; background: var(--copper); border-radius: 2px; flex: none; }

.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 60px -44px rgba(37, 44, 50, .45);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin: 0 0 20px; min-width: 0; }
fieldset.field { border: 0; padding: 0; }
.field label, .field legend { font-size: 15px; font-weight: 600; color: var(--charcoal); padding: 0; }
.field legend { margin-bottom: 10px; }
.req { color: var(--copper); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--charcoal);
  background: var(--ivory); border: 1.5px solid var(--mist-2); border-radius: var(--radius-sm);
  padding: 13px 14px; transition: border-color .2s, background-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #8E9398; }
.field input:hover, .field textarea:hover { border-color: #CFC7B7; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--charcoal); background: var(--white); box-shadow: 0 0 0 3px rgba(184, 95, 61, .18); }
.field.has-error input, .field.has-error textarea { border-color: #A5402A; }
.field-error { font-size: 14px; color: #A5402A; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 16px;
  border: 1.5px solid var(--mist-2); border-radius: 999px; background: var(--ivory);
  font-size: 15.5px; font-weight: 600; transition: all .2s;
}
.chip span::before { content: ""; width: 7px; height: 7px; background: var(--mist-2); transition: background-color .2s; }
.chip:hover span { border-color: #CFC7B7; }
.chip input:checked + span { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.chip input:checked + span::before { background: var(--copper); }
.chip input:focus-visible + span { outline: 2px solid var(--copper); outline-offset: 2px; }

.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 14.5px; color: var(--slate); margin: 0; }
.form-note a { color: var(--slate); text-underline-offset: 2px; }
.form-status { margin: 18px 0 0; font-weight: 600; min-height: 1em; }
.form-status:empty { display: none; }
.form-status.is-success { color: #2F5D3A; background: #E4EBDD; padding: 14px 16px; border-radius: var(--radius-sm); }
.form-status.is-error { color: #8C3521; background: #F3E1D8; padding: 14px 16px; border-radius: var(--radius-sm); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #C9C6BE; padding: 64px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand img { width: 200px; margin-bottom: 20px; }
.footer-brand p { font-size: 16px; line-height: 1.6; }
.footer-brand span { color: var(--ivory); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-nav a, .footer-legal a { color: #C9C6BE; text-decoration: none; font-size: 16px; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--ivory); text-decoration: underline; text-decoration-color: var(--copper); text-underline-offset: 4px; }
.footer-legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 14.5px; color: #9AA0A5; position: relative; }
.footer-legal::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: #3A434B; }
.footer-legal p { margin: 0; }

/* ---------- Simple pages (privacy, thanks, 404) ---------- */
.page { padding: clamp(56px, 8vw, 104px) 0 var(--section-y); min-height: 60vh; }
.page .container { max-width: 800px; }
.page h1 { margin-bottom: 24px; }
.page h2 { font-size: 24px; margin: 40px 0 12px; }
.page p, .page li { color: var(--charcoal); }
.page ul { list-style: none; display: grid; gap: 8px; margin-bottom: 1em; }
.page ul li { padding-left: 20px; position: relative; }
.page ul li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 2px; background: var(--copper); }
.page .meta { color: var(--slate); font-size: 15px; }
.page .btn { margin-top: 24px; }
.page-center { text-align: left; }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .hero-copy > * { animation: rise .8s var(--ease) both; }
.js .hero-copy > *:nth-child(2) { animation-delay: .06s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .12s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .18s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .24s; }
.js .hero-visual { animation: rise 1s var(--ease) .15s both; }
.js .mock-chart span { animation: grow .9s var(--ease) both; }
.js .mock-chart span:nth-child(2) { animation-delay: .45s; } .js .mock-chart span:nth-child(3) { animation-delay: .5s; }
.js .mock-chart span:nth-child(4) { animation-delay: .55s; } .js .mock-chart span:nth-child(5) { animation-delay: .6s; }
.js .mock-chart span:nth-child(6) { animation-delay: .65s; } .js .mock-chart span:nth-child(7) { animation-delay: .7s; }
.js .mock-chart span:nth-child(1) { animation-delay: .4s; }
.js .mock-ai { animation: rise .9s var(--ease) .8s both; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

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

@media print {
  .site-header, .hero-visual, .contact-form, .site-footer { display: none; }
  body { background: #fff; }
}
