:root {
  --ink: #08090b;
  --graphite: #181b20;
  --surface: #f8fafc;
  --paper: #ffffff;
  --line: #e4e8ef;
  --muted: #5f6b7a;
  --soft: #eef4f8;
  --cobalt: #16408b;
  --cyan: #17d6e4;
  --mint: #47b881;
  --amber: #d89324;
  --danger: #d65353;
  --shadow: 0 22px 70px rgba(13, 24, 44, 0.08);
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(22, 64, 139, 0.16);
  color: var(--ink);
}

.sr-only {
  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 {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 56px;
  text-align: center;
}

.section-kicker,
.eyebrow,
.live-line,
.panel-status,
.metric span,
.tech-tag,
.work-item span,
.process-list span,
.infra-facts span,
.ops-status-grid span,
.ops-layer-index,
.ops-layer-meta,
.ops-icon,
.ops-flow-card small,
.ai-workflow-header span,
.ai-workflow-number,
.ai-workflow-footer span {
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h2 {
  margin-bottom: 22px;
  font-size: 3.75rem;
  line-height: 0.98;
  font-weight: 850;
}

h3 {
  margin-bottom: 14px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--cobalt);
  color: var(--paper);
  box-shadow: 0 16px 36px rgba(22, 64, 139, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #0f326f;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(22, 64, 139, 0.35);
  color: var(--cobalt);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition:
    padding 200ms ease,
    background 200ms ease;
}

.site-header:not(.is-past-hero):not(.is-open) {
  pointer-events: none;
}

.site-header.is-past-hero {
  padding: 10px 0;
  background: transparent;
}

.header-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1240px, calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2) 46%, rgba(246, 251, 255, 0.34)),
    rgba(255, 255, 255, 0.24);
  border: 1px solid transparent;
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(13, 31, 56, 0.04),
    0 18px 60px rgba(13, 24, 44, 0.055);
  -webkit-backdrop-filter: blur(28px) saturate(1.7);
  backdrop-filter: blur(28px) saturate(1.7);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    min-height 260ms ease;
}

.site-header:not(.is-past-hero):not(.is-open) .header-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 50px;
  padding: 0 14px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
}

.site-header:not(.is-past-hero):not(.is-open) .header-shell::before,
.site-header:not(.is-past-hero):not(.is-open) .header-shell::after {
  opacity: 0;
}

.header-shell::before,
.header-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
}

.header-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06) 52%, rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(22, 64, 139, 0.05), transparent 28%, transparent 72%, rgba(23, 214, 228, 0.045));
}

.header-shell::after {
  opacity: 0.45;
  background: linear-gradient(105deg, transparent 0 30%, rgba(255, 255, 255, 0.38) 44%, transparent 60% 100%);
  transform: translateX(-18%);
}

.site-header.is-open .header-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34) 48%, rgba(246, 251, 255, 0.5)),
    rgba(255, 255, 255, 0.42);
}

.site-header.is-past-hero .header-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.26) 46%, rgba(246, 251, 255, 0.42)),
    rgba(255, 255, 255, 0.3);
}

.brand {
  position: relative;
  display: flex;
  width: 122px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  pointer-events: auto;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.brand-logo-full {
  opacity: 0;
  transform: translateY(4px) scale(0.9);
}

.site-header.is-past-hero .brand-logo-text {
  opacity: 0;
  transform: translateY(-4px) scale(0.92);
}

.site-header.is-past-hero .brand-logo-full {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header:not(.is-past-hero):not(.is-open) .desktop-nav,
.site-header:not(.is-past-hero):not(.is-open) .header-cta,
.site-header:not(.is-past-hero):not(.is-open) .menu-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cobalt);
  text-shadow: 0 0 18px rgba(22, 64, 139, 0.14);
}

.header-cta {
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--cobalt);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 30px rgba(13, 24, 44, 0.055);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span[aria-hidden="true"] {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .menu-toggle span[aria-hidden="true"]:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span[aria-hidden="true"]:nth-child(3) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span[aria-hidden="true"]:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.46);
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 20px 60px rgba(13, 24, 44, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.55);
  backdrop-filter: blur(24px) saturate(1.55);
}

.mobile-nav a {
  display: block;
  padding: 12px 10px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 56px) 0 88px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92)),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 64, 139, 0.28), transparent);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.8;
}

.cloud-nav {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.cloud-link {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 5px 10px 5px 6px;
  border-radius: 999px;
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 34px rgba(22, 64, 139, 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.45);
  backdrop-filter: blur(16px) saturate(1.45);
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.cloud-link:hover,
.cloud-link:focus-visible {
  color: #0f326f;
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 42px rgba(22, 64, 139, 0.18),
    0 0 0 7px rgba(23, 214, 228, 0.1);
}

.cloud-link-dot {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow:
    0 0 0 5px rgba(23, 214, 228, 0.12),
    0 0 20px rgba(23, 214, 228, 0.45);
}

.cloud-link-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--cobalt);
}

.cloud-link-label {
  white-space: nowrap;
}

.cloud-link-services {
  left: 30%;
  top: 29%;
}

.cloud-link-expertise {
  left: 46%;
  top: 22%;
}

.cloud-link-work {
  left: 59%;
  top: 31%;
}

.cloud-link-infra {
  left: 68%;
  top: 24%;
}

.cloud-link-contact {
  left: 38%;
  top: 39%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 280px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(22, 64, 139, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(71, 184, 129, 0.12);
}

.hero-title {
  margin-bottom: 34px;
  font-size: 7rem;
  line-height: 1.04;
  font-weight: 900;
  overflow: visible;
  padding-bottom: 0.08em;
}

.hero-title span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, var(--cobalt), #0d72a7 52%, var(--cyan));
  background-clip: text;
  line-height: 1.02;
  overflow: visible;
  padding-bottom: 0.11em;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 420;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.services-section,
.research-section,
.contact-section {
  background: var(--paper);
}

.services-section .section-heading,
.work-section .section-heading {
  margin-bottom: 56px;
}

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

.service-card,
.work-item,
.metric,
.infra-panel,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(13, 24, 44, 0.06);
}

.service-card {
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 64, 139, 0.35);
  box-shadow: 0 26px 70px rgba(22, 64, 139, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid rgba(22, 64, 139, 0.18);
  border-radius: 8px;
  background: var(--soft);
  position: relative;
}

.service-icon-diamond::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--cobalt);
  transform: rotate(45deg);
}

.service-icon-lines::before,
.service-icon-lines::after {
  content: "";
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background: var(--cobalt);
}

.service-icon-lines::before {
  top: 17px;
  box-shadow: 0 7px 0 var(--cobalt);
}

.service-icon-lines::after {
  top: 31px;
  width: 14px;
  background: var(--mint);
}

.service-icon-grid {
  background:
    linear-gradient(var(--soft), var(--soft)) padding-box,
    linear-gradient(135deg, rgba(22, 64, 139, 0.3), rgba(23, 214, 228, 0.45)) border-box;
}

.service-icon-grid::before {
  content: "";
  position: absolute;
  inset: 14px;
  background:
    linear-gradient(var(--cobalt), var(--cobalt)) 0 0 / 8px 8px,
    linear-gradient(var(--mint), var(--mint)) 100% 100% / 8px 8px,
    linear-gradient(#c7d2df, #c7d2df) 100% 0 / 8px 8px,
    linear-gradient(#c7d2df, #c7d2df) 0 100% / 8px 8px;
  background-repeat: no-repeat;
}

.service-icon-node::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid var(--cobalt);
  border-radius: 999px;
}

.service-icon-node::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 21px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow:
    -10px 8px 0 var(--mint),
    12px 10px 0 var(--cyan);
}

.service-card h3,
.work-item h3,
.process-list h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.service-card p,
.work-item p,
.process-list p {
  color: var(--muted);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  color: #43546b;
  font-size: 0.88rem;
}

.service-card li {
  padding: 8px 0;
  border-top: 1px solid rgba(228, 232, 239, 0.75);
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(238, 244, 248, 0.55), rgba(248, 250, 252, 1)),
    var(--surface);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.proof-points p {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--mint);
  background: rgba(255, 255, 255, 0.62);
  color: #43546b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  min-height: 190px;
  padding: 28px;
}

.metric strong {
  display: block;
  margin-bottom: 28px;
  color: var(--cobalt);
  font-size: 4rem;
  line-height: 0.85;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.expertise-section {
  background: var(--surface);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--cobalt);
  color: var(--paper);
  border-color: var(--cobalt);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  transition: opacity 180ms ease;
}

.tech-tag {
  min-height: 64px;
  padding: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #38475a;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.tech-tag.is-hidden {
  display: none;
}

.work-section {
  background: var(--paper);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-item {
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.work-item span,
.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cobalt);
  font-weight: 850;
  font-size: 0.78rem;
}

.infrastructure-section {
  position: relative;
  overflow: visible;
  background: var(--paper);
}

.infrastructure-section::before {
  content: none;
}

.infra-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  padding: 72px;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 11, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #08090b, #121820 58%, #0a1115);
  box-shadow: 0 28px 90px rgba(13, 24, 44, 0.18);
  color: var(--paper);
}

.infra-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

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

.infra-copy {
  max-width: 1180px;
}

.live-line {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(23, 214, 228, 0.55);
  animation: pulse 2s infinite;
}

.infra-copy h2 {
  margin-bottom: 28px;
  color: var(--paper);
}

.infra-copy p {
  margin-bottom: 42px;
  color: #a8b3c2;
  font-size: 1.08rem;
  max-width: 780px;
}

.infra-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.infra-facts div {
  min-height: 112px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
}

.infra-facts span {
  display: block;
  margin-bottom: 8px;
  color: #778597;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.infra-facts strong {
  display: block;
  color: var(--paper);
  font-size: 1.35rem;
}

.infra-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-header strong,
.panel-header > div > span {
  display: block;
}

.panel-header strong {
  margin-bottom: 4px;
  color: var(--paper);
}

.panel-header > div > span {
  color: #8d99a8;
  font-size: 0.82rem;
}

.panel-status {
  flex: 0 0 auto;
  color: var(--mint);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-panel {
  display: grid;
  gap: 24px;
}

.ops-panel-header {
  padding-bottom: 26px;
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.panel-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(23, 214, 228, 0.12);
}

.ops-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ops-status-grid div {
  min-width: 0;
  min-height: 92px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.ops-status-grid span,
.ops-layer-meta,
.ops-flow-card small {
  color: #8d99a8;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-status-grid span {
  margin-bottom: 8px;
}

.ops-status-grid strong {
  color: var(--paper);
  font-size: 1.08rem;
}

.ops-layer {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.13);
}

.ops-layer-rail {
  background:
    linear-gradient(135deg, rgba(23, 214, 228, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.13);
}

.ops-layer-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.ops-layer-index {
  display: inline-flex;
  min-width: 48px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(23, 214, 228, 0.12);
}

.ops-layer h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.08rem;
}

.ops-tile-grid {
  display: grid;
  gap: 12px;
}

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

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

.ops-tile,
.ops-flow-card {
  min-width: 0;
  min-height: 72px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.ops-tile-active,
.ops-flow-step-active .ops-flow-card {
  border-color: rgba(23, 214, 228, 0.62);
  background:
    linear-gradient(135deg, rgba(23, 214, 228, 0.08), rgba(22, 64, 139, 0.12)),
    rgba(0, 0, 0, 0.2);
}

.ops-flow-step-ready .ops-icon,
.ops-dot-ok {
  color: var(--mint);
}

.ops-icon {
  flex: 0 0 auto;
  min-width: 42px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(23, 214, 228, 0.12);
  font-size: 0.68rem;
  font-weight: 850;
}

.ops-tile strong,
.ops-flow-card strong {
  min-width: 0;
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.2;
}

.ops-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 999px;
  background: #6f7d8e;
}

.ops-dot-active {
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(23, 214, 228, 0.1);
}

.ops-dot-ok {
  background: var(--mint);
}

.ops-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.ops-flow-step {
  position: relative;
  min-width: 0;
}

.ops-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 16px;
  height: 1px;
  background: rgba(141, 153, 168, 0.65);
}

.ops-flow-card {
  min-height: 96px;
}

.ops-flow-card div {
  min-width: 0;
}

.ops-flow-card strong,
.ops-flow-card small {
  display: block;
}

.ops-flow-card small {
  margin-top: 4px;
}

.ops-layer-meta {
  justify-self: end;
}

.ops-panel,
.ops-status-grid,
.ops-layer {
  position: relative;
}

.ops-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.45) 1px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.08;
}

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

.ops-layer-meta,
.ops-status-grid span,
.ops-flow-card small {
  color: #8d99a8;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.research-visual {
  position: relative;
  min-height: 390px;
  padding: 28px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 244, 248, 0.52), rgba(255, 255, 255, 0.9)),
    var(--paper);
}

.ai-workflow-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ai-workflow-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.ai-workflow-header strong {
  color: var(--ink);
}

.ai-workflow-header span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ai-workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-workflow-list li {
  min-width: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.ai-workflow-number {
  min-width: 38px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--cobalt);
  background: rgba(22, 64, 139, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
}

.ai-workflow-list strong,
.ai-workflow-list small {
  display: block;
}

.ai-workflow-list strong {
  margin-bottom: 3px;
  color: var(--ink);
}

.ai-workflow-list small {
  color: var(--muted);
  font-size: 0.88rem;
}

.ai-workflow-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.ai-workflow-footer span {
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cobalt);
  background: rgba(22, 64, 139, 0.05);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.process-section {
  background: var(--surface);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-list li {
  min-height: 260px;
  padding: 28px;
}

.contact-card {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 88px 72px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 64, 139, 0.22), transparent 48%),
    #0b0d12;
  color: var(--paper);
  text-align: center;
  box-shadow: 0 28px 90px rgba(8, 9, 11, 0.22);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.72) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}

.contact-accent {
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 5px;
  transform: translateX(-50%);
  background: var(--cyan);
}

.contact-card .section-kicker,
.contact-card h2,
.contact-card p,
.contact-card .button,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-card .section-kicker {
  color: var(--cyan);
}

.contact-card h2 {
  max-width: 820px;
  margin: 0 auto 26px;
  color: var(--paper);
}

.contact-card p {
  max-width: 660px;
  margin: 0 auto 36px;
  color: #a8b3c2;
  font-size: 1.12rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.contact-form[hidden] {
  display: none;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.contact-field span {
  color: #dce6f2;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(220, 230, 242, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-field input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(23, 214, 228, 0.72);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(23, 214, 228, 0.12);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}

.contact-trust-badge {
  min-height: 52px;
  padding: 9px 14px 9px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(220, 230, 242, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce6f2;
}

.contact-trust-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 50% 58% / 11px 8px no-repeat,
    radial-gradient(circle at 50% 38%, transparent 8px, var(--cyan) 8.5px 10.5px, transparent 11px),
    rgba(23, 214, 228, 0.13);
}

.contact-trust-badge span:last-child {
  display: grid;
  gap: 2px;
}

.contact-trust-badge strong,
.contact-trust-badge small {
  display: block;
  line-height: 1.1;
}

.contact-trust-badge strong {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-trust-badge small {
  color: #93a1b3;
  font-size: 0.76rem;
}

.contact-submit {
  min-width: 170px;
}

.contact-submit:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.contact-status {
  min-height: 24px;
  margin: 2px 0 0;
  color: #dce6f2;
  font-size: 0.95rem;
  text-align: center;
}

.contact-status.is-error {
  color: #ffb9b9;
}

.contact-status.is-success {
  color: #a7efc4;
}

.contact-success {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 680px;
  margin: 6px auto 0;
  outline: none;
  text-align: center;
}

.contact-success[hidden] {
  display: none;
}

.contact-envelope {
  position: relative;
  width: 168px;
  height: 108px;
  border: 1px solid rgba(220, 230, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(18, 27, 43, 0.96), rgba(10, 13, 19, 0.98));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-envelope::before,
.contact-envelope::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.contact-envelope::before {
  background:
    linear-gradient(34deg, transparent 49%, rgba(23, 214, 228, 0.28) 50%, transparent 51%),
    linear-gradient(-34deg, transparent 49%, rgba(220, 230, 242, 0.16) 50%, transparent 51%);
}

.contact-envelope::after {
  border: 1px solid rgba(23, 214, 228, 0.28);
  box-shadow: 0 0 30px rgba(23, 214, 228, 0.12);
}

.contact-envelope-flap {
  position: absolute;
  inset: 0 0 auto;
  height: 68px;
  clip-path: polygon(0 0, 100% 0, 50% 82%);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(180deg, rgba(23, 214, 228, 0.2), rgba(255, 255, 255, 0.05)),
    rgba(17, 24, 38, 0.95);
}

.contact-envelope-letter {
  position: absolute;
  left: 18px;
  right: 18px;
  top: -22px;
  display: grid;
  gap: 8px;
  height: 78px;
  padding: 18px 18px 0;
  border-radius: 7px;
  background: rgba(248, 251, 255, 0.96);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.contact-envelope-letter span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #c9d4e4;
}

.contact-envelope-letter span:nth-child(1) {
  width: 48%;
  background: var(--cyan);
}

.contact-envelope-letter span:nth-child(2) {
  width: 82%;
}

.contact-envelope-letter span:nth-child(3) {
  width: 64%;
}

.contact-letter {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(220, 230, 242, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 252, 0.96));
  color: #111827;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  text-align: left;
}

.contact-letter-header {
  display: grid;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.contact-letter-header span,
.contact-letter-meta dt {
  color: #536072;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-letter-header strong {
  color: #0a0d12;
  font-size: 1.22rem;
  line-height: 1.22;
}

.contact-letter-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.contact-letter-meta div {
  min-width: 0;
}

.contact-letter-meta dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: #1d2735;
  font-weight: 750;
}

.contact-card .contact-letter p {
  max-width: none;
  margin: 0;
  color: #344154;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-again {
  min-width: 210px;
  border-color: rgba(220, 230, 242, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.site-footer {
  padding: 46px 0;
  background: #f2f6f9;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  width: 92px;
  flex: 0 0 auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-version {
  color: #9ba8b6;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.68rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 1;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 214, 228, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(23, 214, 228, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 214, 228, 0);
  }
}

@media (max-width: 1080px) {
  h2 {
    font-size: 3rem;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

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

  .service-card {
    min-height: 350px;
  }

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

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

  .ops-status-grid,
  .ops-tile-grid-four,
  .ops-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ops-flow {
    gap: 12px;
  }

  .ops-flow-step::after {
    display: none;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 82px;
  }

  .section {
    padding: 84px 0;
  }

  .section-inner {
    width: min(100% - 32px, 720px);
  }

  .infrastructure-section .section-inner {
    width: min(100% - 32px, 720px);
  }

  h2 {
    font-size: 2.5rem;
    line-height: 1.04;
  }

  .header-shell {
    min-height: 60px;
    gap: 14px;
  }

  .brand {
    width: 112px;
    height: 46px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-inner {
    padding-top: 220px;
  }

  .hero-title {
    font-size: 4.25rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .proof-layout,
  .infra-layout,
  .research-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infra-layout {
    padding: 48px;
  }

  .metric-grid,
  .infra-facts {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 150px;
  }

  .metric strong {
    font-size: 3.2rem;
  }

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

  .ops-status-grid,
  .ops-tile-grid-four,
  .ops-tile-grid-five,
  .ops-flow {
    grid-template-columns: 1fr;
  }

  .research-visual {
    min-height: 330px;
  }

  .contact-card {
    padding: 64px 36px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(100% - 28px, 520px);
  }

  .infrastructure-section .section-inner {
    width: min(100% - 28px, 520px);
  }

  h2 {
    font-size: 2.05rem;
  }

  .section-heading.centered {
    text-align: left;
  }

  .header-shell {
    width: calc(100% - 20px);
  }

  .mobile-nav {
    width: calc(100% - 20px);
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-inner {
    padding-top: 205px;
  }

  .cloud-link {
    min-height: 28px;
    padding: 4px 7px 4px 5px;
    gap: 6px;
    font-size: 0.62rem;
  }

  .cloud-link-dot {
    width: 10px;
    height: 10px;
  }

  .cloud-link-dot::after {
    inset: 3px;
  }

  .cloud-link-services {
    left: 21%;
    top: 26%;
  }

  .cloud-link-expertise {
    left: 48%;
    top: 20%;
  }

  .cloud-link-work {
    left: 75%;
    top: 28%;
  }

  .cloud-link-infra {
    left: 62%;
    top: 36%;
  }

  .cloud-link-contact {
    left: 33%;
    top: 38%;
  }

  .hero-actions,
  .filter-bar {
    justify-content: stretch;
  }

  .hero-actions .button,
  .filter-button {
    flex: 1 1 100%;
  }

  .service-grid,
  .work-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .work-item,
  .process-list li {
    min-height: auto;
  }

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

  .infra-panel,
  .contact-card {
    padding: 56px 20px;
  }

  .infra-layout {
    padding: 28px 18px;
  }

  .contact-field-grid,
  .contact-form-footer {
    grid-template-columns: 1fr;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }

  .contact-success {
    gap: 18px;
  }

  .contact-envelope {
    width: 146px;
    height: 94px;
  }

  .contact-envelope-letter {
    left: 16px;
    right: 16px;
    height: 68px;
    padding: 16px 16px 0;
  }

  .contact-letter {
    padding: 22px;
  }

  .contact-letter-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-again {
    width: 100%;
    min-width: 0;
  }

  .panel-header,
  .ops-layer-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ops-panel {
    gap: 18px;
  }

  .ops-panel-header {
    padding-bottom: 20px;
  }

  .ops-layer {
    padding: 16px;
  }

  .ops-layer-head {
    display: flex;
    gap: 12px;
  }

  .ops-layer-meta {
    justify-self: auto;
  }

  .ops-tile,
  .ops-flow-card {
    min-height: 66px;
    padding: 12px;
  }

  .ops-icon {
    min-width: 38px;
    min-height: 34px;
  }

  .ai-workflow-header {
    flex-direction: column;
    gap: 6px;
  }

  .ai-workflow-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2.65rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 2.05rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-canvas {
    display: none;
  }
}
