:root {
  --color-primary: #0877ff;
  --color-primary-2: #31b9ff;
  --color-cyan: #50e6ff;
  --color-lime: #a8f238;
  --color-green: #35d57d;
  --color-navy: #03111f;
  --color-navy-2: #071a2d;
  --color-surface: #0a2136;
  --color-surface-2: #0c2942;
  --color-panel: rgba(10, 33, 54, 0.72);
  --color-white: #f7fbff;
  --color-text: #dcecff;
  --color-muted: #9fb4c9;
  --color-border: rgba(127, 202, 255, 0.18);
  --color-border-strong: rgba(80, 230, 255, 0.4);
  --color-error: #ff7e8f;
  --color-success: #8ff5b5;

  --gradient-brand: linear-gradient(120deg, var(--color-primary-2), var(--color-cyan) 44%, var(--color-lime));
  --gradient-dark: linear-gradient(180deg, #020a13, var(--color-navy));
  --gradient-panel: linear-gradient(145deg, rgba(15, 48, 75, 0.92), rgba(5, 20, 35, 0.78));

  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.22);
  --shadow-glow: 0 0 40px rgba(80, 230, 255, 0.14);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  --container: 1240px;
  --header-height: 84px;
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --space-inline: clamp(1rem, 4vw, 2.5rem);

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Nova", Inter, ui-sans-serif, system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.82rem);
  --text-sm: clamp(0.88rem, 0.82rem + 0.18vw, 0.98rem);
  --text-base: clamp(1rem, 0.95rem + 0.18vw, 1.08rem);
  --text-lg: clamp(1.1rem, 1rem + 0.36vw, 1.32rem);
  --text-xl: clamp(1.35rem, 1.15rem + 0.7vw, 1.8rem);
  --text-2xl: clamp(2rem, 1.45rem + 2.1vw, 3.55rem);
  --text-hero: clamp(2.55rem, 1.45rem + 4.1vw, 6.25rem);

  --duration-fast: 180ms;
  --duration: 360ms;
  --duration-slow: 720ms;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-navy);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: rgba(80, 230, 255, 0.28); color: var(--color-white); }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 800;
  transition: transform var(--duration-fast) ease;
}
.skip-link:focus { transform: translateY(0); }

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: 95%;
  margin-inline: auto;
}

.section { position: relative; padding-block: var(--section-space); }
.section-anchor { scroll-margin-top: calc(var(--header-height) + 16px); }

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gradient-brand);
  box-shadow: 0 0 14px rgba(80, 230, 255, 0.65);
}

.cursor-light {
  position: fixed;
  z-index: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(32, 142, 255, 0.12), rgba(80, 230, 255, 0.03) 40%, transparent 70%);
  transition: opacity 250ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background var(--duration), border-color var(--duration), box-shadow var(--duration), backdrop-filter var(--duration);
}
.site-header.is-scrolled {
  background: rgba(3, 17, 31, 0.82);
  border-color: rgba(127, 202, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(145%);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(165px, 17vw, 230px); height: auto; }
.primary-navigation { display: flex; align-items: center; gap: clamp(0.7rem, 1.4vw, 1.45rem); }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(231, 244, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--duration-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  transition: width var(--duration-fast) ease;
}
.nav-link:hover,
.nav-link.is-active { color: var(--color-white); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 70%; }
.nav-link--cta {
  padding-inline: 1.15rem;
  border: 1px solid rgba(80, 230, 255, 0.36);
  border-radius: var(--radius-pill);
  background: rgba(80, 230, 255, 0.07);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: rgba(80, 230, 255, 0.14); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  background: rgba(7, 26, 45, 0.86);
  cursor: pointer;
  place-items: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform var(--duration-fast), opacity var(--duration-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 5rem) 7rem;
  background:
    radial-gradient(circle at 74% 26%, rgba(8, 119, 255, 0.24), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(53, 213, 125, 0.1), transparent 23%),
    linear-gradient(135deg, #020810 0%, #03111f 46%, #062039 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% 20%;
  height: 420px;
  border-radius: 50% 50% 0 0;
  border-top: 3px solid rgba(168, 242, 56, 0.7);
  box-shadow: 0 -18px 60px rgba(168, 242, 56, 0.12);
  transform: rotate(-4deg);
  opacity: 0.78;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(98, 181, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 181, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  transform: perspective(600px) rotateX(58deg) scale(1.4) translateY(18%);
  transform-origin: bottom;
}
.hero-beam {
  position: absolute;
  z-index: -2;
  width: 1px;
  height: 720px;
  background: linear-gradient(to bottom, transparent, rgba(80, 230, 255, 0.75), transparent);
  filter: drop-shadow(0 0 14px rgba(80, 230, 255, 0.8));
  opacity: 0.42;
}
.hero-beam--one { top: -10%; left: 18%; transform: rotate(36deg); }
.hero-beam--two { bottom: -20%; right: 12%; transform: rotate(-38deg); }
.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(80, 230, 255, 0.18);
  border-radius: 50%;
}
.hero-orbit span {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 18px var(--color-cyan);
}
.hero-orbit--one { width: 520px; height: 520px; right: 4%; top: 14%; animation: orbit-spin 18s linear infinite; }
.hero-orbit--two { width: 280px; height: 280px; left: 45%; bottom: 2%; animation: orbit-spin 13s linear infinite reverse; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--color-cyan);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 15px rgba(168, 242, 56, 0.86);
}
.hero h1 {
  max-width: 830px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.hero h1 span {
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 720px;
  margin: 1.7rem 0 0;
  color: #b8cbe0;
  font-size: var(--text-lg);
  line-height: 1.65;
}
.hero-actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform var(--duration-fast) ease, background var(--duration-fast), border-color var(--duration-fast), box-shadow var(--duration-fast), color var(--duration-fast);
}
.button svg { width: 20px; height: 20px; transition: transform var(--duration-fast) ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button--primary {
  color: #021019;
  background: var(--gradient-brand);
  box-shadow: 0 14px 34px rgba(8, 119, 255, 0.25), 0 0 28px rgba(80, 230, 255, 0.12);
}
.button--primary:hover { box-shadow: 0 18px 42px rgba(8, 119, 255, 0.33), 0 0 34px rgba(80, 230, 255, 0.2); }
.button--secondary {
  color: var(--color-white);
  border-color: rgba(127, 202, 255, 0.3);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}
.button--secondary:hover { border-color: var(--color-border-strong); background: rgba(80, 230, 255, 0.08); }
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-highlights li { display: flex; align-items: center; gap: 0.55rem; color: #d6e7f8; font-size: var(--text-sm); font-weight: 750; }
.hero-highlights span { color: var(--color-lime); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; }

.hero-visual { position: relative; min-height: 560px; }
.hero-photo {
  position: absolute;
  inset: 2rem 0 1rem 4rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(80, 230, 255, 0.24);
  border-radius: 42% 8% 34% 9% / 22% 14% 28% 12%;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48), 0 0 80px rgba(8, 119, 255, 0.12);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.9) contrast(1.05); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(3, 17, 31, 0.14), rgba(3, 17, 31, 0.52)), linear-gradient(to top, rgba(3, 17, 31, 0.76), transparent 48%);
}
.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(290px, 58%);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(80, 230, 255, 0.3);
  border-radius: 16px;
  background: rgba(4, 21, 37, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}
.signal-card--top { top: 7%; left: 0; animation: float-card 5s var(--ease) infinite; }
.signal-card--bottom { right: -2%; bottom: 7%; animation: float-card 5.8s var(--ease) 0.5s infinite reverse; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.signal-card strong { display: block; color: var(--color-white); font-size: 0.9rem; }
.signal-card small { display: block; color: var(--color-muted); font-size: 0.72rem; line-height: 1.35; }
.signal-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--color-lime);
  background: rgba(168, 242, 56, 0.1);
}
.signal-icon svg { width: 21px; height: 21px; }
.pulse-dot {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0.85rem;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 20px var(--color-green);
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(53, 213, 125, 0.7);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { to { transform: scale(1.6); opacity: 0; } }
.code-panel {
  position: absolute;
  z-index: 2;
  left: 2%;
  bottom: 1%;
  width: 180px;
  padding: 1rem;
  border: 1px solid rgba(168, 242, 56, 0.22);
  border-radius: 16px;
  background: rgba(2, 12, 22, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}
.code-panel-label { color: var(--color-lime); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.56rem; letter-spacing: 0.12em; }
.code-lines { display: grid; gap: 6px; margin-top: 0.7rem; }
.code-lines i { display: block; height: 3px; border-radius: 3px; background: linear-gradient(90deg, rgba(80, 230, 255, 0.75), transparent); }
.code-lines i:nth-child(2) { width: 72%; margin-left: 16%; }
.code-lines i:nth-child(3) { width: 84%; }
.code-lines i:nth-child(4) { width: 54%; margin-left: 25%; }
.code-lines i:nth-child(5) { width: 65%; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(220, 236, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 20px;
  height: 34px;
  border: 1px solid rgba(127, 202, 255, 0.36);
  border-radius: 14px;
}
.scroll-cue span::before {
  content: "";
  display: block;
  width: 3px;
  height: 7px;
  margin: 7px auto;
  border-radius: 3px;
  background: var(--color-cyan);
  animation: scroll-dot 1.7s ease-in-out infinite;
}
@keyframes scroll-dot { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(10px); opacity: 1; } }

.capability-strip {
  overflow: hidden;
  border-block: 1px solid rgba(80, 230, 255, 0.12);
  background: #061724;
}
.capability-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 58px;
  animation: ticker 34s linear infinite;
}
.capability-track span {
  color: #cfe7fa;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.capability-track i { width: 7px; height: 7px; margin-inline: 2rem; border-radius: 50%; background: var(--color-lime); box-shadow: 0 0 12px rgba(168, 242, 56, 0.6); }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro-section { background: linear-gradient(180deg, #061724, #071c2f); }
.intro-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.section-heading h2,
.story-copy h2,
.faq-intro h2,
.contact-copy h2,
.official-panel h2,
.cta-content h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.08;
  letter-spacing: -0.036em;
}
.section-heading > p:last-child { max-width: 720px; margin: 1.15rem auto 0; color: var(--color-muted); }
.section-heading--center { max-width: 850px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.intro-large { margin: 0 0 1rem; color: var(--color-white); font-size: var(--text-xl); line-height: 1.45; letter-spacing: -0.02em; }
.intro-content > p:not(.intro-large) { margin: 0; color: var(--color-muted); }
.intro-values { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.intro-values span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: #dcecff;
  background: rgba(255, 255, 255, 0.025);
  font-size: var(--text-sm);
  font-weight: 750;
}
.intro-values svg { width: 18px; height: 18px; color: var(--color-lime); }

.portfolio-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(65, 146, 215, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 146, 215, 0.04) 1px, transparent 1px),
    #03111f;
  background-size: 70px 70px;
}
.portfolio-glow {
  position: absolute;
  top: 14%;
  left: 50%;
  width: min(900px, 100vw);
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(8, 119, 255, 0.13), transparent 70%);
  pointer-events: none;
}
.service-tools {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(8, 30, 49, 0.72);
  backdrop-filter: blur(18px);
}
.service-search { position: relative; }
.service-search svg {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: var(--color-muted);
}
.service-search input {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid rgba(127, 202, 255, 0.14);
  border-radius: 15px;
  outline: none;
  color: var(--color-white);
  background: rgba(2, 13, 23, 0.68);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.service-search input::placeholder { color: #7890a7; }
.service-search input:focus { border-color: var(--color-cyan); box-shadow: 0 0 0 4px rgba(80, 230, 255, 0.08); }
.filter-group { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.45rem; }
.filter-button {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 800;
  cursor: pointer;
  transition: color var(--duration-fast), background var(--duration-fast), border-color var(--duration-fast);
}
.filter-button:hover { color: var(--color-white); background: rgba(80, 230, 255, 0.06); }
.filter-button.is-active { color: var(--color-white); border-color: rgba(80, 230, 255, 0.28); background: rgba(80, 230, 255, 0.1); }
.filter-status { min-height: 1.5rem; margin: 0.8rem 0 0; color: var(--color-muted); font-size: var(--text-sm); }
.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}
.service-card {
  position: relative;
  min-width: 0;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--gradient-panel);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration) var(--ease), border-color var(--duration), box-shadow var(--duration), opacity var(--duration-fast);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient-brand);
  transition: transform var(--duration) var(--ease);
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(80, 230, 255, 0.34); box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), var(--shadow-glow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card[hidden] { display: none; }
.service-card-number {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: rgba(127, 202, 255, 0.22);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2rem;
  font-weight: 900;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(80, 230, 255, 0.22);
  border-radius: 16px;
  color: var(--color-cyan);
  background: linear-gradient(145deg, rgba(80, 230, 255, 0.12), rgba(168, 242, 56, 0.05));
}
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin: 0; color: var(--color-white); font-size: 1.18rem; line-height: 1.25; }
.service-card > p { margin: 0.8rem 0 0; color: var(--color-muted); font-size: var(--text-sm); }
.service-summary { display: grid; gap: 0.45rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.service-summary li { position: relative; padding-left: 1rem; color: #cae0f3; font-size: 0.88rem; }
.service-summary li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-lime); box-shadow: 0 0 8px rgba(168, 242, 56, 0.7); }
.service-card details { margin-top: 1.15rem; padding-top: 1rem; border-top: 1px solid rgba(127, 202, 255, 0.13); }
.service-card summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--color-cyan); font-size: 0.87rem; font-weight: 850; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary span { font-size: 1.35rem; font-weight: 400; transition: transform var(--duration-fast); }
.service-card details[open] summary span { transform: rotate(45deg); }
.service-card details ul { display: grid; gap: 0.55rem; margin: 0.85rem 0 0; padding: 0 0 0 1.15rem; color: var(--color-muted); font-size: 0.84rem; }
.empty-state {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 2rem auto 0;
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(8, 30, 49, 0.76);
}
.empty-state svg { width: 40px; height: 40px; color: var(--color-cyan); }
.empty-state h3 { margin: 1rem 0 0; color: var(--color-white); }
.empty-state p { margin: 0.65rem 0 1.25rem; color: var(--color-muted); }

.image-story { background: linear-gradient(180deg, #071c2f, #04111f); }
.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.story-row + .story-row { margin-top: clamp(5rem, 10vw, 10rem); }
.story-row--reverse .story-visual { order: 2; }
.story-row--reverse .story-copy { order: 1; }
.story-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(80, 230, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.story-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(3, 17, 31, 0.1), rgba(3, 17, 31, 0.44)), linear-gradient(to top, rgba(3, 17, 31, 0.82), transparent 48%); }
.story-visual img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.story-visual figcaption { position: absolute; z-index: 2; left: 1.3rem; bottom: 1.2rem; max-width: calc(100% - 2.6rem); color: #d8eafb; font-size: var(--text-sm); }
.visual-label { position: absolute; z-index: 2; top: 1.2rem; right: 1.2rem; padding: 0.45rem 0.65rem; border: 1px solid rgba(80, 230, 255, 0.28); border-radius: var(--radius-pill); color: var(--color-cyan); background: rgba(3, 17, 31, 0.68); backdrop-filter: blur(10px); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.62rem; letter-spacing: 0.1em; }
.story-copy > p:not(.eyebrow) { margin: 1.2rem 0 0; color: var(--color-muted); }
.feature-stack { display: grid; gap: 0.8rem; margin-top: 1.8rem; }
.feature-stack article { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1rem; border: 1px solid rgba(127, 202, 255, 0.14); border-radius: 16px; background: rgba(255, 255, 255, 0.025); transition: transform var(--duration-fast), border-color var(--duration-fast); }
.feature-stack article:hover { transform: translateX(5px); border-color: rgba(80, 230, 255, 0.28); }
.feature-stack span { color: var(--color-lime); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; font-weight: 900; }
.feature-stack h3 { margin: 0; color: var(--color-white); font-size: 1rem; }
.feature-stack p { margin: 0.25rem 0 0; color: var(--color-muted); font-size: var(--text-sm); }
.check-list { display: grid; gap: 0.7rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: #d5e6f6; }
.check-list li span { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 0.55rem; border: 2px solid var(--color-lime); border-radius: 50%; box-shadow: 0 0 10px rgba(168, 242, 56, 0.45); }
.text-link { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.6rem; color: var(--color-cyan); font-weight: 850; }
.text-link svg { width: 20px; height: 20px; transition: transform var(--duration-fast); }
.text-link:hover svg { transform: translateX(4px); }

.official-panel-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 50%, rgba(8, 119, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #04111f, #071a2d);
}
.official-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(80, 230, 255, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(12, 41, 66, 0.72), rgba(3, 17, 31, 0.72));
  box-shadow: var(--shadow-soft);
}
.official-panel-copy > p:not(.eyebrow) { margin: 1.2rem 0 0; color: var(--color-muted); }
.official-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.official-chips span { padding: 0.48rem 0.7rem; border: 1px solid rgba(80, 230, 255, 0.18); border-radius: var(--radius-pill); color: #dcecff; background: rgba(80, 230, 255, 0.045); font-size: 0.8rem; font-weight: 750; }
.official-image { position: relative; margin: 0; }
.official-image img { position: relative; z-index: 2; /* width: min(100%, 560px); */ margin-inline: auto; border-radius: 24px;     /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); */ }
.official-image-ring { position: absolute; z-index: 1; inset: 0% 0%; border: 1px solid rgba(80, 230, 255, 0.28); border-radius: 50%; box-shadow: 0 0 60px rgba(8, 119, 255, 0.2); animation: breathe 4s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(0.96); opacity: 0.55; } 50% { transform: scale(1.04); opacity: 1; } }

.process-section {
  overflow: hidden;
  background: #03111f;
}
.process-lines { position: absolute; inset: 0; background-image: linear-gradient(90deg, transparent 49.8%, rgba(80, 230, 255, 0.06) 50%, transparent 50.2%); background-size: 260px 100%; opacity: 0.6; }
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.process-grid::before { content: ""; position: absolute; top: 40px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, transparent, rgba(80, 230, 255, 0.35), rgba(168, 242, 56, 0.35), transparent); }
.process-grid li { position: relative; padding: 1.4rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: rgba(7, 28, 47, 0.72); box-shadow: var(--shadow-card); }
.process-number { position: absolute; top: 1rem; right: 1rem; color: rgba(127, 202, 255, 0.22); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.2rem; font-weight: 900; }
.process-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 1.2rem; border: 1px solid rgba(80, 230, 255, 0.28); border-radius: 50%; color: var(--color-lime); background: #061a2b; box-shadow: 0 0 24px rgba(8, 119, 255, 0.15); }
.process-icon svg { width: 24px; height: 24px; }
.process-grid h3 { margin: 0; color: var(--color-white); font-size: 1.05rem; }
.process-grid p { margin: 0.65rem 0 0; color: var(--color-muted); font-size: var(--text-sm); }

.faq-section { background: linear-gradient(180deg, #071a2d, #04111f); }
.faq-layout { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-intro > p:not(.eyebrow) { margin: 1rem 0 0; color: var(--color-muted); }
.faq-intro .button { margin-top: 1.5rem; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item { border: 1px solid var(--color-border); border-radius: 18px; background: rgba(8, 30, 49, 0.68); overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border: 0; text-align: left; color: var(--color-white); background: transparent; font-weight: 800; cursor: pointer; }
.faq-item button span { position: relative; flex: 0 0 auto; width: 24px; height: 24px; border: 1px solid rgba(80, 230, 255, 0.3); border-radius: 50%; }
.faq-item button span::before,
.faq-item button span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; border-radius: 2px; background: var(--color-cyan); transform: translate(-50%, -50%); transition: transform var(--duration-fast); }
.faq-item button span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-panel { padding: 0 1.2rem 1.2rem; color: var(--color-muted); }
.faq-panel p { margin: 0; }

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(80, 230, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(168, 242, 56, 0.12), transparent 24%),
    linear-gradient(135deg, #061b30, #03233a 52%, #061724);
}
.cta-section::before { content: ""; position: absolute; inset: auto -10% -150px; height: 320px; border-radius: 50%; border-top: 2px solid rgba(168, 242, 56, 0.52); box-shadow: 0 -20px 60px rgba(168, 242, 56, 0.1); }
.cta-grid { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(80, 230, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(80, 230, 255, 0.05) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at center, black, transparent 76%); }
.cta-content { max-width: 980px; text-align: center; }
.cta-content .eyebrow { justify-content: center; }
.cta-content h2 { font-size: clamp(2.15rem, 1.55rem + 2.7vw, 4.75rem); }
.cta-content > p:not(.eyebrow) { max-width: 750px; margin: 1.2rem auto 0; color: #b9cee1; }
.cta-actions { justify-content: center; }

.contact-section { background: #03111f; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.contact-copy > p:not(.eyebrow) { margin: 1.15rem 0 0; color: var(--color-muted); }
.contact-points { display: grid; gap: 0.9rem; margin-top: 2rem; }
.contact-points article { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; padding: 1rem; border: 1px solid var(--color-border); border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.contact-point-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--color-lime); background: rgba(168, 242, 56, 0.08); }
.contact-point-icon svg { width: 21px; height: 21px; }
.contact-points h3 { margin: 0; color: var(--color-white); font-size: 0.95rem; }
.contact-points p,
.contact-points a { margin: 0.2rem 0 0; color: var(--color-muted); font-size: var(--text-sm); }
.contact-points a:hover { color: var(--color-cyan); }
.form-card { overflow: hidden; border: 1px solid rgba(80, 230, 255, 0.24); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(10, 39, 63, 0.92), rgba(4, 17, 30, 0.96)); box-shadow: var(--shadow-soft); }
.form-card-head { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--color-border); color: var(--color-cyan); background: rgba(2, 12, 22, 0.55); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.68rem; letter-spacing: 0.12em; }
.form-card-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--color-green); box-shadow: 0 0 12px rgba(53, 213, 125, 0.7); }
.form-card form { padding: clamp(1.2rem, 3vw, 2rem); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: 0.42rem; color: #dcecff; font-size: 0.84rem; font-weight: 800; }
.field label span,
.checkbox-field label span { color: var(--color-lime); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(127, 202, 255, 0.2);
  border-radius: 13px;
  outline: none;
  color: var(--color-white);
  background: rgba(2, 13, 23, 0.72);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--color-cyan) 50%), linear-gradient(135deg, var(--color-cyan) 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--color-cyan); box-shadow: 0 0 0 4px rgba(80, 230, 255, 0.08); background: rgba(2, 13, 23, 0.9); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--color-error); }
.field-help { display: block; margin-top: 0.4rem; color: #8299ae; font-size: 0.75rem; }
.field-error { display: block; min-height: 1.1rem; margin-top: 0.3rem; color: var(--color-error); font-size: 0.76rem; }
.field-error--checkbox { margin-top: 0.35rem; }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; }
.checkbox-field input { width: 19px; height: 19px; margin: 0.22rem 0 0; accent-color: var(--color-lime); }
.checkbox-field label { color: var(--color-muted); font-size: 0.8rem; line-height: 1.5; }
.button--submit { width: 100%; margin-top: 1rem; border: 0; }
.form-status { min-height: 1.5rem; margin-top: 0.8rem; padding: 0; border-radius: 12px; font-size: 0.84rem; }
.form-status.is-success { padding: 0.8rem; color: var(--color-success); border: 1px solid rgba(143, 245, 181, 0.25); background: rgba(53, 213, 125, 0.08); }
.form-status.is-error { padding: 0.8rem; color: #ffc3cb; border: 1px solid rgba(255, 126, 143, 0.25); background: rgba(255, 126, 143, 0.07); }

.site-footer { padding-block: 4.5rem 1.3rem; border-top: 1px solid var(--color-border); background: #020a13; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 0.75fr); gap: clamp(2rem, 5vw, 5rem); }
.footer-brand img { width: 210px; height: auto; }
.footer-brand p { max-width: 430px; margin: 1rem 0 0; color: var(--color-muted); font-size: var(--text-sm); }
.footer-column { display: grid; align-content: start; gap: 0.55rem; }
.footer-column h2 { margin: 0 0 0.45rem; color: var(--color-white); font-size: 0.9rem; }
.footer-column a { color: var(--color-muted); font-size: 0.84rem; transition: color var(--duration-fast), transform var(--duration-fast); }
.footer-column a:hover { color: var(--color-cyan); transform: translateX(3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(127, 202, 255, 0.12); color: #7890a7; font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--color-cyan); }

.back-to-top {
  position: fixed;
  z-index: 500;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(80, 230, 255, 0.28);
  border-radius: 16px;
  color: var(--color-cyan);
  background: rgba(3, 17, 31, 0.86);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--duration-fast), visibility var(--duration-fast), transform var(--duration-fast), background var(--duration-fast);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(80, 230, 255, 0.12); }
.back-to-top svg { width: 22px; height: 22px; }

[data-reveal] {
  opacity: 0;
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(34px); }
[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

@media (max-width: 1399px) {
  [data-reveal="left"],
  [data-reveal="right"] { transform: translateY(30px); }
  [data-reveal].is-visible { transform: translate3d(0, 0, 0); }
}

@media (max-width: 1100px) {
  [data-reveal="left"],
  [data-reveal="right"] { transform: translateY(28px); }
  [data-reveal].is-visible { transform: translate3d(0, 0, 0); }
  :root { --header-height: 76px; }
  .menu-toggle { display: block; }
  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    max-height: calc(100svh - var(--header-height) - 1rem);
    overflow-y: auto;
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(3, 17, 31, 0.97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top;
    transition: opacity var(--duration-fast), visibility var(--duration-fast), transform var(--duration-fast);
  }
  .primary-navigation.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .nav-link { min-height: 52px; padding-inline: 1rem; border-radius: 13px; }
  .nav-link::after { display: none; }
  .nav-link:hover,
  .nav-link.is-active { background: rgba(80, 230, 255, 0.07); }
  .nav-link--cta { margin-top: 0.35rem; justify-content: center; border-color: rgba(80, 230, 255, 0.28); }

  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(100%, 800px); min-height: 520px; margin-inline: auto; }
  .hero-photo { inset: 1rem 2rem 1rem 2rem; }
  .service-tools { grid-template-columns: 1fr; }
  .filter-group { justify-content: flex-start; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 3.8rem); }
  .hero-visual { min-height: 460px; }
  .hero-photo { inset: 1rem 0; border-radius: 28px; }
  .signal-card--top { left: 1rem; }
  .signal-card--bottom { right: 1rem; }
  .code-panel { left: 1rem; bottom: 0; }
  .intro-layout,
  .story-row,
  .faq-layout,
  .contact-layout,
  .official-panel { grid-template-columns: 1fr; }
  .story-row--reverse .story-visual,
  .story-row--reverse .story-copy { order: initial; }
  .official-panel { border-radius: var(--radius-lg); }
  .official-image { max-width: 620px; margin-inline: auto; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --section-space: 4.7rem; }
  .brand img { width: 174px; }
  .hero { padding-bottom: 5.5rem; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions,
  .cta-actions { display: grid; }
  .button { width: 100%; }
  .hero-highlights { display: grid; gap: 0.7rem; }
  .hero-visual { min-height: 400px; }
  .hero-photo { inset: 0; }
  .signal-card { width: calc(100% - 2rem); }
  .signal-card--top { top: 0.8rem; }
  .signal-card--bottom { bottom: 0.8rem; }
  .code-panel { display: none; }
  .scroll-cue { display: none; }
  .capability-track { min-height: 52px; }
  .service-tools { padding: 0.55rem; border-radius: 18px; }
  .filter-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.15rem; scrollbar-width: thin; }
  .filter-button { flex: 0 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.3rem; }
  .story-visual,
  .story-visual img { min-height: 360px; }
  .visual-label { left: 1rem; right: auto; max-width: calc(100% - 2rem); }
  .official-panel { padding: 1.25rem; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (pointer: coarse), (max-width: 900px) {
  .cursor-light { display: none; }
  .service-card:hover { transform: none; }
}

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .capability-track { transform: none; }
}
