:root {
  --ink: #111827;
  --muted: #606b7a;
  --faint: #8792a4;
  --line: #dbe3ee;
  --surface: #fbfcff;
  --surface-2: #f3f6fb;
  --mist: #edf3ff;
  --primary: #1f3a8a;
  --navy: #111f4d;
  --royal: #3157c9;
  --violet: #7c3aed;
  --copper: #b9782f;
  --alert: #d65a4a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
  --shadow-strong: 0 28px 86px rgba(17, 31, 77, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: 0; }
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); max-width: 940px; }
h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
h3 { font-size: 1.18rem; }
svg { max-width: 100%; }
main,
section,
header,
footer {
  max-width: 100vw;
}

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; min-width: 0; }
.icon { width: 22px; height: 22px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
:focus-visible {
  outline: 3px solid rgba(198, 154, 58, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  white-space: nowrap;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: 228px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 0 12px;
  color: #354052;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 760;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: rgba(31, 58, 138, 0.09); }
.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-actions { display: flex; gap: 10px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(31, 58, 138, 0.27);
}
.btn-primary:hover { background: var(--navy); }
.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: rgba(31, 58, 138, 0.38);
  box-shadow: 0 12px 28px rgba(31, 58, 138, 0.1);
}
.btn-outline.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}
.btn .icon { width: 18px; height: 18px; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 8px 12px;
  background: rgba(237, 243, 255, 0.92);
  border: 1px solid rgba(31, 58, 138, 0.14);
  border-radius: 999px;
  max-width: 100%;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--copper);
  border-radius: 999px;
}
.section-kicker { margin-bottom: 14px; color: var(--copper); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  padding: 82px 0 52px;
  background:
    linear-gradient(90deg, rgba(10, 18, 34, 0.88) 0%, rgba(12, 23, 43, 0.7) 38%, rgba(14, 24, 38, 0.26) 74%),
    linear-gradient(0deg, rgba(12, 18, 31, 0.58), rgba(12, 18, 31, 0.1) 52%),
    url("../assets/hero-apartment-bg.webp") center right / cover no-repeat;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 31, 77, 0.58), rgba(17, 31, 77, 0.05) 58%),
    radial-gradient(circle at 24% 24%, rgba(49, 87, 201, 0.22), transparent 32%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
  gap: 34px;
  align-items: center;
}
.hero-grid > *,
.page-hero .container > *,
.section-head > *,
.comparison-grid > *,
.two-column > *,
.contact-grid > *,
.command-cta > *,
.hero-copy {
  min-width: 0;
}
.hero-copy {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}
.hero-copy h1 {
  max-width: 820px;
  color: var(--white);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.hero .btn-primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}
.hero .btn-primary:hover { color: var(--white); background: var(--primary); }
.hero .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}
.hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 8px;
}
.trust-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}
.trust-icon,
.zone-icon,
.capability-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--primary);
  background: var(--mist);
  border: 1px solid rgba(31, 58, 138, 0.13);
  border-radius: var(--radius);
}
.trust-item strong { display: block; color: var(--navy); line-height: 1.15; }
.trust-item span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.35; }
.hero .trust-row {
  max-width: 800px;
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.hero .trust-item {
  grid-template-columns: 38px 1fr;
  padding: 16px;
  background: rgba(255, 255, 255, 0.16);
}
.hero .trust-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
}
.hero .trust-item strong { color: var(--white); }
.hero .trust-item span { color: rgba(255, 255, 255, 0.76); }


.product-preview {
  overflow: hidden;
  align-self: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}
.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: #fbfcff;
  border-bottom: 1px solid var(--line);
}
.preview-top strong { color: var(--navy); }
.preview-top span { color: var(--copper); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.preview-grid { display: grid; gap: 12px; padding: 18px; }
.preview-metric {
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.preview-metric span { display: block; color: var(--muted); font-size: .82rem; }
.preview-metric strong { display: block; margin: 4px 0 12px; color: var(--navy); }
.preview-metric i,
.mini-screen i {
  display: block;
  width: var(--w);
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--copper));
  border-radius: 999px;
}
.preview-table { display: grid; gap: 1px; padding: 0 18px 18px; }
.preview-table div {
  display: grid;
  grid-template-columns: 1fr .8fr .8fr;
  gap: 10px;
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: .86rem;
}
.preview-table div:first-child {
  color: var(--navy);
  background: var(--mist);
  font-weight: 900;
}
.preview-table strong { color: var(--ink); }
.preview-table em { color: var(--copper); font-style: normal; font-weight: 800; }
.product-section { background: linear-gradient(180deg, #fbfcff, #f3f6fb); }
.product-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.screen-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.screen-card span {
  color: var(--copper);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mini-screen {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.legal-section { background: #f6f8fc; }
.legal-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
}
.legal-content .panel h2 { margin-bottom: 10px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.legal-content a { color: var(--primary); font-weight: 850; }
.compact-hero { padding: 70px 0 64px; }


.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.metrics-grid div {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.metrics-grid span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}
.metrics-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
}
.ops-list,
.panel-list {
  display: grid;
  gap: 10px;
}
.ops-list > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ops-list b { display: block; }
.ops-list span { color: var(--muted); font-size: .92rem; }
.ops-list em {
  color: var(--copper);
  font-style: normal;
  font-size: .78rem;
  font-weight: 900;
}

.metrics-band {
  padding: 18px 0;
  background: var(--navy);
}
.metrics-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.metrics-grid div,
.proof-grid div {
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.metrics-grid span,
.proof-grid span { display: block; color: rgba(255,255,255,.7); font-size: .82rem; }
.metrics-grid strong,
.proof-grid strong { display: block; margin-top: 4px; color: var(--white); line-height: 1.28; font-size: 1rem; }
.proof-band { background: linear-gradient(135deg, #0c1428, #162963); }

.section { padding: 72px 0; }
.section-muted {
  background:
    linear-gradient(135deg, rgba(237,243,255,.96), rgba(251,252,255,.98)),
    var(--mist);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p { font-size: 1.04rem; }

.zone-grid,
.testimonial-grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.zone-card,
.quote-card,
.plan,
.contact-card,
.form-card,
.comparison-panel,
.capability-card,
.panel {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.zone-card {
  display: grid;
  gap: 14px;
  min-height: 245px;
}
.zone-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--primary));
  border-color: var(--primary);
}
.zone-card.featured p,
.zone-card.featured .zone-status { color: rgba(255,255,255,.75); }
.zone-card.featured .zone-icon { color: var(--copper); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); }
.zone-status {
  width: fit-content;
  padding: 5px 9px;
  color: var(--navy);
  background: rgba(185,120,47,.15);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
}

.comparison-grid,
.two-column,
.contact-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 44px;
  align-items: center;
}
.comparison-panel ul,
.plan-list,
.panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.comparison-panel li,
.plan-list li,
.panel li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}
.comparison-panel li::before,
.plan-list li::before,
.panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--copper);
  border-radius: 999px;
}
.comparison-panel.before { border-color: rgba(216,107,82,.22); }
.comparison-panel.after { border-color: rgba(31,58,138,.28); box-shadow: var(--shadow-strong); }

.command-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17,31,77,.98), rgba(31,58,138,.96)),
    radial-gradient(circle at 18% 10%, rgba(124,58,237,.26), transparent 38%);
}
.command-band p,
.command-band .section-kicker { color: rgba(255,255,255,.74); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-grid article {
  position: relative;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  color: var(--navy);
  background: var(--copper);
  border-radius: var(--radius);
  font-weight: 950;
}

.quote-card { display: grid; gap: 16px; }
.quote-card span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--navy);
  background: var(--mist);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}
.quote-card p { color: #303b4d; font-size: 1.02rem; }
.quote-card strong { color: var(--muted); font-size: .9rem; }

.section-cta { background: var(--surface); }
.command-cta {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--primary));
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}
.command-cta p { max-width: 720px; margin-top: 12px; color: rgba(255,255,255,.75); }
.command-cta .section-kicker { color: var(--copper); }
.cta-device {
  padding: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.device-top { display: flex; gap: 5px; margin-bottom: 14px; }
.device-top span { width: 8px; height: 8px; background: rgba(255,255,255,.6); border-radius: 999px; }
.device-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.device-grid span { height: 48px; background: rgba(255,255,255,.12); border-radius: 6px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    linear-gradient(90deg, rgba(10, 18, 34, 0.88) 0%, rgba(12, 23, 43, 0.7) 38%, rgba(14, 24, 38, 0.26) 74%),
    linear-gradient(0deg, rgba(12, 18, 31, 0.58), rgba(12, 18, 31, 0.1) 52%),
    url("../assets/hero-apartment-bg.webp") center right / cover no-repeat;
  color: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 31, 77, 0.58), rgba(17, 31, 77, 0.05) 58%),
    radial-gradient(circle at 24% 24%, rgba(49, 87, 201, 0.22), transparent 32%);
}
.page-hero .container { position: relative; z-index: 1; display: grid; gap: 20px; }
.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.page-hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.page-hero .btn-primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}
.page-hero .btn-primary:hover {
  color: var(--white);
  background: var(--primary);
}
.page-hero .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}
.page-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}
.contact-hero {
  padding: 86px 0 78px;
}
.contact-hero h1 { max-width: 820px; }
.hero-contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.hero-contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.hero-contact-points .icon { width: 18px; height: 18px; color: var(--white); }
.suite-panel {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}
.suite-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px;
  color: var(--navy);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.capability-stack { display: grid; gap: 14px; }
.capability-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
}
.capability-card span { color: var(--copper); font-size: .78rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.about-story {
  background:
    linear-gradient(180deg, #fbfcff, #f6f8fc);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, .7fr);
  gap: 48px;
  align-items: center;
}
.about-story-grid p + p { margin-top: 16px; }
.about-ledger {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}
.about-ledger div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px 16px;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about-ledger span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius);
  font-weight: 950;
}
.about-ledger strong {
  color: var(--navy);
  font-size: 1.04rem;
}
.about-ledger p { color: var(--muted); }
.about-principles .section-head { margin-bottom: 22px; }
.values-grid { display: grid; gap: 14px; }
.values-grid div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.values-grid .icon { color: var(--primary); }
.values-grid strong,
.values-grid span { display: block; }
.values-grid strong,
.values-grid span { grid-column: 2; }
.values-grid .icon { grid-row: span 2; }
.values-grid strong { color: var(--navy); }
.values-grid span { color: var(--muted); }
.about-principles .values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-principles .values-grid div {
  align-content: start;
  min-height: 180px;
}
.about-operations {
  background: var(--surface);
}
.about-process article {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.about-process span {
  margin-bottom: 26px;
  color: var(--white);
  background: var(--primary);
}

.pricing-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}
.pricing-strip span { color: var(--copper); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.plan { display: grid; gap: 18px; }
.plan.featured { color: var(--white); background: linear-gradient(145deg, var(--navy), var(--primary)); border-color: var(--primary); box-shadow: var(--shadow-strong); }
.plan.featured p,
.plan.featured li { color: rgba(255,255,255,.76); }
.plan-tag {
  width: fit-content;
  padding: 6px 10px;
  color: var(--navy);
  background: rgba(185,120,47,.16);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
}
.plan.featured .plan-tag { color: var(--white); background: rgba(255,255,255,.12); }
.plan-price { color: var(--navy); font-size: 2rem; font-weight: 950; line-height: 1; }
.plan.featured .plan-price { color: var(--white); }

.contact-section {
  padding-top: 52px;
  background:
    linear-gradient(180deg, #f6f8fc 0%, #fbfcff 45%, #f7f9fd 100%);
}
.contact-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
}
.contact-card,
.form-card { padding: 30px; }
.contact-card {
  display: grid;
  gap: 22px;
  align-content: start;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17,31,77,.98), rgba(31,58,138,.94)),
    radial-gradient(circle at 16% 10%, rgba(185,120,47,.3), transparent 34%);
  border-color: rgba(255,255,255,.12);
  box-shadow: var(--shadow-strong);
}
.contact-card p { color: rgba(255,255,255,.75); }
.contact-card h2 { color: var(--white); }
.contact-card .section-kicker { color: #e4b65d; }
.contact-logo-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    #0b1227;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0,0,0,.22);
}
.contact-logo-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.contact-logo-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline-list { display: grid; gap: 12px; }
.timeline-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.timeline-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 950;
}
.timeline-list strong {
  display: block;
  color: var(--white);
}
.contact-methods {
  display: grid;
  gap: 10px;
}
.contact-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.contact-line .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.contact-line strong { display: block; color: var(--white); }
.contact-line a,
.contact-line span { color: rgba(255,255,255,.72); overflow-wrap: anywhere; }
.form-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.96));
  box-shadow: 0 30px 80px rgba(17, 31, 77, 0.14);
}
.form-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.form-card-head span {
  color: var(--copper);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-card-head h2 { font-size: clamp(1.6rem, 2.7vw, 2.35rem); }
.form-card form { display: grid; gap: 16px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: 7px; }
.field label { font-size: .92rem; font-weight: 850; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(31, 58, 138, 0.45);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 58, 138, 0.08);
  outline: 0;
}
.field textarea { min-height: 132px; resize: vertical; }
.form-note { min-height: 22px; color: var(--primary); font-weight: 800; }
.form-card button[disabled] { cursor: wait; opacity: .72; transform: none; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-question span:last-child {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.site-footer {
  padding: 34px 0 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 0%, rgba(49,87,201,.18), transparent 32%),
    linear-gradient(180deg, #0c1428 0%, #0b1224 100%);
}
.site-footer .brand { color: var(--white); }
.site-footer .brand-logo {
  width: 156px;
  background: var(--white);
  border-radius: 5px;
  padding: 5px 7px;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(120px, .58fr)) minmax(190px, .86fr);
  gap: 26px;
  align-items: start;
}
.footer-main p,
.footer-main a,
.footer-main span,
.footer-bottom { color: rgba(255,255,255,.66); }
.footer-main strong {
  display: block;
  color: var(--white);
  font-size: .88rem;
  line-height: 1.2;
}
.footer-brand {
  display: grid;
  gap: 10px;
}
.footer-brand p {
  max-width: 330px;
  font-size: .82rem;
  line-height: 1.55;
}
.footer-links {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}
.footer-links a,
.footer-contact,
.footer-phone {
  font-size: .82rem;
  line-height: 1.35;
}
.footer-links a:hover { color: var(--white); }
.footer-contact,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.footer-contact .icon,
.footer-phone .icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: rgba(255,255,255,.82);
}
.footer-social {
  display: flex;
  gap: 9px;
}
.footer-social span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .63rem;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-demo {
  display: grid;
  gap: 9px;
}
.footer-demo p {
  max-width: 190px;
  font-size: .82rem;
  line-height: 1.45;
}
.footer-demo .btn-primary {
  width: 100%;
  min-height: 38px;
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
  font-size: .86rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    position: fixed;
    inset: 84px 14px auto;
    z-index: 60;
    display: grid;
    gap: 6px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
  }
  .nav-links.open a { min-height: 46px; padding: 0 14px; }
  .hero-grid,
  .section-head,
  .comparison-grid,
  .two-column,
  .about-story-grid,
  .contact-grid,
  .page-hero-grid,
  .command-cta {
    grid-template-columns: 1fr;
  }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand,
  .footer-demo { grid-column: 1 / -1; }
  .metrics-grid,
  .proof-grid,
  .product-screens,
  .zone-grid,
  .about-principles .values-grid,
  .testimonial-grid,
  .plans,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 28px);
    max-width: var(--max);
  }
  .brand-logo { width: min(170px, 58vw); }
  .site-footer .brand-logo { width: min(168px, 58vw); }
  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.5vw, 2.4rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .eyebrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: var(--radius);
    overflow-wrap: anywhere;
  }
  .hero-copy,
  .page-hero .container,
  .section-head,
  .contact-card,
  .form-card {
    max-width: 100%;
    overflow: hidden;
  }
  .hero { padding: 44px 0 28px; }
  .hero-grid { gap: 34px; }
  .hero-copy p,
  .page-hero p,
  .section-head p {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .hero-actions,
  .section-actions,
  .footer-bottom { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .trust-row,
  .metrics-grid,
  .proof-grid,
  .product-screens,
  .zone-grid,
  .about-principles .values-grid,
  .testimonial-grid,
  .plans,
  .process-grid,
  .suite-grid { grid-template-columns: 1fr; }
  .ops-list > div { grid-template-columns: 34px 1fr; }
  .ops-list em { grid-column: 2; }
  .suite-top {
    flex-direction: column;
  }
  .metrics-grid div,
  .zone-card,
  .quote-card,
  .plan,
  .contact-card,
  .form-card,
  .comparison-panel,
  .capability-card,
  .panel {
    min-width: 0;
  }
  .command-cta { padding: 24px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 58px 0; }
  .contact-hero { padding: 48px 0 54px; }
  .hero-contact-points { display: grid; }
  .contact-card,
  .form-card,
  .footer-main { grid-template-columns: 1fr; gap: 22px; }
  .footer-demo {
    display: grid;
    align-items: stretch;
  }
  .footer-demo p { max-width: none; }
  .footer-bottom { text-align: left; }
  .pricing-strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .contact-logo-video video {
    animation-play-state: paused;
  }
}
