/* ================================================================
   The McKee Connect — shared visual system
   Framework-free, responsive, and intentionally component-driven.
   ================================================================ */

:root {
  color-scheme: light;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-deep: #1e40af;
  --blue-pale: #eff6ff;
  --blue-wash: #f6f9ff;
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #5b6575;
  --silver: #98a2b3;
  --line: #e5e9f0;
  --line-strong: #d5dce6;
  --surface: #f7f9fc;
  --white: #ffffff;
  --navy: #09111f;
  --navy-raised: #101b2f;
  --success: #15803d;
  --font-display: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5rem, 9vw, 8.5rem);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-panel: 36px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .03), 0 10px 28px rgba(16, 24, 40, .05);
  --shadow-md: 0 30px 70px -34px rgba(16, 24, 40, .3), 0 12px 28px rgba(16, 24, 40, .06);
  --shadow-blue: 0 30px 70px -28px rgba(37, 99, 235, .34);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-standard: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: clamp(1rem, .97rem + .14vw, 1.0625rem);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  margin-bottom: .7em;
  font-family: var(--font-display);
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 { font-size: clamp(3.35rem, 6vw, 6.2rem); line-height: .98; }
h2 { font-size: clamp(2.3rem, 4.2vw, 4.25rem); line-height: 1.06; }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.55rem); line-height: 1.2; }
p { color: var(--muted); }

::selection { color: var(--white); background: var(--blue); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.section { padding-block: var(--section-space); }
.section-soft { background: var(--surface); }

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

.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: .1s; }
.js .reveal-delay-2 { transition-delay: .2s; }

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.2rem;
  color: var(--blue-deep);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 1.65rem;
  height: 1px;
  content: "";
  background: var(--blue);
  box-shadow: 1.75rem 0 0 2px var(--blue);
}

.section-kicker.light { color: #bcd0ff; }
.section-kicker.light::before { background: #73a0ff; box-shadow: 1.75rem 0 0 2px #73a0ff; }

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .1);
}

.section-heading { max-width: 780px; margin-bottom: 3.5rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading h2 { margin-bottom: 1.15rem; }
.section-heading > p:last-child { max-width: 650px; margin-bottom: 0; font-size: 1.1rem; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .91rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s var(--ease-out), border-color .2s, background .2s, box-shadow .2s;
}

.button:hover { transform: translateY(-2px); }
.button span { font-size: 1.1em; transition: transform .2s var(--ease-out); }
.button:hover span { transform: translate(2px, -1px); }

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px -13px rgba(37, 99, 235, .8);
}
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 17px 36px -13px rgba(37, 99, 235, .8); }

.button-secondary { border-color: var(--line-strong); background: rgba(255, 255, 255, .86); }
.button-secondary:hover { border-color: #b8ccf8; background: var(--blue-wash); }
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .8rem; }
.button-light { color: var(--ink); background: var(--white); box-shadow: 0 14px 32px -16px rgba(0, 0, 0, .55); }
.button-light:hover { background: #f4f7fc; }
.button-ghost-light { color: var(--white); border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .05); }
.button-ghost-light:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .1); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex: none;
  color: var(--blue-deep);
  font-size: .88rem;
  font-weight: 800;
}
.text-link span { font-size: 1.15em; transition: transform .2s var(--ease-out); }
.text-link:hover span { transform: translate(2px, -2px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}

.site-header.scrolled,
body.nav-open .site-header {
  border-color: rgba(213, 220, 230, .85);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 30px rgba(16, 24, 40, .04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner { display: flex; height: 100%; align-items: center; gap: 1.2rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-size: .91rem;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  overflow: hidden;
  place-items: center;
  border-radius: 9px;
  background: var(--blue);
  box-shadow: 0 8px 20px -8px rgba(37, 99, 235, .8);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  width: 13px;
  height: 6px;
  content: "";
  border: 1.5px solid var(--white);
  border-radius: 4px;
  transform: rotate(-35deg);
}
.brand-mark::before { margin: -6px 0 0 -5px; }
.brand-mark::after { margin: 6px 0 0 5px; }
.brand-mark span { width: 7px; height: 1.5px; border: 0; background: var(--white); }

.site-nav { display: flex; align-items: center; gap: 1.65rem; margin-left: auto; }
.site-nav a { position: relative; color: var(--ink-soft); font-size: .79rem; font-weight: 700; }
.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -.8rem;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: opacity .2s, transform .2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { opacity: 1; transform: translate(-50%, 0); }
.header-cta { margin-left: .5rem; color: var(--white); background: var(--blue); }
.nav-toggle { display: none; }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(9.5rem, 14vw, 12.5rem);
}

.hero-home { padding-bottom: 0; }
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(226, 232, 240, .48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, .48) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 70%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -16rem;
  right: -14rem;
  width: 54rem;
  height: 54rem;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .12), rgba(37, 99, 235, .03) 46%, transparent 72%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(3.5rem, 6vw, 6rem);
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 700px; margin-bottom: 1.4rem; }
.text-gradient {
  color: var(--blue);
  background: linear-gradient(105deg, var(--blue-deep), var(--blue) 58%, #5287f5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede { max-width: 620px; margin-bottom: 2rem; font-size: clamp(1.08rem, 1.35vw, 1.22rem); line-height: 1.7; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; margin-top: 2rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: .48rem; color: var(--ink-soft); font-size: .73rem; font-weight: 700; }
.hero-proof i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .1); }

.system-stage { position: relative; min-height: 590px; perspective: 1000px; }
.stage-glow {
  position: absolute;
  inset: 6% -10% 0 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .2), rgba(37, 99, 235, .04) 48%, transparent 72%);
  filter: blur(20px);
}

.dashboard-window {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: -80px;
  width: 680px;
  overflow: hidden;
  border: 1px solid rgba(152, 162, 179, .32);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 48px 110px -34px rgba(37, 99, 235, .33), 0 18px 50px -30px rgba(16, 24, 40, .4);
  transform: rotateY(-1.2deg) rotateX(.4deg);
  transition: transform .4s var(--ease-out);
}

.system-stage:hover .dashboard-window { transform: rotateY(0) rotateX(0) translateY(-3px); }
.window-bar { display: flex; height: 32px; align-items: center; gap: 5px; padding: 0 11px; border-bottom: 1px solid #edf0f4; background: #fbfcfe; }
.window-bar > span { width: 6px; height: 6px; border-radius: 50%; background: #d8dde6; }
.window-address { width: 250px; margin-inline: auto; padding: 3px 10px; border: 1px solid #eef1f5; border-radius: 6px; color: #8b95a7; background: #fff; font-size: 7px; text-align: center; }
.dashboard-layout { display: grid; grid-template-columns: 118px 1fr; min-height: 410px; }
.dashboard-sidebar { position: relative; padding: 17px 12px; color: #7d8798; background: #0c1526; }
.mini-brand { display: flex; align-items: center; gap: 6px; margin: 0 0 25px 5px; color: #fff; font-size: 8px; font-weight: 800; }
.mini-brand span { width: 14px; height: 14px; border-radius: 4px; background: var(--blue); }
.side-link { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; padding: 7px 8px; border-radius: 6px; font-size: 7px; }
.side-link b { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 2px; }
.side-link em { margin-left: auto; padding: 1px 4px; border-radius: 5px; color: #bcd0ff; background: rgba(37, 99, 235, .22); font-style: normal; }
.side-link.active { color: #fff; background: rgba(255, 255, 255, .08); }
.side-link.active b { border-color: #6d9dff; background: var(--blue); }
.side-bottom { position: absolute; right: 12px; bottom: 13px; left: 12px; display: flex; align-items: center; gap: 7px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .08); }
.side-bottom > span { width: 17px; height: 17px; border-radius: 50%; background: linear-gradient(135deg, #7fa6f9, #325cad); }
.side-bottom div { display: flex; flex-direction: column; font-size: 6px; }
.side-bottom b { color: #fff; }
.side-bottom small { font-size: 5px; }
.dashboard-main { padding: 22px 22px 18px; background: #f7f9fc; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; }
.dash-heading div { display: flex; flex-direction: column; }
.dash-heading small { color: #9199a7; font-size: 6px; }
.dash-heading strong { margin-top: 2px; color: #151d2b; font-family: var(--font-display); font-size: 12px; letter-spacing: -.03em; }
.dash-heading button { padding: 6px 9px; border: 0; border-radius: 5px; color: #fff; background: var(--blue); font-size: 6px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-card { display: flex; min-height: 77px; flex-direction: column; padding: 11px; border: 1px solid #e9edf3; border-radius: 9px; background: #fff; }
.metric-card span { color: #6d7686; font-size: 6px; }
.metric-card strong { margin: 2px 0; color: #121927; font-size: 18px; letter-spacing: -.05em; }
.metric-card small { color: #8891a0; font-size: 5px; }
.metric-card small.positive { color: #16803c; }
.pipeline-card { margin-top: 10px; padding: 13px; border: 1px solid #e9edf3; border-radius: 10px; background: #fff; }
.pipeline-head { display: flex; align-items: center; justify-content: space-between; }
.pipeline-head div { display: flex; flex-direction: column; }
.pipeline-head strong { font-size: 8px; }
.pipeline-head small { color: #929aaa; font-size: 5px; }
.pipeline-head > span { color: var(--blue); font-size: 5px; font-weight: 700; }
.pipeline-labels { display: grid; grid-template-columns: repeat(4, 1fr); margin: 14px 0 6px; }
.pipeline-labels span { color: #7b8494; font-size: 5px; }
.pipeline-labels b { color: #3b4657; }
.pipeline-track { position: relative; height: 3px; margin-bottom: 11px; overflow: hidden; border-radius: 3px; background: #edf0f4; }
.pipeline-track i { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), #6a9bff); }
.lead-row { display: grid; grid-template-columns: 25px 1fr auto 52px; align-items: center; gap: 8px; padding: 8px 3px; border-top: 1px solid #f0f2f5; }
.lead-avatar { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; color: #fff; background: var(--blue); font-size: 6px; font-weight: 800; }
.avatar-silver { background: #66758c; }
.lead-row > div:nth-child(2) { display: flex; flex-direction: column; }
.lead-row strong { color: #1c2533; font-size: 6px; }
.lead-row small { color: #929aaa; font-size: 5px; }
.lead-row > span { font-size: 6px; font-weight: 800; }
.lead-row em { padding: 3px 5px; border-radius: 7px; color: #805c12; background: #fff7d8; font-size: 5px; font-style: normal; text-align: center; }
.lead-row em.status-new { color: var(--blue-deep); background: var(--blue-pale); }

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(213, 220, 230, .82);
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 50px -25px rgba(16, 24, 40, .48);
  backdrop-filter: blur(12px);
  animation: gentleFloat 7s ease-in-out infinite;
}
.floating-card > div { display: flex; flex-direction: column; }
.floating-card small { color: #7f8898; font-size: 7px; }
.floating-card strong { color: #1b2433; font-size: 7px; }
.float-icon { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 8px; color: #fff; background: var(--blue); font-size: 11px; }
.float-icon.silver { color: var(--blue-deep); background: #eaf1ff; }
.float-notification { top: 18px; right: 25px; }
.float-notification > i { width: 6px; height: 6px; margin-left: 5px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .12); }
.float-email { right: 35px; bottom: 55px; animation-delay: -3s; }
.phone-preview {
  position: absolute;
  z-index: 7;
  bottom: 20px;
  left: -15px;
  width: 148px;
  height: 294px;
  overflow: hidden;
  padding: 12px 9px;
  border: 5px solid #101827;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 32px 60px -26px rgba(16, 24, 40, .6);
  transform: rotate(-2deg);
  transition: transform .35s var(--ease-out);
}
.system-stage:hover .phone-preview { transform: rotate(-1deg) translateY(-4px); }
.phone-speaker { width: 40px; height: 4px; margin: -7px auto 10px; border-radius: 6px; background: #1a2230; }
.phone-site-head { display: flex; align-items: center; gap: 4px; color: #111827; font-size: 5px; }
.phone-site-head b { letter-spacing: .08em; }
.phone-site-head i { width: 14px; height: 1px; margin-left: auto; background: #64748b; box-shadow: 0 4px 0 #64748b; }
.mini-roof { width: 12px; height: 8px; background: var(--blue); clip-path: polygon(50% 0, 100% 55%, 83% 55%, 83% 100%, 17% 100%, 17% 55%, 0 55%); }
.phone-hero-image { display: flex; height: 125px; align-items: flex-end; margin: 10px -9px 12px; padding: 12px; background: linear-gradient(140deg, rgba(4, 13, 29, .15), rgba(4, 13, 29, .75)), linear-gradient(25deg, #8aa3c4, #d7e1ec); }
.phone-hero-image span { max-width: 95px; color: #fff; font-family: var(--font-display); font-size: 13px; font-weight: 700; line-height: 1.05; }
.phone-copy-lines b, .phone-copy-lines i { display: block; height: 4px; margin-bottom: 4px; border-radius: 3px; background: #dfe5ed; }
.phone-copy-lines b { width: 70%; height: 6px; background: #586579; }
.phone-copy-lines i:nth-child(2) { width: 95%; }
.phone-copy-lines i:nth-child(3) { width: 78%; }
.phone-button { display: block; margin-top: 12px; padding: 8px; border-radius: 5px; color: #fff; background: var(--blue); font-size: 5px; font-weight: 800; text-align: center; }
.stage-caption { position: absolute; right: 105px; bottom: 5px; display: flex; align-items: center; gap: 8px; margin: 0; color: #7c8798; font-size: 8px; font-weight: 700; }
.stage-caption span { width: 18px; height: 1px; background: var(--blue); box-shadow: 20px 0 0 2px var(--blue); }

@keyframes gentleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 7vw, 6.5rem);
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip p { margin: 0; color: #8791a1; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.trust-strip > div { display: flex; align-items: center; gap: 1.25rem; }
.trust-strip > div span { color: var(--ink-soft); font-size: .75rem; font-weight: 700; }
.trust-strip > div i { width: 4px; height: 4px; border-radius: 50%; background: #b9c1cd; }

/* Outcomes */
.split-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 4rem; margin-bottom: 4rem; }
.split-heading .section-kicker { align-self: start; }
.split-heading h2 { max-width: 880px; margin-bottom: 1.3rem; }
.split-heading > div > p { max-width: 680px; margin-bottom: 0; font-size: 1.08rem; }
.muted-word { color: var(--silver); }
.outcome-grid { display: grid; grid-template-columns: 1.18fr .91fr .91fr; gap: 1rem; }
.outcome-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff, #fcfdff);
  box-shadow: var(--shadow-sm);
}
.outcome-card-dark { color: #fff; border-color: rgba(255, 255, 255, .08); background: var(--navy); box-shadow: var(--shadow-md); }
.outcome-card h3 { margin-bottom: .75rem; font-size: 1.55rem; }
.outcome-card p { margin: 0; font-size: .94rem; }
.outcome-card-dark p { color: #9daabd; }
.card-index { display: inline-block; margin-bottom: 1.1rem; color: var(--blue); font-size: .7rem; font-weight: 800; }
.outcome-card-dark .card-index { color: #8eb0ff; }
.outcome-orbit { position: relative; width: 210px; height: 210px; margin: 1rem auto 2rem; border: 1px solid rgba(96, 146, 255, .2); border-radius: 50%; }
.outcome-orbit::before, .outcome-orbit::after { position: absolute; inset: 25px; content: ""; border: 1px solid rgba(96, 146, 255, .18); border-radius: 50%; }
.outcome-orbit::after { inset: 55px; }
.outcome-orbit span { position: absolute; inset: 50%; width: 34px; height: 34px; border: 8px solid #142b57; border-radius: 50%; background: var(--blue); box-shadow: 0 0 45px rgba(37, 99, 235, .65); transform: translate(-50%, -50%); }
.outcome-orbit i, .outcome-orbit b { position: absolute; width: 8px; height: 8px; border: 2px solid #78a1fc; border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 5px rgba(37, 99, 235, .1); }
.outcome-orbit i { top: 24px; left: 43px; }
.outcome-orbit b { right: 17px; bottom: 61px; }
.response-visual { position: relative; display: flex; height: 220px; flex-direction: column; justify-content: center; gap: 3rem; padding: 1rem; }
.response-visual::before { position: absolute; top: 50%; left: 38px; width: calc(100% - 76px); height: 1px; content: ""; background: #cdd8ed; transform: rotate(90deg); }
.response-visual span, .response-visual b { position: relative; z-index: 1; align-self: flex-start; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); font-size: .7rem; }
.response-visual b { align-self: flex-end; color: var(--blue-deep); border-color: #cad9fb; background: var(--blue-pale); }
.response-visual i { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 12px; height: 12px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); transform: translate(-50%, -50%); }
.organize-visual { display: flex; height: 220px; align-items: flex-end; justify-content: center; gap: 8px; padding: 1.5rem 1rem; border-radius: 18px; background: var(--blue-wash); }
.organize-visual span { position: relative; width: 28%; height: 62%; border: 1px solid #d8e2f6; border-radius: 9px 9px 5px 5px; background: #fff; }
.organize-visual span:nth-child(2) { height: 86%; }
.organize-visual span:nth-child(3) { height: 47%; }
.organize-visual span::before, .organize-visual span::after { position: absolute; right: 7px; left: 7px; height: 4px; content: ""; border-radius: 3px; background: #d9e0ea; }
.organize-visual span::before { top: 10px; }
.organize-visual span::after { top: 20px; width: 55%; }
.organize-visual i { position: absolute; width: 16px; height: 16px; margin-bottom: 80px; border: 5px solid #dbe7ff; border-radius: 50%; background: var(--blue); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  grid-column: span 4;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fcfdff);
  box-shadow: 0 1px 1px rgba(16, 24, 40, .02);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.service-card:hover { border-color: #c5d5f7; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.service-card.featured { grid-column: span 8; }
.service-card.featured::after { position: absolute; right: -90px; bottom: -120px; width: 300px; height: 300px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 68%); }
.service-number { position: absolute; top: 2rem; right: 2rem; color: #a0a9b7; font-size: .68rem; font-weight: 800; }
.service-card h3 { margin: auto 0 .8rem; }
.service-card p { margin-bottom: 1.35rem; font-size: .93rem; }
.service-card a { display: inline-flex; align-items: center; gap: .6rem; color: var(--blue-deep); font-size: .75rem; font-weight: 800; }
.service-card a span { transition: transform .2s; }
.service-card:hover a span { transform: translateX(4px); }
.service-icon { position: relative; width: 110px; height: 110px; margin-bottom: 3rem; }
.service-card.featured .service-icon { width: 240px; }
.web-icon span { position: absolute; inset: 8px 0 14px 0; border: 1px solid #cdd9ee; border-radius: 12px; background: #fff; box-shadow: 22px 18px 30px -23px rgba(37, 99, 235, .6); }
.web-icon span::before { display: block; height: 15px; content: ""; border-bottom: 1px solid #e2e8f1; background: linear-gradient(90deg, #aab3c2 3px, transparent 3px) 8px 6px / 8px 4px repeat-x; }
.web-icon i { position: absolute; top: 35px; left: 18px; width: 42%; height: 28px; border-radius: 5px; background: linear-gradient(135deg, #1f4cb1, #4f83f5); }
.web-icon b { position: absolute; right: 14px; bottom: 2px; width: 55px; height: 76px; border: 3px solid var(--ink); border-radius: 11px; background: linear-gradient(#edf3ff 50%, #fff 50%); box-shadow: var(--shadow-sm); }
.service-card:not(.featured) .service-icon { border: 1px solid #dbe4f2; border-radius: 18px; background: var(--blue-wash); }
.leads-icon span, .leads-icon i, .leads-icon b { position: absolute; right: 18px; left: 18px; height: 15px; border: 1px solid #d1ddf3; border-radius: 5px; background: #fff; box-shadow: var(--shadow-sm); }
.leads-icon span { top: 20px; }
.leads-icon i { top: 46px; left: 26px; }
.leads-icon b { top: 72px; left: 34px; border-color: #a9c3fb; background: #eaf1ff; }
.automation-icon::before, .automation-icon::after { position: absolute; content: ""; border-radius: 50%; }
.automation-icon::before { inset: 25px; border: 1px dashed #9fb9ed; }
.automation-icon::after { inset: 43px; background: var(--blue); box-shadow: 0 0 0 8px rgba(37, 99, 235, .12); }
.automation-icon span, .automation-icon i, .automation-icon b { position: absolute; width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: #4779e3; box-shadow: 0 0 0 1px #4779e3; }
.automation-icon span { top: 15px; left: 50px; }
.automation-icon i { right: 15px; bottom: 24px; }
.automation-icon b { bottom: 24px; left: 15px; }
.seo-icon span { position: absolute; top: 21px; left: 23px; width: 47px; height: 47px; border: 8px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px #84a9f7; }
.seo-icon i { position: absolute; top: 65px; left: 65px; width: 28px; height: 7px; border-radius: 5px; background: var(--blue); transform: rotate(45deg); }
.seo-icon b { position: absolute; top: 41px; left: 40px; width: 13px; height: 2px; background: var(--blue); box-shadow: 0 6px 0 #a8b7cf; }
.crm-icon span, .crm-icon i, .crm-icon b { position: absolute; bottom: 19px; width: 20px; border-radius: 5px 5px 2px 2px; background: #fff; box-shadow: inset 0 0 0 1px #d0dcf0; }
.crm-icon span { left: 20px; height: 35px; }
.crm-icon i { left: 45px; height: 57px; }
.crm-icon b { left: 70px; height: 73px; background: linear-gradient(to top, #dfe9ff 58%, #fff 58%); }
.hosting-icon span { position: absolute; inset: 23px 17px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 1px #cad7ee; }
.hosting-icon span::before, .hosting-icon span::after { position: absolute; content: ""; border: 1px solid #a8bde8; border-radius: 50%; }
.hosting-icon span::before { inset: 0 18px; }
.hosting-icon span::after { inset: 18px 0; }
.hosting-icon i { position: absolute; top: 52px; left: 19px; width: 72px; height: 1px; background: #a8bde8; }
.hosting-icon b { position: absolute; top: 48px; left: 50px; width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

/* Interactive lead demo */
.demo-section { color: #fff; background: var(--navy); }
.demo-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.demo-heading h2 { max-width: 820px; margin-bottom: 0; }
.demo-heading > p { max-width: 450px; margin-bottom: .55rem; color: #9ba8bb; }
.demo-shell { display: grid; grid-template-columns: 330px 1fr; overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--radius-panel); background: radial-gradient(circle at 75% 12%, rgba(37, 99, 235, .2), transparent 32%), #0d1728; box-shadow: 0 40px 90px -42px rgba(0, 0, 0, .9); }
.demo-steps { position: relative; padding: 1.3rem; border-right: 1px solid rgba(255, 255, 255, .08); background: rgba(7, 14, 26, .58); }
.demo-steps::before { position: absolute; top: 56px; bottom: 56px; left: 42px; width: 1px; content: ""; background: rgba(120, 153, 213, .18); }
.demo-step { position: relative; z-index: 1; display: grid; width: 100%; min-height: 74px; grid-template-columns: 34px 1fr 5px; align-items: center; gap: .8rem; padding: .7rem .75rem; border: 1px solid transparent; border-radius: 12px; color: #8997ab; background: transparent; text-align: left; cursor: pointer; transition: color .25s, border-color .25s, background .25s, transform .25s; }
.demo-step:hover { color: #d9e2f0; background: rgba(255, 255, 255, .035); }
.demo-step > span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(122, 156, 219, .25); border-radius: 50%; background: #101c30; font-size: .59rem; font-weight: 800; transition: background .25s, box-shadow .25s; }
.demo-step div { display: flex; min-width: 0; flex-direction: column; }
.demo-step small { color: inherit; font-size: .57rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-step strong { overflow: hidden; color: inherit; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.demo-step > i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .5; }
.demo-step.complete { color: #81a8ff; }
.demo-step.complete > span { color: #fff; border-color: var(--blue); background: var(--blue); }
.demo-step.active { color: #fff; border-color: rgba(110, 153, 246, .25); background: rgba(37, 99, 235, .13); transform: translateX(4px); }
.demo-step.active > span { color: #fff; border-color: #83a9ff; background: var(--blue); box-shadow: 0 0 0 7px rgba(37, 99, 235, .11); }
.demo-step.active > i { background: #77a2ff; box-shadow: 0 0 12px #5d91ff; opacity: 1; }
.demo-visual { min-width: 0; padding: clamp(1.2rem, 3vw, 2rem); }
.demo-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.demo-toolbar > div { display: flex; align-items: center; gap: .6rem; font-size: .73rem; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 5px rgba(74, 222, 128, .1); }
.demo-toolbar button { display: inline-flex; min-height: 40px; align-items: center; gap: .5rem; padding: .45rem .75rem; border: 1px solid rgba(255, 255, 255, .1); border-radius: 9px; color: #b9c5d7; background: rgba(255, 255, 255, .04); font-size: .67rem; cursor: pointer; }
.demo-canvas { position: relative; min-height: 480px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); border-radius: 22px; background: radial-gradient(circle at 50% 40%, rgba(37, 99, 235, .13), transparent 48%), #09121f; }
.demo-canvas::before { position: absolute; inset: 0; content: ""; background-image: radial-gradient(rgba(105, 139, 199, .18) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom, #000, transparent); }
.flow-progress { position: absolute; z-index: 3; top: 0; right: 0; left: 0; height: 2px; background: rgba(255, 255, 255, .06); }
.flow-progress span { display: block; width: 14.28%; height: 100%; background: linear-gradient(90deg, var(--blue), #82aaff); box-shadow: 0 0 12px #477eea; transition: width .6s var(--ease-out); }
.demo-scene { position: absolute; z-index: 2; inset: 0; display: grid; padding: 3rem; place-items: center; opacity: 0; pointer-events: none; transform: translateY(18px) scale(.98); transition: opacity .45s, transform .6s var(--ease-out); }
.demo-scene.active { opacity: 1; transform: none; }
.scene-browser, .scene-form, .scene-dashboard, .scene-email, .scene-pipeline, .scene-won { width: min(90%, 520px); }
.scene-browser { overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 15px; background: #fff; box-shadow: 0 28px 70px -28px #000; }
.scene-browser > div { display: flex; height: 27px; align-items: center; gap: 4px; padding: 0 8px; background: #ecf0f5; }
.scene-browser > div i { width: 5px; height: 5px; border-radius: 50%; background: #b2bbc8; }
.scene-browser > div span { margin-inline: auto; color: #7c8797; font-size: 6px; }
.scene-browser section { padding: 3.2rem 2.4rem; background: linear-gradient(115deg, rgba(2, 10, 25, .94), rgba(6, 20, 43, .6)), linear-gradient(25deg, #607b9c, #b9c9da); }
.scene-browser section small { display: block; margin-bottom: .8rem; color: #8eb1ff; font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scene-browser section strong { display: block; max-width: 420px; font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.05; letter-spacing: -.04em; }
.scene-browser section b { display: inline-block; margin-top: 1.3rem; padding: .65rem .9rem; border-radius: 7px; background: var(--blue); font-size: .6rem; }
.scene-form { padding: 1.5rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; background: #fff; box-shadow: 0 28px 70px -28px #000; }
.scene-form > span { display: block; margin-bottom: 1.2rem; color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.scene-form label { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .8rem; color: #7e8897; font-size: .58rem; font-weight: 700; }
.scene-form label b { padding: .7rem .8rem; border: 1px solid #dce2ea; border-radius: 8px; color: var(--ink); background: #fbfcfe; font-size: .7rem; }
.scene-form button { display: flex; width: 100%; justify-content: space-between; padding: .75rem .85rem; border: 0; border-radius: 8px; color: #fff; background: var(--blue); font-size: .67rem; font-weight: 800; }
.scene-dashboard { overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; background: #f7f9fc; box-shadow: 0 30px 70px -30px #000; }
.scene-dash-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem; color: var(--ink); background: #fff; font-size: .74rem; font-weight: 800; }
.scene-dash-head i { padding: .4rem .6rem; border-radius: 6px; color: #fff; background: var(--blue); font-size: .55rem; font-style: normal; }
.new-lead-row { display: flex; align-items: center; gap: .8rem; margin: 1.2rem; padding: 1rem; border: 1px solid #b9cdf8; border-radius: 11px; color: var(--ink); background: #fff; box-shadow: 0 12px 30px -22px var(--blue); }
.new-lead-row > b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 9px; color: #fff; background: var(--blue); font-size: .65rem; }
.new-lead-row > span { display: flex; flex: 1; flex-direction: column; }
.new-lead-row strong { font-size: .72rem; }
.new-lead-row small { color: #7d8795; font-size: .55rem; }
.new-lead-row em { padding: .25rem .4rem; border-radius: 6px; color: var(--blue-deep); background: var(--blue-pale); font-size: .48rem; font-style: normal; font-weight: 800; }
.scene-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; padding: 0 1.2rem 1.2rem; }
.scene-columns i { height: 90px; border: 1px solid #e1e6ed; border-radius: 8px; background: repeating-linear-gradient(#fff 0 15px, #f7f9fc 15px 16px); }
.scene-phone { width: 250px; min-height: 400px; padding: .9rem .75rem; border: 6px solid #1d2735; border-radius: 34px; color: var(--ink); background: linear-gradient(150deg, #dbe7ff, #f4f7fc 42%, #ccd9ef); box-shadow: 0 30px 70px -28px #000; }
.scene-phone > small { display: block; margin: 0 0 2.5rem .4rem; font-size: .55rem; font-weight: 800; }
.phone-alert { display: flex; gap: .7rem; padding: .85rem; border: 1px solid rgba(255, 255, 255, .8); border-radius: 16px; background: rgba(255, 255, 255, .74); box-shadow: 0 16px 35px -18px #66758b; backdrop-filter: blur(12px); }
.phone-alert > span { display: grid; width: 34px; height: 34px; flex: none; place-items: center; border-radius: 9px; color: #fff; background: var(--blue); font-size: .6rem; font-weight: 800; }
.phone-alert div { display: flex; min-width: 0; flex-direction: column; }
.phone-alert small { color: #748095; font-size: .44rem; font-weight: 800; }
.phone-alert strong { font-size: .65rem; }
.phone-alert p { margin: .15rem 0 0; color: #687386; font-size: .52rem; }
.scene-email { padding: 2rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; color: var(--ink); background: #fff; box-shadow: 0 30px 70px -30px #000; }
.email-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding-bottom: .8rem; border-bottom: 1px solid #edf0f4; color: #7e8898; font-size: .56rem; }
.email-top small { color: var(--success); }
.scene-email > strong { display: block; margin-bottom: .8rem; font-family: var(--font-display); font-size: 1.4rem; }
.scene-email > p { margin-bottom: 1.5rem; font-size: .74rem; }
.scene-email > b { color: var(--blue-deep); font-size: .66rem; }
.scene-pipeline { position: relative; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: .5rem; padding: 2.5rem 1.2rem 7rem; }
.pipe-label { padding: .75rem .3rem; border: 1px solid rgba(255, 255, 255, .13); border-radius: 8px; color: #8996a9; background: rgba(255, 255, 255, .04); font-size: .6rem; font-weight: 800; text-align: center; }
.pipe-label.active { color: #fff; border-color: rgba(103, 150, 250, .5); background: rgba(37, 99, 235, .2); }
.pipe-arrow { color: #5a6a82; }
.moving-lead { position: absolute; right: 28%; bottom: 1.3rem; left: 28%; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: .7rem; padding: .8rem; border: 1px solid rgba(136, 173, 250, .3); border-radius: 11px; background: #fff; box-shadow: 0 20px 45px -24px #000; }
.moving-lead b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 8px; color: #fff; background: var(--blue); font-size: .6rem; }
.moving-lead strong { color: var(--ink); font-size: .68rem; }
.moving-lead small { color: var(--ink); font-size: .62rem; font-weight: 800; }
.scene-won { padding: 2.6rem; border: 1px solid rgba(90, 139, 244, .35); border-radius: 22px; color: #fff; background: radial-gradient(circle at 50% 0, rgba(37, 99, 235, .3), transparent 60%), #101c30; text-align: center; box-shadow: 0 30px 80px -35px #000; }
.scene-won > span { display: grid; width: 54px; height: 54px; margin: 0 auto 1.2rem; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); box-shadow: 0 0 0 10px rgba(37, 99, 235, .12), 0 0 40px rgba(37, 99, 235, .4); font-size: 1.3rem; }
.scene-won > small { display: block; color: #8eadf2; font-size: .55rem; font-weight: 800; letter-spacing: .13em; }
.scene-won > strong { display: block; margin: .4rem 0; font-family: var(--font-display); font-size: 2.8rem; letter-spacing: -.06em; }
.scene-won > p { margin-bottom: 1.5rem; color: #aeb9ca; font-size: .7rem; }
.scene-won > div { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border-radius: 8px; color: #a8d9b7; background: rgba(34, 197, 94, .08); font-size: .58rem; }
.scene-won > div i { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.demo-status { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.2rem; }
.demo-status span { flex: none; color: #80a7fb; font-size: .64rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.demo-status p { margin: 0; color: #98a6b9; font-size: .68rem; }

/* Work previews */
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.heading-row h2 { max-width: 850px; margin-bottom: 0; }
.work-section { overflow: hidden; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.project-card { display: block; min-width: 0; }
.project-card.project-large { grid-column: span 2; }
.project-visual { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius-xl); transition: transform .45s var(--ease-out), box-shadow .45s; }
.project-card:not(.project-large) .project-visual { min-height: 550px; }
.project-card:hover .project-visual { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-info { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem .3rem 1rem; }
.project-info div { display: flex; flex-direction: column; }
.project-info span { margin-bottom: .2rem; color: #778294; font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.project-info h3 { margin: 0; font-size: 1.35rem; }
.project-info > i { display: grid; width: 42px; height: 42px; flex: none; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; transition: color .25s, background .25s, transform .25s; }
.project-card:hover .project-info > i { color: #fff; background: var(--blue); transform: rotate(8deg); }
.roofing-visual { display: flex; align-items: center; justify-content: center; padding: 4rem 7%; background: linear-gradient(135deg, #dce7f5, #f2f5f8 46%, #b8cae1); }
.project-browser { width: 82%; overflow: hidden; border: 1px solid rgba(255, 255, 255, .65); border-radius: 15px; background: #fff; box-shadow: 0 35px 80px -30px #40556e; transform: rotate(-1.2deg); transition: transform .5s var(--ease-out); }
.project-card:hover .project-browser { transform: rotate(0) scale(1.015); }
.project-browser-bar { display: flex; height: 37px; align-items: center; gap: 5px; padding: 0 12px; color: #182334; font-size: .55rem; font-weight: 800; }
.project-browser-bar i { width: 5px; height: 5px; border-radius: 50%; background: #d5dce5; }
.project-browser-bar span { margin-left: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.project-browser-bar b { margin-left: auto; padding: .4rem .6rem; border-radius: 4px; color: #fff; background: var(--blue); font-size: .45rem; }
.roofing-site { display: grid; min-height: 285px; grid-template-columns: 1.1fr .9fr; overflow: hidden; background: #091420; }
.roofing-site > div:first-child { z-index: 2; padding: 3rem; }
.roofing-site small { display: block; margin-bottom: 1.2rem; color: #75a1ff; font-size: .5rem; font-weight: 800; letter-spacing: .14em; }
.roofing-site strong { display: block; color: #fff; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.8rem); line-height: .98; letter-spacing: -.06em; }
.roofing-site p { max-width: 320px; margin: 1rem 0; color: #99a8bb; font-size: .63rem; }
.roofing-site > div:first-child > span { color: #fff; font-size: .58rem; font-weight: 800; }
.roof-shape { position: relative; background: linear-gradient(140deg, rgba(20, 34, 52, .2), rgba(1, 8, 17, .8)), linear-gradient(30deg, #91a4b7, #d7e0e8); clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%); }
.roof-shape i { position: absolute; top: 30%; left: 15%; width: 75%; height: 2px; background: rgba(255, 255, 255, .55); transform: rotate(-20deg); box-shadow: 0 20px 0 rgba(255, 255, 255, .22), 0 40px 0 rgba(255, 255, 255, .16); }
.project-metric { position: absolute; right: 5%; bottom: 8%; display: flex; min-width: 190px; flex-direction: column; padding: 1rem 1.1rem; border: 1px solid rgba(255, 255, 255, .75); border-radius: 12px; background: rgba(255, 255, 255, .83); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.project-metric small { color: #788496; font-size: .56rem; font-weight: 800; text-transform: uppercase; }
.project-metric strong { font-family: var(--font-display); font-size: 1rem; }
.project-metric span { color: var(--blue-deep); font-size: .55rem; font-weight: 700; }
.hauling-visual { display: grid; place-items: center; padding: 3rem; background: radial-gradient(circle at 30% 25%, rgba(90, 132, 215, .22), transparent 35%), #0b1421; }
.hauling-visual::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 30px 30px; }
.project-phone { position: relative; z-index: 1; width: min(76%, 320px); min-height: 450px; overflow: hidden; padding: 1.5rem; border: 5px solid #202b3a; border-radius: 34px; color: #fff; background: linear-gradient(145deg, rgba(2, 9, 19, .4), rgba(2, 9, 19, .88)), linear-gradient(30deg, #66798b, #c0cad2); box-shadow: 0 38px 75px -30px #000; transform: rotate(2deg); transition: transform .5s var(--ease-out); }
.project-card:hover .project-phone { transform: rotate(0) translateY(-5px); }
.project-phone-head { display: flex; align-items: center; justify-content: space-between; font-size: .55rem; letter-spacing: .1em; }
.project-phone-head i { width: 17px; height: 1px; background: #fff; box-shadow: 0 5px 0 #fff; }
.project-phone > strong { display: block; margin-top: 6rem; font-family: var(--font-display); font-size: 2rem; line-height: .98; letter-spacing: -.06em; }
.project-phone > span { display: inline-block; margin-top: 1.5rem; padding: .65rem .8rem; border-radius: 5px; color: var(--ink); background: #fff; font-size: .48rem; font-weight: 800; }
.truck-mark { position: absolute; right: -25px; bottom: 23px; width: 230px; height: 110px; border-bottom: 2px solid rgba(255, 255, 255, .35); }
.truck-mark i { position: absolute; right: 10px; bottom: 18px; width: 135px; height: 65px; border: 2px solid rgba(255, 255, 255, .3); transform: skewY(-8deg); }
.truck-mark b, .truck-mark em { position: absolute; bottom: 4px; width: 32px; height: 32px; border: 5px solid #1e2d40; border-radius: 50%; background: #6e8090; }
.truck-mark b { right: 20px; }.truck-mark em { right: 120px; }
.landscape-visual { display: flex; align-items: flex-end; padding: 3rem; color: #e9efdf; background: radial-gradient(circle at 75% 20%, rgba(238, 240, 201, .2), transparent 30%), linear-gradient(140deg, #173b30, #315443 55%, #6c8267); }
.landscape-word { position: absolute; top: 10%; left: -2%; color: rgba(255, 255, 255, .07); font-family: var(--font-display); font-size: clamp(5rem, 10vw, 9rem); font-weight: 700; letter-spacing: -.08em; transform: rotate(90deg) translateX(30%); transform-origin: left top; }
.landscape-card { position: relative; z-index: 1; max-width: 390px; padding: 2rem; border: 1px solid rgba(255, 255, 255, .18); border-radius: 18px; background: rgba(9, 32, 24, .48); backdrop-filter: blur(10px); }
.landscape-card small { display: block; margin-bottom: 1rem; color: #c6d6a9; font-size: .52rem; font-weight: 800; letter-spacing: .12em; }
.landscape-card strong { display: block; font-family: var(--font-display); font-size: 2.05rem; line-height: 1; letter-spacing: -.05em; }
.landscape-card span { display: block; margin-top: 1.5rem; font-size: .62rem; font-weight: 800; }
.homes-visual { display: grid; grid-template-columns: 1fr .8fr; gap: 2rem; align-items: center; padding: 4rem 7%; background: #e8e5de; }
.homes-panel { padding: 2rem; color: #f8f7f3; background: #1b2b2f; box-shadow: 0 30px 65px -32px #253335; }
.homes-panel > span { color: #9ab8bf; font-size: .52rem; font-weight: 800; letter-spacing: .13em; }
.homes-panel > strong { display: block; margin: 2.4rem 0 1rem; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); line-height: .93; letter-spacing: -.06em; }
.homes-panel p { color: #aebfc1; font-size: .68rem; }
.homes-panel i { display: inline-block; margin-top: 1rem; padding: .65rem .8rem; color: #1b2b2f; background: #f8f7f3; font-size: .55rem; font-style: normal; font-weight: 800; }
.homes-dashboard { padding: 1.5rem; border: 1px solid rgba(255, 255, 255, .7); border-radius: 16px; background: rgba(255, 255, 255, .72); box-shadow: 0 28px 60px -35px #324143; backdrop-filter: blur(10px); }
.homes-dashboard > small { display: block; margin-bottom: 1rem; color: #6b7778; font-size: .57rem; font-weight: 800; }
.homes-dashboard > div { display: flex; align-items: center; gap: .7rem; padding: .8rem 0; border-top: 1px solid rgba(85, 102, 104, .12); }
.homes-dashboard > div > b { display: grid; width: 32px; height: 32px; flex: none; place-items: center; border-radius: 8px; color: #fff; background: #1f5960; font-size: .55rem; }
.homes-dashboard > div span { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: .5rem; }
.homes-dashboard strong { font-size: .63rem; }
.homes-dashboard em { padding: .25rem .4rem; border-radius: 6px; color: #2a6569; background: #e1eeec; font-size: .45rem; font-style: normal; }

/* Why, features, process preview, CTA */
.why-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(4rem, 8vw, 8rem); }
.why-sticky { position: sticky; top: 120px; align-self: start; }
.why-sticky h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); }
.why-sticky > p:not(.section-kicker) { margin-bottom: 2rem; }
.why-list { border-top: 1px solid var(--line-strong); }
.why-item { display: grid; grid-template-columns: 55px 1fr; gap: 1.5rem; padding: 2.4rem 0; border-bottom: 1px solid var(--line-strong); }
.why-item > span { color: var(--blue); font-size: .68rem; font-weight: 800; }
.why-item h3 { margin-bottom: .75rem; }
.why-item p { margin: 0; font-size: .95rem; }
.feature-intro { display: grid; grid-template-columns: .55fr 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.feature-intro h2 { margin: 0; }
.feature-intro > p:last-child { margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid > div { display: flex; min-height: 110px; align-items: center; gap: .8rem; padding: 1.35rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid span { display: grid; width: 24px; height: 24px; flex: none; place-items: center; border: 1px solid #bed0f8; border-radius: 50%; color: var(--blue); background: var(--blue-pale); font-size: .65rem; font-weight: 800; }
.feature-grid strong { font-size: .78rem; }
.process-preview { color: #fff; background: var(--navy); }
.process-preview .section-heading { max-width: 900px; }
.process-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
.process-track > div { min-width: 0; text-align: center; }
.process-track > div span { display: grid; width: 44px; height: 44px; margin: 0 auto 1rem; place-items: center; border: 1px solid rgba(121, 159, 236, .3); border-radius: 50%; color: #93b3f8; background: #111e33; font-size: .65rem; font-weight: 800; }
.process-track strong { display: block; margin-bottom: .2rem; font-family: var(--font-display); font-size: .8rem; }
.process-track small { display: block; color: #8997aa; font-size: .57rem; }
.process-track > i { width: clamp(20px, 3vw, 48px); height: 1px; margin: 0 .4rem; background: rgba(121, 159, 236, .24); box-shadow: 8px 0 0 2px var(--blue); }
.centered-action { margin-top: 3.2rem; text-align: center; }
.final-cta { padding-top: var(--section-space); padding-bottom: 0; }
.cta-panel { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 7rem) var(--gutter); border-radius: var(--radius-panel); color: #fff; background: radial-gradient(circle at 50% -20%, rgba(92, 143, 255, .38), transparent 44%), var(--blue); text-align: center; box-shadow: var(--shadow-blue); }
.cta-panel::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel .section-kicker { justify-content: center; }
.cta-panel h2 { max-width: 850px; margin-inline: auto; }
.cta-panel > p:not(.section-kicker) { max-width: 650px; margin: 0 auto 2rem; color: #dce8ff; }
.centered-buttons { justify-content: center; }
.cta-signal { position: absolute; top: 2.5rem; left: 50%; width: 440px; height: 130px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; transform: translateX(-50%); }
.cta-signal::before, .cta-signal::after { position: absolute; inset: 24px; content: ""; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; }
.cta-signal::after { inset: 48px 80px; }

/* Footer */
.site-footer { padding-top: clamp(4.5rem, 8vw, 7rem); background: #fff; }
.footer-main { display: grid; grid-template-columns: 1.6fr .6fr .6fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand { max-width: 480px; }
.footer-brand > p { margin: 1.4rem 0; font-size: .88rem; }
.footer-email { display: inline-flex; align-items: center; gap: .5rem; color: var(--blue-deep); font-size: .8rem; font-weight: 800; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-nav strong { margin-bottom: .4rem; font-family: var(--font-display); font-size: .75rem; }
.footer-nav a { color: var(--muted); font-size: .78rem; }
.footer-nav a:hover { color: var(--blue-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--line); color: #8892a1; font-size: .64rem; }

/* ================================================================
   Interior page shared layouts
   ================================================================ */
.page-hero { padding-bottom: clamp(5rem, 8vw, 7rem); }
.page-hero .hero-grid { opacity: .7; }
.page-hero-layout { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 4rem; }
.page-hero h1 { max-width: 920px; margin-bottom: 1.6rem; font-size: clamp(3.2rem, 6.5vw, 6rem); }
.page-hero-copy > p:not(.eyebrow) { max-width: 690px; margin-bottom: 2rem; font-size: 1.15rem; }
.page-hero-aside { padding: 2rem 0 0 2rem; border-left: 1px solid var(--line); }
.page-hero-aside p { margin-bottom: 1.5rem; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: .55rem; }
.page-hero-meta span,
.page-hero-meta a { padding: .45rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.75); font-size: .65rem; font-weight: 800; }
.page-hero-meta a:hover { color: var(--blue-deep); border-color: #b9cdf8; }
.intro-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.intro-stat-row > div { min-height: 130px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-stat-row strong { display: block; margin-bottom: .35rem; font-family: var(--font-display); font-size: 1.2rem; }
.intro-stat-row span { color: var(--muted); font-size: .75rem; }

.subpage-section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 4rem; margin-bottom: 4rem; }
.subpage-section-heading > div h2 { margin-bottom: 1rem; }
.subpage-section-heading > div p { max-width: 680px; margin-bottom: 0; }

/* Services page */
.service-detail-list { display: grid; gap: 1.3rem; }
.service-detail {
  display: grid;
  grid-template-columns: .6fr 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 4.5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
}
.service-detail:nth-child(even) { background: #fbfcfe; }
.service-detail-label { position: sticky; top: 110px; }
.service-detail-label > span { display: block; margin-bottom: 1rem; color: var(--blue); font-size: .68rem; font-weight: 800; }
.service-detail-label h2 { margin: 0; font-size: clamp(1.8rem, 2.8vw, 2.7rem); }
.service-detail-copy h3 { max-width: 560px; margin-bottom: 1.1rem; font-size: clamp(1.35rem, 2vw, 1.85rem); }
.service-detail-copy p { margin-bottom: 0; }
.service-includes { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.service-includes > strong { display: block; margin-bottom: 1rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.service-includes ul { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.service-includes li { position: relative; padding-left: 1.2rem; color: var(--muted); font-size: .76rem; }
.service-includes li::before { position: absolute; top: .55em; left: 0; width: 6px; height: 6px; content: ""; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-pale); }
.system-flow-panel { padding: clamp(2.5rem, 6vw, 5rem); border-radius: var(--radius-panel); color: #fff; background: var(--navy); }
.system-flow-panel h2 { max-width: 800px; }
.system-flow-panel > p { max-width: 700px; color: #9daabc; }
.horizontal-flow { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; gap: .4rem; margin-top: 3.5rem; }
.horizontal-flow > div { position: relative; min-width: 0; text-align: center; }
.horizontal-flow > div:not(:last-child)::after { position: absolute; top: 21px; right: -50%; width: 100%; height: 1px; content: ""; background: rgba(122, 158, 224, .26); }
.horizontal-flow span { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; margin: 0 auto .8rem; place-items: center; border: 1px solid rgba(127, 164, 239, .35); border-radius: 50%; color: #a8c1fa; background: #122039; font-size: .63rem; font-weight: 800; }
.horizontal-flow strong { display: block; color: #c7d1df; font-size: .6rem; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fit-card { padding: 2.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.fit-card > span { display: grid; width: 38px; height: 38px; margin-bottom: 2.4rem; place-items: center; border-radius: 10px; color: var(--blue); background: var(--blue-pale); font-size: .7rem; font-weight: 800; }
.fit-card h3 { margin-bottom: .8rem; }
.fit-card p { margin: 0; font-size: .9rem; }

/* Portfolio page */
.portfolio-filter-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.portfolio-filter-wrap > p { margin: 0; font-size: .75rem; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: .55rem; }
.portfolio-filters[hidden] { display: none; }
.portfolio-filters button { min-height: 42px; padding: .55rem .9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: .68rem; font-weight: 800; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.portfolio-filters button[aria-pressed="true"] { color: #fff; border-color: var(--blue); background: var(--blue); }
.portfolio-projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin: 0; padding: 0; list-style: none; }
.portfolio-projects > li[hidden] { display: none; }
.portfolio-projects > li:first-child { grid-column: span 2; }
.portfolio-projects .project-card { height: 100%; }
.portfolio-projects .project-card .project-visual { min-height: 500px; }
.portfolio-projects > li:not(:first-child) .project-visual { min-height: 560px; }
.concept-label { position: absolute; z-index: 5; top: 1.2rem; left: 1.2rem; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.62); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.8); font-size: .55rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(10px); }
.pressure-visual { display: grid; place-items: center; padding: 3rem; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.62), transparent 25%), linear-gradient(135deg, #90cdf4, #d9f1ff 45%, #7fb7df); }
.pressure-browser { width: 88%; overflow: hidden; border: 1px solid rgba(255,255,255,.72); border-radius: 14px; background: #fff; box-shadow: 0 35px 75px -30px #3d6e8d; transform: rotate(1deg); transition: transform .5s var(--ease-out); }
.project-card:hover .pressure-browser { transform: rotate(0) scale(1.015); }
.pressure-browser > div:first-child { display: flex; height: 32px; align-items: center; padding: 0 1rem; color: #18435e; font-size: .55rem; font-weight: 800; }
.pressure-browser > div:first-child span { margin-left: auto; }
.pressure-site { display: grid; min-height: 380px; grid-template-columns: 1fr 1fr; }
.pressure-site > div:first-child { padding: 3rem 2rem; color: #fff; background: #0f4668; }
.pressure-site small { font-size: .5rem; font-weight: 800; letter-spacing: .12em; }
.pressure-site strong { display: block; margin: 1.4rem 0; font-family: var(--font-display); font-size: 2.2rem; line-height: .97; letter-spacing: -.06em; }
.pressure-site span { display: inline-block; padding: .6rem .7rem; color: #0f4668; background: #fff; font-size: .5rem; font-weight: 800; }
.before-after { position: relative; background: linear-gradient(90deg, #667c86 0 49%, #d2e5ea 49% 100%); }
.before-after::before { position: absolute; inset: 0 50% 0 auto; width: 2px; content: ""; background: #fff; }
.before-after::after { position: absolute; top: 50%; left: 50%; display: grid; width: 40px; height: 40px; content: "↔"; place-items: center; border-radius: 50%; color: #0f4668; background: #fff; transform: translate(-50%,-50%); }
.portfolio-principles { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
.portfolio-principles h2 { position: sticky; top: 120px; }
.principle-list { border-top: 1px solid var(--line); }
.principle-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 1rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.principle-list span { color: var(--blue); font-size: .65rem; font-weight: 800; }
.principle-list strong { display: block; margin-bottom: .5rem; font-family: var(--font-display); }
.principle-list p { margin: 0; font-size: .86rem; }

/* Process page */
.full-process { position: relative; display: grid; gap: 1rem; }
.full-process::before { position: absolute; top: 80px; bottom: 80px; left: 55px; width: 1px; content: ""; background: #cddbf7; }
.process-step-card { position: relative; display: grid; grid-template-columns: 72px 1fr .8fr; gap: 2.4rem; padding: clamp(1.8rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.process-step-number { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid #aec6f7; border-radius: 50%; color: var(--blue-deep); background: #fff; box-shadow: 0 0 0 8px #fff; font-size: .7rem; font-weight: 800; }
.process-step-card h2 { margin-bottom: .9rem; font-size: clamp(1.7rem, 2.8vw, 2.55rem); }
.process-step-card p { margin: 0; }
.process-deliverable { align-self: center; padding: 1.2rem 1.4rem; border-left: 2px solid var(--blue); background: var(--blue-wash); }
.process-deliverable small { display: block; margin-bottom: .4rem; color: var(--blue-deep); font-size: .58rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.process-deliverable strong { display: block; font-size: .76rem; }
.collaboration-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: clamp(2.5rem, 6vw, 5rem); border-radius: var(--radius-panel); background: var(--surface); }
.collaboration-panel h2 { max-width: 650px; }
.collaboration-panel p { margin-bottom: 0; }
.input-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; align-self: center; }
.input-list span { display: flex; min-height: 70px; align-items: center; gap: .7rem; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; color: var(--ink-soft); background: #fff; font-size: .7rem; font-weight: 800; }
.input-list span::before { display: grid; width: 22px; height: 22px; flex: none; content: "✓"; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-pale); font-size: .55rem; }

/* About page */
.story-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.story-heading { position: sticky; top: 120px; }
.story-copy { font-size: 1.08rem; }
.story-copy p { margin-bottom: 1.5rem; }
.story-copy .pull-quote { margin: 3rem 0; padding: 2rem 0 2rem 2rem; border-left: 2px solid var(--blue); color: var(--ink); font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.25; letter-spacing: -.04em; }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.principle-card { min-height: 320px; padding: 2.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.principle-card:nth-child(1) { color: #fff; border-color: transparent; background: var(--navy); }
.principle-card > span { display: block; margin-bottom: 5rem; color: var(--blue); font-size: .67rem; font-weight: 800; }
.principle-card:nth-child(1) > span { color: #82a8fb; }
.principle-card h3 { margin-bottom: .8rem; }
.principle-card p { margin: 0; font-size: .88rem; }
.principle-card:nth-child(1) p { color: #9eabbc; }
.industry-band { overflow: hidden; padding-block: 2.4rem; color: #fff; background: var(--blue); }
.industry-marquee { display: flex; width: max-content; align-items: center; gap: 2rem; animation: marquee 28s linear infinite; }
.industry-marquee span { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 600; letter-spacing: -.04em; white-space: nowrap; }
.industry-marquee i { width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; opacity: .65; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Contact page */
.contact-hero { padding-bottom: 4rem; }
.contact-option-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.contact-option { display: flex; min-height: 185px; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.85); box-shadow: var(--shadow-sm); }
.contact-option span { color: var(--blue); font-size: .65rem; font-weight: 800; }
.contact-option h3 { margin: auto 0 .5rem; font-size: 1.1rem; }
.contact-option p { margin: 0; font-size: .75rem; }
.contact-option:hover { border-color: #b8cdf8; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-sidebar { position: sticky; top: 120px; }
.contact-sidebar h2 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); }
.contact-sidebar > p { margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact-detail span { margin-bottom: .3rem; color: #8791a0; font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail a, .contact-detail strong { font-size: .82rem; }
.contact-detail a:hover { color: var(--blue-deep); }
.contact-form-wrap { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { margin-bottom: .7rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.contact-form-wrap > p { margin-bottom: 2rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field.full { grid-column: span 2; }
.form-field label, .fieldset-legend { color: var(--ink-soft); font-size: .7rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: .8rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9aa3b1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #8cb0fb; box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #d34a3e; box-shadow: 0 0 0 4px rgba(211,74,62,.08); }
.field-error { min-height: 1em; margin: 0; color: #b42318; font-size: .6rem; }
.contact-form .button { grid-column: span 2; justify-self: start; border: 0; cursor: pointer; }
.form-privacy { grid-column: span 2; max-width: 620px; margin: 0; font-size: .58rem; }
.form-status { grid-column: span 2; display: none; margin: 0; padding: 1rem; border: 1px solid #b9cdf8; border-radius: 10px; color: var(--blue-deep); background: var(--blue-pale); font-size: .7rem; }
.form-status.visible { display: block; }
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; width: 100%; min-height: 78px; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border: 0; background: transparent; font-family: var(--font-display); font-size: .95rem; font-weight: 700; text-align: left; cursor: pointer; }
.faq-item button span { display: grid; width: 29px; height: 29px; flex: none; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--font-body); transition: transform .25s, background .25s; }
.faq-item button[aria-expanded="true"] span { color: #fff; background: var(--blue); transform: rotate(45deg); }
.faq-answer { max-width: 720px; padding: 0 3rem 1.6rem 0; }
.faq-answer[hidden] { display: none; }
.faq-answer p { margin: 0; font-size: .85rem; }

/* View transitions are progressive enhancement only. */
@view-transition { navigation: auto; }

/* ================================================================
   Responsive behavior
   ================================================================ */
@media (max-width: 1120px) {
  .site-nav { gap: 1.1rem; }
  .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 2.5rem; }
  .dashboard-window { right: -145px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome-card-dark { grid-column: span 2; }
  .outcome-card-dark .outcome-orbit { margin-block: .5rem; }
  .service-card { grid-column: span 6; }
  .service-card.featured { grid-column: span 6; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .site-header { height: 72px; }
  .header-cta { display: none; }
  .nav-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255,255,255,.85);
    cursor: pointer;
  }
  .nav-toggle > span:not(.sr-only) { position: absolute; width: 17px; height: 1.5px; border-radius: 2px; background: var(--ink); transition: transform .25s, margin .25s; }
  .nav-toggle > span:nth-child(2) { margin-top: -5px; }
  .nav-toggle > span:nth-child(3) { margin-top: 5px; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { margin-top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { margin-top: 0; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 71px 0 auto;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--gutter);
    border-bottom: 1px solid transparent;
    background: rgba(255,255,255,.97);
    opacity: 0;
    pointer-events: none;
    transition: max-height .4s var(--ease-out), padding .3s, opacity .25s;
    backdrop-filter: blur(18px);
  }
  .site-nav.open { max-height: calc(100dvh - 71px); padding-block: 1rem 1.5rem; border-color: var(--line); opacity: 1; pointer-events: auto; }
  .site-nav a { display: flex; min-height: 53px; align-items: center; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .site-nav a::after { top: 50%; right: .4rem; bottom: auto; left: auto; transform: translateY(-50%); }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: translateY(-50%); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .system-stage { min-height: 580px; margin-top: 1rem; }
  .dashboard-window { right: -30px; width: min(88vw, 690px); }
  .phone-preview { left: 5%; }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .split-heading, .subpage-section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .demo-heading { grid-template-columns: 1fr; gap: 1rem; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-steps { display: grid; grid-template-columns: repeat(7, minmax(130px, 1fr)); overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); scroll-snap-type: x mandatory; }
  .demo-steps::before { display: none; }
  .demo-step { scroll-snap-align: start; }
  .demo-step.active { transform: none; }
  .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .why-sticky, .contact-sidebar, .story-heading, .portfolio-principles h2 { position: static; }
  .feature-intro { grid-template-columns: 1fr; gap: 1rem; }
  .process-track { grid-template-columns: 1fr; gap: 1rem; }
  .process-track > i { width: 1px; height: 24px; margin: 0 auto; box-shadow: 0 8px 0 2px var(--blue); }
  .page-hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-aside { padding: 2rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .service-detail { grid-template-columns: .6fr 1.4fr; }
  .service-detail-label { position: static; }
  .service-includes { grid-column: 2; }
  .horizontal-flow { grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1rem; }
  .horizontal-flow > div:not(:last-child)::after { display: none; }
  .portfolio-principles, .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-step-card { grid-template-columns: 60px 1fr; }
  .process-deliverable { grid-column: 2; }
  .collaboration-panel { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 960px) {
  html:not(.js) .site-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    flex: 1;
    flex-direction: row;
    justify-content: flex-end;
    gap: .7rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }
  html:not(.js) .site-nav a {
    min-height: 44px;
    padding-inline: .2rem;
    border: 0;
    font-size: .64rem;
  }
}

@media (max-width: 720px) {
  :root { --gutter: 1.1rem; --radius-panel: 26px; }
  h1 { font-size: clamp(2.8rem, 13.5vw, 4.5rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .section { padding-block: clamp(4.5rem, 17vw, 6.5rem); }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero { padding-top: 8.5rem; }
  .hero-lede { font-size: 1rem; }
  .system-stage { min-height: 460px; margin-inline: -1rem; }
  .dashboard-window { top: 34px; right: -110px; width: 600px; transform: scale(.78); transform-origin: top right; }
  .system-stage:hover .dashboard-window { transform: scale(.78); }
  .phone-preview { bottom: 0; left: 2rem; width: 124px; height: 245px; transform: rotate(-2deg) scale(.9); transform-origin: bottom left; }
  .float-notification { top: 4px; right: 5px; transform: scale(.86); transform-origin: top right; }
  .float-email { display: none; }
  .stage-caption { display: none; }
  .trust-strip > div { flex-wrap: wrap; gap: .7rem 1rem; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card, .outcome-card-dark { min-height: 430px; grid-column: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { min-height: 350px; grid-column: auto; }
  .service-card.featured .service-icon { width: 180px; }
  .demo-visual { padding: 1rem; }
  .demo-canvas { min-height: 410px; }
  .demo-scene { padding: 1.4rem; }
  .demo-status { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .work-grid, .portfolio-projects { grid-template-columns: 1fr; }
  .project-card.project-large, .portfolio-projects > li:first-child { grid-column: auto; }
  .project-visual, .project-card:not(.project-large) .project-visual, .portfolio-projects .project-card .project-visual, .portfolio-projects > li:not(:first-child) .project-visual { min-height: 470px; }
  .roofing-visual { padding: 4rem 1.5rem; }
  .project-browser { width: 100%; }
  .roofing-site { grid-template-columns: 1fr; }
  .roofing-site > div:first-child { padding: 2.2rem 1.5rem; }
  .roof-shape { display: none; }
  .project-metric { right: 1rem; bottom: 1.4rem; }
  .homes-visual { grid-template-columns: 1fr; padding: 3.5rem 1.5rem 2rem; }
  .homes-dashboard { margin-top: -2.5rem; margin-left: 2rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid > div { min-height: 90px; padding: 1rem; }
  .cta-panel { padding-inline: 1.3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .intro-stat-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-includes { grid-column: auto; padding-top: 1.5rem; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .horizontal-flow { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; }
  .portfolio-filter-wrap { align-items: flex-start; flex-direction: column; }
  .process-step-card { grid-template-columns: 48px 1fr; gap: 1rem; }
  .process-step-number { width: 42px; height: 42px; }
  .process-deliverable { grid-column: 1 / -1; margin-left: 48px; }
  .full-process::before { left: 39px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 280px; }
  .contact-option-row { grid-template-columns: 1fr; }
  .contact-option { min-height: 150px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.full, .contact-form .button, .form-privacy, .form-status { grid-column: auto; }
  html:not(.js) .header-inner { height: auto; min-height: 72px; flex-wrap: wrap; padding-block: .7rem; }
  html:not(.js) .site-header { position: relative; height: auto; border-bottom: 1px solid var(--line); }
  html:not(.js) .site-nav { width: 100%; flex-wrap: wrap; justify-content: flex-start; order: 3; }
  html:not(.js) .hero { padding-top: 4.5rem; }
}

@media (max-width: 480px) {
  .brand { font-size: .82rem; }
  .hero-proof { align-items: flex-start; flex-direction: column; }
  .system-stage { min-height: 410px; }
  .dashboard-window { right: -164px; transform: scale(.67); }
  .system-stage:hover .dashboard-window { transform: scale(.67); }
  .phone-preview { left: 1rem; transform: rotate(-2deg) scale(.78); }
  .float-notification { right: -1rem; transform: scale(.75); }
  .trust-strip { margin-top: 2.5rem; }
  .outcome-card { min-height: 400px; }
  .outcome-orbit { transform: scale(.82); }
  .demo-canvas { min-height: 370px; }
  .scene-phone { min-height: 330px; transform: scale(.82); }
  .scene-pipeline { grid-template-columns: 1fr; padding: 1rem 3rem 6rem; }
  .pipe-arrow { display: none; }
  .moving-lead { right: 8%; left: 8%; }
  .project-visual, .project-card:not(.project-large) .project-visual, .portfolio-projects .project-card .project-visual, .portfolio-projects > li:not(:first-child) .project-visual { min-height: 420px; }
  .project-info { align-items: flex-start; }
  .project-info > i { width: 36px; height: 36px; }
  .hauling-visual, .landscape-visual, .pressure-visual { padding: 1.4rem; }
  .project-phone { width: 90%; }
  .landscape-card { padding: 1.4rem; }
  .pressure-browser { width: 100%; }
  .pressure-site { grid-template-columns: 1fr; }
  .pressure-site > div:first-child { padding: 2.3rem 1.4rem; }
  .before-after { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .input-list { grid-template-columns: 1fr; }
  .process-deliverable { margin-left: 0; }
}

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

@media (prefers-contrast: more) {
  :root { --muted: #3f4958; --line: #c8d0dc; --line-strong: #aab5c4; }
}
