:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-panel: #ffffff;
  --ink: #172033;
  --ink-strong: #0d1524;
  --muted: #5d697c;
  --line: #dce5f0;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #e8f0ff;
  --teal: #0f766e;
  --amber: #c26a12;
  --rose: #e11d48;
  --violet: #7c3aed;
  --cyan: #0891b2;
  --shadow: 0 20px 60px rgba(23, 32, 51, 0.12);
  --radius: 8px;
  --max: 1160px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.2, 1.2, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.15rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  padding: 0.7rem 1rem;
  transition: transform 160ms ease;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 229, 240, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(192, 207, 226, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(23, 32, 51, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-strong);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), var(--accent));
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.brand-mark::after {
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.62), transparent 65%);
  content: "";
  transform: translateX(-70%) rotate(8deg);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

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

.header-cta {
  display: none;
  align-items: center;
  min-height: 2.65rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 750;
  padding: 0.65rem 1rem;
}

.header-cta:hover {
  background: var(--accent);
  color: #ffffff;
}

.nav-toggle {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  place-content: center;
  gap: 0.28rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100svh - 132px));
  overflow: hidden;
  isolation: isolate;
  padding: 4.4rem 0 2rem;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(37, 99, 235, 0.1) 48%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.07) 0 1px, transparent 1px 88px);
  content: "";
  opacity: 0.5;
  transform: translateX(-8%);
}

.hero-media,
.hero-overlay,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.data-canvas {
  pointer-events: none;
}

.hero-canvas {
  z-index: -1;
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.02);
  transform-origin: 58% 50%;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(15, 118, 110, 0.15), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 36%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.12) 34%, rgba(244, 247, 251, 0.94) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4.5rem);
  min-height: 100%;
}

.hero-content {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.hero-console {
  position: relative;
  min-height: 440px;
  perspective: 1200px;
}

.console-glow {
  position: absolute;
  inset: 8% 0 2% 10%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(37, 99, 235, 0.42), transparent 30%),
    radial-gradient(circle at 70% 72%, rgba(15, 118, 110, 0.36), transparent 34%),
    radial-gradient(circle at 58% 42%, rgba(194, 106, 18, 0.2), transparent 24%);
  filter: blur(34px);
  opacity: 0.78;
}

.console-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36));
  box-shadow: 0 28px 80px rgba(23, 32, 51, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
}

.console-card::before {
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.54), transparent 62%);
  content: "";
  transform: translateX(-45%) rotate(12deg);
}

.console-card-main {
  inset: 10% 2% 8% 4%;
  transform: rotateY(-12deg) rotateX(6deg) rotateZ(-1deg);
}

.console-topline {
  position: absolute;
  top: 1.25rem;
  left: 1.3rem;
  display: flex;
  gap: 0.45rem;
}

.console-topline span {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.42);
}

.console-ring {
  position: absolute;
  top: 18%;
  right: 13%;
  width: 8.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--accent), #93c5fd 23%, rgba(255, 255, 255, 0.72) 23% 40%, var(--teal) 40% 66%, rgba(255, 255, 255, 0.7) 66% 100%);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}

.console-ring::after {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}

.console-wave {
  position: absolute;
  right: 10%;
  bottom: 26%;
  left: 12%;
  height: 6rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.15) 0 1px, transparent 1px 34px);
}

.console-wave::before {
  position: absolute;
  inset: 18% 4% 26%;
  border-radius: 50%;
  background: none;
  border-top: 4px solid rgba(37, 99, 235, 0.62);
  content: "";
  transform: skewX(-22deg);
}

.console-bars {
  position: absolute;
  bottom: 1.6rem;
  left: 1.5rem;
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 5.5rem;
}

.console-bars span {
  width: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #93c5fd, var(--accent), var(--teal));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.console-bars span:nth-child(1) {
  height: 40%;
}

.console-bars span:nth-child(2) {
  height: 68%;
}

.console-bars span:nth-child(3) {
  height: 52%;
}

.console-bars span:nth-child(4) {
  height: 84%;
}

.console-card-small {
  right: 0;
  bottom: 8%;
  display: grid;
  gap: 0.05rem;
  min-width: 9.2rem;
  padding: 1rem;
  transform: rotateY(-18deg) rotateX(5deg) translateZ(40px);
}

.console-card-small strong {
  color: var(--ink-strong);
  font-size: 1.25rem;
}

.console-card-small span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.console-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.12);
}

.console-card-feed {
  top: 6%;
  left: 0;
  display: grid;
  gap: 0.6rem;
  width: 11rem;
  padding: 1rem;
  transform: rotateY(-10deg) rotateX(8deg) translateZ(22px);
}

.console-card-feed span {
  display: block;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.52), rgba(15, 118, 110, 0.18));
}

.console-card-feed span:nth-child(2) {
  width: 72%;
}

.console-card-feed span:nth-child(3) {
  width: 84%;
}

.hero-lead {
  max-width: 720px;
  color: #263247;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-support {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.45rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  padding: 0.82rem 1.15rem;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.button-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.26), transparent 72%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-out);
}

.button-primary:hover::after {
  transform: translateX(120%);
}

.button-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.26);
}

.button-secondary {
  border-color: rgba(23, 32, 51, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: #ffffff;
}

.trust-line {
  position: relative;
  display: inline-block;
  max-width: 760px;
  color: #435065;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-line::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.72), rgba(15, 118, 110, 0.56), rgba(37, 99, 235, 0));
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
}

.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.8rem;
  padding-bottom: 4rem;
}

.value-grid {
  display: grid;
  gap: 1rem;
}

.value-card,
.service-card,
.expertise-card,
.process-step,
.dashboard-panel,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease;
}

.value-card::before,
.service-card::before,
.expertise-card::before,
.process-step::before,
.contact-form::before,
.policy-content .narrow::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(37, 99, 235, 0.07), rgba(15, 118, 110, 0.06), transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 260ms ease, transform 600ms var(--ease-out);
  pointer-events: none;
}

.value-card:hover,
.service-card:hover,
.expertise-card:hover,
.process-step:hover,
.contact-form:focus-within {
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.12);
  transform: translateY(-5px);
}

.value-card:hover::before,
.service-card:hover::before,
.expertise-card:hover::before,
.process-step:hover::before,
.contact-form:focus-within::before,
.policy-content .narrow:hover::before {
  opacity: 1;
  transform: translateX(16%);
}

.value-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
}

.card-icon {
  position: relative;
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  transition: background 240ms ease, color 240ms ease, transform 240ms var(--ease-out);
}

.value-card:hover .card-icon,
.process-step:hover span {
  transform: translateY(-2px) scale(1.04);
}

.value-card h2 {
  font-size: 1.25rem;
}

.experience-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 18%, rgba(37, 99, 235, 0.28), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(15, 118, 110, 0.26), transparent 28%),
    linear-gradient(140deg, #07111f 0%, #0d1730 48%, #091f24 100%);
  color: #ffffff;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.experience-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(96, 165, 250, 0.18) 46%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 104px);
  content: "";
  opacity: 0.8;
}

.experience-section::after {
  position: absolute;
  inset: auto -18% -36% -18%;
  z-index: -1;
  height: 54%;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.4), rgba(15, 118, 110, 0.34), rgba(124, 58, 237, 0.28));
  content: "";
  filter: blur(60px);
  opacity: 0.7;
}

.experience-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.68;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.experience-copy {
  display: grid;
  gap: 1rem;
}

.experience-copy h2 {
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  letter-spacing: 0;
}

.experience-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.experience-copy .eyebrow {
  color: #93c5fd;
}

.control-room {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
}

.control-orbit {
  position: absolute;
  inset: 4% 3%;
  border-radius: 32px;
  transform: rotateX(58deg) rotateZ(-18deg);
}

.control-orbit span {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(37, 99, 235, 0.14);
}

.control-orbit span:nth-child(2) {
  inset: 20%;
  border-color: rgba(45, 212, 191, 0.25);
}

.control-orbit span:nth-child(3) {
  inset: 32%;
  border-color: rgba(251, 191, 36, 0.2);
}

.control-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
}

.control-panel::before {
  position: absolute;
  inset: -60%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.25), transparent 62%);
  content: "";
  transform: translateX(-32%) rotate(12deg);
}

.control-panel-main {
  inset: 10% 6% 8% 4%;
  padding: 1.2rem;
  transform: rotateY(-13deg) rotateX(7deg) rotateZ(1deg);
}

.panel-header {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.panel-header span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.panel-metrics span {
  display: grid;
  min-height: 5.8rem;
  place-items: end start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 20%, rgba(96, 165, 250, 0.34), transparent 34%),
    rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 850;
  padding: 0.85rem;
}

.panel-chart {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  height: 17rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(96, 165, 250, 0.16), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
  padding: 1rem;
}

.panel-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #dbeafe 0%, #60a5fa 22%, var(--accent) 58%, var(--teal) 100%);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
  transform-origin: bottom;
}

.panel-chart span:nth-child(1) {
  height: 34%;
}

.panel-chart span:nth-child(2) {
  height: 58%;
}

.panel-chart span:nth-child(3) {
  height: 44%;
}

.panel-chart span:nth-child(4) {
  height: 76%;
}

.panel-chart span:nth-child(5) {
  height: 62%;
}

.panel-chart span:nth-child(6) {
  height: 88%;
}

.control-panel-left,
.control-panel-right {
  display: grid;
  gap: 0.1rem;
  min-width: 9rem;
  padding: 1rem;
}

.control-panel-left strong,
.control-panel-right strong {
  color: #ffffff;
  font-size: 1.45rem;
}

.control-panel-left span,
.control-panel-right span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.control-panel-left {
  top: 22%;
  left: -1%;
  transform: rotateY(-9deg) rotateX(8deg) translateZ(70px);
}

.control-panel-right {
  right: 0;
  bottom: 16%;
  transform: rotateY(-18deg) rotateX(8deg) translateZ(88px);
}

.value-card p,
.service-card p,
.expertise-card li,
.process-step p,
.dashboard-layout p,
.about-layout p,
.contact-copy p,
.policy-content p {
  color: var(--muted);
}

.services-grid {
  perspective: 1400px;
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  transform-style: preserve-3d;
}

.service-card::after {
  position: absolute;
  right: -1.7rem;
  top: -1.7rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 40deg, rgba(37, 99, 235, 0.32), rgba(15, 118, 110, 0.22), rgba(194, 106, 18, 0.18), rgba(37, 99, 235, 0.32));
  content: "";
  opacity: 0.46;
  transition: transform 520ms var(--ease-out), opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 0.75;
  transform: translate(-0.7rem, 0.8rem) rotate(26deg) scale(1.08);
}

.service-card:nth-child(2)::after {
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 40deg, rgba(15, 118, 110, 0.34), rgba(8, 145, 178, 0.22), rgba(37, 99, 235, 0.22), rgba(15, 118, 110, 0.34));
}

.service-card:nth-child(3)::after {
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 40deg, rgba(124, 58, 237, 0.3), rgba(37, 99, 235, 0.24), rgba(8, 145, 178, 0.24), rgba(124, 58, 237, 0.3));
}

.service-card:nth-child(4)::after {
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 40deg, rgba(37, 99, 235, 0.3), rgba(194, 106, 18, 0.2), rgba(15, 118, 110, 0.24), rgba(37, 99, 235, 0.3));
}

.service-card:nth-child(5)::after {
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 40deg, rgba(225, 29, 72, 0.26), rgba(124, 58, 237, 0.28), rgba(37, 99, 235, 0.24), rgba(225, 29, 72, 0.26));
}

.service-card:nth-child(6)::after {
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 40deg, rgba(8, 145, 178, 0.28), rgba(37, 99, 235, 0.24), rgba(194, 106, 18, 0.18), rgba(8, 145, 178, 0.28));
}

.check-list {
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #37445a;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.11);
  color: var(--teal);
  content: "";
  transition: transform 240ms var(--ease-out), background 240ms ease;
}

.check-list li::after {
  position: absolute;
  top: 0.43rem;
  left: 0.32rem;
  width: 0.36rem;
  height: 0.18rem;
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

.service-card:hover .check-list li::before,
.dashboard-panel:hover .check-list li::before {
  transform: scale(1.08);
}

.expertise-grid {
  display: grid;
  gap: 1rem;
}

.expertise-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.expertise-card h3 {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.expertise-card ul {
  display: grid;
  gap: 0.42rem;
}

.expertise-card li {
  width: fit-content;
  border-radius: 999px;
  padding: 0.05rem 0.42rem;
  margin-left: -0.42rem;
  transition: background 200ms ease, color 200ms ease, transform 200ms var(--ease-out);
}

.expertise-card:hover li {
  background: rgba(37, 99, 235, 0.06);
  color: #25314a;
}

.expertise-card:hover li:hover {
  transform: translateX(3px);
}

.process-grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.42), rgba(15, 118, 110, 0.38), rgba(37, 99, 235, 0));
  content: "";
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms var(--ease-out), opacity 500ms ease;
}

.process-grid.is-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.process-step {
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
}

.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
  transition: transform 240ms var(--ease-out), background 240ms ease;
}

.process-step span::after {
  position: absolute;
  inset: -0.45rem;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 260ms ease, transform 260ms var(--ease-out);
}

.process-step:hover span::after {
  opacity: 1;
  transform: scale(1);
}

.dashboard-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #122033 0%, #163155 58%, #0f766e 120%);
  color: #ffffff;
}

.dashboard-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(96, 165, 250, 0.22) 44%, transparent 54%),
    linear-gradient(145deg, rgba(15, 118, 110, 0.32), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 120px);
  content: "";
  opacity: 0.85;
}

.dashboard-section::after {
  position: absolute;
  inset: auto -10% -35% -10%;
  z-index: -1;
  height: 56%;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(15, 118, 110, 0.25), rgba(194, 106, 18, 0.12));
  content: "";
  filter: blur(48px);
  opacity: 0.72;
}

.dashboard-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.dashboard-layout h2,
.dashboard-layout p,
.dashboard-layout .eyebrow {
  color: #ffffff;
}

.dashboard-layout p {
  max-width: 760px;
  margin-top: 1rem;
  opacity: 0.86;
}

.dashboard-panel {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 1.35rem;
  backdrop-filter: blur(10px);
}

.dashboard-panel:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.dashboard-visual {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.dash-line {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.15));
  transform-origin: left;
}

.dash-line:nth-child(1) {
  width: 72%;
}

.dash-line:nth-child(2) {
  width: 48%;
}

.dash-line:nth-child(3) {
  width: 62%;
}

.dash-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 5.2rem;
  padding-top: 0.6rem;
}

.dash-bars span {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #bfdbfe, #2563eb 68%, #0f766e);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
  transform-origin: bottom;
}

.dash-bars span:nth-child(1) {
  height: 38%;
}

.dash-bars span:nth-child(2) {
  height: 64%;
}

.dash-bars span:nth-child(3) {
  height: 46%;
}

.dash-bars span:nth-child(4) {
  height: 82%;
}

.dash-bars span:nth-child(5) {
  height: 58%;
}

.dashboard-panel .check-list li {
  color: #ffffff;
}

.dashboard-panel .check-list li::before {
  background: rgba(255, 255, 255, 0.16);
}

.dashboard-panel .check-list li::after {
  border-color: #ffffff;
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-layout > div:last-child {
  display: grid;
  gap: 1rem;
}

.about-kicker {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(100%, 280px);
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  padding: 1.6rem;
}

.about-kicker::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal), var(--amber));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
}

.about-kicker.is-visible::after {
  transform: scaleX(1);
}

.about-kicker span {
  color: var(--muted);
  font-weight: 750;
}

.about-kicker strong {
  color: var(--accent);
  font-size: 4rem;
  line-height: 1;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

address {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink-strong);
}

address a {
  color: var(--accent);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 750;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-main {
  background: var(--bg-soft);
}

.policy-hero {
  padding-top: 4.2rem;
  padding-bottom: 2rem;
}

.policy-date {
  margin-top: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.policy-content {
  padding-top: 1rem;
}

.policy-content .narrow {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1.4rem;
}

.policy-content h2 {
  margin-top: 1rem;
  font-size: 1.4rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0d1524;
  color: rgba(255, 255, 255, 0.72);
  padding: 2.2rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.site-footer a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-footer a:hover {
  color: #ffffff;
}

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

@keyframes heroMediaDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.055) translate3d(-1.2%, -0.7%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

@keyframes heroLineSweep {
  0% {
    transform: translateX(-12%);
    opacity: 0.26;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(12%);
    opacity: 0.26;
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes brandSweep {
  to {
    transform: translateX(75%) rotate(8deg);
  }
}

@keyframes trustPulse {
  0%, 100% {
    transform: scaleX(0.18);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.9;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes listIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dashLineIn {
  from {
    transform: scaleX(0.18);
    opacity: 0.28;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes dashBarIn {
  from {
    transform: scaleY(0.12);
    opacity: 0.36;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes dashboardSheen {
  0% {
    transform: translateX(-12%);
  }
  100% {
    transform: translateX(12%);
  }
}

@keyframes consoleFloat {
  0%, 100% {
    transform: rotateY(-12deg) rotateX(6deg) rotateZ(-1deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-9deg) rotateX(4deg) rotateZ(0.6deg) translate3d(0, -12px, 0);
  }
}

@keyframes consoleSmallFloat {
  0%, 100% {
    transform: rotateY(-18deg) rotateX(5deg) translate3d(0, 0, 40px);
  }
  50% {
    transform: rotateY(-14deg) rotateX(3deg) translate3d(-4px, -9px, 56px);
  }
}

@keyframes consoleFeedFloat {
  0%, 100% {
    transform: rotateY(-10deg) rotateX(8deg) translate3d(0, 0, 22px);
  }
  50% {
    transform: rotateY(-7deg) rotateX(5deg) translate3d(6px, 10px, 34px);
  }
}

@keyframes cardSheen {
  to {
    transform: translateX(55%) rotate(12deg);
  }
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes consoleBarPulse {
  0%, 100% {
    transform: scaleY(0.86);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateX(58deg) rotateZ(342deg);
  }
}

@keyframes controlMainFloat {
  0%, 100% {
    transform: rotateY(-13deg) rotateX(7deg) rotateZ(1deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-9deg) rotateX(5deg) rotateZ(-0.4deg) translate3d(0, -14px, 0);
  }
}

@keyframes controlLeftFloat {
  0%, 100% {
    transform: rotateY(-9deg) rotateX(8deg) translate3d(0, 0, 70px);
  }
  50% {
    transform: rotateY(-6deg) rotateX(5deg) translate3d(8px, -12px, 86px);
  }
}

@keyframes controlRightFloat {
  0%, 100% {
    transform: rotateY(-18deg) rotateX(8deg) translate3d(0, 0, 88px);
  }
  50% {
    transform: rotateY(-13deg) rotateX(5deg) translate3d(-8px, 10px, 104px);
  }
}

@keyframes chartBreathe {
  0%, 100% {
    transform: scaleY(0.88);
  }
  50% {
    transform: scaleY(1.04);
  }
}

.motion-ready .brand-mark::after {
  animation: brandSweep 4.8s ease-in-out infinite;
}

.motion-ready .hero::before {
  animation: heroLineSweep 14s ease-in-out infinite alternate;
}

.motion-ready .hero-media {
  animation: heroMediaDrift 18s ease-in-out infinite;
}

.motion-ready .hero-content > * {
  opacity: 0;
  animation: heroIn 780ms var(--ease-out) forwards;
}

.motion-ready .hero-content > :nth-child(1) {
  animation-delay: 80ms;
}

.motion-ready .hero-content > :nth-child(2) {
  animation-delay: 160ms;
}

.motion-ready .hero-content > :nth-child(3) {
  animation-delay: 250ms;
}

.motion-ready .hero-content > :nth-child(4) {
  animation-delay: 340ms;
}

.motion-ready .hero-content > :nth-child(5) {
  animation-delay: 430ms;
}

.motion-ready .hero-content > :nth-child(6) {
  animation-delay: 520ms;
}

.motion-ready .trust-line::after {
  animation: trustPulse 3.8s ease-in-out infinite;
}

.motion-ready .console-card::before,
.motion-ready .control-panel::before {
  animation: cardSheen 6s ease-in-out infinite;
}

.motion-ready .console-card-main {
  animation: consoleFloat 8s ease-in-out infinite;
}

.motion-ready .console-card-small {
  animation: consoleSmallFloat 7.4s ease-in-out infinite;
}

.motion-ready .console-card-feed {
  animation: consoleFeedFloat 7.8s ease-in-out infinite;
}

.motion-ready .console-ring {
  animation: ringSpin 18s linear infinite;
}

.motion-ready .console-bars span {
  animation: consoleBarPulse 2.9s ease-in-out infinite;
}

.motion-ready .console-bars span:nth-child(2) {
  animation-delay: 0.25s;
}

.motion-ready .console-bars span:nth-child(3) {
  animation-delay: 0.5s;
}

.motion-ready .console-bars span:nth-child(4) {
  animation-delay: 0.75s;
}

.motion-ready .control-orbit {
  animation: orbitSpin 28s linear infinite;
}

.motion-ready .control-panel-main {
  animation: controlMainFloat 8.5s ease-in-out infinite;
}

.motion-ready .control-panel-left {
  animation: controlLeftFloat 7.8s ease-in-out infinite;
}

.motion-ready .control-panel-right {
  animation: controlRightFloat 8.2s ease-in-out infinite;
}

.motion-ready .panel-chart span {
  animation: chartBreathe 3.2s ease-in-out infinite;
}

.motion-ready .panel-chart span:nth-child(2) {
  animation-delay: 0.22s;
}

.motion-ready .panel-chart span:nth-child(3) {
  animation-delay: 0.44s;
}

.motion-ready .panel-chart span:nth-child(4) {
  animation-delay: 0.66s;
}

.motion-ready .panel-chart span:nth-child(5) {
  animation-delay: 0.88s;
}

.motion-ready .panel-chart span:nth-child(6) {
  animation-delay: 1.1s;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .value-card:nth-child(2),
.motion-ready .service-card:nth-child(2),
.motion-ready .expertise-card:nth-child(2),
.motion-ready .process-step:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .value-card:nth-child(3),
.motion-ready .service-card:nth-child(3),
.motion-ready .expertise-card:nth-child(3),
.motion-ready .process-step:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .service-card:nth-child(4),
.motion-ready .expertise-card:nth-child(4),
.motion-ready .process-step:nth-child(4) {
  transition-delay: 270ms;
}

.motion-ready .service-card:nth-child(5),
.motion-ready .expertise-card:nth-child(5) {
  transition-delay: 360ms;
}

.motion-ready .service-card:nth-child(6) {
  transition-delay: 450ms;
}

.motion-ready .expertise-card li {
  opacity: 0;
}

.motion-ready .expertise-card.is-visible li {
  animation: listIn 420ms var(--ease-out) forwards;
}

.motion-ready .expertise-card.is-visible li:nth-child(2) {
  animation-delay: 70ms;
}

.motion-ready .expertise-card.is-visible li:nth-child(3) {
  animation-delay: 140ms;
}

.motion-ready .expertise-card.is-visible li:nth-child(4) {
  animation-delay: 210ms;
}

.motion-ready .expertise-card.is-visible li:nth-child(5) {
  animation-delay: 280ms;
}

.motion-ready .expertise-card.is-visible li:nth-child(6) {
  animation-delay: 350ms;
}

.motion-ready .dashboard-section::before {
  animation: dashboardSheen 16s ease-in-out infinite alternate;
}

.motion-ready .dashboard-panel.is-visible .dash-line {
  animation: dashLineIn 780ms var(--ease-out) forwards;
}

.motion-ready .dashboard-panel .dash-line {
  opacity: 0.28;
  transform: scaleX(0.18);
  transform-origin: left;
}

.motion-ready .dashboard-panel.is-visible .dash-line:nth-child(2) {
  animation-delay: 120ms;
}

.motion-ready .dashboard-panel.is-visible .dash-line:nth-child(3) {
  animation-delay: 220ms;
}

.motion-ready .dashboard-panel .dash-bars span {
  transform: scaleY(0.12);
  opacity: 0.36;
}

.motion-ready .dashboard-panel.is-visible .dash-bars span {
  animation: dashBarIn 760ms var(--ease-spring) forwards;
}

.motion-ready .dashboard-panel.is-visible .dash-bars span:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .dashboard-panel.is-visible .dash-bars span:nth-child(3) {
  animation-delay: 160ms;
}

.motion-ready .dashboard-panel.is-visible .dash-bars span:nth-child(4) {
  animation-delay: 230ms;
}

.motion-ready .dashboard-panel.is-visible .dash-bars span:nth-child(5) {
  animation-delay: 300ms;
}

.motion-ready .value-card.reveal.is-visible:hover,
.motion-ready .service-card.reveal.is-visible:hover,
.motion-ready .expertise-card.reveal.is-visible:hover,
.motion-ready .process-step.reveal.is-visible:hover,
.motion-ready .contact-form.reveal.is-visible:focus-within {
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 0.55rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
    animation: menuDrop 220ms var(--ease-out);
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 0.8rem 0.9rem;
  }

  .site-nav a:hover {
    background: var(--bg-soft);
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 1.2rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-canvas {
    opacity: 0.38;
  }

  .hero-console {
    min-height: 300px;
    margin-top: 0.4rem;
  }

  .console-card-main {
    inset: 3% 5% 7% 0;
  }

  .console-card-feed {
    width: 8.8rem;
  }

  .console-card-small {
    min-width: 7.8rem;
  }

  .console-ring {
    width: 6.8rem;
  }

  .console-wave {
    height: 4.4rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-support {
    font-size: 0.95rem;
  }

  .trust-line {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-media {
    object-position: 62% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 54%, rgba(244, 247, 251, 0.95) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.6));
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-section {
    padding: 4rem 0;
  }

  .experience-copy h2 {
    font-size: 2.25rem;
  }

  .control-room {
    min-height: 390px;
  }

  .control-panel-main {
    inset: 11% 2% 10% 0;
    padding: 0.85rem;
  }

  .panel-metrics {
    gap: 0.5rem;
  }

  .panel-metrics span {
    min-height: 4.4rem;
    font-size: 0.82rem;
    padding: 0.65rem;
  }

  .panel-chart {
    height: 11rem;
    gap: 0.45rem;
  }

  .control-panel-left,
  .control-panel-right {
    min-width: 7rem;
    padding: 0.75rem;
  }

  .hero-actions .button,
  .contact-copy .button,
  .contact-form .button {
    width: 100%;
  }

  .process-grid {
    padding-left: 1rem;
  }

  .process-grid::before {
    top: 0.4rem;
    bottom: 0.4rem;
    left: 0;
    width: 2px;
  }

  .motion-ready .hero-media {
    animation: none;
    transform: scale(1.01);
  }

  .motion-ready .hero::before {
    animation: none;
    opacity: 0.18;
  }

  .motion-ready .console-card-main,
  .motion-ready .console-card-small,
  .motion-ready .console-card-feed,
  .motion-ready .control-panel-main,
  .motion-ready .control-panel-left,
  .motion-ready .control-panel-right {
    animation-duration: 10s;
  }
}

@media (min-width: 640px) {
  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 768px) {
  .site-nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    padding-top: 4.6rem;
  }

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

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

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .hero-console {
    min-height: 380px;
  }

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

  .contact-layout {
    grid-template-columns: 0.88fr 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

@media (min-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .expertise-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .expertise-card-wide {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid::before {
    top: 1.88rem;
    right: 5%;
    left: 5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.42), rgba(15, 118, 110, 0.38), rgba(37, 99, 235, 0));
    transform: scaleX(0);
    transform-origin: left;
  }

  .process-grid.is-visible::before {
    transform: scaleX(1);
  }

  .motion-ready .service-card.reveal.is-visible:hover {
    transform: translateY(-7px) rotateX(1.2deg);
  }

  .dashboard-layout {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

@media (min-width: 1180px) {
  .hero {
    min-height: min(760px, calc(100svh - 92px));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.8fr);
  }
}

@media (min-width: 1600px) {
  :root {
    --max: 1320px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    max-width: 1040px;
    font-size: 3.8rem;
  }

  .hero-lead {
    max-width: 780px;
  }

  .hero-console {
    min-height: 520px;
  }

  .control-room {
    min-height: 660px;
  }

  .section {
    padding: 6.5rem 0;
  }
}

@media (min-width: 2200px) {
  :root {
    --max: 1480px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    object-position: 62% 50%;
  }
}

@media (hover: none) {
  .value-card:hover,
  .service-card:hover,
  .expertise-card:hover,
  .process-step:hover,
  .dashboard-panel:hover,
  .motion-ready .value-card.reveal.is-visible:hover,
  .motion-ready .service-card.reveal.is-visible:hover,
  .motion-ready .expertise-card.reveal.is-visible:hover,
  .motion-ready .process-step.reveal.is-visible:hover {
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal,
  .motion-ready .reveal,
  .motion-ready .hero-content > *,
  .motion-ready .dashboard-panel .dash-bars span,
  .motion-ready .dashboard-panel .dash-line,
  .motion-ready .expertise-card li {
    opacity: 1 !important;
    transform: none !important;
  }
}
