
:root {
  --night: #06111f;
  --night-deep: #020812;
  --panel: rgba(13, 34, 52, 0.74);
  --panel-strong: rgba(15, 42, 62, 0.94);
  --text: #f4f7f9;
  --muted: #aab8c6;
  --cyan: #14cbd2;
  --cyan-bright: #39edf0;
  --lime: #66ff32;
  --line: rgba(120, 222, 230, 0.26);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--night-deep);
  color: var(--text);
  font-family:
    var(--font-geist-sans), Manrope, Inter, "Segoe UI", Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}

.hero {
  --hero-image: url("../images/nightshift-background.png");
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.96) 0%, rgba(3, 13, 25, 0.82) 49%, rgba(3, 13, 25, 0.36) 100%),
    radial-gradient(circle at 80% 38%, rgba(13, 173, 189, 0.12), transparent 38%),
    #06111f;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image, none);
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.86;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(18, 203, 210, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 203, 210, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(100% - 80px, 1440px);
  height: 112px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(197, 231, 235, 0.15);
}

.brand {
  display: grid;
  width: 132px;
  height: 86px;
  place-items: center;
}

.brand img {
  display: block;
  width: 120px;
  height: auto;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.28));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
}

.desktop-nav a {
  position: relative;
  padding: 16px 0;
  color: #f4f7f9;
  font-size: 0.98rem;
  font-weight: 520;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--cyan-bright);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 80px, 1440px);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.98fr) minmax(540px, 1.02fr);
  align-items: center;
  gap: 34px;
  padding: 54px 0 108px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  animation: fade-up 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 12px;
  color: #d7e7ea;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: 0 0 14px rgba(20, 203, 210, 0.7);
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.4rem, 5vw, 5rem);
  font-weight: 790;
  letter-spacing: -0.057em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 36px rgba(20, 203, 210, 0.14);
}

.hero-subline {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  letter-spacing: -0.012em;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1rem;
  font-weight: 680;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button--primary {
  min-width: 232px;
  padding: 0 28px;
  border: 1px solid rgba(85, 240, 242, 0.55);
  border-radius: 10px;
  background: linear-gradient(135deg, #0dbac3 0%, #078d9e 100%);
  box-shadow:
    0 16px 40px rgba(0, 177, 188, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: white;
}

.button--primary:hover {
  box-shadow:
    0 20px 50px rgba(0, 218, 229, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.button--primary span {
  font-size: 1.45rem;
  font-weight: 400;
}

.button--link {
  position: relative;
  min-height: 50px;
  padding: 0;
  color: #edf6f8;
}

.button--link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  content: "";
}

.button--link:hover {
  color: var(--cyan-bright);
  transform: translateX(3px);
}

.trust-line {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 20px;
  color: #91a6b4;
  font-size: 0.81rem;
  font-weight: 560;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px rgba(102, 255, 50, 0.7);
  content: "";
}

.service-orbit {
  position: relative;
  min-height: 580px;
  animation: fade-in 800ms 120ms ease both;
}

.orbit-ring {
  position: absolute;
  top: 15%;
  right: -24%;
  width: 680px;
  height: 470px;
  border: 1px solid rgba(46, 226, 236, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 70px rgba(14, 198, 211, 0.025),
    0 0 60px rgba(14, 198, 211, 0.04);
  transform: rotate(-17deg);
}

.service-card {
  position: absolute;
  display: flex;
  width: 250px;
  min-height: 238px;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(161, 238, 242, 0.52);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(38, 74, 98, 0.72), rgba(8, 27, 43, 0.92)),
    var(--panel);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 34px rgba(38, 215, 225, 0.05);
  backdrop-filter: blur(15px);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.service-card::before {
  position: absolute;
  top: -60px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(80, 235, 242, 0.14);
  content: "";
  filter: blur(34px);
}

.service-card:hover {
  z-index: 10;
  border-color: rgba(86, 244, 247, 0.92);
  box-shadow:
    0 38px 72px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(20, 203, 210, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-7px);
}

.service-card--it {
  top: 10px;
  left: 7%;
  animation: card-in 560ms 150ms ease both;
}

.service-card--web {
  top: 78px;
  right: 0;
  animation: card-in 560ms 230ms ease both;
}

.service-card--social {
  bottom: 5px;
  left: 16%;
  animation: card-in 560ms 310ms ease both;
}

.service-card--video {
  right: -3%;
  bottom: -42px;
  animation: card-in 560ms 390ms ease both;
}

.service-icon {
  position: absolute;
  top: 30px;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #8deef2;
  filter: drop-shadow(0 0 9px rgba(93, 229, 236, 0.34));
  transform: translateX(-50%);
}

.service-icon svg {
  width: 72px;
  height: 72px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.service-card strong {
  position: relative;
  z-index: 2;
  align-self: center;
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}

.card-arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(213, 244, 247, 0.55);
  font-size: 1.15rem;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translate(0);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-glow--one {
  right: -120px;
  bottom: -100px;
  width: 620px;
  height: 320px;
  background: rgba(0, 194, 214, 0.14);
  transform: rotate(-12deg);
}

.hero-glow--two {
  right: 33%;
  bottom: -140px;
  width: 460px;
  height: 280px;
  background: rgba(0, 105, 160, 0.11);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(220, 238, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 20px;
  height: 30px;
  border: 1px solid rgba(149, 213, 219, 0.45);
  border-radius: 12px;
}

.scroll-cue span::after {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--cyan);
  content: "";
  animation: scroll-dot 1.8s ease infinite;
}

.section-shell {
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.value-strip {
  border-top: 1px solid rgba(101, 205, 214, 0.15);
  border-bottom: 1px solid rgba(101, 205, 214, 0.15);
  background: #071523;
}

.value-strip__inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.value-strip p {
  margin: 0;
  color: #dcebee;
  font-size: 1.02rem;
  font-weight: 680;
  letter-spacing: -0.015em;
}

.value-strip__inner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
}

.value-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8fa7b4;
  font-size: 0.82rem;
  font-weight: 600;
}

.value-strip span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px rgba(102, 255, 50, 0.55);
  content: "";
}

.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(11, 179, 195, 0.1), transparent 28%),
    #f3f6f4;
  color: #102229;
}

.services-section::before {
  position: absolute;
  top: 40px;
  right: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(18, 170, 182, 0.16);
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.section-kicker {
  margin: 0 0 18px;
  color: #078f9a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 25px;
  height: 2px;
  margin: 0 11px 3px 0;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  content: "";
}

.section-heading h2,
.process-intro h2,
.senior-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading h2 span,
.contact-copy h2 span {
  color: #0aa7b1;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: #53666d;
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.detail-card {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid #dce5e2;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(10, 34, 40, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.detail-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 9px;
  height: 9px;
  border: 2px solid #0cafb8;
  border-radius: 50%;
  content: "";
  opacity: 0.5;
}

.detail-card:hover {
  border-color: rgba(10, 174, 184, 0.48);
  box-shadow: 0 28px 70px rgba(7, 99, 108, 0.09);
  transform: translateY(-5px);
}

.detail-card--featured {
  border-color: rgba(12, 187, 196, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 249, 247, 0.88));
}

.detail-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.detail-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(8, 148, 159, 0.2);
  border-radius: 50%;
  color: #0b8992;
  font-size: 0.78rem;
  font-weight: 800;
}

.new-label {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(13, 188, 198, 0.1);
  color: #087a83;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card h3 {
  max-width: 300px;
  margin: 42px 0 15px;
  color: #10252b;
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.detail-card > p {
  margin: 0;
  color: #5c6c71;
  font-size: 0.95rem;
  line-height: 1.68;
}

.detail-tags {
  display: flex;
  margin-top: auto;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 7px;
}

.detail-tags span {
  padding: 7px 10px;
  border: 1px solid #dfe8e5;
  border-radius: 999px;
  background: rgba(249, 252, 251, 0.86);
  color: #637276;
  font-size: 0.69rem;
  font-weight: 650;
}

.service-extras {
  display: flex;
  margin-top: 28px;
  padding: 22px 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #dce5e2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.service-extras span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #51666c;
  font-size: 0.82rem;
  font-weight: 630;
}

.service-extras span::after {
  width: 4px;
  height: 4px;
  margin-left: 4px;
  border-radius: 50%;
  background: #14b5be;
  content: "";
  opacity: 0.48;
}

.service-extras span:last-child::after {
  display: none;
}

.media-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 48%, rgba(0, 180, 196, 0.08), transparent 28%),
    #05111d;
  color: var(--text);
}

.media-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(18, 203, 210, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 203, 210, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.media-glow {
  position: absolute;
  top: 16%;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(12, 182, 198, 0.11);
  filter: blur(90px);
}

.section-heading--media {
  color: var(--text);
}

.section-heading--media h2 span {
  color: var(--cyan);
}

.section-heading--media > p {
  color: #91a6b3;
}

.media-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.media-feature {
  display: grid;
  min-height: 570px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(133, 224, 230, 0.2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 44, 62, 0.76), rgba(6, 21, 34, 0.9));
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.media-feature__copy {
  display: flex;
  padding: clamp(46px, 6vw, 82px);
  flex-direction: column;
  justify-content: center;
}

.feature-label {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-feature__copy h3 {
  max-width: 500px;
  margin: 0;
  color: #f3f8f9;
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 1.06;
}

.media-feature__copy > p:not(.feature-label) {
  max-width: 520px;
  margin: 24px 0 0;
  color: #a1b2bd;
  font-size: 1rem;
  line-height: 1.75;
}

.media-feature__copy ul {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 10px;
  color: #d8e5e8;
  font-size: 0.9rem;
  list-style: none;
}

.media-feature__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-feature__copy li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px rgba(102, 255, 50, 0.5);
  content: "";
}

.media-feature__copy > a {
  align-self: flex-start;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--cyan);
  color: #effbfc;
  font-size: 0.9rem;
  font-weight: 720;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.media-feature__copy > a:hover {
  color: var(--cyan-bright);
  transform: translateX(4px);
}

.media-feature__visual {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  place-items: center;
  border-left: 1px solid rgba(123, 218, 225, 0.15);
  background:
    radial-gradient(circle at 55% 40%, rgba(12, 205, 218, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(7, 33, 50, 0.45), rgba(2, 12, 23, 0.88));
}

.media-feature--video .media-feature__visual {
  border-right: 1px solid rgba(123, 218, 225, 0.15);
  border-left: 0;
}

.media-feature__visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(44, 211, 221, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 211, 221, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.social-post {
  position: relative;
  z-index: 2;
  width: min(68%, 350px);
  padding: 18px;
  border: 1px solid rgba(153, 235, 240, 0.34);
  border-radius: 24px;
  background: rgba(9, 27, 42, 0.9);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.45),
    0 0 38px rgba(16, 197, 207, 0.1);
  transform: rotate(-3deg);
}

.social-post__head {
  display: flex;
  padding: 2px 2px 14px;
  align-items: center;
  gap: 10px;
}

.social-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #087c8c);
  color: white;
  font-size: 0.85rem;
  font-weight: 850;
}

.social-post__head > span:nth-child(2) {
  display: grid;
  color: #edf8f9;
  font-size: 0.72rem;
}

.social-post__head small {
  margin-top: 2px;
  color: #778e9c;
  font-size: 0.58rem;
}

.social-post__head i {
  width: 18px;
  height: 3px;
  margin-left: auto;
  border-radius: 999px;
  background: #667d8a;
  box-shadow:
    -6px 0 #667d8a,
    6px 0 #667d8a;
}

.social-post__image {
  display: flex;
  aspect-ratio: 1 / 1;
  padding: 26px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 22%, rgba(102, 255, 50, 0.8) 0 3px, transparent 4px),
    linear-gradient(145deg, rgba(4, 22, 34, 0.15), rgba(3, 29, 45, 0.55)),
    url("../images/nightshift-background.png") center / cover;
  color: #f1f8f9;
}

.social-post__image span {
  font-size: 0.8rem;
  font-weight: 720;
}

.social-post__image strong {
  color: var(--cyan-bright);
  font-size: 2.1rem;
  letter-spacing: -0.05em;
}

.social-post__metrics {
  display: flex;
  padding: 15px 3px 1px;
  justify-content: space-between;
  color: #8da2ae;
  font-size: 0.66rem;
  font-weight: 650;
}

.floating-metric {
  position: absolute;
  right: 11%;
  bottom: 18%;
  z-index: 3;
  display: grid;
  min-width: 128px;
  padding: 18px;
  border: 1px solid rgba(112, 225, 232, 0.32);
  border-radius: 15px;
  background: rgba(8, 31, 46, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.floating-metric span {
  color: var(--lime);
  font-size: 1.4rem;
  font-weight: 800;
}

.floating-metric small {
  color: #8fa5b1;
}

.video-screen {
  position: relative;
  z-index: 2;
  width: min(82%, 520px);
  padding: 11px;
  border: 1px solid rgba(144, 228, 234, 0.34);
  border-radius: 22px;
  background: #081722;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(18, 188, 201, 0.09);
  transform: perspective(900px) rotateY(6deg);
}

.video-screen__stage {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border-radius: 13px;
  background:
    linear-gradient(rgba(2, 15, 28, 0.18), rgba(2, 15, 28, 0.5)),
    url("../images/nightshift-background.png") center / cover;
}

.play-button {
  display: grid;
  width: 64px;
  height: 64px;
  padding-left: 4px;
  place-items: center;
  border: 1px solid rgba(157, 242, 245, 0.64);
  border-radius: 50%;
  background: rgba(8, 48, 62, 0.62);
  box-shadow: 0 0 35px rgba(34, 217, 226, 0.2);
  color: white;
  font-size: 1.2rem;
  backdrop-filter: blur(7px);
}

.video-caption {
  position: absolute;
  bottom: 15px;
  left: 17px;
  color: #e7f8f9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 20px 14px 12px;
  gap: 12px;
  background:
    linear-gradient(90deg, transparent 24%, rgba(92, 238, 242, 0.23) 25%, transparent 26%),
    repeating-linear-gradient(90deg, rgba(91, 122, 135, 0.11) 0 1px, transparent 1px 46px);
}

.timeline__bar {
  display: grid;
  height: 34px;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.4fr;
  gap: 4px;
}

.timeline__bar span {
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(31, 207, 216, 0.38), rgba(10, 93, 117, 0.6)),
    #103246;
}

.timeline__bar span:nth-child(2),
.timeline__bar span:nth-child(4) {
  background: rgba(101, 255, 50, 0.18);
}

.timeline__audio {
  height: 28px;
  border-radius: 5px;
  background:
    repeating-linear-gradient(90deg, rgba(86, 234, 240, 0.6) 0 2px, transparent 2px 6px),
    rgba(9, 75, 94, 0.38);
  opacity: 0.72;
  mask-image: linear-gradient(180deg, transparent 8%, black 30% 70%, transparent 92%);
}

.timeline i {
  position: absolute;
  top: 10px;
  bottom: 8px;
  left: 25%;
  width: 1px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(102, 255, 50, 0.7);
}

.timeline i::before {
  position: absolute;
  top: 0;
  left: -4px;
  border-top: 6px solid var(--lime);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.process-section {
  background: #f4f7f5;
  color: #11262c;
}

.process-intro {
  display: flex;
  margin-bottom: 64px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.process-intro h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.25rem);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid::before {
  position: absolute;
  top: 26px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, #0cb0ba, rgba(10, 176, 186, 0.16), #0cb0ba);
  content: "";
}

.process-grid article {
  position: relative;
  z-index: 2;
  padding: 0 34px;
  text-align: center;
}

.process-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid rgba(8, 165, 175, 0.36);
  border-radius: 50%;
  background: #f4f7f5;
  box-shadow: 0 0 0 9px #f4f7f5;
  color: #088d96;
  font-size: 0.78rem;
  font-weight: 820;
}

.process-grid h3 {
  margin: 0 0 13px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.process-grid p {
  max-width: 330px;
  margin: 0 auto;
  color: #627278;
  font-size: 0.93rem;
  line-height: 1.65;
}

.senior-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 80%, rgba(31, 220, 224, 0.11), transparent 30%),
    #071522;
}

.senior-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.78fr;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.senior-copy h2 {
  max-width: 660px;
  color: #f2f8f9;
}

.senior-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #9fb0ba;
  font-size: 1.06rem;
  line-height: 1.78;
}

.senior-points {
  display: grid;
  max-width: 600px;
  margin: 32px 0 38px;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
}

.senior-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9e8eb;
  font-size: 0.9rem;
  font-weight: 630;
}

.senior-points span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.senior-card {
  position: relative;
  padding: clamp(36px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(133, 225, 231, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(25, 58, 75, 0.8), rgba(6, 26, 40, 0.94));
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.senior-card::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(73, 229, 236, 0.2);
  border-radius: 50%;
  content: "";
}

.senior-card > p {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.senior-card blockquote {
  margin: 0 0 38px;
  color: #f0f9f9;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.senior-card > div {
  display: flex;
  padding: 20px 0;
  align-items: flex-start;
  gap: 14px;
  border-top: 1px solid rgba(130, 211, 218, 0.14);
}

.senior-card > div > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(102, 255, 50, 0.12);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
}

.senior-card > div p {
  display: grid;
  margin: 0;
  color: #8ea3af;
  font-size: 0.84rem;
  line-height: 1.55;
}

.senior-card > div strong {
  color: #e4eff1;
  font-size: 0.94rem;
}

.about-section {
  background: #f3f6f4;
  color: #10242b;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.about-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid rgba(9, 162, 173, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(19, 198, 207, 0.11), transparent 62%),
    #eaf0ee;
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px solid rgba(9, 162, 173, 0.12);
  border-radius: 50%;
  content: "";
}

.about-mark::before {
  inset: 10%;
}

.about-mark::after {
  inset: 23%;
  border-style: dashed;
}

.about-mark img {
  position: relative;
  z-index: 2;
  width: 44%;
  filter: drop-shadow(0 16px 20px rgba(5, 45, 52, 0.14));
}

.about-mark span {
  position: absolute;
  right: 8%;
  bottom: 17%;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0bafb8;
  box-shadow: 0 12px 28px rgba(8, 139, 148, 0.2);
  color: white;
  font-size: 0.73rem;
  font-weight: 760;
}

.about-copy h2 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.about-lead {
  max-width: 710px;
  margin: 30px 0 18px;
  color: #17353c;
  font-size: 1.22rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.58;
}

.about-copy > p:not(.section-kicker):not(.about-lead) {
  max-width: 710px;
  margin: 0;
  color: #5a6d73;
  line-height: 1.78;
}

.about-values {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-values span {
  display: grid;
  padding: 18px;
  border: 1px solid #d9e4e1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  color: #64757a;
  font-size: 0.75rem;
  line-height: 1.45;
}

.about-values strong {
  margin-bottom: 4px;
  color: #087f88;
  font-size: 0.89rem;
}

.contact-section {
  overflow: hidden;
  background: #030c16;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background-image: url("../images/nightshift-background.png");
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.18;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.contact-orb--one {
  top: 15%;
  left: -180px;
  width: 450px;
  height: 450px;
  background: rgba(0, 170, 189, 0.11);
}

.contact-orb--two {
  right: -190px;
  bottom: -120px;
  width: 500px;
  height: 400px;
  background: rgba(12, 102, 157, 0.12);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.contact-copy h2 {
  color: #f3f8f9;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 28px 0 0;
  color: #9eb0bb;
  font-size: 1.04rem;
  line-height: 1.74;
}

.contact-direct {
  display: grid;
  margin-top: 42px;
  gap: 12px;
}

.contact-direct a {
  display: grid;
  width: min(100%, 380px);
  padding: 18px 20px;
  border: 1px solid rgba(120, 214, 221, 0.16);
  border-radius: 13px;
  background: rgba(10, 34, 49, 0.5);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-direct a:hover {
  border-color: rgba(83, 230, 238, 0.52);
  transform: translateX(4px);
}

.contact-direct small {
  color: #758b98;
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  margin-top: 5px;
  color: #e9f5f6;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  padding: clamp(28px, 4vw, 48px);
  gap: 23px;
  border: 1px solid rgba(127, 223, 230, 0.24);
  border-radius: 25px;
  background: rgba(9, 29, 43, 0.82);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span:first-child {
  color: #b7c9d0;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 197, 207, 0.19);
  border-radius: 10px;
  background: rgba(3, 17, 28, 0.7);
  color: #edf7f8;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #617984;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(57, 237, 240, 0.7);
  box-shadow: 0 0 0 3px rgba(20, 203, 210, 0.09);
}

.contact-form select {
  appearance: auto;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex: 0 0 17px;
  accent-color: var(--cyan);
}

.consent span {
  color: #7f959f !important;
  font-size: 0.71rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.consent a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form button {
  width: fit-content;
  min-width: 190px;
  cursor: pointer;
  font-family: inherit;
}

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

.form-message {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-message--success {
  border: 1px solid rgba(102, 255, 50, 0.35);
  background: rgba(102, 255, 50, 0.08);
  color: #d5f8cb;
}

.form-message--error {
  border: 1px solid rgba(255, 119, 119, 0.35);
  background: rgba(255, 99, 99, 0.08);
  color: #ffd1d1;
}

.entry-content {
  color: #91a6b1;
  font-size: 0.93rem;
  line-height: 1.78;
}

.entry-content > * + * {
  margin-top: 1.35em;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.25em;
  color: #e9f4f5;
}

.entry-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.custom-logo-link {
  display: contents;
}

.admin-bar .site-header {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid rgba(109, 199, 207, 0.12);
  background: #020912;
}

.footer-main {
  display: grid;
  padding-top: 74px;
  padding-bottom: 65px;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand img {
  width: 112px;
}

.footer-brand p {
  max-width: 290px;
  margin: 20px 0 0;
  color: #748a96;
  font-size: 0.83rem;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: #dce9ec;
  font-size: 0.82rem;
}

.footer-column a,
.footer-column span {
  color: #718792;
  font-size: 0.77rem;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(111, 192, 200, 0.1);
  color: #5f747f;
  font-size: 0.7rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 92% 5%, rgba(12, 183, 196, 0.11), transparent 28%),
    #06111d;
  color: #dce9ec;
}

.legal-header,
.legal-footer {
  display: flex;
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header {
  min-height: 108px;
  border-bottom: 1px solid rgba(133, 221, 228, 0.14);
}

.legal-brand img {
  width: 102px;
}

.legal-back {
  color: #9fb2bc;
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.legal-back:hover {
  color: var(--cyan);
}

.legal-content {
  width: min(100% - 80px, 860px);
  margin: 0 auto;
  padding: 100px 0 120px;
}

.legal-content h1 {
  margin: 0 0 70px;
  color: #f3f8f9;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid rgba(132, 209, 216, 0.14);
}

.legal-content h2 {
  margin: 0 0 15px;
  color: #e9f4f5;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content address {
  margin: 0;
  color: #91a6b1;
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.78;
}

.legal-content section p + p {
  margin-top: 18px;
}

.legal-content section a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  display: grid;
  margin-top: 36px;
  padding: 24px;
  gap: 8px;
  border: 1px solid rgba(102, 255, 50, 0.2);
  border-radius: 14px;
  background: rgba(102, 255, 50, 0.045);
  color: #879da8;
  font-size: 0.8rem;
  line-height: 1.6;
}

.legal-note strong {
  color: #cdeac6;
}

.legal-footer {
  min-height: 82px;
  border-top: 1px solid rgba(133, 221, 228, 0.12);
  color: #617984;
  font-size: 0.72rem;
}

.legal-footer nav {
  display: flex;
  gap: 25px;
}

.legal-footer a:hover {
  color: var(--cyan);
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(9px);
  }
}

@media (max-width: 1180px) {
  .site-header,
  .hero-inner {
    width: min(100% - 48px, 1120px);
  }

  .section-shell {
    width: min(100% - 48px, 1120px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 490px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 4.3rem);
  }

  .service-orbit {
    min-height: 520px;
    transform: scale(0.87);
    transform-origin: center right;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-feature__copy {
    padding: 48px;
  }

  .about-layout,
  .senior-layout {
    gap: 70px;
  }

  .contact-layout {
    gap: 60px;
  }
}

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

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

  .mobile-nav summary {
    display: grid;
    width: 46px;
    height: 46px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(114, 224, 231, 0.3);
    border-radius: 10px;
    background: rgba(14, 36, 52, 0.7);
  }

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

  .mobile-nav summary span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #d9f5f6;
  }

  .mobile-nav nav {
    position: absolute;
    top: 56px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 48px));
    padding: 12px;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 18, 30, 0.96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(20px);
  }

  .mobile-nav nav a {
    padding: 13px 14px;
    border-radius: 9px;
    color: #eef9fa;
    font-weight: 600;
  }

  .mobile-nav nav a:hover {
    background: rgba(20, 203, 210, 0.1);
    color: var(--cyan-bright);
  }

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

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

  .service-orbit {
    width: min(100%, 620px);
    min-height: 560px;
    margin: 0 auto;
    transform: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    margin-bottom: 52px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .media-feature {
    grid-template-columns: 1fr;
  }

  .media-feature--video .media-feature__copy {
    order: 1;
  }

  .media-feature--video .media-feature__visual {
    order: 2;
  }

  .media-feature__visual {
    min-height: 440px;
    border-top: 1px solid rgba(123, 218, 225, 0.15);
    border-left: 0;
  }

  .media-feature--video .media-feature__visual {
    border-right: 0;
  }

  .process-grid article {
    padding: 0 18px;
  }

  .senior-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .senior-card {
    max-width: 680px;
  }

  .about-mark {
    width: min(72vw, 440px);
    margin: 0 auto;
  }

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

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-inner {
    width: min(100% - 36px, 560px);
  }

  .section-shell {
    width: min(100% - 36px, 560px);
  }

  .site-header {
    height: 92px;
  }

  .brand {
    width: 96px;
    height: 72px;
  }

  .brand img {
    width: 92px;
  }

  .hero-inner {
    min-height: auto;
    padding: 66px 0 84px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
    line-height: 1.04;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-subline {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .button--primary {
    width: 100%;
  }

  .trust-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
  }

  .service-orbit {
    display: grid;
    min-height: 0;
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .orbit-ring {
    display: none;
  }

  .service-card {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 180px;
    padding: 22px 12px;
    border-radius: 18px;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  .service-icon {
    top: 22px;
    width: 58px;
    height: 58px;
  }

  .service-icon svg {
    width: 54px;
    height: 54px;
  }

  .service-card strong {
    font-size: 1rem;
  }

  .value-strip__inner {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .value-strip__inner > div {
    display: grid;
    justify-content: start;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .process-intro h2,
  .senior-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

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

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

  .detail-card {
    min-height: 320px;
    padding: 27px;
  }

  .detail-card h3 {
    margin-top: 34px;
  }

  .service-extras {
    justify-content: flex-start;
  }

  .service-extras span::after {
    display: none;
  }

  .media-feature {
    min-height: 0;
    border-radius: 21px;
  }

  .media-feature__copy {
    padding: 32px 25px 40px;
  }

  .media-feature__copy h3 {
    font-size: 2.15rem;
  }

  .media-feature__visual {
    min-height: 390px;
  }

  .social-post {
    width: 70%;
  }

  .floating-metric {
    right: 5%;
    bottom: 11%;
    min-width: 104px;
    padding: 13px;
  }

  .video-screen {
    width: 90%;
    transform: none;
  }

  .timeline {
    min-height: 110px;
  }

  .process-intro {
    margin-bottom: 48px;
  }

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

  .process-grid::before {
    top: 25px;
    bottom: 25px;
    left: 27px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #0cb0ba, rgba(10, 176, 186, 0.16), #0cb0ba);
  }

  .process-grid article {
    display: grid;
    padding: 0;
    grid-template-columns: 54px 1fr;
    column-gap: 20px;
    text-align: left;
  }

  .process-grid article > span {
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-grid h3,
  .process-grid p {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .senior-points {
    grid-template-columns: 1fr;
  }

  .senior-copy .button--primary {
    width: 100%;
  }

  .senior-card {
    padding: 30px 24px;
    border-radius: 21px;
  }

  .about-mark {
    width: min(86vw, 390px);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .contact-form button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header,
  .legal-footer {
    width: min(100% - 36px, 560px);
  }

  .legal-content {
    width: min(100% - 36px, 560px);
    padding: 72px 0 90px;
  }

  .legal-content h1 {
    margin-bottom: 52px;
  }

  .legal-header {
    min-height: 92px;
  }

  .legal-brand img {
    width: 84px;
  }

  .legal-back {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
