:root {
  color-scheme: dark;
  --ink: #070b0f;
  --charcoal: #11181d;
  --graphite: #1c2428;
  --line: rgba(236, 241, 236, 0.16);
  --text: #f4f6ef;
  --muted: rgba(244, 246, 239, 0.68);
  --paper: #ebece4;
  --green: #72d88b;
  --cyan: #58c8d8;
  --clay: #c9855a;
  --gx-gradient: linear-gradient(135deg, #8fd79a 0%, #49c6bd 48%, #147f94 100%);
  --gx-gradient-deep: linear-gradient(135deg, #5fc47c 0%, #26aebc 48%, #0d667b 100%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  padding: 92px clamp(20px, 5vw, 72px) clamp(24px, 5vh, 56px);
  overflow: hidden;
  isolation: isolate;
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
}

.hero__image,
.hero__veil,
.hero__contours,
.hero__motion {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: hue-rotate(14deg) saturate(0.92) contrast(1.04) brightness(0.86);
  transform: scale(1.04) translate3d(calc(var(--hero-pan-x) * -0.42), calc(var(--hero-pan-y) * -0.42), 0);
  transform-origin: center;
  transition: transform 600ms ease-out;
  will-change: transform;
}

.hero__contours {
  z-index: -4;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 18% 32%, transparent 0 34%, rgba(114, 216, 139, 0.15) 34.4%, transparent 35%, transparent 43%, rgba(114, 216, 139, 0.12) 43.4%, transparent 44%),
    radial-gradient(ellipse at 74% 44%, transparent 0 29%, rgba(88, 200, 216, 0.14) 29.4%, transparent 30%, transparent 39%, rgba(88, 200, 216, 0.1) 39.4%, transparent 40%),
    repeating-radial-gradient(ellipse at 26% 22%, rgba(244, 246, 239, 0.11) 0 1px, transparent 1px 28px);
  background-size: 110% 110%, 96% 96%, 86% 86%;
  background-position: center;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--hero-pan-x) * 0.36), calc(var(--hero-pan-y) * 0.36), 0);
  animation: contour-drift 20s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero__motion {
  z-index: -3;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.92) 0%, rgba(5, 22, 30, 0.74) 40%, rgba(8, 43, 56, 0.28) 78%),
    linear-gradient(180deg, rgba(4, 10, 16, 0.66), rgba(7, 45, 58, 0.22) 42%, rgba(4, 10, 16, 0.82)),
    linear-gradient(135deg, rgba(12, 51, 77, 0.26), rgba(38, 116, 112, 0.08) 48%, rgba(3, 8, 13, 0.24));
}

.hero__frame {
  position: absolute;
  inset: clamp(96px, 11vh, 124px) clamp(16px, 4vw, 48px) clamp(18px, 4vw, 48px);
  z-index: 1;
  border: 1px solid rgba(244, 246, 239, 0.2);
  pointer-events: none;
}

.hero__frame::before,
.hero__frame::after {
  position: absolute;
  content: "";
  --frame-glow-size: clamp(70px, 9vw, 148px);
  --frame-glow-line: 2px;
  --frame-glow-dot-scale: 0.045;
  --frame-glow-x: linear-gradient(90deg, transparent, rgba(114, 216, 139, 0.94) 28%, rgba(88, 200, 216, 0.9) 68%, transparent);
  width: var(--frame-glow-size);
  height: var(--frame-glow-line);
  border-radius: 999px;
  background: var(--frame-glow-x);
  box-shadow:
    0 0 8px rgba(114, 216, 139, 0.3),
    0 0 16px rgba(88, 200, 216, 0.2);
  opacity: 0.86;
  animation: frame-glow-run 16s infinite both;
  transform-origin: left center;
  will-change: left, top, opacity, transform;
}

.hero__frame::before {
  top: -1px;
  left: 0;
}

.hero__frame::after {
  top: -1px;
  left: 0;
  animation-delay: -8s;
}

.hero__pulse-node {
  position: absolute;
  top: var(--pulse-top, clamp(148px, 18vh, 212px));
  right: var(--pulse-right, clamp(84px, 12vw, 184px));
  z-index: 1;
  width: var(--pulse-size, clamp(92px, 10vw, 144px));
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: var(--pulse-opacity, 0.84);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--hero-pan-x) * 0.18), calc(var(--hero-pan-y) * 0.14), 0);
  transition: transform 600ms ease-out;
  will-change: transform;
  --pulse-core-delay: 0s;
  --pulse-grid-delay: 0s;
  --pulse-ring-delay: 0s;
}

.hero__pulse-node::before,
.hero__pulse-node::after,
.hero__pulse-node span {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero__pulse-node::before {
  inset: 46%;
  background: radial-gradient(circle, #f1fff6 0 12%, rgba(114, 216, 139, 0.94) 28%, rgba(88, 200, 216, 0.58) 58%, transparent 72%);
  box-shadow:
    0 0 12px rgba(114, 216, 139, 0.44),
    0 0 24px rgba(88, 200, 216, 0.28),
    26px -18px 0 -3px rgba(114, 216, 139, 0.62),
    -28px 20px 0 -3px rgba(88, 200, 216, 0.54),
    20px 30px 0 -3.5px rgba(244, 246, 239, 0.34);
  animation: pulse-node-core 3.8s ease-in-out infinite;
  animation-delay: var(--pulse-core-delay);
}

.hero__pulse-node::after {
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 21%, rgba(114, 216, 139, 0.28) 21.5%, transparent 22%, transparent 41%, rgba(88, 200, 216, 0.21) 41.5%, transparent 42%),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(114, 216, 139, 0.24) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(88, 200, 216, 0.2) 50%, transparent calc(50% + 1px)),
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(244, 246, 239, 0.13) 50%, transparent calc(50% + 1px));
  opacity: 0.82;
  animation: pulse-node-grid 9s ease-in-out infinite alternate;
  animation-delay: var(--pulse-grid-delay);
}

.hero__pulse-node span {
  top: 50%;
  left: 50%;
  width: 34%;
  height: 34%;
  border: 1px solid rgba(114, 216, 139, 0.66);
  box-shadow: 0 0 18px rgba(88, 200, 216, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.22);
  animation: pulse-node-ring 5.4s cubic-bezier(0.16, 0.76, 0.24, 1) infinite;
  animation-delay: var(--pulse-ring-delay);
}

.hero__pulse-node span:nth-child(2) {
  animation-delay: calc(var(--pulse-ring-delay) + 1.8s);
}

.hero__pulse-node span:nth-child(3) {
  animation-delay: calc(var(--pulse-ring-delay) + 3.6s);
}

.hero__pulse-node--sub-a {
  --pulse-top: clamp(236px, 28vh, 330px);
  --pulse-right: clamp(34px, 5vw, 78px);
  --pulse-size: clamp(58px, 5.8vw, 82px);
  --pulse-opacity: 0.46;
  --pulse-core-delay: -1.2s;
  --pulse-grid-delay: -3.4s;
  --pulse-ring-delay: -0.8s;
}

.hero__pulse-node--sub-b {
  --pulse-top: clamp(360px, 43vh, 470px);
  --pulse-right: clamp(112px, 13vw, 188px);
  --pulse-size: clamp(48px, 4.8vw, 70px);
  --pulse-opacity: 0.38;
  --pulse-core-delay: -2.6s;
  --pulse-grid-delay: -5.2s;
  --pulse-ring-delay: -2.1s;
}

.hero__pulse-node--sub-c {
  --pulse-top: clamp(500px, 58vh, 620px);
  --pulse-right: clamp(28px, 4vw, 70px);
  --pulse-size: clamp(68px, 6.5vw, 96px);
  --pulse-opacity: 0.42;
  --pulse-core-delay: -0.5s;
  --pulse-grid-delay: -1.8s;
  --pulse-ring-delay: -3.4s;
}

.hero__pulse-node--sub-d {
  --pulse-top: clamp(620px, 71vh, 750px);
  --pulse-right: clamp(126px, 15vw, 220px);
  --pulse-size: clamp(50px, 5.2vw, 76px);
  --pulse-opacity: 0.34;
  --pulse-core-delay: -3.2s;
  --pulse-grid-delay: -6.6s;
  --pulse-ring-delay: -1.5s;
}


.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(920px, 100%);
  margin-left: clamp(16px, 2.2vw, 34px);
  transform: translateY(10px);
}

.hero .eyebrow,
.hero h1,
.hero__lead,
.hero__actions {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero.is-ready .eyebrow,
.hero.is-ready h1,
.hero.is-ready .hero__lead,
.hero.is-ready .hero__actions {
  opacity: 1;
  transform: none;
}

.hero.is-ready h1 {
  transition-delay: 110ms;
}

.hero.is-ready .hero__lead {
  transition-delay: 220ms;
}

.hero.is-ready .hero__actions {
  transition-delay: 330ms;
}

.eyebrow,
.section-kicker,
.module__number,
.final-cta p {
  margin: 0;
  color: var(--green);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 740;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 24px 0 0;
  max-width: 1080px;
  color: rgba(248, 252, 244, 0.98);
  font-size: clamp(52px, 8.2vw, 120px);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(80, 210, 205, 0.1);
}

.hero-title__line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: rgba(250, 255, 248, 0.98);
  line-height: 0.88;
  white-space: nowrap;
  -webkit-text-fill-color: currentColor;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.4));
}

.hero-title__line--future {
  margin-top: 8px;
}

.hero-title__word,
.hero-title__plain {
  display: inline-block;
}

.hero-title__plain {
  color: rgba(250, 255, 248, 0.98);
  -webkit-text-fill-color: currentColor;
}

.hero-title__word--future {
  color: transparent;
  background-image: linear-gradient(105deg, rgba(244, 255, 250, 0.99), rgba(80, 214, 225, 0.96) 50%, rgba(102, 225, 195, 0.92));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 2px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(68, 199, 207, 0.2));
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(48px, 8.6vw, 92px);
  }
}

.hero__lead {
  width: min(700px, 100%);
  margin: clamp(18px, 3vh, 28px) 0 0;
  color: rgba(244, 246, 239, 0.82);
  font-size: clamp(16px, 1.75vw, 24px);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vh, 42px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button--primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 46%),
    var(--gx-gradient-deep);
  box-shadow:
    0 18px 44px rgba(32, 172, 181, 0.26);
  text-shadow: 0 1px 14px rgba(0, 47, 50, 0.48);
}

.button--ghost {
  color: var(--text);
  background: rgba(244, 246, 239, 0.12);
  box-shadow: none;
}

.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15em;
  z-index: 1;
  overflow: hidden;
  color: rgba(244, 246, 239, 0.07);
  font-size: clamp(80px, 13vw, 190px);
  font-weight: 920;
  line-height: 1;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-pan-x) * 0.28), calc(var(--hero-pan-y) * 0.18), 0);
  transition: transform 600ms ease-out;
  will-change: transform;
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-flow 34s linear infinite;
  will-change: transform;
}

.hero__ticker-group {
  display: flex;
  flex: 0 0 auto;
  gap: 0.18em;
  padding-right: 0.18em;
  white-space: nowrap;
}

@keyframes contour-drift {
  from {
    opacity: 0.22;
    background-position: 50% 50%, 50% 50%, 50% 50%;
  }

  to {
    opacity: 0.42;
    background-position: 47% 53%, 53% 48%, 51% 52%;
  }
}

@keyframes ticker-flow {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes pulse-node-core {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }

  48% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes pulse-node-grid {
  from {
    opacity: 0.46;
    transform: rotate(0deg) scale(0.96);
  }

  to {
    opacity: 0.76;
    transform: rotate(7deg) scale(1.02);
  }
}

@keyframes pulse-node-ring {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.22);
  }

  14% {
    opacity: 0.64;
  }

  72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.34);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.34);
  }
}

@keyframes frame-glow-run {
  0% {
    top: -1px;
    left: 0;
    opacity: 0.62;
    transform: rotate(0deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  3% {
    top: -1px;
    left: 0;
    opacity: 0.92;
    transform: rotate(0deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.16, 0.82, 0.24, 1);
  }

  21% {
    top: -1px;
    left: calc(100% - var(--frame-glow-size));
    opacity: 0.92;
    transform: rotate(0deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.76, 0, 0.22, 1);
  }

  24%,
  25% {
    top: -2px;
    left: calc(100% - 1px);
    opacity: 0.74;
    transform: rotate(0deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  25.5% {
    top: -2px;
    left: calc(100% - 1px);
    opacity: 0.74;
    transform: rotate(90deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  28% {
    top: 0;
    left: calc(100% - 1px);
    opacity: 0.92;
    transform: rotate(90deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.16, 0.82, 0.24, 1);
  }

  46% {
    top: calc(100% - var(--frame-glow-size));
    left: calc(100% - 1px);
    opacity: 0.92;
    transform: rotate(90deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.72, 0, 0.24, 1);
  }

  49%,
  50% {
    top: calc(100% - 1px);
    left: calc(100% - 1px);
    opacity: 0.74;
    transform: rotate(90deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  50.5% {
    top: calc(100% - 1px);
    left: calc(100% - 1px);
    opacity: 0.74;
    transform: rotate(180deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  53% {
    top: calc(100% - var(--frame-glow-line));
    left: calc(100% - 1px);
    opacity: 0.92;
    transform: rotate(180deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.16, 0.82, 0.24, 1);
  }

  71% {
    top: calc(100% - var(--frame-glow-line));
    left: var(--frame-glow-size);
    opacity: 0.92;
    transform: rotate(180deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.68, 0.04, 0.22, 1);
  }

  74%,
  75% {
    top: calc(100% - 1px);
    left: 0;
    opacity: 0.74;
    transform: rotate(180deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  75.5% {
    top: calc(100% - 1px);
    left: 0;
    opacity: 0.74;
    transform: rotate(270deg) scaleX(var(--frame-glow-dot-scale));
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.14, 1);
  }

  78% {
    top: calc(100% - 1px);
    left: -1px;
    opacity: 0.92;
    transform: rotate(270deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.16, 0.82, 0.24, 1);
  }

  96% {
    top: var(--frame-glow-size);
    left: -1px;
    opacity: 0.92;
    transform: rotate(270deg) scaleX(1);
    animation-timing-function: cubic-bezier(0.68, 0.04, 0.22, 1);
  }

  99%,
  100% {
    top: -1px;
    left: 0;
    opacity: 0.62;
    transform: rotate(270deg) scaleX(var(--frame-glow-dot-scale));
  }
}

.service-index,
.news-band,
.final-cta {
  padding: clamp(72px, 10vw, 144px) clamp(20px, 5vw, 72px);
}

.modules {
  padding: 0 clamp(20px, 5vw, 72px);
}

.service-index {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto clamp(44px, 7vw, 86px);
}

.service-index .section-kicker,
.news-band .section-kicker {
  color: #28734d;
}

.section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 56px);
  font-weight: 890;
  line-height: 1.12;
}

.news-band .section-heading {
  position: relative;
  display: block;
  text-align: center;
}

.news-band .section-kicker {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.news-band .section-heading h2 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.14;
  text-align: center;
}

.service-list {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(7, 11, 15, 0.24);
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3.4vw, 54px);
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid rgba(7, 11, 15, 0.24);
}

.service-row__number {
  color: #28734d;
  font-size: 13px;
  font-weight: 820;
}

.service-row__title {
  font-size: clamp(22px, 2.35vw, 38px);
  font-weight: 890;
  line-height: 1.08;
}

.service-row__body {
  color: rgba(7, 11, 15, 0.66);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.8;
}

.modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.module {
  display: grid;
  min-height: 560px;
  background: var(--charcoal);
}

.module--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.module--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
}

.module--reverse .module__copy {
  order: 2;
}

.module img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.module__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 72px);
}

.module h3 {
  margin: 18px 0 0;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 890;
  line-height: 1.12;
}

.module p:last-child {
  width: min(580px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.9;
}

.news-band {
  color: var(--ink);
  background: #f7f7f2;
}

.news-grid {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(7, 11, 15, 0.18);
}

.news-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(7, 11, 15, 0.18);
}

.news-item time {
  color: #28734d;
  font-size: 13px;
  font-weight: 760;
}

.news-item span {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 740;
  line-height: 1.45;
}

.final-cta {
  min-height: 70vh;
  display: grid;
  align-content: center;
  justify-items: start;
  background:
    linear-gradient(90deg, rgba(114, 216, 139, 0.12) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #0d1317, #06090c);
}

.final-cta h2 {
  width: min(1000px, 100%);
  margin: 22px 0 36px;
  font-size: clamp(32px, 4.8vw, 72px);
  font-weight: 920;
  line-height: 1.04;
}

@media (max-width: 920px) {

  .hero {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 74px;
    line-height: 0.9;
  }

  .hero-title__row--bottom {
    margin-top: 8px;
    gap: 0.24em;
  }

  .hero__frame {
    inset: 86px 16px 18px;
  }

  .hero__pulse-node {
    display: none;
  }

  .section-heading,
  .service-row,
  .news-item,
  .module--wide,
  .module--reverse {
    grid-template-columns: 1fr;
  }

  .news-band .section-heading {
    display: grid;
    text-align: left;
  }

  .news-band .section-kicker {
    position: static;
    transform: none;
  }

  .news-band .section-heading h2 {
    margin-inline: 0;
    text-align: left;
  }

  .service-row {
    gap: 10px;
    padding: 24px 0;
  }

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

  .module,
  .module--wide,
  .module--reverse {
    min-height: 0;
  }

  .module--reverse .module__copy {
    order: 0;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 56px;
    line-height: 0.96;
  }

  .hero-title__line--future {
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 20px;
  }

  .hero__content {
    margin-left: 0;
    transform: none;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-title__line--future {
    margin-top: 6px;
  }

  .hero__lead {
    line-height: 1.65;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__ticker {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__image,
  .hero__contours,
  .hero__ticker,
  .hero__ticker-track,
  .hero__frame::before,
  .hero__frame::after,
  .hero__pulse-node,
  .hero__pulse-node::before,
  .hero__pulse-node::after,
  .hero__pulse-node span,
  .button,
  .hero .eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions {
    animation: none;
    transition: none;
    transform: none;
  }

  .hero .eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions {
    opacity: 1;
  }
}
