:root {
  --ink: #10231f;
  --ink-2: #19332d;
  --ink-3: #275047;
  --paper: #f5f4ed;
  --paper-2: #ebeae1;
  --white: #fffefa;
  --line: #d8d8cf;
  --muted: #586862;
  --muted-light: #aebdb8;
  --accent: #ff6b3d;
  --accent-dark: #b63b1e;
  --lime: #c7f36b;
  --mint: #bcefd5;
  --sky: #b8dcff;
  --sand: #f4d99b;
  --shadow: 0 24px 70px rgba(16, 35, 31, .10);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
.media-square { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.media-square > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.4vw, 6.4rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: -80px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(16, 35, 31, .12);
  background: rgba(245, 244, 237, .9);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; text-decoration: none; }
.brand__mark { font-size: 1.5rem; font-weight: 900; letter-spacing: -.08em; line-height: 1; }
.brand__mark span { color: var(--accent); }
.brand__text { border-left: 1px solid var(--line); padding-left: 10px; font-size: .76rem; font-weight: 800; line-height: 1.05; letter-spacing: .08em; text-transform: uppercase; }
.brand__text small { color: var(--muted); font-size: .55rem; font-weight: 700; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 12px; border-radius: 8px; color: var(--muted); font-size: .86rem; font-weight: 750; text-decoration: none; }
.nav a:hover { background: var(--white); color: var(--ink); }
.nav a[aria-current="page"], .nav-solutions[data-current="true"] > summary { color: var(--ink); background: var(--white); }
.nav-solutions { position: relative; }
.nav-solutions > summary { min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 0 12px; border-radius: 8px; color: var(--muted); cursor: pointer; font-size: .86rem; font-weight: 750; list-style: none; }
.nav-solutions > summary::-webkit-details-marker { display: none; }
.nav-solutions > summary::after { content: "⌄"; font-size: .76rem; transition: transform .18s ease; }
.nav-solutions[open] > summary { color: var(--ink); background: var(--white); }
.nav-solutions[open] > summary::after { transform: rotate(180deg); }
.nav-solutions__panel { position: absolute; z-index: 120; top: calc(100% + 12px); left: 50%; width: min(620px, calc(100vw - 32px)); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); transform: translateX(-50%); }
.nav .nav-solution-link { min-width: 0; min-height: 58px; display: grid; align-content: center; gap: 2px; padding: 9px 12px; }
.nav-solution-link span { color: var(--ink); font-size: .78rem; font-weight: 850; }
.nav-solution-link small { overflow: hidden; color: var(--muted); font-size: .62rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.nav .nav-solutions__all { grid-column: 1 / -1; min-height: 44px; justify-content: center; border-top: 1px solid var(--line); border-radius: 0 0 9px 9px; color: var(--ink-3); font-size: .72rem; font-weight: 850; }
.nav__cta { display: none !important; }
.topbar__print { justify-self: end; }
.topbar-demo { min-height: 48px; display: inline-grid; grid-template-columns: auto auto; align-items: stretch; justify-self: end; overflow: hidden; border-radius: 13px; background: var(--ink); color: #fff; font-size: .73rem; font-weight: 950; letter-spacing: .065em; line-height: 1; text-decoration: none; text-transform: uppercase; box-shadow: 0 10px 24px rgba(16,35,31,.12); transition: transform .2s ease, box-shadow .2s ease; }
.topbar-demo:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(16,35,31,.18); }
.topbar-demo span, .topbar-demo strong { display: grid; place-items: center; padding: 0 16px; }
.topbar-demo strong { background: var(--lime); color: var(--ink); font-size: .68rem; letter-spacing: .08em; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--accent { background: var(--accent); color: var(--ink); box-shadow: 0 10px 26px rgba(255, 107, 61, .25); }
.button--accent:hover { background: #ff7e57; }
.button--primary { min-height: 54px; padding-inline: 24px; background: var(--lime); color: var(--ink); font-family: "Arial Black", "Aptos Display", Inter, sans-serif; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; box-shadow: 0 14px 34px rgba(199, 243, 107, .24); }
.button--primary:hover { background: #d4fa82; box-shadow: 0 18px 38px rgba(199, 243, 107, .3); }
.button--ghost { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.06); }
.button--ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); }
.button--quiet { border-color: var(--line); background: transparent; color: var(--ink); }
.button--quiet:hover { background: var(--white); border-color: #b9bbb2; }
.button--more { width: 100%; margin-top: 16px; background: var(--paper); border-color: var(--line); color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 112px 0 96px; color: #f8f8f1; background: var(--ink); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero__glow { position: absolute; width: 620px; height: 620px; right: -130px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(199,243,107,.22), rgba(199,243,107,0) 68%); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: 64px; align-items: center; }
.hero-visual { min-width: 0; display: grid; align-self: center; }
.hero-property { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: var(--ink-2); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.hero-property img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hero-property figcaption, .demo-image figcaption, .property-story figcaption { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-visual .signal-card { position: relative; z-index: 2; width: calc(100% - 32px); margin: -48px 16px 0; padding: 24px; background: rgba(31,54,48,.97); }
.eyebrow, .kicker { font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #d8e2de; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(199, 243, 107, .1); }
.hero h1 { margin-bottom: 16px; }
.hero__subhead { max-width: 720px; margin: 0 0 24px; color: var(--lime); font-size: clamp(1.85rem, 3.1vw, 3rem); font-weight: 850; letter-spacing: -.05em; line-height: 1.05; }
.hero__lead { max-width: 730px; margin-bottom: 32px; color: #c0cfca; font-size: clamp(1.05rem, 1.5vw, 1.26rem); line-height: 1.6; }
.hero__actions { width: 100%; display: flex; margin-bottom: 36px; }
.hero-demo { width: min(100%, 560px); min-height: 76px; display: grid; grid-template-columns: 1fr auto; align-items: stretch; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; color: var(--ink); background: #f8f8f1; text-decoration: none; box-shadow: 0 18px 46px rgba(0,0,0,.2); transition: transform .2s ease, box-shadow .2s ease; }
.hero-demo:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(0,0,0,.28); }
.hero-demo__copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 14px 22px; }
.hero-demo__copy small { color: var(--accent-dark); font-size: .61rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-demo__copy strong { font-size: 1.05rem; font-weight: 950; letter-spacing: .055em; line-height: 1; text-transform: uppercase; }
.hero-demo__promise { display: flex; align-items: center; gap: 13px; padding: 12px 14px 12px 18px; border-left: 1px solid rgba(16,35,31,.12); background: var(--lime); }
.hero-demo__promise b { font-size: .73rem; font-weight: 950; letter-spacing: .065em; white-space: nowrap; text-transform: uppercase; }
.hero-demo__promise i { width: 42px; height: 42px; display: grid; flex: none; place-items: center; border-radius: 10px; background: var(--ink); color: var(--lime); font-size: 1rem; font-style: normal; font-weight: 900; }
.hero__proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hero-proof-item { min-width: 0; display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: start; }
.hero-proof-item__icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(255,255,255,.07); color: var(--lime); }
.hero-proof-item__icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-proof-item > span:last-child { min-width: 0; display: grid; gap: 3px; }
.hero-proof-item strong { color: var(--white); font-size: .82rem; line-height: 1.2; }
.hero-proof-item small { color: #91a49d; font-size: .68rem; line-height: 1.35; }

.signal-card { padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.075); box-shadow: 0 30px 80px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.signal-card__top { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #bdcbc6; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; background: rgba(199,243,107,.11); color: var(--lime); font-size: .62rem; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.signal-card__number { margin: 22px 0 0; color: var(--white); font-size: clamp(3.5rem, 5vw, 4.8rem); font-weight: 850; letter-spacing: -.07em; line-height: .9; }
.signal-card__definition { max-width: 360px; margin: 12px 0 22px; color: #9fb0aa; font-size: .82rem; }
.coverage { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.coverage__row { display: flex; justify-content: space-between; gap: 16px; font-size: .78rem; }
.coverage__row span { color: #aab9b4; }
.coverage__row strong { color: var(--lime); }
.coverage__track { height: 7px; margin: 12px 0; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.1); }
.coverage__track span { display: block; width: 94.22%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--lime)); }
.coverage p { margin: 0; color: #80958d; font-size: .7rem; }
.signal-card__footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 20px; }
.signal-card__footer span { color: #7f938b; font-size: .66rem; line-height: 1.3; }
.signal-card__footer b { display: block; margin-bottom: 3px; color: #f6f8f4; font-size: .9rem; }

.proof-section, .data-section, .explorer-section, .system-section, .method-section, .demo-process, .demo-section, .property-story, .blog-preview, .faq-section { padding: 104px 0; }

.demo-process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-grid article { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); }
.process-card__body { padding: 22px; }
.process-card__body > span { color: var(--accent-dark); font-size: .67rem; font-weight: 900; letter-spacing: .12em; }
.process-grid h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .78rem; }

.demo-section { overflow: hidden; color: #f5f7f3; background: var(--ink-2); }
.demo-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.demo-copy { position: sticky; top: 104px; }
.demo-copy h2 em { color: var(--lime); font-style: normal; }
.demo-copy > p:not(.eyebrow) { max-width: 560px; color: #b6c5c0; font-size: 1.05rem; }
.demo-copy ul { display: grid; gap: 10px; margin: 28px 0 32px; padding: 0; list-style: none; }
.demo-copy li { position: relative; padding-left: 25px; color: #d5dfdb; font-size: .84rem; }
.demo-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 900; }
.demo-image { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.demo-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.demo-form { padding: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.demo-form header { margin-bottom: 24px; }
.demo-form header > span { color: var(--accent-dark); font-size: .64rem; font-weight: 900; letter-spacing: .14em; }
.demo-form header h3 { margin: 7px 0; font-size: 2rem; }
.demo-form header p { margin: 0; color: var(--muted); font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { min-width: 0; display: grid; align-content: start; gap: 7px; color: #31453f; font-size: .8rem; font-weight: 800; }
.form-field--wide { grid-column: 1 / -1; }
.form-field__label { display: inline-flex; align-items: baseline; gap: 4px; }
.form-field__label b { color: var(--accent-dark); }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cfd2ca; border-radius: 10px; background: #fff; color: var(--ink); font: inherit; font-size: .88rem; font-weight: 500; }
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink-3); box-shadow: 0 0 0 3px rgba(39,80,71,.12); outline: 0; }
.form-field [aria-invalid="true"] { border-color: #bf3f24; background: #fff8f6; }
.form-field small { color: #738079; font-size: .64rem; font-weight: 500; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: #5b6b65; font-size: .7rem; }
.consent input { flex: none; width: 20px; height: 20px; margin: 0; accent-color: var(--ink); }
.consent a { color: var(--accent-dark); font-weight: 800; }
.demo-form__submit { width: 100%; min-height: 52px; }
.demo-form__submit:disabled { opacity: .62; cursor: wait; transform: none; }
.form-status { min-height: 0; margin: 14px 0 0; padding: 0; font-size: .78rem; }
.form-status.is-success, .form-status.is-error { min-height: auto; padding: 13px 14px; border-radius: 10px; }
.form-status.is-success { background: #dff5e8; color: #174b31; }
.form-status.is-error { background: #ffe4dc; color: #7e2716; }
.form-microcopy { margin: 12px 0 0; color: #7c8984; font-size: .62rem; text-align: center; }
.booking-picker { min-width: 0; margin: 8px 0 0; padding: 0; border: 0; }
.booking-picker > legend { padding: 0; color: #31453f; font-size: .8rem; font-weight: 850; }
.booking-picker > legend b { color: var(--accent-dark); }
.booking-picker__help { margin: 5px 0 14px; color: #66756f; font-size: .7rem; font-weight: 500; }
.booking-picker__layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr); gap: 12px; }
.booking-calendar, .booking-times { min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.booking-calendar__header { min-height: 44px; display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 8px; margin: 0 0 10px; }
.booking-calendar__header h4, .booking-times h4 { margin: 0; color: var(--ink); font-size: .92rem; letter-spacing: -.015em; text-align: center; }
.booking-calendar__nav { width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); cursor: pointer; font-weight: 900; }
.booking-calendar__nav:hover:not(:disabled) { border-color: var(--ink-3); background: #fff; }
.booking-calendar__nav:disabled { opacity: .3; cursor: not-allowed; }
.booking-calendar__weekdays, .booking-calendar__days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.booking-calendar__weekdays { margin-bottom: 4px; color: #77837e; font-size: .58rem; font-weight: 850; text-align: center; text-transform: uppercase; }
.booking-calendar__days > button { min-width: 0; min-height: 44px; display: grid; place-items: center; align-content: center; gap: 1px; padding: 3px 1px; border: 1px solid transparent; border-radius: 9px; background: var(--white); color: var(--ink); cursor: pointer; font-size: .76rem; font-weight: 800; }
.booking-calendar__days > button:hover:not(:disabled) { border-color: var(--ink-3); }
.booking-calendar__days > button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--lime); }
.booking-calendar__days > button:disabled { background: transparent; color: #a3aba7; cursor: not-allowed; opacity: .58; }
.booking-calendar__days small { font-size: .42rem; font-weight: 800; line-height: 1; text-transform: uppercase; }
.booking-calendar__loading { grid-column: 1 / -1; margin: 20px 0; color: var(--muted); font-size: .72rem; text-align: center; }
.booking-times { display: flex; flex-direction: column; }
.booking-times > div:first-child > span { display: block; margin: 3px 0 7px; color: var(--accent-dark); font-size: .57rem; font-weight: 900; letter-spacing: .11em; text-align: center; }
.booking-times h4 { min-height: 38px; line-height: 1.25; }
.booking-times__slots { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-top: 12px; }
.booking-times__slots > button { min-height: 44px; padding: 8px 5px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); color: var(--ink); cursor: pointer; font-size: .74rem; font-weight: 850; }
.booking-times__slots > button:hover { border-color: var(--ink-3); }
.booking-times__slots > button[aria-pressed="true"] { border-color: var(--ink); background: var(--lime); box-shadow: inset 0 0 0 1px var(--ink); }
.booking-times__slots > p { grid-column: 1 / -1; margin: 12px 0 0; color: #738079; font-size: .69rem; text-align: center; }
.booking-picker__selection { min-height: 44px; margin: 12px 0 0; padding: 11px 13px; border-radius: 10px; background: #eef4df; color: #34483f; font-size: .72rem; font-weight: 600; }
.booking-picker__error { min-height: 0; margin: 7px 0 0; color: #9f2f18; font-size: .7rem; font-weight: 700; }
.booking-picker[aria-invalid="true"] { padding: 10px; border: 1px solid #bf3f24; border-radius: 14px; background: #fff8f6; }

.property-story { background: var(--paper-2); }
.property-story__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.property-story figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.property-story figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.property-story__grid > div > p:not(.kicker) { color: var(--muted); font-size: 1.03rem; }
.property-story__points { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.property-story__points span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .7rem; font-weight: 800; }
.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading--compact { margin-inline: auto; text-align: center; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.section-heading--split > p { max-width: 560px; justify-self: end; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { color: var(--muted); }
.section-heading--compact h2 { margin-bottom: 18px; }
.section-heading--compact > p:last-child { max-width: 690px; margin-inline: auto; }
.kicker { margin-bottom: 16px; color: var(--accent-dark); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric-card { min-height: 276px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.58); }
.metric-card--accent { background: var(--accent); color: var(--ink); border-color: transparent; }
.metric-card__index { align-self: flex-end; color: var(--muted); font-size: .67rem; font-weight: 900; letter-spacing: .12em; }
.metric-card--accent .metric-card__index { color: rgba(16,35,31,.6); }
.metric-card > strong { display: block; margin-top: 32px; font-size: clamp(2.35rem, 3.5vw, 3.7rem); line-height: 1; letter-spacing: -.06em; }
.metric-card h3 { margin-top: auto; font-size: .95rem; letter-spacing: -.01em; }
.metric-card p { margin-bottom: 0; color: var(--muted); font-size: .77rem; line-height: 1.45; }
.metric-card--accent p { color: rgba(16,35,31,.76); }
.truth-note { display: flex; gap: 14px; align-items: flex-start; max-width: 900px; margin: 24px auto 0; padding: 16px 20px; border: 1px solid #d9ccac; border-radius: 12px; background: #fff7dc; color: #675a37; font-size: .82rem; }
.truth-note span { flex: none; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #e4c76f; color: #4a3d1c; font-weight: 900; }
.truth-note p { margin: 0; }

.ownership-section { padding: 88px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: var(--ink-2); color: #f2f4ef; }
.ownership-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: start; }
.ownership-copy { color: #b8c8c2; font-size: 1.08rem; }
.ownership-copy > p { max-width: 670px; }
.ownership-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ownership-points span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #dfe7e3; font-size: .73rem; font-weight: 800; }

.data-section { background: var(--white); }
.chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.panel__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.panel__header h3 { margin: 3px 0 0; font-size: 1.35rem; }
.panel__eyebrow, .panel__unit { color: var(--muted); font-size: .67rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.bar-list { display: grid; gap: 13px; }
.bar-row { display: grid; grid-template-columns: minmax(110px, .65fr) 2fr auto; gap: 12px; align-items: center; }
.bar-row__label { min-width: 0; }
.bar-row__label strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .82rem; }
.bar-row__label small { color: var(--muted); font-size: .66rem; }
.bar-row__track { height: 9px; overflow: hidden; border-radius: 999px; background: #e2e1d9; }
.bar-row__track span { display: block; height: 100%; min-width: 3px; border-radius: inherit; background: var(--ink-3); transform-origin: left; animation: grow .7s ease both; }
.bar-list--destinations .bar-row__track span { background: var(--accent); }
.bar-row > b { min-width: 54px; text-align: right; font-size: .74rem; font-variant-numeric: tabular-nums; }
.panel__footnote { margin: 24px 0 0; color: var(--muted); font-size: .7rem; }
@keyframes grow { from { transform: scaleX(0); } }
.year-opportunity { margin-top: 20px; padding: 32px; border-radius: var(--radius); background: var(--ink); color: #f3f6f2; }
.year-opportunity__header { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.year-opportunity__header span, .year-opportunity__header > p { color: #91a59e; font-size: .67rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.year-opportunity__header h3 { max-width: 720px; margin: 5px 0 0; font-size: clamp(1.55rem, 2.5vw, 2.3rem); letter-spacing: -.045em; }
.year-opportunity__header > p { margin: 0; text-align: right; }
.year-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.year-kpi { min-height: 210px; display: flex; flex-direction: column; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); }
.year-kpi > span { color: #a8bab4; font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.year-kpi > strong { margin: auto 0 12px; color: var(--white); font-size: clamp(2rem, 3.2vw, 3.15rem); font-weight: 900; letter-spacing: -.07em; line-height: .95; }
.year-kpi p { margin: 0; color: #a8bab4; font-size: .72rem; line-height: 1.5; }
.year-kpi p b { color: #e7efeb; }
.year-kpi--annual { background: #203a33; }
.year-kpi--annual > strong, .year-kpi--peak > strong { color: var(--lime); }
.year-kpi--peak { border-color: rgba(199,243,107,.32); background: rgba(199,243,107,.09); }

.blog-preview { background: var(--white); }
.blog-preview__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.blog-card { min-width: 0; min-height: 0; display: flex; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card > span { margin: 0 0 12px; color: var(--accent-dark); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { font-size: 1.45rem; }
.blog-card p { color: var(--muted); font-size: .78rem; }
.blog-card b { margin: auto 24px 0; padding-top: 8px; font-size: .76rem; }
.blog-card--image { padding: 0 0 24px; overflow: hidden; }
.blog-card--image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.blog-card--image > span, .blog-card--image h3, .blog-card--image p { margin-left: 24px; margin-right: 24px; }
.blog-card--image > span { margin-top: 22px; }
.blog-preview__action { display: flex; justify-content: center; margin-top: 28px; }
.faq-section { background: var(--paper); }

.funnel-section { padding: 104px 0; background: var(--ink); color: #f2f5f1; }
.section-heading--light p { color: #9fb1aa; }
.funnel-bar { min-height: 72px; display: flex; overflow: hidden; border-radius: 14px; background: rgba(255,255,255,.08); }
.funnel-segment { min-width: 96px; display: flex; align-items: center; justify-content: center; padding: 12px; color: var(--ink); font-size: .75rem; font-weight: 900; }
.funnel-segment:nth-child(1) { background: var(--mint); }
.funnel-segment:nth-child(2) { background: var(--sand); }
.funnel-segment:nth-child(3) { background: var(--accent); color: var(--ink); }
.funnel-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 16px 0 56px; }
.funnel-card { padding: 20px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.045); }
.funnel-card__top { display: flex; justify-content: space-between; gap: 12px; }
.funnel-card h3 { margin: 0; font-size: 1rem; }
.funnel-card b { color: var(--lime); font-size: .88rem; }
.funnel-card p { margin: 10px 0 0; color: #8da19a; font-size: .75rem; }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.strategy-card { position: relative; min-height: 510px; padding: 30px; overflow: hidden; border-radius: var(--radius); color: var(--ink); }
.strategy-card--seo { background: var(--mint); }
.strategy-card--geo { background: var(--sky); }
.strategy-card--ads { background: var(--sand); }
.strategy-card__number { position: absolute; right: -4px; top: -35px; color: rgba(16,35,31,.08); font-size: 9rem; font-weight: 900; line-height: 1; letter-spacing: -.1em; }
.strategy-card__label { position: relative; font-size: .68rem; font-weight: 950; letter-spacing: .18em; }
.strategy-card h3 { position: relative; max-width: 270px; margin: 44px 0 18px; font-size: 2rem; }
.strategy-card > p:not(.strategy-card__label) { color: #39554d; font-size: .9rem; }
.strategy-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.strategy-card li { padding: 10px 0; border-top: 1px solid rgba(16,35,31,.13); font-size: .78rem; font-weight: 750; }
.strategy-card__signal { position: absolute; left: 30px; right: 30px; bottom: 28px; padding-top: 16px; border-top: 1px solid rgba(16,35,31,.22); color: #36534a; font-size: .72rem; }
.strategy-card__signal b { display: block; color: var(--ink); font-size: 1.35rem; }
.geo-disclaimer { max-width: 760px; margin: 22px 0 0; color: #788d85; font-size: .72rem; }

.explorer-section { background: var(--paper); }
.explorer-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.filter-bar { display: grid; grid-template-columns: 1fr 1fr 1fr 1.35fr auto; gap: 12px; align-items: end; padding: 24px; border-bottom: 1px solid var(--line); background: var(--paper); }
.filter-bar label { display: grid; gap: 7px; color: var(--muted); font-size: .67rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.filter-bar select, .filter-bar input { min-width: 0; height: 46px; padding: 0 12px; border: 1px solid #c7c9c0; border-radius: 9px; outline: none; background: var(--white); color: var(--ink); font-size: .82rem; text-transform: none; letter-spacing: 0; }
.filter-bar select:focus, .filter-bar input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,61,.12); }
.selection-summary { display: grid; grid-template-columns: repeat(3, .72fr) 1.6fr; border-bottom: 1px solid var(--line); }
.selection-summary > div { min-height: 138px; padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.selection-summary > div:last-child { border-right: 0; }
.selection-summary span { color: var(--muted); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.selection-summary strong { margin-top: auto; overflow: hidden; text-overflow: ellipsis; font-size: 2rem; letter-spacing: -.05em; white-space: nowrap; }
.selection-summary small { color: var(--muted); font-size: .66rem; }
.selection-summary__query strong { font-size: 1rem; letter-spacing: -.015em; white-space: normal; }
.activation-brief { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 24px; border-bottom: 1px solid var(--line); }
.activation-brief article { min-height: 164px; padding: 20px; border-radius: 13px; background: var(--paper); }
.activation-brief__tag { color: var(--accent-dark); font-size: .64rem; font-weight: 950; letter-spacing: .14em; }
.activation-brief h3 { margin: 28px 0 8px; font-size: 1rem; }
.activation-brief p { margin: 0; color: var(--muted); font-size: .74rem; }
.table-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 24px 16px; }
.table-heading h3 { margin: 0; font-size: 1.1rem; }
.table-heading p { margin: 4px 0 0; color: var(--muted); font-size: .72rem; }
.table-wrap { overflow-x: auto; padding: 0 24px; }
table { width: 100%; border-collapse: collapse; font-size: .76rem; }
th { padding: 12px 10px; border-bottom: 1px solid var(--ink); color: var(--muted); text-align: left; font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
td { padding: 14px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
td:first-child { max-width: 360px; font-weight: 760; }
.number-cell { text-align: right; font-variant-numeric: tabular-nums; }
.intent-chip, .channel-chip { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 8px; border-radius: 999px; font-size: .62rem; font-weight: 850; white-space: nowrap; }
.intent-chip { background: var(--paper-2); color: var(--ink-3); }
.channel-chip { background: #e8f3ee; color: #25614f; }
.explorer-shell > .button--more { width: calc(100% - 48px); margin: 16px 24px 24px; }

.system-section { background: var(--white); }
.commercial-journey { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.journey-card { min-height: 270px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.journey-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(16,35,31,.09); }
.journey-card > span { color: var(--accent-dark); font-size: .64rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.journey-card h3 { margin: auto 0 12px; font-size: 1.18rem; letter-spacing: -.025em; }
.journey-card p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.journey-card > b { margin-top: 18px; font-size: .68rem; }
.journey-card--dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.journey-card--dark > span { color: var(--lime); }
.journey-card--dark p { color: #a8bab4; }
.journey-card--accent { border-color: var(--accent); background: var(--accent); }
.journey-card--accent > span, .journey-card--accent p { color: rgba(16,35,31,.72); }
.deliverables-heading { display: grid; gap: 10px; justify-items: start; margin-top: 64px; }
.deliverables-heading .kicker { margin: 0; color: var(--accent-dark); }
.deliverables-heading h3 { max-width: 760px; margin: 0; font-size: clamp(1.55rem, 2.6vw, 2.3rem); text-align: left; }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.deliverables-grid article { min-height: 168px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.deliverables-grid span { color: var(--accent-dark); font-size: .63rem; font-weight: 950; letter-spacing: .1em; }
.deliverables-grid b { margin: 22px 0 8px; font-size: .95rem; }
.deliverables-grid p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.5; }
.deliverables-grid a { min-height: 44px; display: inline-flex; align-items: end; margin-top: auto; padding-top: 16px; color: var(--ink-3); font-size: .68rem; font-weight: 850; text-decoration: none; }
.system-actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: stretch; margin-top: 18px; }
.system-actions .system-cta { margin-top: 0; }
.system-actions > .button { min-height: 66px; border-radius: 14px; }
.system-cta { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding: 10px 12px 10px 22px; border-radius: 14px; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 900; letter-spacing: .035em; text-decoration: none; text-transform: uppercase; }
.system-cta i { width: 44px; height: 44px; display: grid; flex: none; place-items: center; border-radius: 10px; background: var(--lime); color: var(--ink); font-style: normal; }
.system-cta:hover i { transform: translate(2px, -2px); }

.method-section { background: var(--paper-2); }
.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 96px; }
.method-grid > div:first-child p:last-child { max-width: 500px; color: var(--muted); }
.method-list { border-top: 1px solid #c8c9c0; }
.method-list details { border-bottom: 1px solid #c8c9c0; }
.method-list summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-weight: 800; }
.method-list summary::-webkit-details-marker { display: none; }
.method-list summary::after { content: "+"; color: var(--accent-dark); font-size: 1.35rem; font-weight: 500; }
.method-list details[open] summary::after { content: "−"; }
.method-list details p { max-width: 700px; margin: 0 0 24px; color: var(--muted); font-size: .82rem; }
.source-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 20px; border-top: 1px solid #c8c9c0; }
.source-row a { min-height: 40px; display: inline-flex; align-items: center; padding: 7px 11px; border: 1px solid #c4c5bc; border-radius: 999px; color: var(--muted); font-size: .66rem; font-weight: 750; text-decoration: none; }
.source-row a:hover { border-color: var(--ink); color: var(--ink); }

.closing-section { padding: 48px 0; background: var(--paper-2); }
.closing-card { min-height: 430px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; padding: 64px; border-radius: var(--radius-lg); color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.closing-card h2 { max-width: 760px; }
.closing-card p:not(.eyebrow) { max-width: 650px; color: #a5b6b0; }
.closing-card__actions { display: grid; gap: 12px; }
.closing-card__actions small { margin-top: 8px; color: #7e938b; font-size: .7rem; text-align: center; }
body > footer { padding: 32px 0; background: var(--paper-2); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 24px; align-items: center; color: var(--muted); font-size: .67rem; }
.brand--footer { color: var(--ink); }
.footer-grid p { margin: 0; text-align: center; }
.footer-grid p a { font-weight: 850; }
.footer-grid p span { color: #7c8884; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px 14px; }
.footer-links a { min-height: 40px; display: inline-flex; align-items: center; font-weight: 800; text-decoration: none; }
.footer-grid > a { min-height: 40px; display: inline-flex; align-items: center; font-weight: 800; text-decoration: none; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 24px; max-width: calc(100% - 32px); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: .78rem; font-weight: 750; transform: translate(-50%, 130px); opacity: 0; transition: .25s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

.legal-body { background: var(--paper); }
.legal-topbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px max(20px, calc((100vw - 900px)/2)); border-bottom: 1px solid var(--line); background: var(--white); }
.legal-main { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 88px 0 112px; }
.legal-main h1 { margin-bottom: 8px; font-size: clamp(3rem, 7vw, 5.5rem); }
.legal-main h2 { margin: 48px 0 12px; font-size: 1.65rem; }
.legal-main p { color: var(--muted); }
.legal-updated { margin-bottom: 48px; font-size: .76rem; }
.legal-cta { margin-top: 64px; padding: 32px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.legal-cta h2 { margin-top: 0; }

.blog-body { background: var(--paper); }
.blog-topbar { position: sticky; z-index: 100; top: 0; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px max(20px, calc((100vw - var(--container))/2)); border-bottom: 1px solid rgba(16,35,31,.12); background: rgba(245,244,237,.94); backdrop-filter: blur(18px); }
.blog-topbar nav { display: flex; align-items: center; gap: 10px; }
.blog-topbar nav > a:not(.button) { min-height: 44px; display: inline-flex; align-items: center; padding: 0 10px; color: var(--muted); font-size: .78rem; font-weight: 800; text-decoration: none; }
.blog-hero { padding: 112px 0 96px; color: #f5f7f3; background: var(--ink); }
.blog-hero h1 { max-width: 900px; margin: 24px 0; font-size: clamp(3.2rem, 7vw, 6.8rem); }
.blog-hero > .container > p:last-child { max-width: 720px; margin: 0; color: #afc0ba; font-size: 1.1rem; }
.blog-index { padding: 96px 0 112px; }
.blog-index__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 40px; }
.blog-index__intro h2 { margin: 0; }
.blog-index__intro > p { margin: 0; color: var(--muted); font-size: .82rem; }
.blog-index__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card { min-width: 0; min-height: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card--featured { grid-column: span 2; display: grid; grid-template-columns: .9fr 1.1fr; }
.article-card__media { align-self: start; }
.article-card__body { padding: 24px; display: flex; flex: 1; flex-direction: column; }
.article-card__meta { display: flex; flex-wrap: wrap; gap: 5px 12px; color: var(--accent-dark); font-size: .62rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.article-card h2 { margin: 22px 0 12px; font-size: 1.65rem; }
.article-card h2 a { text-decoration: none; }
.article-card p { color: var(--muted); font-size: .78rem; }
.article-card__link { margin-top: auto; padding-top: 16px; font-size: .76rem; font-weight: 850; text-decoration: none; }
.blog-cta { padding: 0 0 104px; }

.article-hero { padding: 88px 0 80px; color: #f6f7f3; background: var(--ink); }
.article-hero__inner { width: min(960px, calc(100% - 40px)); margin: 0 auto; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 48px; color: #91a49d; font-size: .68rem; }
.breadcrumbs a { text-decoration: none; }
.article-hero h1 { max-width: 920px; margin: 16px 0 24px; font-size: clamp(3rem, 6vw, 5.8rem); }
.article-lead { max-width: 760px; color: #b9c8c3; font-size: 1.16rem; }
.article-byline { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 36px; color: #879b94; font-size: .68rem; font-weight: 750; }
.article-layout { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 112px; }
.article-content { min-width: 0; }
.article-content > section { margin-bottom: 56px; }
.article-content h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.article-content p, .article-content li { color: #42564f; font-size: 1.02rem; line-height: 1.78; }
.article-content ul { display: grid; gap: 8px; padding-left: 22px; }
.article-faq details { border-top: 1px solid var(--line); }
.article-faq details:last-child { border-bottom: 1px solid var(--line); }
.article-faq summary { min-height: 60px; display: flex; align-items: center; cursor: pointer; font-weight: 850; }
.article-faq details p { padding: 0 0 20px; font-size: .9rem; }
.article-sources ul { margin: 0; padding: 0; list-style: none; }
.article-sources li { border-top: 1px solid var(--line); }
.article-sources li:last-child { border-bottom: 1px solid var(--line); }
.article-sources a { min-height: 52px; display: flex; align-items: center; color: var(--ink-3); font-size: .78rem; font-weight: 800; text-decoration: none; }
.article-related > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.article-related a { min-height: 180px; display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-weight: 900; text-decoration: none; }
.article-related a span { margin-bottom: auto; color: var(--accent-dark); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.article-related a strong { margin: 20px 0 8px; font-size: .78rem; line-height: 1.35; }
.article-related a small { color: var(--muted); font-size: .64rem; font-weight: 650; line-height: 1.35; }
.article-cta { margin: 72px 0 40px; padding: 40px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.article-cta h2 { margin-top: 0; }
.article-cta p:not(.kicker) { color: #b5c4bf; }
.article-cta__bridge { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .86rem !important; }
.article-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.article-disclaimer { padding-top: 24px; border-top: 1px solid var(--line); color: #75837e !important; font-size: .72rem !important; }

.solution-body { background: var(--paper); }
.solution-body .breadcrumbs { margin-bottom: 28px; }
.solution-hub-hero, .solution-hero, .solution-404 { color: #f6f7f3; background: var(--ink); }
.solution-hub-hero, .solution-hero { padding: 96px 0; }
.solution-hub-hero__grid, .solution-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 64px; align-items: center; }
.solution-hub-hero h1, .solution-hero h1 { max-width: 760px; margin: 20px 0 24px; font-size: clamp(3rem, 5.7vw, 5.8rem); }
.solution-hub-hero p:not(.eyebrow), .solution-hero > .container > div > p:not(.eyebrow) { max-width: 700px; color: #b7c6c1; font-size: 1.08rem; }
.solution-hub-hero .button, .solution-hero__actions { margin-top: 30px; }
.solution-hub-hero figure { margin: 0; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: var(--ink-2); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.solution-hub-hero figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.solution-catalog, .solution-outcomes, .solution-reading, .solution-faq { padding: 96px 0; }
.solution-catalog { background: var(--white); }
.solution-catalog__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.solution-tile { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.solution-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.solution-tile > span { color: var(--accent-dark); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.solution-tile h3 { margin: 44px 0 12px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.solution-tile p { max-width: 580px; color: var(--muted); font-size: .82rem; }
.solution-tile b { margin-top: auto; padding-top: 24px; font-size: .72rem; }
.solution-tile--website { color: #fff; background: var(--ink); }
.solution-tile--website > span { color: var(--lime); }
.solution-tile--website p { color: #a8bab4; }
.solution-principles, .solution-limits { padding: 88px 0; color: #f5f7f3; background: var(--ink-2); }
.solution-principles > .container > div:first-child { max-width: 760px; }
.solution-principles__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 36px; }
.solution-principles article { min-height: 220px; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.05); }
.solution-principles article > span { color: var(--lime); font-size: .65rem; font-weight: 900; }
.solution-principles h3 { margin: auto 0 10px; }
.solution-principles article p { margin: 0; color: #a9bab4; font-size: .78rem; }
.solution-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.solution-hero__card { min-height: 360px; display: flex; flex-direction: column; padding: 32px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: var(--ink-2); box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.solution-hero__card > span { color: var(--lime); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.solution-hero__card > strong { margin: auto 0 16px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: .95; }
.solution-hero__card p { color: #b7c6c1; }
.solution-hero__card small { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: #839790; font-size: .68rem; }
.solution-problem, .solution-deliverables { padding: 88px 0; background: var(--white); }
.solution-copy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.solution-copy-grid h2 { max-width: 620px; }
.solution-copy-grid > div:last-child > p { color: var(--muted); font-size: 1.05rem; }
.solution-copy-grid > div:last-child > a { min-height: 44px; display: inline-flex; align-items: center; color: var(--accent-dark); font-size: .78rem; font-weight: 850; text-decoration: none; }
.solution-outcomes__grid, .solution-deliverables__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.solution-outcomes__grid article, .solution-deliverables__grid article { min-height: 230px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.solution-outcomes__grid span { color: var(--accent-dark); font-size: .64rem; font-weight: 900; }
.solution-outcomes__grid h3, .solution-deliverables__grid h3 { margin: auto 0 12px; font-size: 1.08rem; }
.solution-outcomes__grid p, .solution-deliverables__grid p { margin: 0; color: var(--muted); font-size: .75rem; }
.solution-deliverables { background: var(--paper-2); }
.solution-limits ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.solution-limits li { position: relative; min-height: 68px; display: flex; align-items: center; padding: 14px 0 14px 32px; border-bottom: 1px solid rgba(255,255,255,.14); color: #c0cdc9; }
.solution-limits li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 900; }
.solution-reading { background: var(--paper); }
.solution-reading .section-heading > a { min-height: 44px; display: inline-flex; align-items: center; font-size: .75rem; font-weight: 850; text-decoration: none; }
.solution-reading__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.solution-reading__grid > a { min-height: 280px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); text-decoration: none; }
.solution-reading__grid span { color: var(--accent-dark); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.solution-reading__grid h3 { margin: 32px 0 12px; }
.solution-reading__grid p { color: var(--muted); font-size: .75rem; }
.solution-reading__grid b { margin-top: auto; font-size: .7rem; }
.solution-faq { background: var(--white); }
.solution-closing { padding: 48px 0; background: var(--paper-2); }
.solution-404 { min-height: 70vh; padding: 96px 0; }
.solution-404 p:not(.eyebrow) { max-width: 620px; color: #b5c4bf; }
.solution-404 > .container > div { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1060px) {
  .topbar { grid-template-columns: 1fr auto; }
  .topbar-demo { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .nav { position: absolute; top: calc(100% + 1px); left: 16px; right: 16px; display: none; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .nav.is-open { display: grid; }
  .nav a { width: 100%; padding-inline: 14px; }
  .nav-solutions { width: 100%; }
  .nav-solutions > summary { width: 100%; justify-content: space-between; padding-inline: 14px; }
  .nav-solutions__panel { position: static; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 6px; padding: 8px; box-shadow: none; transform: none; }
  .nav .nav-solution-link { min-height: 56px; }
  .nav__cta { min-height: 52px !important; display: flex !important; justify-content: space-between; margin-top: 4px; padding: 6px 7px 6px 16px !important; border-radius: 11px !important; background: var(--ink); color: #fff !important; font-size: .76rem !important; font-weight: 950 !important; letter-spacing: .055em; text-transform: uppercase; }
  .nav__cta strong { min-width: 44px; min-height: 36px; display: grid; place-items: center; border-radius: 8px; background: var(--lime); color: var(--ink); font-size: .68rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(620px, 100%); }
  .signal-card { max-width: 620px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview__grid { grid-template-columns: 1fr 1fr; }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
  .filter-bar .button { width: 100%; }
  .selection-summary { grid-template-columns: repeat(2, 1fr); }
  .selection-summary > div:nth-child(2) { border-right: 0; }
  .selection-summary > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .strategy-card { min-height: 560px; }
  .year-kpis, .commercial-journey { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-hub-hero__grid, .solution-hero__grid { grid-template-columns: 1fr; }
  .solution-hub-hero figure, .solution-hero__card { width: min(620px, 100%); }
  .solution-outcomes__grid, .solution-deliverables__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .topbar { padding-inline: 16px; }
  .topbar__print { font-size: 0; width: 46px; padding-inline: 0; }
  .topbar__print span { font-size: 1rem; }
  .hero { padding: 80px 0 72px; }
  .hero__grid { gap: 48px; }
  .hero__proof { grid-template-columns: 1fr; max-width: 560px; }
  .proof-section, .data-section, .explorer-section, .system-section, .method-section, .funnel-section, .demo-process, .demo-section, .property-story, .blog-preview, .faq-section { padding: 72px 0; }
  .section-heading--split, .ownership-grid, .method-grid, .closing-card, .demo-grid, .property-story__grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-copy { position: static; }
  .section-heading--split > p { justify-self: start; }
  .chart-grid, .strategy-grid { grid-template-columns: 1fr; }
  .strategy-card { min-height: 470px; }
  .year-opportunity__header, .deliverables-heading { align-items: flex-start; flex-direction: column; }
  .year-opportunity__header > p, .deliverables-heading h3 { text-align: left; }
  .funnel-cards { grid-template-columns: 1fr; }
  .activation-brief { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .system-actions { grid-template-columns: 1fr; }
  .closing-card { padding: 40px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid p { text-align: left; }
  .blog-index__intro { grid-template-columns: 1fr; gap: 32px; }
  .blog-index__grid { grid-template-columns: 1fr 1fr; }
  .article-card--featured { grid-column: 1 / -1; }
  .solution-hub-hero, .solution-hero { padding: 72px 0; }
  .solution-catalog, .solution-outcomes, .solution-reading, .solution-faq { padding: 72px 0; }
  .solution-problem, .solution-deliverables, .solution-principles, .solution-limits { padding: 72px 0; }
  .solution-copy-grid { grid-template-columns: 1fr; gap: 32px; }
  .solution-principles__grid, .solution-reading__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  h2 { font-size: 2.25rem; }
  .topbar { min-height: 64px; }
  .brand__text { display: none; }
  .nav-solutions__panel { grid-template-columns: 1fr; max-height: min(62vh, 480px); overflow-y: auto; }
  .nav .nav-solutions__all { grid-column: auto; }
  .hero__actions, .hero-demo { width: 100%; }
  .hero-demo { grid-template-columns: 1fr auto; }
  .hero-demo__copy { padding-inline: 16px; }
  .hero-demo__copy small { font-size: .55rem; }
  .hero-demo__copy strong { font-size: .95rem; }
  .hero-demo__promise { gap: 8px; padding: 10px; }
  .hero-demo__promise b { max-width: 66px; white-space: normal; }
  .hero-visual .signal-card { width: calc(100% - 16px); margin: -24px 8px 0; }
  .signal-card { padding: 22px; }
  .signal-card__top { align-items: flex-start; }
  .signal-card__footer { grid-template-columns: 1fr; }
  .signal-card__footer span { display: grid; grid-template-columns: 80px 1fr; align-items: baseline; }
  .proof-grid { grid-template-columns: 1fr; }
  .process-grid, .blog-preview__grid { grid-template-columns: 1fr; }
  .demo-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .booking-picker__layout { grid-template-columns: 1fr; }
  .booking-calendar, .booking-times { padding: 12px; }
  .booking-times__slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .year-opportunity { padding: 24px 18px; }
  .year-kpis, .commercial-journey { grid-template-columns: 1fr; }
  .year-kpi { min-height: 175px; }
  .journey-card { min-height: 230px; }
  .metric-card { min-height: 240px; }
  .ownership-section { padding: 64px 0; }
  .chart-grid { gap: 16px; }
  .panel { padding: 20px; }
  .panel__unit { display: none; }
  .bar-row { grid-template-columns: 98px 1fr auto; gap: 8px; }
  .funnel-bar { min-height: 58px; }
  .funnel-segment { min-width: 60px; padding: 8px 4px; font-size: .61rem; }
  .filter-bar { grid-template-columns: 1fr; padding: 16px; }
  .selection-summary { grid-template-columns: 1fr; }
  .selection-summary > div { min-height: 112px; border-right: 0; border-bottom: 1px solid var(--line); }
  .activation-brief, .table-heading { padding-inline: 16px; }
  .table-heading { align-items: flex-start; flex-direction: column; }
  .table-wrap { padding: 0 16px; }
  .explorer-shell > .button--more { width: calc(100% - 32px); margin-inline: 16px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .closing-card { padding: 32px 24px; }
  .footer-links { justify-content: flex-start; }
  .blog-topbar nav > a:not(.button) { display: none; }
  .blog-topbar nav .button { padding-inline: 14px; font-size: .72rem; }
  .blog-hero { padding: 72px 0 64px; }
  .blog-index { padding: 64px 0 80px; }
  .blog-index__grid { grid-template-columns: 1fr; }
  .article-card--featured { display: flex; }
  .article-hero { padding: 56px 0; }
  .breadcrumbs { margin-bottom: 32px; }
  .article-layout { padding: 56px 0 80px; }
  .article-content p, .article-content li { font-size: .96rem; }
  .article-related > div { grid-template-columns: 1fr; }
  .article-related a { min-height: 130px; }
  .article-cta { padding: 28px 22px; }
  .article-cta__actions { display: grid; }
  .article-cta__actions .button { width: 100%; }
  .solution-hub-hero h1, .solution-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .solution-hub-hero__grid, .solution-hero__grid { gap: 40px; }
  .solution-catalog__grid, .solution-outcomes__grid, .solution-deliverables__grid { grid-template-columns: 1fr; }
  .solution-tile { min-height: 260px; padding: 24px; }
  .solution-principles article, .solution-outcomes__grid article, .solution-deliverables__grid article { min-height: 190px; }
  .solution-hero__card { min-height: 300px; padding: 24px; }
  .solution-hero__actions { display: grid; }
  .solution-hero__actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

@media print {
  :root { --paper: #fff; --white: #fff; }
  .topbar, .hero__actions, .filter-bar, .table-heading .button, .button--more, .closing-card__actions, .toast { display: none !important; }
  .hero, .funnel-section, .ownership-section, .year-opportunity, .closing-card { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .hero { padding: 56px 0; }
  .proof-section, .data-section, .explorer-section, .system-section, .method-section, .funnel-section { padding: 52px 0; }
  .panel, .metric-card, .strategy-card, .explorer-shell, .closing-card { break-inside: avoid; box-shadow: none; }
  .explorer-section { break-before: page; }
  .method-section { break-before: page; }
  .table-wrap { overflow: visible; }
}
