:root {
  --bg: #03060d;
  --bg-deep: #010307;
  --panel: #071226;
  --panel-soft: #0b1933;
  --ink: #f3f7ff;
  --muted: #a7b5cd;
  --line: rgba(180, 213, 255, 0.16);
  --blue: #1569ff;
  --blue-bright: #47b8ff;
  --ice: #d9ebff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 44px;
  --header-h: 74px;
  --pad: clamp(20px, 4vw, 64px);
  --max: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(30, 101, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #040814 0%, #02050c 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

::selection {
  background: rgba(71, 184, 255, 0.35);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #06142c;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 1100;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #3a95ff, #77e1ff);
  box-shadow: 0 0 18px rgba(71, 184, 255, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px var(--pad);
  border-bottom: 1px solid transparent;
  background: rgba(2, 6, 14, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  border-color: var(--line);
  background: rgba(2, 6, 14, 0.9);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-link img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(21, 105, 255, 0.2);
}

.brand-link span {
  overflow-wrap: anywhere;
}

.menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 18, 38, 0.78);
  color: #fff;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  overflow: hidden;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease, width 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: var(--header-h) 14px auto;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(4, 10, 23, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
}

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

.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-nav a:hover {
  background: rgba(71, 184, 255, 0.1);
  color: #fff;
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: clip;
  background: #020713;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-media,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
  transform: scale(1.035);
  animation: hero-breathe 8s ease-out both;
}

.hero-scrim {
  z-index: -2;
  background:
    radial-gradient(circle 30rem at var(--glow-x, 70%) var(--glow-y, 45%), rgba(38, 128, 255, 0.22), transparent 62%),
    linear-gradient(90deg, rgba(1, 5, 13, 0.96) 0%, rgba(1, 5, 13, 0.78) 35%, rgba(1, 5, 13, 0.24) 70%, rgba(1, 5, 13, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(2, 7, 18, 0.5));
  transition: background-position 160ms linear;
}

.hero-grid {
  z-index: -1;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(134, 184, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 184, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 38%, #000 78%, transparent 100%);
}

.hero-copy {
  width: min(100%, 1120px);
  padding: clamp(70px, 10vh, 130px) var(--pad) clamp(92px, 10vh, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 23vw, 11rem);
  line-height: 0.72;
  letter-spacing: -0.085em;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: fit-content;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.4);
}

.hero h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(226, 241, 255, 0.9);
  text-stroke: 1.4px rgba(226, 241, 255, 0.9);
}

.hero h1 span:nth-child(3) {
  color: var(--blue-bright);
}

.hero-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 30px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(172, 216, 255, 0.28);
  border-radius: 999px;
  background: rgba(4, 14, 34, 0.66);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero-email:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 193, 255, 0.7);
  background: rgba(20, 86, 214, 0.26);
  box-shadow: 0 16px 34px rgba(18, 92, 219, 0.2);
}

.hero-brandmark {
  position: absolute;
  top: 26px;
  right: var(--pad);
  width: clamp(84px, 15vw, 170px);
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid rgba(200, 227, 255, 0.18);
  border-radius: 30%;
  background: rgba(2, 9, 24, 0.54);
  box-shadow: 0 24px 70px rgba(0, 27, 94, 0.34);
  backdrop-filter: blur(18px);
  animation: float-mark 5.5s ease-in-out infinite;
}

.hero-brandmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 25%;
}

.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(230, 241, 255, 0.78);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  animation: scan-line 2.2s ease-in-out infinite;
}

.section {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(88px, 11vw, 170px) var(--pad);
}

.section-kicker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  color: #77c6ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.reveal-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 183, 255, 0.65), rgba(90, 183, 255, 0));
  transform-origin: left center;
  transform: scaleX(0.18);
  transition: transform 850ms cubic-bezier(.2,.85,.2,1);
}

.reveal-line.is-visible {
  transform: scaleX(1);
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.section-title-wrap {
  display: grid;
  gap: 30px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: #081225;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(203, 227, 255, 0.14);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.15,.75,.2,1), filter 600ms ease;
}

.media-frame:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.section-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.about-visual {
  min-height: 420px;
  border-radius: 10px 10px 82px 10px;
}

.about-visual img {
  min-height: 420px;
}

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

.services-heading {
  margin-bottom: clamp(32px, 5vw, 72px);
}

.services-gallery {
  display: grid;
  gap: 18px;
}

.service-large {
  aspect-ratio: 4 / 3;
  border-radius: 0 50px 0 50px;
}

.service-tall {
  aspect-ratio: 4 / 5;
  border-radius: 50px 0 50px 0;
}

.section-features {
  width: 100%;
  max-width: none;
  overflow: clip;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(17, 77, 184, 0.1), transparent 45%),
    #020713;
}

.section-features .section-kicker,
.feature-core {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.feature-marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  margin: 16px 0 52px;
  transform: translateX(-6%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(98, 167, 255, 0.22);
  text-stroke: 1px rgba(98, 167, 255, 0.22);
  font-size: clamp(4.8rem, 18vw, 13rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  font-weight: 900;
  white-space: nowrap;
  animation: marquee-drift 16s linear infinite alternate;
}

.feature-core {
  display: grid;
  gap: 30px;
}

.feature-image {
  aspect-ratio: 16 / 10;
  border-radius: 34px 6px 34px 6px;
}

.section-why {
  min-height: 760px;
}

.why-stage {
  display: grid;
  gap: 44px;
  align-items: center;
}

.why-title-block h2 {
  max-width: 9ch;
}

.why-logo-orbit {
  position: relative;
  width: min(76vw, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.why-logo-orbit img {
  position: relative;
  z-index: 2;
  width: 54%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 26%;
  box-shadow: 0 24px 100px rgba(20, 106, 255, 0.32);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(112, 188, 255, 0.24);
  border-radius: 50%;
}

.orbit-a {
  inset: 2%;
  animation: orbit-spin 18s linear infinite;
}

.orbit-b {
  inset: 16%;
  border-style: dashed;
  border-color: rgba(112, 188, 255, 0.34);
  animation: orbit-spin 12s linear infinite reverse;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 18px var(--blue-bright);
}

.orbit::before {
  top: 5%;
  left: 28%;
}

.orbit::after {
  right: 4%;
  bottom: 26%;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 90px var(--pad);
  border-top: 1px solid var(--line);
  background: #03102a;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(52, 155, 255, 0.38), transparent 32%),
    linear-gradient(135deg, rgba(6, 26, 66, 0.95), rgba(1, 5, 13, 0.98));
}

.contact-backdrop::before {
  content: "";
  position: absolute;
  width: 62vw;
  height: 62vw;
  max-width: 800px;
  max-height: 800px;
  left: -18vw;
  bottom: -38vw;
  border: 1px solid rgba(118, 195, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(67, 156, 255, 0.025), 0 0 0 160px rgba(67, 156, 255, 0.018);
}

.contact-content {
  width: min(100%, 1040px);
}

.contact-section h2 {
  overflow-wrap: anywhere;
}

.contact-mail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 720px);
  min-height: 68px;
  margin-top: 34px;
  padding: 14px 18px 14px 22px;
  overflow: hidden;
  border: 1px solid rgba(157, 210, 255, 0.25);
  border-radius: 18px;
  background: rgba(3, 12, 31, 0.6);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-mail span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-mail:hover {
  transform: translateY(-3px);
  border-color: rgba(84, 192, 255, 0.68);
  background: rgba(10, 45, 101, 0.6);
}

.site-footer {
  display: grid;
  gap: 34px;
  padding: 44px var(--pad) 54px;
  border-top: 1px solid var(--line);
  background: #01040a;
}

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

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: contain;
}

.footer-brand a,
.footer-email {
  color: var(--ice);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-brand a {
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a,
.footer-email {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-email:hover {
  color: #fff;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(150, 211, 255, 0.24);
  border-radius: 16px;
  background: rgba(5, 18, 45, 0.86);
  color: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(20, 83, 183, 0.9);
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-wave {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  animation: ripple 600ms ease-out forwards;
}

/* Privacy policy */
.policy-page {
  background:
    linear-gradient(90deg, rgba(20, 101, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(20, 101, 255, 0.035) 1px, transparent 1px),
    #f4f7fb;
  background-size: 72px 72px;
  color: #101b2e;
}

.policy-page .site-header {
  position: sticky;
  color: #f7fbff;
  background: rgba(3, 9, 22, 0.94);
  border-color: rgba(198, 224, 255, 0.12);
}

.policy-page .primary-nav {
  background: rgba(3, 9, 22, 0.98);
}

.policy-shell {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding: clamp(30px, 6vw, 84px) var(--pad) clamp(90px, 10vw, 150px);
}

.policy-hero {
  display: grid;
  gap: 28px;
  padding: clamp(42px, 8vw, 92px) 0 clamp(48px, 7vw, 90px);
  border-bottom: 1px solid rgba(10, 45, 95, 0.14);
}

.policy-hero-mark {
  width: 84px;
  aspect-ratio: 1;
  padding: 6px;
  border-radius: 22px;
  background: #06132c;
  box-shadow: 0 20px 52px rgba(5, 42, 104, 0.2);
}

.policy-hero-mark img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
}

.policy-hero h1 {
  margin: 0;
  max-width: 12ch;
  color: #06132c;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.effective-date {
  margin: 0;
  color: #295389;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.policy-layout {
  display: grid;
  gap: 34px;
  padding-top: 46px;
}

.policy-rail {
  align-self: start;
}

.policy-rail-box {
  padding: 22px;
  border: 1px solid rgba(7, 55, 120, 0.12);
  border-radius: 22px 6px 22px 6px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(13, 44, 88, 0.08);
}

.policy-rail-box img {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: contain;
}

.policy-rail-box a {
  display: block;
  color: #0b4fae;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.policy-article {
  min-width: 0;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(7, 55, 120, 0.12);
  border-radius: 6px 46px 6px 46px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 80px rgba(18, 48, 88, 0.12);
}

.policy-section {
  scroll-margin-top: 100px;
}

.policy-section + .policy-section {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid rgba(4, 46, 108, 0.12);
}

.policy-section h2 {
  margin: 0 0 18px;
  color: #09275a;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.policy-section p,
.policy-section li {
  color: #26364f;
  font-size: 1rem;
  line-height: 1.78;
}

.policy-section p {
  margin: 0 0 18px;
}

.policy-section ul {
  margin: 0 0 18px;
  padding-left: 1.4rem;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-section a {
  color: #075fc9;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.policy-section strong {
  color: #101e35;
}

.policy-page .site-footer {
  color: #eaf4ff;
}

@keyframes hero-breathe {
  from { transform: scale(1.085); }
  to { transform: scale(1.035); }
}

@keyframes float-mark {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-9px) rotate(0.001deg); }
}

@keyframes scan-line {
  0%, 100% { transform: scaleX(0.25); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes marquee-drift {
  from { transform: translateX(-8%); }
  to { transform: translateX(-20%); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

@media (min-width: 700px) {
  :root { --header-h: 80px; }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-link img {
    width: 50px;
    height: 50px;
  }

  .hero-copy {
    padding-bottom: 100px;
  }

  .section-about {
    grid-template-columns: 0.68fr 1.32fr;
    grid-template-areas:
      "kicker kicker"
      "title visual";
    align-items: end;
  }

  .section-about .section-kicker { grid-area: kicker; }
  .section-title-wrap { grid-area: title; align-self: start; }
  .about-visual { grid-area: visual; min-height: 560px; }

  .services-gallery {
    grid-template-columns: 1.55fr 0.85fr;
    align-items: end;
  }

  .service-large { aspect-ratio: 16 / 10; }
  .service-tall { aspect-ratio: 3 / 4; margin-top: 90px; }

  .feature-core {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: end;
  }

  .feature-core h2 {
    padding-bottom: 24px;
  }

  .why-stage {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-email {
    grid-column: 1 / -1;
  }

  .policy-hero {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "mark title"
      "mark date";
    align-items: end;
    column-gap: 28px;
  }

  .policy-hero-mark { grid-area: mark; }
  .policy-hero h1 { grid-area: title; }
  .effective-date { grid-area: date; }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }

  .primary-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .primary-nav a {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.83rem;
  }

  .primary-nav a:hover {
    transform: translateY(-1px);
  }

  .hero-copy {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(7rem, 12.6vw, 12.8rem);
  }

  .hero-brandmark {
    top: 58px;
  }

  .policy-layout {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
  }

  .policy-rail {
    position: sticky;
    top: 104px;
  }
}

@media (min-width: 1280px) {
  .section-services {
    display: grid;
    grid-template-columns: 0.36fr 0.64fr;
    grid-template-areas:
      "kicker kicker"
      "heading gallery";
    gap: 0 70px;
  }

  .section-services .section-kicker { grid-area: kicker; }
  .services-heading { grid-area: heading; position: sticky; top: 120px; align-self: start; }
  .services-gallery { grid-area: gallery; }

  .site-footer {
    grid-template-columns: 1fr 1.6fr auto;
  }

  .footer-email {
    grid-column: auto;
    text-align: right;
  }
}

@media (hover: none) {
  .media-frame:hover img { transform: none; filter: none; }
}

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

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

  .reveal-line { transform: scaleX(1); }
}
