:root {
  --navy-950: #051521;
  --navy-900: #092235;
  --navy-800: #0c3149;
  --blue: #168ff0;
  --cyan: #23d4d0;
  --ink: #112b3a;
  --muted: #617482;
  --line: #d8e3e8;
  --mist: #f2f7f8;
  --white: #ffffff;
  --max-width: 1220px;
  --font-geist-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 227, 232, 0.82);
  display: flex;
  height: 92px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
}

.brand-mark {
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 143, 240, 0.12);
  display: block;
  flex: 0 0 54px;
  height: 54px;
  overflow: hidden;
  width: 54px;
}

.site-header .brand-mark {
  flex-basis: 64px;
  height: 64px;
  width: 64px;
}

.brand-logo {
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.brand-name {
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.brand-name strong {
  color: var(--blue);
  font-weight: 700;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.desktop-nav > a:not(.nav-cta) {
  color: #405764;
  font-size: 14px;
  font-weight: 560;
  position: relative;
}

.desktop-nav > a:not(.nav-cta)::after {
  background: var(--blue);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--navy-950);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 670;
  padding: 13px 20px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
  position: relative;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(242, 247, 248, 0) 0%, rgba(242, 247, 248, 0.68) 100%),
    linear-gradient(rgba(9, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 34, 53, 0.035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  display: grid;
  gap: clamp(48px, 6vw, 92px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  padding: 90px max(36px, calc((100vw - var(--max-width)) / 2)) 86px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 12px;
  font-weight: 760;
  gap: 10px;
  letter-spacing: 0.15em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(35, 212, 208, 0.12);
  display: inline-block;
  height: 6px;
  width: 6px;
}

.hero h1 {
  color: var(--navy-950);
  font-size: clamp(56px, 5.4vw, 82px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  padding: 16px 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy-950);
  box-shadow: 0 14px 30px rgba(5, 21, 33, 0.16);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(22, 143, 240, 0.24);
}

.text-link {
  align-items: center;
  color: var(--navy-900);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
}

.text-link span {
  color: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-proof {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 52px 0 0;
  padding: 0;
}

.hero-proof li {
  color: #758893;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 3px;
  min-width: 120px;
  padding-right: 28px;
}

.hero-proof li + li {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.hero-proof strong {
  color: var(--navy-950);
  font-size: 15px;
}

.signal-stage {
  aspect-ratio: 1 / 1.06;
  background:
    radial-gradient(circle at center, rgba(15, 73, 105, 0.96), rgba(5, 21, 33, 0.98) 66%),
    var(--navy-950);
  border: 1px solid rgba(35, 212, 208, 0.2);
  border-radius: 48% 52% 44% 56% / 52% 43% 57% 48%;
  box-shadow:
    0 30px 70px rgba(5, 21, 33, 0.26),
    inset 0 0 70px rgba(22, 143, 240, 0.13);
  max-width: 540px;
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
  width: 100%;
}

.signal-stage::before {
  background:
    linear-gradient(rgba(35, 212, 208, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 212, 208, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
  position: absolute;
}

.signal-stage::after {
  border: 1px solid rgba(35, 212, 208, 0.22);
  border-radius: 50%;
  content: "";
  inset: 10%;
  position: absolute;
  transform: rotate(-8deg);
}

.signal-glow {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.68;
  position: absolute;
}

.signal-glow-one {
  background: var(--blue);
  height: 100px;
  right: -30px;
  top: 18%;
  width: 100px;
}

.signal-glow-two {
  background: var(--cyan);
  bottom: 7%;
  height: 72px;
  left: 8%;
  width: 72px;
}

.signal-orbit {
  border: 1px solid rgba(22, 143, 240, 0.42);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  inset: 21%;
  transform: rotate(28deg);
}

.orbit-two {
  inset: 33% 17%;
  transform: rotate(-48deg);
}

.signal-dot {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(35, 212, 208, 0.1),
    0 0 20px rgba(35, 212, 208, 0.9);
  height: 8px;
  position: absolute;
  width: 8px;
}

.dot-one {
  left: 11%;
  top: 18%;
}

.dot-two {
  bottom: 2%;
  right: 22%;
}

.signal-route {
  border-top: 1px solid rgba(35, 212, 208, 0.7);
  position: absolute;
  width: 24%;
}

.signal-route span {
  background: var(--cyan);
  border-radius: 50%;
  height: 5px;
  position: absolute;
  right: 0;
  top: -3px;
  width: 5px;
}

.route-one {
  left: 3%;
  top: 37%;
  transform: rotate(14deg);
}

.route-two {
  right: 5%;
  top: 31%;
  transform: rotate(-18deg);
}

.route-three {
  bottom: 22%;
  right: 9%;
  transform: rotate(28deg);
}

.signal-core {
  align-items: center;
  background: rgba(5, 21, 33, 0.74);
  border: 1px solid rgba(35, 212, 208, 0.56);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(22, 143, 240, 0.07),
    0 0 44px rgba(22, 143, 240, 0.24);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 210px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 210px;
  z-index: 3;
}

.signal-kicker {
  color: #94b9cc;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signal-core strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  margin-top: 5px;
}

.signal-divider {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  height: 1px;
  margin: 12px 0;
  width: 90px;
}

.signal-core small {
  color: #8fb3c5;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-caption {
  bottom: 8%;
  color: var(--white);
  font-size: 11px;
  font-weight: 720;
  left: 50%;
  letter-spacing: 0.12em;
  margin: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-2deg);
  width: 78%;
  z-index: 4;
}

.signal-caption span {
  color: #77a0b5;
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 7px;
  text-transform: none;
}

.intro-strip {
  align-items: center;
  background: var(--navy-950);
  color: #b9d0dc;
  display: flex;
  gap: 28px;
  justify-content: center;
  min-height: 78px;
  padding: 18px 28px;
}

.intro-strip p {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.intro-strip > span {
  background: var(--cyan);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 120px 0;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.why-copy h2,
.quote-intro h2 {
  color: var(--navy-950);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 670;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.project-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.project-card:hover {
  box-shadow: 0 22px 50px rgba(9, 34, 53, 0.12);
  transform: translateY(-6px);
}

.project-card-live {
  border-color: rgba(217, 81, 50, 0.44);
  box-shadow: 0 15px 35px rgba(116, 56, 30, 0.08);
}

.project-card-live .project-visual::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  content: "";
  height: 160%;
  left: -80%;
  position: absolute;
  top: -30%;
  transform: rotate(15deg);
  transition: left 600ms ease;
  width: 42%;
}

.project-card-live:hover .project-visual::after {
  left: 145%;
}

.project-visual {
  min-height: 320px;
  overflow: hidden;
  padding: 48px 24px 0;
  position: relative;
}

.project-orange {
  background: linear-gradient(145deg, #f7bd64, #d95132);
}

.project-sage {
  background: linear-gradient(145deg, #d8e3d4, #8ea795);
}

.project-clay {
  background: linear-gradient(145deg, #efe4ce, #b85e3f);
}

.project-blue {
  background: linear-gradient(145deg, #a9cad8, #244d68);
}

.project-copper {
  background: linear-gradient(145deg, #efe8dd, #9c4d31);
}

.project-browser {
  background: #fbfcfd;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 40px rgba(5, 21, 33, 0.24);
  min-height: 285px;
  padding: 12px;
  transform: rotate(-2deg);
}

.project-browser-real {
  border: 1px solid rgba(17, 21, 23, 0.16);
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform: rotate(-1.25deg);
}

.project-browser-real:hover .project-real-screen img {
  transform: scale(1.035);
}

.project-browser-bar.project-browser-bar-real {
  background: #f2efe8;
  margin: 0;
  padding: 12px;
}

.project-real-screen {
  height: 258px;
  overflow: hidden;
  position: relative;
}

.project-real-screen img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  position: absolute;
  transition: transform 500ms ease;
  width: 100%;
}

.project-real-shade {
  background:
    linear-gradient(90deg, rgba(17, 21, 23, 0.96) 0%, rgba(17, 21, 23, 0.72) 48%, rgba(17, 21, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 21, 23, 0.38), transparent 48%);
  inset: 0;
  position: absolute;
}

.project-real-nav {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 15px;
}

.project-real-nav b {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-real-nav span {
  background: #f06a24;
  border-radius: 999px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  text-transform: uppercase;
}

.project-real-copy {
  bottom: 30px;
  display: flex;
  flex-direction: column;
  left: 18px;
  position: absolute;
  width: 64%;
}

.project-real-copy small {
  color: #f6a16e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-real-copy strong {
  color: #fff;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 27px;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin-top: 10px;
}

.project-real-copy strong em {
  color: #f06a24;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.project-real-copy > span {
  align-self: flex-start;
  background: #f06a24;
  border-radius: 999px;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  margin-top: 17px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.project-sage .project-browser {
  transform: rotate(2deg);
}

.project-clay .project-browser {
  transform: rotate(1.25deg);
}

.project-clay .project-real-nav span,
.project-clay .project-real-copy > span {
  background: #b84f31;
}

.project-clay .project-real-copy small,
.project-clay .project-real-copy strong em {
  color: #e3c783;
}

.project-clay .project-real-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-copper .project-browser {
  transform: rotate(-1.5deg);
}

.project-copper .project-real-shade {
  background:
    linear-gradient(90deg, rgba(17, 36, 40, 0.97) 0%, rgba(17, 36, 40, 0.82) 50%, rgba(17, 36, 40, 0.08) 100%),
    linear-gradient(0deg, rgba(17, 36, 40, 0.32), transparent 50%);
}

.project-copper .project-real-nav span,
.project-copper .project-real-copy > span {
  background: #b85f38;
  border-radius: 2px;
}

.project-copper .project-real-copy small,
.project-copper .project-real-copy strong em {
  color: #e5a06f;
}

.project-copper .project-real-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.project-browser-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.project-browser-bar span {
  background: #cbd4d8;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.project-site-nav {
  align-items: center;
  border-bottom: 1px solid #e3e9eb;
  display: flex;
  gap: 9px;
  padding: 0 2px 10px;
}

.project-site-nav b {
  color: #183444;
  font-size: 7px;
  margin-right: auto;
  text-transform: uppercase;
}

.project-site-nav i {
  background: #b7c5cb;
  height: 3px;
  width: 18px;
}

.project-site-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 45px 16px;
}

.project-site-copy small {
  color: #65808e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.project-site-copy strong {
  color: #122f3e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  max-width: 220px;
}

.project-site-copy span {
  background: currentColor;
  color: #38738c;
  height: 7px;
  margin-top: 8px;
  width: 58px;
}

.concept-badge {
  background: rgba(5, 21, 33, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  bottom: 14px;
  color: var(--white);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  padding: 8px 10px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
}

.project-info {
  padding: 26px;
}

.project-info > p {
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.13em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.project-info h3 {
  color: var(--navy-950);
  font-size: 21px;
  letter-spacing: -0.03em;
  margin: 0;
}

.project-description {
  align-items: start;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 14px;
}

.project-description p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.project-description > span {
  color: var(--blue);
}

.project-open {
  align-items: center;
  background: var(--navy-950);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  transition:
    background 180ms ease,
    transform 180ms ease;
  width: 38px;
}

.project-open:hover {
  background: #d95132;
  transform: rotate(8deg);
}

.project-view-link {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--navy-950);
  display: flex;
  font-size: 12px;
  font-weight: 760;
  justify-content: space-between;
  letter-spacing: 0.02em;
  margin-top: 20px;
  padding-top: 16px;
}

.project-view-link span {
  color: #d95132;
  font-size: 16px;
  transition: transform 180ms ease;
}

.project-view-link:hover span {
  transform: translateX(4px);
}

.project-info ul {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
}

.project-info li {
  background: var(--mist);
  border-radius: 999px;
  color: #516b79;
  font-size: 9px;
  font-weight: 650;
  padding: 7px 9px;
}

.services-section {
  background: var(--navy-950);
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(28px, calc((100vw - var(--max-width)) / 2));
}

.light-heading h2 {
  color: var(--white);
}

.light-heading > p {
  color: #91adbc;
}

.service-grid {
  border-bottom: 1px solid rgba(149, 184, 200, 0.18);
  border-top: 1px solid rgba(149, 184, 200, 0.18);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 260px;
  padding: 34px 28px;
}

.service-card + .service-card {
  border-left: 1px solid rgba(149, 184, 200, 0.18);
}

.service-card > span {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.service-card h3 {
  color: var(--white);
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 70px 0 12px;
}

.service-card p {
  color: #8eabba;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.why-section {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.85fr 1.15fr;
}

.why-copy {
  align-self: center;
}

.why-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 26px 0;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 50px 1fr;
  padding: 32px 0;
}

.principles article > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  padding-top: 5px;
}

.principles h3 {
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.principles p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  padding: 8px 46px 0 0;
  position: relative;
}

.process-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 46px;
}

.process-grid span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.process-grid h3 {
  color: var(--navy-950);
  font-size: 27px;
  letter-spacing: -0.04em;
  margin: 42px 0 12px;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.quote-section {
  align-items: start;
  background:
    linear-gradient(105deg, rgba(9, 34, 53, 0.96), rgba(5, 21, 33, 0.99)),
    var(--navy-950);
  color: var(--white);
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  margin: 0 auto;
  max-width: 1440px;
  overflow: hidden;
  padding: 110px max(38px, calc((100vw - var(--max-width)) / 2));
  position: relative;
}

.quote-section::before {
  background:
    linear-gradient(rgba(35, 212, 208, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 212, 208, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0 50% 0 0;
  mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
  position: absolute;
}

.quote-intro {
  position: sticky;
  top: 142px;
  z-index: 1;
}

.quote-intro h2 {
  color: var(--white);
  max-width: 560px;
}

.quote-intro > p:not(.eyebrow) {
  color: rgba(225, 239, 245, 0.75);
  font-size: 16px;
  line-height: 1.8;
  margin: 26px 0 0;
  max-width: 520px;
}

.quote-intro .eyebrow {
  margin: 30px 0 18px;
}

.contact-signal {
  height: 90px;
  position: relative;
  width: 90px;
}

.contact-signal span {
  border: 1px solid rgba(35, 212, 208, 0.32);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.contact-signal span:nth-child(2) {
  inset: 18px;
}

.contact-signal span:nth-child(3) {
  background: var(--cyan);
  border: 0;
  box-shadow: 0 0 30px var(--cyan);
  inset: 39px;
}

.quote-expectations {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
}

.quote-expectations li {
  align-items: center;
  border-top: 1px solid rgba(149, 184, 200, 0.18);
  color: #dbe8ee;
  display: flex;
  font-size: 14px;
  gap: 16px;
  padding: 17px 0;
}

.quote-expectations li:last-child {
  border-bottom: 1px solid rgba(149, 184, 200, 0.18);
}

.quote-expectations span {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.quote-form,
.quote-success {
  background: var(--white);
  border: 1px solid rgba(216, 227, 232, 0.82);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

.form-heading h3,
.quote-success h3 {
  color: var(--navy-950);
  font-size: clamp(29px, 3vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

.form-heading > p:last-child,
.quote-success > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.form-heading .eyebrow,
.quote-success .eyebrow {
  margin-bottom: 15px;
}

.form-grid {
  display: grid;
  gap: 22px 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

.form-grid label {
  color: var(--navy-900);
  display: grid;
  font-size: 12px;
  font-weight: 720;
  gap: 9px;
  letter-spacing: 0.01em;
}

.form-grid label > span {
  color: #d65353;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  appearance: none;
  background: #f8fbfc;
  border: 1px solid #ccdbe2;
  border-radius: 12px;
  color: var(--navy-950);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  padding: 14px 15px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  width: 100%;
}

.form-grid select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-800) 50%),
    linear-gradient(135deg, var(--navy-800) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.form-grid textarea {
  line-height: 1.6;
  min-height: 150px;
  resize: vertical;
}

.form-grid textarea::placeholder {
  color: #8799a3;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 143, 240, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-submit-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 26px;
}

.form-submit-row .button {
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-submit-row > p {
  color: #7b8e99;
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  max-width: 230px;
  text-align: right;
}

.form-submit-row > p a {
  color: var(--navy-800);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  background: var(--mist);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 18px 0 0;
  padding: 12px 14px;
}

.form-error {
  background: #fff4f2;
  color: #8a3731;
}

.form-error a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote-success {
  align-content: center;
  min-height: 540px;
}

.quote-success-mark {
  align-items: center;
  background: rgba(35, 212, 208, 0.14);
  border: 1px solid rgba(35, 212, 208, 0.42);
  border-radius: 50%;
  color: #087e7b;
  display: flex;
  font-size: 26px;
  height: 62px;
  justify-content: center;
  margin-bottom: 38px;
  width: 62px;
}

.quote-reference {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  gap: 9px;
  margin-top: 26px;
  padding: 12px 14px;
}

.quote-reference strong {
  color: var(--navy-950);
  font-family: var(--font-geist-mono), monospace;
}

.quote-reset {
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  margin-top: 28px;
  padding: 0;
}

footer {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 56px 0 28px;
}

.footer-brand {
  grid-row: span 2;
}

footer > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  max-width: 390px;
}

footer > div {
  display: flex;
  gap: 24px;
}

footer > div a {
  color: #405764;
  font-size: 12px;
  font-weight: 650;
}

footer small {
  border-top: 1px solid var(--line);
  color: #8a9aa3;
  font-size: 10px;
  grid-column: 2 / -1;
  padding-top: 18px;
}

.privacy-home-link {
  color: var(--navy-900);
  display: none;
  font-size: 13px;
  font-weight: 700;
}

.privacy-content {
  margin: 0 auto;
  max-width: 820px;
  padding: 108px 32px 120px;
}

.privacy-content h1 {
  color: var(--navy-950);
  font-size: clamp(48px, 7vw, 76px);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0;
}

.privacy-lede {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  margin: 30px 0 72px;
}

.privacy-content section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  padding: 32px 0;
}

.privacy-content section h2 {
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
  margin: 0;
}

.privacy-content section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.privacy-content section a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-updated {
  color: #8a9aa3;
  font-size: 12px;
  margin: 34px 0 0;
}

@media (max-width: 1260px) {
  .section,
  footer {
    margin-left: 32px;
    margin-right: 32px;
  }

  .services-section {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 8px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    background: var(--navy-950);
    height: 2px;
    width: 25px;
  }

  .mobile-nav nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(5, 21, 33, 0.16);
    display: flex;
    flex-direction: column;
    min-width: 210px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50px;
  }

  .mobile-nav nav a {
    border-radius: 9px;
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 650;
    padding: 13px 12px;
  }

  .mobile-nav nav a:hover {
    background: var(--mist);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .signal-stage {
    justify-self: center;
    max-width: 620px;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card:last-child {
    grid-column: span 2;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(149, 184, 200, 0.18);
  }

  .service-card:nth-child(4) {
    border-top: 1px solid rgba(149, 184, 200, 0.18);
  }

  .why-section {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .quote-section {
    gap: 54px;
    grid-template-columns: 1fr;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .quote-intro {
    position: relative;
    top: auto;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-row: auto;
  }

  footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand-name {
    font-size: 14px;
  }

  .site-header .brand-mark {
    flex-basis: 50px;
    height: 50px;
    width: 50px;
  }

  .privacy-page .desktop-nav,
  .privacy-page .mobile-nav {
    display: none;
  }

  .privacy-home-link {
    display: inline-flex;
  }

  .hero {
    gap: 54px;
    min-height: 0;
    padding: 64px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof li,
  .hero-proof li + li {
    border-left: 0;
    min-width: 0;
    padding: 0;
  }

  .signal-stage {
    border-radius: 32% 68% 55% 45% / 45% 37% 63% 55%;
  }

  .signal-core {
    height: 150px;
    width: 150px;
  }

  .signal-core strong {
    font-size: 29px;
  }

  .signal-caption {
    bottom: 5%;
  }

  .intro-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 26px 20px;
  }

  .intro-strip > span {
    display: none;
  }

  .section,
  footer {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .services-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card:last-child {
    grid-column: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-left: 0 !important;
    border-top: 1px solid rgba(149, 184, 200, 0.18);
    min-height: 220px;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card h3 {
    margin-top: 48px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0;
  }

  .process-grid h3 {
    margin-top: 26px;
  }

  .quote-section {
    gap: 38px;
    padding: 68px 20px;
  }

  .contact-signal {
    height: 64px;
    width: 64px;
  }

  .contact-signal span:nth-child(2) {
    inset: 13px;
  }

  .contact-signal span:nth-child(3) {
    inset: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .form-submit-row > p {
    max-width: none;
    text-align: left;
  }

  .privacy-content {
    padding: 76px 20px 86px;
  }

  .privacy-content h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .privacy-lede {
    font-size: 17px;
    margin-bottom: 52px;
  }

  .privacy-content section {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > div {
    flex-wrap: wrap;
  }

  footer small {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .signal-stage {
    animation: signal-float 7s ease-in-out infinite;
  }

  .dot-one {
    animation: signal-pulse 2.4s ease-in-out infinite;
  }

  .dot-two {
    animation: signal-pulse 2.4s 1.2s ease-in-out infinite;
  }
}

@keyframes signal-float {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-10px);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
