@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@650;700;760;800&display=swap");

:root {
  --porcelain: #f9f9f7;
  --paper: #ffffff;
  --vellum: #f3f1ec;
  --ink: #17202a;
  --ink-soft: #2f3a44;
  --muted: #66717b;
  --line: #d9d4ca;
  --line-strong: #bfc7cf;
  --steel: #4682b4;
  --steel-dark: #235b83;
  --steel-soft: #e7f0f6;
  --graphite: #2c333a;
  --graphite-deep: #151b21;
  --emerald: #4f7942;
  --emerald-soft: #e9f2e6;
  --gold: #9a7638;
  --radius: 6px;
  --page-edge: clamp(24px, 4vw, 88px);
  --content-max: 1280px;
  --wide-max: 1680px;
  --narrow-max: 960px;
  --container: var(--content-max);
  --header-h: 68px;
  --shadow: 0 20px 60px rgba(21, 27, 33, .08);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--porcelain); color: var(--ink); font-family: var(--font-body); line-height: 1.55; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
p { margin: 0; color: var(--muted); font-size: 1rem; }
h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: 0; font-family: var(--font-display); }
h1 { font-size: clamp(2.2rem, 3.1vw, 3.25rem); line-height: 1.05; max-width: 760px; font-weight: 760; }
h2 { font-size: clamp(1.7rem, 2.45vw, 2.35rem); line-height: 1.12; font-weight: 760; }
h3 { font-size: 1.05rem; line-height: 1.28; font-weight: 760; }
.container { width: min(var(--content-max), calc(100% - (var(--page-edge) * 2))); margin-inline: auto; }
.wide-container, .hero-architectural > .container { width: min(var(--wide-max), calc(100% - (var(--page-edge) * 2))); margin-inline: auto; }
.narrow { width: min(var(--narrow-max), calc(100% - (var(--page-edge) * 2))); margin-inline: auto; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--steel); color: #fff; padding: 10px 14px; border-radius: 4px; z-index: 999; }
.skip-link:focus { top: 12px; }
.site-header { height: var(--header-h); position: sticky; top: 0; z-index: 1000; background: rgba(249, 249, 247, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-shell { height: 100%; width: min(var(--wide-max), calc(100% - (var(--page-edge) * 2))); margin-inline: auto; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; color: var(--ink); white-space: nowrap; min-width: 124px; }
.brand-logo { display: block; width: clamp(112px, 8.4vw, 132px); height: auto; max-height: 42px; }
.footer-brand .brand-logo { width: 138px; max-height: 44px; }
.brand-mark { width: 30px; height: 30px; display: grid; place-items: center; }
.brand-mark svg { width: 30px; height: 30px; }
.brand-mark svg rect { stroke: var(--steel) !important; fill: #fff !important; }
.brand-mark svg path { stroke: var(--steel-dark) !important; }
.brand-mark svg circle { fill: var(--emerald) !important; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-link { position: relative; color: var(--ink-soft); font-size: .82rem; font-weight: 680; padding: 25px 0 22px; }
.nav-link:after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; }
.nav-link:hover, .nav-link.is-active { color: var(--steel-dark); }
.nav-link.is-active:after { background: var(--steel); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { color: var(--muted); font-size: .86rem; white-space: nowrap; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; margin-left: auto; padding: 9px; }
.menu-button span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; border-radius: 4px; border: 1px solid var(--line-strong); padding: 11px 16px; font-size: .88rem; font-weight: 760; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--steel-dark); border-color: var(--steel-dark); color: #fff; }
.button-primary:hover { background: #17486a; }
.button-secondary, .button-ghost { background: transparent; color: var(--ink); }
.button-secondary:hover, .button-ghost:hover { border-color: var(--steel); color: var(--steel-dark); }
.button-sm { min-height: 40px; padding: 9px 14px; }
.text-link { display: inline-flex; margin-top: 16px; color: var(--steel-dark); font-weight: 760; }
.eyebrow { color: var(--steel-dark); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800; margin: 0 0 18px; }
.section { padding: clamp(36px, 3.8vw, 64px) 0; border-top: 1px solid var(--line); }
.section.compact { padding: 48px 0; }
.section-dark { background: var(--graphite); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.section-heading { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; margin-bottom: clamp(26px, 2.7vw, 40px); }
.section-heading p:last-child { max-width: 660px; }
.hero-architectural { padding: clamp(38px, 4.2vw, 66px) 0 clamp(32px, 3.4vw, 54px); background: linear-gradient(180deg, #fff 0%, var(--porcelain) 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(420px, .78fr) minmax(620px, 1.22fr); gap: clamp(30px, 3.8vw, 64px); align-items: center; }
.hero-copy .hero-lead { max-width: 610px; margin-top: 26px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.74; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof-strip { display: grid; grid-template-columns: repeat(2, minmax(145px, 1fr)); gap: 10px; margin-top: 30px; }
.hero-proof-strip div { min-width: 0; padding: 12px 13px; border: 1px solid var(--line); border-radius: 6px; background: rgba(255,255,255,.72); }
.hero-proof-strip strong { display: block; color: var(--ink); font-size: .9rem; line-height: 1.22; }
.hero-proof-strip span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.45; margin-top: 5px; }
.product-preview, .cockpit-panel { background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.cockpit-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: #fdfdfb; font-size: .77rem; color: var(--muted); }
.cockpit-top strong { color: var(--ink); text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; }
.live-dot:before, .status-dot:before { content: ""; display:inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(79,121,66,.12); }
.cockpit-body { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr); gap: 14px; padding: 16px; background: #eef1f2; }
.site-model { min-height: clamp(320px, 24vw, 420px); background-color: var(--graphite-deep); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.12); color: #fff; position: relative; overflow: hidden; padding: 18px; }
.page-home .site-model { background-image: linear-gradient(90deg, rgba(21,27,33,.76), rgba(21,27,33,.28)), url("../img/generated/veyviz-floorplan-intelligence-map.png"); }
.page-platform .site-model { background-image: linear-gradient(90deg, rgba(21,27,33,.78), rgba(21,27,33,.32)), url("../img/generated/veyviz-feed-to-evidence-architecture.png"); }
.site-model:before { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(70,130,180,.16), transparent 52%), repeating-linear-gradient(160deg, rgba(255,255,255,.045) 0 1px, transparent 1px 20px); }
.model-title { position: relative; display: flex; justify-content: space-between; gap: 14px; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 800; color: #fff; }
.building-wire { position: absolute; left: 12%; right: 12%; bottom: 24%; height: 52%; border: 1px solid rgba(255,255,255,.2); transform: skewX(-12deg); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); }
.building-wire:before, .building-wire:after { content: ""; position: absolute; inset: 14% 10%; border: 1px solid rgba(255,255,255,.14); }
.building-wire:after { inset: 32% 18%; }
.zone-marker { position: absolute; z-index: 2; min-width: 98px; padding: 9px 10px; border: 1px solid rgba(255,255,255,.22); background: rgba(44,51,58,.92); color: #fff; font-size: .72rem; }
.zone-marker strong { display: block; margin-top: 3px; font-size: .82rem; }
.z1 { left: 8%; top: 35%; } .z2 { left: 42%; top: 46%; border-color: #75a9d1; } .z3 { right: 7%; top: 32%; border-color: rgba(154,118,56,.8); } .z4 { left: 16%; bottom: 15%; }
.cockpit-rail { background: var(--graphite-deep); color: #fff; padding: 14px; display: grid; align-content: start; gap: 10px; }
.event-main { border: 1px solid rgba(70,130,180,.55); background: rgba(70,130,180,.13); padding: 14px; }
.event-main small, .event-row span { color: rgba(255,255,255,.62); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }
.event-main strong { display: block; margin-top: 8px; color: #fff; }
.event-row { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.82); }
.cockpit-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); background: #fff; }
.cockpit-metrics div { padding: 16px; border-right: 1px solid var(--line); }
.cockpit-metrics div:last-child { border-right: 0; }
.cockpit-metrics strong { display: block; font-size: 1.25rem; color: var(--ink); }
.cockpit-metrics span { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.diagnostic-band { background: var(--vellum); }
.diagnostic-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.data-ledger { border-top: 1px solid var(--line-strong); }
.ledger-row { display: grid; grid-template-columns: 72px minmax(250px, .8fr) minmax(280px, 1fr); gap: clamp(22px, 3vw, 42px); align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.ledger-row span { color: var(--gold); font-size: .78rem; font-weight: 800; }
.ledger-row strong { color: var(--ink); }
.ledger-row p { font-size: .9rem; }
.process-rail { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); background: #fff; }
.process-step { padding: 22px 18px; border-right: 1px solid var(--line); min-height: 178px; }
.process-step:last-child { border-right: 0; }
.process-step span { display: block; color: var(--steel-dark); font-size: .72rem; font-weight: 840; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 26px; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: .88rem; }
.zone-board { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 28px; align-items: stretch; }
.site-zone-map { min-height: 420px; background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden; }
.site-zone-map:before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(23,32,42,.04) 0 1px, transparent 1px 48px), repeating-linear-gradient(0deg, rgba(23,32,42,.04) 0 1px, transparent 1px 48px); }
.site-zone-map svg { position: absolute; inset: 11%; width: 78%; height: 78%; }
.zone-pin { position: absolute; z-index: 2; background: var(--paper); border: 1px solid var(--line-strong); padding: 9px 11px; font-size: .78rem; font-weight: 760; color: var(--ink); }
.pin-entrance { left: 8%; top: 24%; } .pin-food { left: 42%; top: 42%; } .pin-atrium { right: 11%; top: 29%; } .pin-corridor { right: 9%; bottom: 22%; } .pin-parking { left: 16%; bottom: 18%; }
.zone-table { border-top: 1px solid var(--line-strong); }
.zone-table div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.zone-table strong { color: var(--ink); }
.zone-table p { font-size: .9rem; }
.zone-playbook { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid var(--line); background: #fff; }
.zone-playbook article { min-height: 220px; padding: 24px 20px; border-right: 1px solid var(--line); }
.zone-playbook article:last-child { border-right: 0; }
.zone-playbook span, .module-index { display: inline-flex; min-width: 32px; height: 24px; align-items: center; color: var(--gold); font-size: .76rem; font-weight: 820; text-transform: uppercase; letter-spacing: .08em; }
.zone-playbook h3 { margin: 28px 0 10px; }
.role-ledger { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.16); }
.role-ledger article { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.14); min-height: 230px; }
.role-ledger article:last-child { border-right: 0; }
.role-ledger span { display: block; color: #8fbadd; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 820; margin-bottom: 34px; }
.role-ledger p { font-size: .9rem; }
.geo-grid, .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.geo-answer, .faq-list details, .split-card, .cta-card, .page-hero-card, .feature-grid article, .analytics-grid article, .question-grid article, .security-grid article, .values-grid article, .privacy-grid article, .outcome-grid article, .rollout-grid article, .architecture-grid article, .problem-grid article, .role-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: none; }
.geo-answer { padding: 24px; }
.geo-answer h2 { font-size: 1.35rem; margin-bottom: 12px; }
.faq-list details { padding: 20px; }
.faq-list summary { cursor: pointer; color: var(--ink); font-weight: 760; }
.faq-list p { margin-top: 12px; }
.page-hero { padding: clamp(42px, 4vw, 68px) 0; background: linear-gradient(180deg, #fff, var(--porcelain)); border-bottom: 1px solid var(--line); }
.page-hero > .container { width: min(1500px, calc(100% - (var(--page-edge) * 2))); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 500px); gap: clamp(30px, 4vw, 62px); align-items: center; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
.page-hero p:not(.eyebrow) { margin-top: 24px; color: var(--ink-soft); font-size: 1rem; line-height: 1.74; max-width: 760px; }
.page-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.page-badges span { border: 1px solid var(--line); background: #fff; padding: 7px 10px; font-size: .78rem; font-weight: 760; color: var(--ink-soft); }
.page-hero-card { border-left: 4px solid var(--steel); padding: 0 24px 24px; background: #fff; overflow: hidden; position: relative; }
.page-hero-card:before { content: ""; display: block; height: clamp(150px, 16vw, 230px); margin: 0 -24px 20px; background-color: var(--graphite); background-size: cover; background-position: center; border-bottom: 1px solid var(--line); }
.page-analytics .page-hero-card:before { background-image: linear-gradient(90deg, rgba(21,27,33,.38), rgba(21,27,33,.04)), url("../img/generated/veyviz-foodcourt-queue.png"); }
.page-solutions .page-hero-card:before { background-image: linear-gradient(90deg, rgba(21,27,33,.38), rgba(21,27,33,.04)), url("../img/generated/veyviz-mall-operations-hero.png"); }
.page-security .page-hero-card:before { background-image: linear-gradient(90deg, rgba(21,27,33,.28), rgba(21,27,33,.04)), url("../img/generated/veyviz-security-evidence-cockpit.png"); }
.page-deployment .page-hero-card:before, .page-contact .page-hero-card:before { background-image: linear-gradient(90deg, rgba(21,27,33,.3), rgba(21,27,33,.04)), url("../img/generated/veyviz-deployment-compatibility-review.png"); }
.page-about .page-hero-card:before { background-image: linear-gradient(90deg, rgba(21,27,33,.34), rgba(21,27,33,.04)), url("../img/generated/veyviz-mall-operations-hero.png"); }
.page-privacy .page-hero-card:before, .page-plain .page-hero-card:before { background-image: linear-gradient(90deg, rgba(21,27,33,.34), rgba(21,27,33,.04)), url("../img/generated/veyviz-feed-to-evidence-architecture.png"); }
.page-hero-card strong { display: block; margin: 18px 0 8px; }
.split-section, .contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.split-section { margin-bottom: clamp(26px, 3vw, 40px); }
.split-card { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; padding: clamp(24px, 3.2vw, 38px); }
.split-card > *, .contact-layout > *, .page-hero-grid > *, .section-heading > * { min-width: 0; }
.contact-mini { display: grid; gap: 10px; }
.contact-mini a { color: var(--steel-dark); font-weight: 760; overflow-wrap: anywhere; }
.copy-block p + p { margin-top: 22px; }
.problem-grid, .feature-grid, .assurance-grid, .analytics-grid, .question-grid, .security-grid, .values-grid, .privacy-grid, .outcome-grid, .rollout-grid, .architecture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); background: #fff; }
.outcome-grid, .security-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.architecture-grid { grid-template-columns: repeat(5, 1fr); }
.problem-grid article, .feature-grid article, .assurance-grid article, .analytics-grid article, .question-grid article, .security-grid article, .values-grid article, .privacy-grid article, .outcome-grid article, .rollout-grid article, .architecture-grid article, .role-card { border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px; min-height: 160px; }
.problem-grid article:last-child, .feature-grid article:last-child { border-right: 0; }
.problem-grid span, .architecture-grid span { color: var(--gold); font-size: .78rem; font-weight: 820; }
.analytics-grid ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); font-size: .9rem; }
.analytics-grid li + li { margin-top: 7px; }
.section h2 + p, .split-card h2 + p, .split-section h2 + p, .diagnostic-grid h2 + p, .cta-card h2 + p { margin-top: 14px; }
.section h3 + p { margin-top: 4px; }
.principle-card { align-self: stretch; display: grid; align-content: center; background: var(--graphite); color: #fff; border: 1px solid var(--graphite); border-radius: var(--radius); padding: 28px; }
.principle-card strong { color: #9fc4df; }
.principle-card p { margin-top: 10px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.step-list { display: grid; gap: 0; list-style: none; counter-reset: step; padding: 0; margin: 0; border-top: 1px solid var(--line-strong); }
.step-list li { counter-increment: step; display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 16px; row-gap: 5px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step-list li:before { content: counter(step, decimal-leading-zero); color: var(--gold); font-weight: 820; font-size: .82rem; }
.step-list strong { color: var(--ink); grid-column: 2; min-width: 0; }
.step-list span { display: block; grid-column: 2; margin-top: 0; color: var(--muted); font-size: .92rem; line-height: 1.58; max-width: 64ch; }
.notfound { min-height: calc(100vh - var(--header-h)); display: grid; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-strong); }
.check-list li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.check-list li:before { content: ""; display: inline-block; width: 7px; height: 7px; background: var(--emerald); margin-right: 12px; }
.contact-form { display: grid; gap: 14px; background: #fff; border: 1px solid var(--line); padding: 26px; border-radius: var(--radius); }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: .84rem; font-weight: 760; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line-strong); background: #fff; border-radius: 4px; padding: 12px; color: var(--ink); font: inherit; }
.honeypot { position: absolute; left: -9999px; }
.form-note { font-size: .84rem; }
.contact-status { display: none; border: 1px solid var(--line-strong); border-radius: 4px; padding: 12px; font-size: .9rem; color: var(--ink); background: var(--steel-soft); }
.contact-status.is-visible { display: block; }
.contact-status.is-error { background: #fff7ed; border-color: #d8b98a; }
.contact-status.is-success { background: var(--emerald-soft); border-color: #aac69f; }
.direct-contact { display: grid; gap: 10px; margin-top: 22px; }
.direct-contact a { color: var(--steel-dark); font-weight: 760; }
.sales-readiness { background: var(--vellum); }
.cta-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 34px; background: var(--graphite); border-color: var(--graphite); }
.cta-card h2 { color: #fff; }
.cta-card p { color: rgba(255,255,255,.74); }
.cta-card .eyebrow { color: #9fc4df; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-card .button-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.site-footer { background: var(--graphite-deep); color: #fff; padding: 58px 0 30px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 42px; }
.footer-grid h2 { margin: 0 0 14px; color: rgba(255,255,255,.48); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid a { display: block; margin: 9px 0; font-size: .9rem; }
.footer-small a { display: inline; margin: 0; }
.footer-brand { margin-bottom: 18px; min-width: 148px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.52); font-size: .8rem; }
@media (max-width: 1180px) { .hero-grid, .page-hero-grid { grid-template-columns: 1fr; } .hero-copy { max-width: 820px; } .product-preview, .page-hero-card { max-width: 920px; } }
@media (max-width: 1500px) { .phone-link { display: none; } .site-nav { gap: 14px; } .nav-shell { gap: 16px; } }
@media (max-width: 1260px) { .menu-button { display: block; } .site-nav { position: fixed; inset: var(--header-h) 18px auto 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); padding: 10px; box-shadow: var(--shadow); } .site-nav.is-open { display: flex; } .nav-link { padding: 13px 10px; } .nav-link.is-active:after { display: none; } .nav-actions { display: none; } }
@media (max-width: 1120px) { .menu-button { display: block; } .site-nav { position: fixed; inset: var(--header-h) 18px auto 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); padding: 10px; box-shadow: var(--shadow); } .site-nav.is-open { display: flex; } .nav-link { padding: 13px 10px; } .nav-link.is-active:after { display: none; } .nav-actions { display: none; } }
@media (max-width: 1120px) { .diagnostic-grid, .zone-board, .split-section, .split-card, .contact-layout { grid-template-columns: 1fr; } .architecture-grid, .process-rail, .zone-playbook { grid-template-columns: repeat(2, 1fr); } .process-step:nth-child(even), .architecture-grid article:nth-child(even), .zone-playbook article:nth-child(even) { border-right: 0; } .role-ledger, .problem-grid, .feature-grid, .assurance-grid, .analytics-grid, .question-grid, .security-grid, .values-grid, .privacy-grid, .outcome-grid, .rollout-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { :root { --header-h: 66px; --page-edge: 18px; } .menu-button { display: block; } .site-nav { position: fixed; inset: var(--header-h) 14px auto 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); padding: 10px; } .site-nav.is-open { display: flex; } .nav-link { padding: 13px 10px; } .nav-link.is-active:after { display: none; } .nav-actions { display: none; } .hero-architectural { padding: 38px 0 40px; } .hero-grid { display: flex; flex-direction: column; } .hero-copy { display: contents; } .hero-copy .eyebrow { order: 1; } .hero-copy h1 { order: 2; } .hero-copy .hero-lead { order: 3; } .hero-actions { order: 4; } .product-preview { order: 5; width: 100%; } .hero-proof-strip { order: 6; width: 100%; } h1 { font-size: clamp(2rem, 8.2vw, 2.35rem); line-height: 1.1; } h2 { font-size: clamp(1.55rem, 6.4vw, 2rem); } .section-heading { grid-template-columns: 1fr; gap: 16px; align-items: start; } .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; } .button { width: 100%; } .hero-proof-strip, .cockpit-body, .cockpit-metrics, .geo-grid, .faq-list { grid-template-columns: 1fr; } .cockpit-metrics div { border-right: 0; border-bottom: 1px solid var(--line); } .site-model { min-height: 280px; } .page-hero-card:before { height: 170px; } .process-rail, .architecture-grid, .zone-playbook, .role-ledger, .problem-grid, .feature-grid, .assurance-grid, .analytics-grid, .question-grid, .security-grid, .values-grid, .privacy-grid, .outcome-grid, .rollout-grid { grid-template-columns: 1fr; } .process-step, .zone-playbook article, .role-ledger article, .problem-grid article, .feature-grid article, .architecture-grid article { border-right: 0; } .ledger-row, .step-list li { grid-template-columns: 1fr; gap: 8px; } .zone-table div { grid-template-columns: 1fr; gap: 6px; } .site-zone-map { min-height: 340px; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } .cta-card { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .hero-actions { width: 100%; max-width: 360px; margin-inline: auto; } .cockpit-body { padding: 12px; } .cockpit-rail { display: none; } .cockpit-metrics, .hero-proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } .cockpit-metrics div:nth-child(2n) { border-right: 0; } .cockpit-metrics div, .hero-proof-strip div { padding: 13px 12px; } }
@media (max-width: 860px) { .hero-grid { display: grid; grid-template-columns: 1fr; } .hero-copy { display: block; width: 100%; max-width: 100%; } .hero-copy h1, .hero-copy .hero-lead, .hero-copy .eyebrow { max-width: 100%; } .product-preview, .hero-proof-strip { order: initial; } }
@media (max-width: 860px) { .step-list strong, .step-list span { grid-column: 1; } .split-card { padding: 24px; } }
@media (max-width: 520px) { .container, .wide-container, .hero-architectural > .container, .page-hero > .container, .narrow { width: min(360px, calc(100% - (var(--page-edge) * 2))); } h1 { font-size: clamp(1.78rem, 7vw, 2rem); } h1, h2, h3, p, a, li, span, strong { overflow-wrap: break-word; } .hero-grid > *, .hero-copy > *, .hero-actions, .product-preview { min-width: 0; max-width: 100%; } .hero-copy, .hero-actions, .product-preview, .hero-proof-strip { width: 100%; max-width: min(100%, 360px); margin-inline: auto; } .hero-copy h1, .hero-copy .hero-lead, .hero-copy .eyebrow { width: 100%; max-width: 100%; overflow-wrap: break-word; } .hero-actions { width: 100%; } .button { min-width: 0; } .site-model { min-height: 230px; padding: 14px; } .cockpit-metrics { display: none; } .hero-proof-strip { grid-template-columns: 1fr; } .hero-proof-strip div { border-right: 0; } .page-hero-card:before { height: 140px; } }
@media (max-width: 460px) { .hero-copy .hero-lead { font-size: .98rem; } .cockpit-top { align-items: flex-start; flex-direction: column; } .zone-marker { min-width: 86px; font-size: .68rem; padding: 7px; } .z1 { left: 5%; } .z2 { left: 35%; } .z3 { right: 4%; } .z4 { left: 10%; } }
