:root {
  --color-navy: #0b1f3a;
  --color-navy-2: #12345d;
  --color-deep: #06111f;
  --color-cyan: #00a7c7;
  --color-green: #1f8f5f;
  --color-green-2: #48b47b;
  --color-ink: #17202c;
  --color-muted: #5d6b7a;
  --color-border: #dbe3ec;
  --color-soft: #f5f8fb;
  --color-white: #ffffff;
  --color-error: #b42318;
  --shadow-soft: 0 24px 70px rgba(11, 31, 58, 0.13);
  --shadow-deep: 0 32px 90px rgba(6, 17, 31, 0.28);
  --radius: 8px;
  --container: 1120px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0.8), rgba(255, 255, 255, 0) 420px),
    var(--color-white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 96px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(219, 227, 236, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-white);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--color-navy), var(--color-cyan) 52%, var(--color-green));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.18);
}

.brand strong,
.brand span span {
  display: block;
}

.brand strong {
  color: var(--color-navy);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand span span {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.site-footer a {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--color-navy);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: 999px;
  content: "";
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: calc(92vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 167, 199, 0.28), transparent 26%),
    radial-gradient(circle at 88% 76%, rgba(31, 143, 95, 0.26), transparent 28%),
    linear-gradient(115deg, rgba(6, 17, 31, 0.98), rgba(11, 31, 58, 0.96) 48%, rgba(8, 44, 44, 0.92)),
    var(--color-deep);
  color: var(--color-white);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.28));
  content: "";
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -40%;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(72, 180, 123, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 68px;
}

.hero-copy h1,
.section h1,
.section h2 {
  margin: 0;
  color: var(--color-navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  color: var(--color-white);
  font-size: clamp(2.65rem, 7vw, 5.8rem);
}

.hero-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(236, 244, 250, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
  box-shadow: 0 18px 34px rgba(0, 167, 199, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #16b8d6, #50bd82);
}

.button-secondary {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-border);
}

.hero .button-secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.1);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  min-height: 380px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(72, 180, 123, 0.09) 0 1px, transparent 1px 36px),
    #071522;
  border: 1px solid rgba(193, 219, 230, 0.2);
  box-shadow: var(--shadow-deep);
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after,
.visual-orbit,
.visual-core,
.visual-scan,
.visual-panel,
.node,
.energy-arc,
.data-rail {
  position: absolute;
}

.hero-visual::before {
  inset: 9%;
  border: 1px solid rgba(0, 167, 199, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-visual::after {
  inset: 20%;
  border: 1px dashed rgba(72, 180, 123, 0.44);
  border-radius: 50%;
  content: "";
}

.visual-scan {
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0 44%, rgba(0, 167, 199, 0.22) 49%, transparent 54% 100%);
  opacity: 0.75;
}

.visual-panel {
  width: 28%;
  height: 14%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 167, 199, 0.28), transparent 56%),
    rgba(255, 255, 255, 0.045);
}

.panel-a {
  top: 12%;
  right: 11%;
}

.panel-b {
  bottom: 12%;
  left: 12%;
  background:
    linear-gradient(90deg, rgba(72, 180, 123, 0.3), transparent 56%),
    rgba(255, 255, 255, 0.045);
}

.visual-orbit {
  inset: 14%;
  border-radius: 50%;
  border: 2px solid transparent;
}

.visual-orbit-one {
  border-top-color: var(--color-cyan);
  border-right-color: rgba(0, 167, 199, 0.3);
  transform: rotate(-28deg);
}

.visual-orbit-two {
  inset: 27%;
  border-left-color: var(--color-green);
  border-bottom-color: rgba(31, 143, 95, 0.38);
  transform: rotate(22deg);
}

.visual-core {
  inset: 50% auto auto 50%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 45%),
    linear-gradient(145deg, #092640, #06111f);
  border: 1px solid rgba(0, 167, 199, 0.3);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 167, 199, 0.16), 0 24px 56px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%) rotate(45deg);
}

.core-shield {
  width: 42px;
  height: 50px;
  background: linear-gradient(180deg, var(--color-white), #dce8f7);
  clip-path: polygon(50% 0, 88% 16%, 80% 72%, 50% 100%, 20% 72%, 12% 16%);
  transform: rotate(-45deg);
}

.core-bolt {
  inset: 34px auto auto 50px;
  width: 18px;
  height: 36px;
  background: var(--color-green-2);
  clip-path: polygon(48% 0, 100% 0, 66% 38%, 96% 38%, 28% 100%, 42% 54%, 0 54%);
  transform: rotate(-45deg);
}

.node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e9fbff;
  border: 4px solid var(--color-green);
  box-shadow: 0 0 0 8px rgba(31, 143, 95, 0.16), 0 0 26px rgba(72, 180, 123, 0.32);
}

.node-a {
  top: 16%;
  left: 29%;
}

.node-b {
  top: 31%;
  right: 14%;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 8px rgba(0, 167, 199, 0.16), 0 0 26px rgba(0, 167, 199, 0.3);
}

.node-c {
  bottom: 19%;
  right: 29%;
}

.node-d {
  bottom: 29%;
  left: 12%;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 8px rgba(0, 167, 199, 0.16), 0 0 26px rgba(0, 167, 199, 0.3);
}

.energy-arc {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(72, 180, 123, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.data-rail {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 167, 199, 0.84), rgba(72, 180, 123, 0.8), transparent);
}

.data-rail-a {
  top: 24%;
  left: 18%;
  width: 42%;
  transform: rotate(18deg);
}

.data-rail-b {
  top: 59%;
  right: 13%;
  width: 34%;
  transform: rotate(-32deg);
}

.data-rail-c {
  bottom: 25%;
  left: 26%;
  width: 38%;
  transform: rotate(35deg);
}

.energy-arc-a {
  top: 20%;
  left: 9%;
  transform: rotate(-12deg);
}

.energy-arc-b {
  right: 8%;
  bottom: 18%;
  transform: rotate(168deg);
}

.section h1,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-text p,
.section-heading p,
.contact-copy p,
.legal-page p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.about {
  position: relative;
  background:
    linear-gradient(120deg, rgba(245, 248, 251, 1), rgba(255, 255, 255, 0.82)),
    var(--color-soft);
}

.about::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 167, 199, 0.08), transparent 32%, rgba(31, 143, 95, 0.08));
  content: "";
}

.about .container {
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, var(--color-navy), #071522);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(11, 31, 58, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(11, 31, 58, 0.22);
}

.service-card::after {
  position: absolute;
  inset: auto -80px -100px auto;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

.service-card-green {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #0f5d3a, #083025);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.86) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, rgba(255, 255, 255, 0.86) 44% 56%, transparent 56%);
}

.service-card-green .service-icon {
  border-radius: 50% 50% 8px 50%;
}

.service-kicker {
  position: relative;
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(226, 248, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.service-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.15;
}

.service-card p {
  position: relative;
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
}

.service-card li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.62em;
  background: var(--color-green-2);
  border-radius: 50%;
  content: "";
}

.service-card-green li::before {
  background: #baf5d0;
}

.differentiators {
  background:
    linear-gradient(180deg, #f5f8fb, #ffffff);
}

.differentiator-list {
  counter-reset: differentiator;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  background: rgba(11, 31, 58, 0.08);
  box-shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
}

.differentiator-list div {
  counter-increment: differentiator;
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: end;
  padding: 24px;
  color: var(--color-navy);
  font-weight: 760;
  background: var(--color-white);
}

.differentiator-list div::before {
  position: absolute;
  top: 18px;
  left: 24px;
  color: rgba(0, 167, 199, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  content: "0" counter(differentiator);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.contact {
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 167, 199, 0.1), transparent 24%),
    linear-gradient(180deg, var(--color-white), #f4f8fb);
}

.contact-note {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-note span {
  position: relative;
  padding: 13px 14px 13px 42px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 227, 236, 0.9);
  border-radius: 8px;
}

.contact-note span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 167, 199, 0.1);
  content: "";
  transform: translateY(-50%);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(203, 214, 226, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--color-white);
  box-shadow: 0 28px 74px rgba(11, 31, 58, 0.12);
}

.form-status,
.field-full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0 0 6px;
  padding: 12px 14px;
  color: var(--color-navy);
  background: #edf6f1;
  border: 1px solid #cfe9da;
  border-radius: 8px;
  font-size: 0.95rem;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--color-navy);
  font-size: 0.94rem;
  font-weight: 760;
}

.field label span {
  color: var(--color-muted);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid #cbd6e2;
  border-radius: 8px;
  padding: 10px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(0, 167, 199, 0.12);
}

.field textarea {
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
}

.field-error {
  min-height: 1.25em;
  margin: 0;
  color: var(--color-error);
  font-size: 0.88rem;
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 4px;
}

.checkbox-field .field-error {
  grid-column: 2;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--color-navy);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: var(--color-white);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: var(--color-white);
}

.legal-page {
  min-height: 62vh;
}

.legal-page .section {
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 167, 199, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f6f9fc);
}

.legal-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.legal-block h2 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.legal-disclaimer {
  padding: 16px 18px;
  background: #edf6f1;
  border: 1px solid #cfe9da;
  border-radius: 8px;
}

:focus-visible {
  outline: 3px solid rgba(31, 143, 95, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual {
    animation: visual-rise 700ms ease both;
  }

  .visual-orbit-one {
    animation: slow-turn 18s linear infinite;
  }

  .visual-orbit-two {
    animation: slow-turn 22s linear infinite reverse;
  }

  @keyframes visual-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
  }

  @keyframes slow-turn {
    to {
      transform: rotate(360deg);
    }
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .hero-visual {
    min-height: 320px;
  }

  .service-grid,
  .differentiator-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav:not(.static-nav) {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav:not(.static-nav) a {
    padding: 14px 12px;
  }

  .static-nav {
    display: none;
  }

  .brand span span {
    max-width: 170px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
  }

  .service-grid,
  .differentiator-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .differentiator-list div {
    min-height: 86px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid,
  .site-footer nav {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand span span {
    display: none;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }
}
