:root {
  --navy-950: #061226;
  --navy-900: #071a35;
  --navy-800: #0b2446;
  --blue-700: #174a80;
  --orange-500: #f47b20;
  --orange-600: #dd6815;
  --surface: #f4f7fb;
  --surface-strong: #e7edf5;
  --ink: #0a1528;
  --muted: #5d6c80;
  --line: #d8e0eb;
  --white: #ffffff;
  --header-height: 82px;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(7, 26, 53, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

.form-row-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 53, 0.025) 1px, transparent 1px),
    var(--white);
  background-size: 92px 92px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

html,
body {
  overflow-x: clip;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--navy-950);
  background-size: 72px 72px;
  animation: loaderExit 900ms var(--ease-out) 780ms forwards;
  pointer-events: none;
}

.site-loader.is-complete {
  display: none;
}

.site-loader img {
  width: min(210px, 58vw);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
  animation: loaderMark 780ms var(--ease-out) both;
}

.site-loader span {
  position: relative;
  width: min(260px, 64vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.site-loader span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  animation: loaderLine 780ms cubic-bezier(0.45, 0, 0.2, 1) both;
}

.scroll-progress {
  position: fixed;
  z-index: 130;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, rgba(244, 123, 32, 0.25), var(--orange-500));
  box-shadow: 0 0 18px rgba(244, 123, 32, 0.4);
  transform-origin: left;
  pointer-events: none;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.9);
  outline-offset: 3px;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
}

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

.section {
  position: relative;
  padding: clamp(76px, 8vw, 132px) 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 24, 49, 0.98), rgba(4, 12, 28, 0.98)),
    var(--navy-950);
}

.section-muted {
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 123, 32, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 13, 29, 0.86), rgba(4, 13, 29, 0.54) 70%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 15, 32, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  max-width: 178px;
  max-height: 48px;
  object-fit: contain;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 16px rgba(244, 123, 32, 0.18));
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
  border-radius: 0;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta.button-primary {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--white);
  background: rgba(244, 123, 32, 0.11);
  border-color: rgba(244, 123, 32, 0.52);
  box-shadow: none;
}

.nav-cta.button-primary:hover {
  color: var(--white);
  background: rgba(244, 123, 32, 0.2);
  border-color: rgba(244, 123, 32, 0.76);
  box-shadow: 0 12px 28px rgba(244, 123, 32, 0.12);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  letter-spacing: 0;
  transition:
    transform 220ms var(--ease-out),
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 220ms ease;
}

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

.button-primary {
  color: var(--white);
  background:
    linear-gradient(180deg, #ff8a2a, var(--orange-500));
  box-shadow:
    0 12px 28px rgba(244, 123, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:hover {
  background: var(--orange-600);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  --hero-progress: 0;
  --hero-x: 0px;
  --hero-y: 0px;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: calc(var(--header-height) + 78px) 0 80px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 11, 25, 0.74));
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at calc(58% + var(--hero-x)) calc(34% + var(--hero-y)), rgba(244, 123, 32, 0.16), transparent 19%),
    linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 47%, transparent 53% 100%);
  mix-blend-mode: screen;
  opacity: calc(0.48 - (var(--hero-progress) * 0.28));
  transform: translate3d(calc(var(--hero-x) * -0.25), calc(var(--hero-y) * -0.2), 0);
  pointer-events: none;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid,
.hero-motion,
.hero-frame {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
  will-change: transform;
}

.is-ready .hero-media img {
  animation: heroImageSettle 1800ms var(--ease-out) 120ms both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 11, 25, 0.94) 0%, rgba(7, 26, 53, 0.82) 46%, rgba(7, 26, 53, 0.35) 100%),
    linear-gradient(180deg, rgba(3, 11, 25, 0.55), rgba(3, 11, 25, 0.9));
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
  transform: translate3d(calc(var(--hero-x) * 0.08), calc(var(--hero-y) * 0.08), 0);
  animation: gridDrift 20s linear infinite;
}

.hero-grid::after {
  position: absolute;
  top: 18%;
  right: 9%;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  content: "";
  border: 1px solid rgba(244, 123, 32, 0.2);
  background:
    linear-gradient(135deg, transparent 48%, rgba(244, 123, 32, 0.24) 49%, rgba(244, 123, 32, 0.24) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
  transform: rotate(8deg);
  animation: technicalPlate 7s var(--ease-out) infinite alternate;
}

.hero-motion {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion::before,
.hero-motion::after,
.hero-motion span {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-motion::before {
  top: 23%;
  left: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 123, 32, 0.72), transparent);
  transform: translateX(-100%);
  animation: lineScan 6.8s cubic-bezier(0.45, 0, 0.2, 1) 900ms infinite;
}

.hero-motion::after {
  right: 13%;
  bottom: 16%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(244, 123, 32, 0.2);
  opacity: 0.66;
  transform: rotate(45deg) translate3d(calc(var(--hero-x) * -0.12), calc(var(--hero-y) * -0.12), 0);
  animation: framePulse 5.4s var(--ease-out) infinite alternate;
}

.hero-motion span {
  width: 6px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(244, 123, 32, 0.08), 0 0 26px rgba(244, 123, 32, 0.5);
  opacity: 0.74;
}

.hero-motion span:nth-child(1) {
  top: 31%;
  left: 64%;
  animation: nodePulse 3.8s ease-in-out infinite;
}

.hero-motion span:nth-child(2) {
  top: 67%;
  left: 48%;
  animation: nodePulse 4.6s ease-in-out 800ms infinite;
}

.hero-motion span:nth-child(3) {
  top: 72%;
  right: 16%;
  animation: nodePulse 5.2s ease-in-out 1400ms infinite;
}

.hero-frame {
  z-index: 1;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  position: absolute;
  content: "";
  opacity: 0.68;
  pointer-events: none;
}

.hero-frame::before {
  top: calc(var(--header-height) + 44px);
  right: max(24px, calc((100vw - 1160px) / 2));
  width: min(28vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), rgba(244, 123, 32, 0.52));
  transform-origin: right;
  animation: frameDrawX 1400ms var(--ease-out) 480ms both;
}

.hero-frame::after {
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 86px;
  width: 1px;
  height: min(34vh, 320px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), rgba(244, 123, 32, 0.42));
  transform-origin: bottom;
  animation: frameDrawY 1400ms var(--ease-out) 620ms both;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  margin-left: max(calc((100vw - 1160px) / 2), 20px);
  transform: translate3d(0, calc(var(--hero-progress) * -24px), 0);
}

.is-ready .hero-content .eyebrow,
.is-ready .hero-content h1,
.is-ready .hero-subtitle,
.is-ready .hero-actions {
  animation: heroReveal 980ms var(--ease-out) both;
}

.is-ready .hero-content h1 {
  animation-delay: 90ms;
}

.is-ready .hero-subtitle {
  animation-delay: 180ms;
}

.is-ready .hero-actions {
  animation-delay: 270ms;
}

.hero-content h1 {
  position: relative;
  overflow: hidden;
  text-shadow: 0 20px 62px rgba(0, 0, 0, 0.34);
}

.hero-content h1::after {
  position: absolute;
  inset: -6% -18%;
  content: "";
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.32) 47%, transparent 60%);
  transform: translateX(-115%) skewX(-12deg);
  animation: titleSweep 5200ms cubic-bezier(0.45, 0, 0.2, 1) 1600ms infinite;
  pointer-events: none;
}

.hero-subtitle,
.hero-actions {
  transform: translateZ(0);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.split-layout.reverse .section-copy {
  order: 2;
}

.about,
.why,
.quote,
.future {
  overflow: clip;
}

.about::before,
.why::before,
.quote::before {
  position: absolute;
  inset: 9% auto auto 0;
  width: min(36vw, 520px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), transparent);
  opacity: 0.5;
}

.section-copy .lead,
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.prose p {
  color: #3d4b5e;
  font-size: 1.04rem;
}

.about-prose {
  display: grid;
  gap: 18px;
  max-width: 690px;
}

.about-prose p {
  max-width: 64ch;
  margin-bottom: 0;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy-900);
}

.about-visual::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.about-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.about-visual:hover img {
  transform: scale(1.035);
}

.image-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 250px;
  padding: 16px;
  color: var(--white);
  background: rgba(6, 18, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.image-badge span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-500);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-badge strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.image-badge-dark {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
}

.operational-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.operational-strip::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
}

.operational-strip article {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.operational-strip article:last-child {
  border-right: 0;
}

.operational-strip span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange-500);
  font-weight: 860;
}

.operational-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.operational-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.value-grid article,
.roadmap article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 26, 53, 0.06);
  transition:
    transform 260ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 260ms ease;
}

.value-grid article::after,
.roadmap article::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(244, 123, 32, 0.18);
  transform: rotate(45deg);
}

.value-grid article:hover,
.roadmap article:hover {
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 18px 42px rgba(7, 26, 53, 0.1);
  transform: translateY(-4px);
}

.value-grid span,
.card-number,
.timeline span,
.roadmap span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-500);
  font-weight: 860;
}

.value-grid p,
.roadmap p,
.timeline p,
.service-card li {
  color: var(--muted);
}

.section-heading {
  position: relative;
  margin-bottom: 42px;
}

.section-heading::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), rgba(244, 123, 32, 0));
  transition: width 900ms var(--ease-out) 180ms;
}

.section-heading.is-visible::after {
  width: min(420px, 56vw);
}

.section-heading h2 {
  margin-bottom: 16px;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 123, 32, 0.09), transparent 24%),
    radial-gradient(circle at 12% 92%, rgba(7, 26, 53, 0.08), transparent 28%),
    linear-gradient(180deg, #f9fbfd 0%, #eef4fa 52%, #f8fafc 100%);
}

.services::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 26, 53, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.services > * {
  position: relative;
  z-index: 1;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: stretch;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.services-heading::after {
  display: none;
}

.services-heading-copy {
  position: relative;
  padding: clamp(26px, 4vw, 46px) 0;
}

.services-heading-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(460px, 72vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), rgba(244, 123, 32, 0));
}

.services-heading-copy h2 {
  max-width: 740px;
  margin-bottom: 18px;
}

.services-heading-copy p:last-child {
  max-width: 620px;
}

.service-system-card {
  position: relative;
  align-self: center;
  padding: clamp(22px, 3vw, 30px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(10, 30, 62, 0.98), rgba(4, 13, 29, 0.98));
  background-size: 44px 44px, 44px 44px, auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(7, 26, 53, 0.18);
  overflow: hidden;
}

.service-system-card::before {
  position: absolute;
  top: -48px;
  right: -34px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(244, 123, 32, 0.24);
  transform: rotate(45deg);
}

.service-system-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.service-system-card li {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-weight: 760;
}

.service-system-card li::after {
  width: 44px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), transparent);
}

.service-system-card li:last-child {
  border-bottom: 0;
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(7, 26, 53, 0.08);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease,
    border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), rgba(244, 123, 32, 0));
  opacity: 0.72;
}

.service-edge {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(244, 123, 32, 0.16);
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease-out);
  pointer-events: none;
}

.service-edge::before,
.service-edge::after {
  position: absolute;
  width: 28px;
  height: 1px;
  content: "";
  background: var(--orange-500);
}

.service-edge::before {
  top: -1px;
  left: 18px;
}

.service-edge::after {
  right: 18px;
  bottom: -1px;
}

.service-card-featured {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 455px;
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.98), rgba(4, 12, 28, 0.96)),
    var(--navy-950);
  border-color: rgba(7, 26, 53, 0.24);
  box-shadow: 0 28px 80px rgba(7, 26, 53, 0.18);
}

.service-card-wide {
  grid-column: span 4;
}

.service-card:not(.service-card-featured):not(.service-card-wide) {
  min-height: 100%;
}

.service-image-frame {
  position: relative;
  margin: 16px;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow:
    0 20px 44px rgba(7, 26, 53, 0.13),
    10px 10px 0 rgba(7, 26, 53, 0.05);
}

.service-card:not(.service-card-featured):not(.service-card-wide) .service-image-frame {
  margin: 16px 16px 0;
}

.service-card-wide .service-image-frame {
  margin: 16px 16px 0;
}

.service-card-featured .service-image-frame {
  grid-column: 2;
  grid-row: 1;
  margin: 16px 16px 16px 0;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    12px 12px 0 rgba(244, 123, 32, 0.16);
}

.service-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(7, 26, 53, 0.08);
  border-radius: 3px;
  pointer-events: none;
}

.service-card-featured .service-image-frame {
  min-height: 360px;
}

.service-card-featured img {
  height: 100%;
  aspect-ratio: auto;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.13), transparent 34%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-edge {
  opacity: 1;
  transform: scale(1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
}

.service-card-featured img {
  aspect-ratio: auto;
}

.service-card:hover img {
  transform: scale(1.025);
}

.service-card:hover {
  border-color: rgba(244, 123, 32, 0.28);
  box-shadow: 0 22px 56px rgba(7, 26, 53, 0.14);
  transform: translateY(-4px);
}

.card-content {
  position: relative;
  padding: 26px;
}

.service-card-featured .card-content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 455px;
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.service-card-featured h3 {
  max-width: 440px;
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
  line-height: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.service-meta .card-number {
  margin-bottom: 0;
}

.service-meta > span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card-featured .service-meta > span:last-child,
.service-card-featured .card-number {
  color: var(--orange-500);
}

.service-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card:not(.service-card-featured) .service-spec-list {
  grid-template-columns: 1fr;
}

.service-card-featured .service-spec-list {
  max-width: 520px;
}

.service-spec-list li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 11px 13px 11px 38px;
  color: #405066;
  background:
    linear-gradient(90deg, rgba(244, 123, 32, 0.07), transparent 46%),
    rgba(7, 26, 53, 0.035);
  border: 1px solid rgba(7, 26, 53, 0.08);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 650;
}

.service-card-featured .service-spec-list li {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.service-spec-list li::before {
  position: absolute;
  left: 13px;
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.1);
}

.service-spec-list li::after {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 8px;
  height: 1px;
  content: "";
  background: rgba(244, 123, 32, 0.55);
}

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

.method::after {
  position: absolute;
  top: 12%;
  right: -10%;
  width: 44vw;
  height: 44vw;
  content: "";
  border: 1px solid rgba(244, 123, 32, 0.16);
  transform: rotate(22deg);
}

.method::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.55;
}

.method > * {
  position: relative;
  z-index: 1;
}

.section-dark .section-heading p,
.section-dark .timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  position: relative;
  --timeline-progress: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 42px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(244, 123, 32, 0.85), transparent);
  transform: scaleX(var(--timeline-progress));
  transform-origin: left;
  transition: transform 160ms linear;
}

.timeline article {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition:
    transform 260ms var(--ease-out),
    background 220ms ease,
    border-color 220ms ease;
}

.timeline article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), transparent);
}

.timeline article:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(244, 123, 32, 0.34);
  transform: translateY(-4px);
}

.timeline article.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 123, 32, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.method-quote {
  max-width: 880px;
  margin: 44px 0 0;
  padding-left: 24px;
  color: var(--white);
  border-left: 4px solid var(--orange-500);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-weight: 780;
  line-height: 1.1;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 13px;
  color: var(--navy-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 720;
  transition:
    transform 220ms var(--ease-out),
    border-color 180ms ease,
    background 180ms ease;
}

.pill-list li:hover {
  background: #fff;
  border-color: rgba(244, 123, 32, 0.32);
  transform: translateY(-2px);
}

.why {
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.04), transparent 34%),
    var(--white);
}

.why .split-layout {
  align-items: stretch;
}

.why .section-copy {
  align-self: center;
  padding: clamp(18px, 3vw, 34px) 0;
}

.why .about-visual {
  min-height: 600px;
}

.why .about-visual img {
  height: 100%;
}

.why .closing {
  padding: 22px;
  background: var(--navy-900);
  color: var(--white);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius);
}

.closing {
  max-width: 620px;
  color: var(--navy-900);
  font-size: 1.28rem;
  font-weight: 780;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.future::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(7, 26, 53, 0.06) 58% 70%, transparent 70%),
    linear-gradient(90deg, rgba(7, 26, 53, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 84px 84px;
  pointer-events: none;
}

.future > * {
  position: relative;
  z-index: 1;
}

.roadmap::before {
  position: absolute;
  top: 31px;
  right: 6%;
  left: 6%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(244, 123, 32, 0.15), rgba(244, 123, 32, 0.76), rgba(244, 123, 32, 0.15));
}

.roadmap article {
  min-height: 240px;
  padding-top: 48px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(410px, 0.96fr);
  gap: clamp(36px, 4.8vw, 72px);
  align-items: start;
}

.quote-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.quote-panel p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.03rem;
}

.quote-panel img {
  width: 100%;
  margin-top: 24px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(216, 224, 235, 0.9);
  border-radius: var(--radius);
  box-shadow:
    0 26px 70px rgba(7, 26, 53, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.quote-panel img:hover {
  transform: scale(1.025);
}

.quote {
  background:
    radial-gradient(circle at 78% 28%, rgba(244, 123, 32, 0.08), transparent 24%),
    linear-gradient(180deg, var(--white), #f8fafc);
}

.quote-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.quote-specs span {
  padding: 14px 12px;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 780;
  text-align: center;
}

.quote-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  justify-self: end;
  width: min(100%, 600px);
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.quote-form::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.quote-form::after {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0 36%, rgba(244, 123, 32, 0.22) 48%, transparent 62% 100%);
  opacity: 0.66;
  transform: translateX(-72%);
  animation: quoteSweep 7s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.quote-form > * {
  z-index: 1;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-rows: auto 46px 1.05em;
  gap: 7px;
  align-content: start;
}

.form-row.form-row-full {
  grid-template-rows: auto auto;
}

.form-row.form-row-full:has(.field-error) {
  grid-template-rows: auto auto 1.05em;
}

.form-row-full,
.form-help,
.form-status,
.form-submit {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 10px 13px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 124px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange-500);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.12);
  outline: none;
}

.form-row:focus-within label {
  color: var(--orange-500);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .about-visual.reveal,
.js .service-card.reveal,
.js .quote-panel.reveal {
  clip-path: inset(0 0 16% 0);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .about-visual.reveal.is-visible,
.js .service-card.reveal.is-visible,
.js .quote-panel.reveal.is-visible {
  clip-path: inset(0);
  transition:
    clip-path 920ms var(--ease-out) var(--reveal-delay, 0ms),
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
}

@keyframes heroReveal {
  from {
    opacity: 1;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(calc(var(--hero-x) * -0.16), calc(var(--hero-y) * -0.16), 0);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 68px 68px;
  }
}

@keyframes lineScan {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-100%);
  }

  28% {
    opacity: 1;
  }

  58% {
    opacity: 0.72;
    transform: translateX(238%);
  }

  100% {
    opacity: 0;
    transform: translateX(238%);
  }
}

@keyframes technicalPlate {
  from {
    opacity: 0.62;
    transform: rotate(8deg) translate3d(0, 0, 0);
  }

  to {
    opacity: 0.9;
    transform: rotate(8deg) translate3d(-10px, 8px, 0);
  }
}

@keyframes framePulse {
  from {
    opacity: 0.36;
    transform: rotate(45deg) scale(0.94);
  }

  to {
    opacity: 0.72;
    transform: rotate(45deg) scale(1.03);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.82);
  }

  45% {
    opacity: 0.92;
    transform: scale(1);
  }
}

@keyframes frameDrawX {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 0.68;
    transform: scaleX(1);
  }
}

@keyframes frameDrawY {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 0.68;
    transform: scaleY(1);
  }
}

@keyframes titleSweep {
  0%,
  42% {
    transform: translateX(-115%) skewX(-12deg);
  }

  64%,
  100% {
    transform: translateX(115%) skewX(-12deg);
  }
}

@keyframes loaderMark {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderLine {
  from {
    transform: translateX(-105%);
  }

  to {
    transform: translateX(105%);
  }
}

@keyframes loaderExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes quoteSweep {
  0%,
  38% {
    transform: translateX(-72%);
  }

  62%,
  100% {
    transform: translateX(72%);
  }
}

[aria-invalid="true"] {
  border-color: #ffb38a;
}

.field-error {
  min-height: 1.05em;
  margin: 0;
  color: #ffd2bd;
  font-size: 0.84rem;
}

.form-help {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.25em;
  font-size: 0.9rem;
  font-weight: 720;
}

.form-status.is-error {
  color: #ffd2bd;
}

.form-status.is-success {
  color: #a9f3c5;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 26px;
}

.footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.11), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 70px 70px;
  pointer-events: none;
}

.footer > * {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

.footer p,
.footer a,
.footer-detail {
  color: rgba(255, 255, 255, 0.72);
}

.form-row-privacy {
  gap: 7px;
  grid-template-rows: auto 1.05em !important;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  margin: 2px 0 0;
  accent-color: var(--orange-500);
}

.privacy-check a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-check:has(input[aria-invalid="true"]) {
  color: #ffd2bd;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  width: auto;
  max-width: 176px;
  max-height: 56px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--white);
  font-weight: 800;
}

.footer-cta::after {
  width: 56px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), transparent);
  transition:
    width 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.footer-cta:hover::after {
  width: 82px;
  transform: translateX(4px);
}

.footer address,
.footer nav {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-detail {
  font-size: 0.98rem;
}

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

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

.footer-bottom {
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.privacy-consent {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  pointer-events: none;
}

.privacy-consent[hidden] {
  display: none;
}

.privacy-consent-card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(1080px, 100%);
  max-width: calc(100vw - 40px);
  margin-inline: auto;
  padding: 18px 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.98), rgba(4, 12, 28, 0.98)),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(3, 11, 25, 0.34);
  pointer-events: auto;
}

.privacy-consent-content {
  min-width: 0;
  max-width: 740px;
}

.privacy-consent-content .eyebrow {
  margin-bottom: 4px;
}

.privacy-consent-content h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  letter-spacing: 0;
}

.privacy-consent-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.privacy-consent-content a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange-500);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-consent-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-width: 300px;
}

.privacy-consent-actions .button {
  min-width: 138px;
  white-space: nowrap;
}

.policy-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 123, 32, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(7, 26, 53, 0.98), rgba(3, 11, 25, 0.98)),
    var(--navy-950);
}

.policy-shell {
  width: min(920px, calc(100% - 40px));
  padding: clamp(36px, 7vw, 86px) 0;
  margin-inline: auto;
}

.policy-card {
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.28);
}

.policy-logo {
  display: inline-flex;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.policy-logo img {
  max-width: 188px;
}

.policy-card h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7vw, 4.6rem);
}

.policy-lead {
  max-width: 760px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.policy-card section {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.policy-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.policy-card p a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-back {
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .nav-panel {
    gap: 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .value-grid,
  .timeline,
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap article {
    min-height: auto;
  }

}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    background: rgba(5, 15, 32, 0.92);
    backdrop-filter: blur(16px);
  }

  .nav {
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% - 1px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(100svh - var(--header-height) - 18px);
    padding: 14px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(8, 24, 49, 0.99), rgba(4, 13, 29, 0.99)),
      var(--navy-950);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    display: grid;
    gap: 4px;
    padding: 6px;
    color: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
  }

  .nav-links a {
    min-height: 48px;
    padding: 12px 12px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta.button-primary {
    min-height: 50px;
    justify-content: center;
    color: var(--white);
    background:
      linear-gradient(180deg, #ff8a2a, var(--orange-500));
    border-color: transparent;
    box-shadow:
      0 12px 28px rgba(244, 123, 32, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: calc(var(--header-height) + 82px) 0 84px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 11, 25, 0.94), rgba(7, 26, 53, 0.82), rgba(3, 11, 25, 0.94)),
      rgba(3, 11, 25, 0.86);
  }

  .hero::before,
  .hero-motion,
  .hero-frame {
    display: none;
  }

  .hero-content {
    width: min(100% - 28px, 560px);
    margin-inline: auto;
    transform: none;
  }

  h1 {
    font-size: clamp(3.15rem, 15.5vw, 4.8rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(1.95rem, 8.8vw, 3.15rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .hero-subtitle {
    max-width: 34rem;
    font-size: 1.04rem;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .split-layout,
  .split-layout.reverse,
  .quote-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .split-layout.reverse,
  .quote-layout {
    gap: 34px;
  }

  .quote-form {
    justify-self: stretch;
    width: 100%;
  }

  .split-layout.reverse .section-copy {
    order: initial;
  }

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

  .why .about-visual {
    min-height: auto;
  }

  .about-prose {
    gap: 12px;
    max-width: none;
  }

  .about-prose p {
    position: relative;
    max-width: none;
    padding: 15px 0 15px 18px;
    color: #40506a;
    border-left: 2px solid rgba(244, 123, 32, 0.42);
    font-size: 1rem;
    line-height: 1.62;
  }

  .about-prose p:first-child {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.52;
  }

  .service-grid,
  .value-grid,
  .timeline,
  .roadmap,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured,
  .service-card-wide {
    grid-column: 1 / -1;
  }

  .service-card-featured,
  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }

  .services-heading-copy {
    padding-block: 18px 0;
  }

  .service-system-card {
    padding: 20px;
  }

  .service-image-frame,
  .service-card-featured .service-image-frame,
  .service-card-wide .service-image-frame,
  .service-card:not(.service-card-featured):not(.service-card-wide) .service-image-frame {
    margin: 16px 16px 0;
  }

  .service-card-featured .service-image-frame,
  .service-card-featured .card-content {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card-featured .service-image-frame,
  .service-card-wide .service-image-frame {
    min-height: auto;
  }

  .service-card-featured .card-content {
    min-height: auto;
  }

  .service-card-featured h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .operational-strip {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .operational-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .operational-strip article:last-child {
    border-bottom: 0;
  }

  .timeline::before {
    display: none;
  }

  .quote-panel {
    position: static;
  }

  .footer {
    padding: 54px 0 22px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-cta {
    margin-top: 16px;
  }

  .footer address,
  .footer nav {
    gap: 4px;
  }

  .privacy-consent-card {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 40px);
    overflow-y: auto;
  }

  .privacy-consent-actions {
    width: 100%;
    justify-content: stretch;
    min-width: 0;
  }

  .privacy-consent-actions .button {
    flex: 1;
  }

  .js .reveal,
  .js .about-visual.reveal,
  .js .service-card.reveal,
  .js .quote-panel.reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

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

  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand img {
    max-width: 142px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding: calc(var(--header-height) + 62px) 0 66px;
  }

  .hero-content {
    width: min(100% - 24px, 560px);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 16vw, 4rem);
  }

  h2 {
    margin-bottom: 16px;
    font-size: clamp(1.82rem, 8.2vw, 2.7rem);
  }

  .about-prose p {
    padding: 13px 0 13px 15px;
    font-size: 0.98rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .about-prose p:first-child {
    font-size: 1.01rem;
  }

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

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 0;
  }

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

  .image-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .split-layout,
  .split-layout.reverse,
  .quote-layout {
    gap: 28px;
  }

  .operational-strip {
    margin-top: 30px;
  }

  .value-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .operational-strip article {
    padding: 20px;
  }

  .operational-strip span,
  .value-grid span,
  .card-number,
  .timeline span,
  .roadmap span {
    margin-bottom: 12px;
  }

  .quote-specs {
    grid-template-columns: 1fr;
  }

  .services-heading-copy::before {
    width: min(280px, 72vw);
  }

  .service-system-card {
    padding: 18px;
  }

  .service-system-card > span {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .service-system-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-system-card li {
    min-height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 6px;
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .service-system-card li::after {
    display: none;
  }

  .service-card {
    border-radius: 8px;
  }

  .service-card-featured .card-content,
  .card-content,
  .value-grid article,
  .timeline article,
  .roadmap article {
    padding: 20px;
  }

  .service-card-featured h3 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .service-meta {
    gap: 10px;
    margin-bottom: 16px;
  }

  .service-meta > span:last-child {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .service-spec-list,
  .service-card-featured .service-spec-list {
    grid-template-columns: 1fr;
  }

  .service-spec-list li {
    min-height: 44px;
    padding: 10px 12px 10px 36px;
    font-size: 0.9rem;
  }

  .service-image-frame,
  .service-card-featured .service-image-frame,
  .service-card-wide .service-image-frame,
  .service-card:not(.service-card-featured):not(.service-card-wide) .service-image-frame {
    margin: 12px 12px 0;
    border-width: 6px;
    box-shadow:
      0 14px 32px rgba(7, 26, 53, 0.12),
      7px 7px 0 rgba(7, 26, 53, 0.05);
  }

  .service-card-featured .service-image-frame {
    margin-bottom: 0;
  }

  .quote-form {
    gap: 10px;
    padding: 18px;
  }

  .form-row {
    grid-template-rows: auto 46px auto;
  }

  .privacy-consent {
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }

  .privacy-consent-card {
    max-width: calc(100vw - 24px);
    max-height: min(70svh, 520px);
    gap: 10px;
    padding: 13px 16px 14px;
  }

  .privacy-consent-content .eyebrow {
    margin-bottom: 4px;
  }

  .privacy-consent-content h2 {
    margin-bottom: 5px;
    font-size: 1.18rem;
  }

  .privacy-consent-content p {
    font-size: 0.84rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .privacy-consent-content a {
    margin-top: 6px;
  }

  .privacy-consent-actions {
    gap: 8px;
    flex-direction: row;
  }

  .privacy-consent-actions .button {
    flex: 1;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .footer-brand img {
    max-width: 168px;
  }

  .footer-bottom {
    padding-top: 22px;
    margin-top: 26px;
  }
}

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

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero,
  .site-loader,
  .site-loader img,
  .site-loader span::after,
  .hero-content,
  .hero-media img,
  .hero-grid,
  .hero-grid::after,
  .hero-motion,
  .hero-motion::before,
  .hero-motion::after,
  .hero-motion span,
  .hero-frame::before,
  .hero-frame::after,
  .hero-content h1::after,
  .quote-form::after {
    transform: none !important;
    animation: none !important;
  }

  .site-loader {
    display: none !important;
  }

  .hero-motion,
  .hero-frame,
  .hero-content h1::after {
    display: none !important;
  }
}
