:root {
  --night: #090a0a;
  --ink: #171817;
  --graphite: #222524;
  --steel: #68727a;
  --mist: #f3f4ef;
  --paper: #ffffff;
  --cyan: #58dcff;
  --amber: #ffb24d;
  --green: #9ed36a;
  --red: #ef6a5b;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(15, 17, 16, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(88, 220, 255, 0.22), transparent 24rem),
    var(--night);
  opacity: 0;
}

.js-ready body[data-page="home"]::before {
  opacity: 1;
  animation: introFade 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 950ms forwards;
}

img,
svg {
  display: block;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: break-word;
}

p {
  line-height: 1.65;
}

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

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.7rem 1rem;
  color: var(--night);
  background: var(--paper);
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 28px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
body:not([data-page="home"]) .site-header {
  min-height: 64px;
  background: rgba(9, 10, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  filter: drop-shadow(0 0 22px rgba(88, 220, 255, 0.22));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-toggle path,
.button path,
.secure-core path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-lockup {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--paper);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
}

.brand-subline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.38rem;
  align-items: center;
  min-width: 8.4rem;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
}

.brand-subline::before,
.brand-subline::after {
  content: "";
  height: 1px;
  background: currentColor;
}

.brand-subline em {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.66rem 0.85rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 800;
  border-radius: 6px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle path,
.button path,
.secure-core path {
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 34%, rgba(88, 220, 255, 0.12), transparent 25rem),
    radial-gradient(circle at 82% 68%, rgba(255, 178, 77, 0.1), transparent 19rem),
    linear-gradient(120deg, #050606, #0b0d0d 54%, #11130f);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 41%, rgba(88, 220, 255, 0.14) 41.1%, transparent 41.7%),
    linear-gradient(72deg, transparent 0 62%, rgba(255, 178, 77, 0.12) 62.1%, transparent 62.7%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    64px 64px,
    64px 64px;
  opacity: 0.62;
}

.hero-media,
.hero-shade,
.page-hero-bg {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(0.55) contrast(0.82) brightness(0.74);
  animation: heroImageIn 1300ms ease 260ms forwards;
}

.hero-shade {
  z-index: -3;
  background:
    radial-gradient(circle at 67% 45%, rgba(88, 220, 255, 0.1), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.87) 46%, rgba(0, 0, 0, 0.7)),
    linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.3) 52%, rgba(9, 10, 10, 0.72));
}

.launch-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.launch-line {
  position: absolute;
  left: 8%;
  bottom: 20%;
  width: 70%;
  height: 2px;
  transform-origin: left;
  opacity: 0;
  border-radius: 999px;
}

.launch-cyan {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: rotate(-18deg) scaleX(0);
  animation: launchSweep 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) 900ms forwards;
}

.launch-amber {
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  transform: rotate(12deg) scaleX(0);
  animation: launchSweepAlt 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) 1100ms forwards;
}

.launch-pulse {
  position: absolute;
  left: 45%;
  top: 42%;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(88, 220, 255, 0.34);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  animation: pulseIn 1400ms ease 1000ms forwards;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3rem;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  min-height: 88svh;
  margin: 0 auto;
  padding: 7.5rem 0 3.5rem;
}

.hero-inner > * {
  min-width: 0;
}

.hero-copy-block {
  width: 100%;
  max-width: 780px;
  min-width: 0;
}

.hero-brand-lockup {
  width: min(620px, 100%);
  margin: 0 0 1.1rem;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 780ms forwards;
}

.hero-brand-lockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 0 24px rgba(88, 220, 255, 0.2))
    drop-shadow(0 0 20px rgba(255, 178, 77, 0.12));
}

.eyebrow,
.section-kicker,
.product-label,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(18px);
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 940ms forwards;
}

.eyebrow::before,
.section-kicker::before,
.product-label::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: currentColor;
}

h1 {
  margin-top: 1rem;
  font-size: 4.7rem;
  line-height: 0.96;
  font-weight: 950;
}

.home-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(26px);
}

.home-hero h1 span:first-child {
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 1080ms forwards;
}

.home-hero h1 span:last-child {
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 1210ms forwards;
}

h2 {
  margin-top: 0.9rem;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 950;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
  opacity: 0;
  transform: translateY(20px);
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 1360ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 1510ms forwards;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.88rem 1.05rem;
  gap: 0.55rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  color: var(--night);
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.15);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cyan);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-panel,
.page-hero-panel,
.contact-aside,
.contact-form {
  border-radius: 8px;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(22px);
  animation: contentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 1650ms forwards;
}

.panel-label {
  color: var(--amber);
}

.metric-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0.8rem;
  align-items: center;
  min-height: 78px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.metric-row strong {
  color: var(--cyan);
  font-size: 1.7rem;
  line-height: 1;
  white-space: nowrap;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.ticker-section {
  padding: 2.2rem 0 2.8rem;
  color: var(--paper);
  background: #111210;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-section .section-shell {
  margin-bottom: 1rem;
}

.section-kicker {
  color: var(--steel);
}

.ticker-section .section-kicker,
.dark-section .section-kicker,
.cta-section .section-kicker {
  color: var(--amber);
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: marquee 34s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 850;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.section {
  padding: 6rem 0;
}

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

.dark-section {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(17, 18, 16, 0.98), rgba(9, 10, 10, 1)),
    var(--night);
}

.split-section {
  background: var(--mist);
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading p:last-child,
.rich-copy,
.feature-row p,
.service-card p,
.process-step p,
.product-preview p,
.product-copy-block p,
.cta-section p,
.contact-aside p {
  color: rgba(23, 24, 23, 0.68);
  font-size: 1rem;
}

.dark-section .section-heading p:last-child,
.dark-section .product-preview p,
.dark-section .product-copy-block p,
.dark-section .rich-copy,
.dark-section .rich-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.split-grid,
.page-hero-grid,
.product-detail-grid,
.contact-layout,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.split-grid > *,
.page-hero-grid > *,
.product-detail-grid > *,
.contact-layout > *,
.cta-grid > *,
.legal-layout > * {
  min-width: 0;
}

.feature-stack {
  display: grid;
  gap: 0.85rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
}

.feature-row span,
.service-number,
.process-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 950;
  background: var(--night);
  border-radius: 8px;
}

.feature-row h3 {
  margin-bottom: 0.4rem;
}

.product-preview-grid,
.service-grid,
.process-grid,
.proof-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.service-card,
.product-preview,
.process-step,
.proof-grid div {
  border-radius: 8px;
}

.service-card,
.process-step {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 292px;
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 220, 255, 0.44);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.compact-grid .service-card {
  min-height: 220px;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(23, 24, 23, 0.7);
  font-size: 0.93rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--cyan);
  border-radius: 2px;
}

.light-list li {
  color: rgba(255, 255, 255, 0.72);
}

.product-preview {
  display: grid;
  gap: 1rem;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.product-preview-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 0;
  align-items: stretch;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-preview-featured .product-card-image {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
}

.product-card-image-map {
  object-position: center bottom;
}

.product-card-body {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.product-label {
  color: var(--cyan);
}

.green-label {
  color: var(--green);
}

.amber-label {
  color: var(--amber);
}

.product-preview h3,
.product-copy-block h2 {
  color: var(--paper);
}

.text-link {
  width: fit-content;
  color: var(--paper);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.section:not(.dark-section) .text-link,
.quiet-section .text-link {
  color: var(--ink);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
  outline: 0;
}

.inline-link {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--cyan);
  outline: 0;
}

.inline-link,
.contact-aside a,
.footer-column a,
.legal-card a {
  overflow-wrap: anywhere;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

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

.process-step {
  min-height: 240px;
}

.cta-section {
  padding: 5rem 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.98), rgba(34, 37, 36, 0.96)),
    var(--night);
}

.cta-grid {
  align-items: center;
}

.cta-grid .button {
  justify-self: end;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.8rem;
  color: var(--paper);
  background: var(--night);
  isolation: isolate;
}

.page-hero-bg {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.98), rgba(9, 10, 10, 0.9) 46%, rgba(9, 10, 10, 0.82)),
    radial-gradient(circle at 78% 42%, rgba(88, 220, 255, 0.11), transparent 24rem),
    radial-gradient(circle at 63% 72%, rgba(255, 178, 77, 0.08), transparent 18rem),
    url("assets/grayston-hero.png") center / cover no-repeat;
  background-blend-mode: normal, screen, screen, luminosity;
  opacity: 1;
}

.page-hero h1 {
  max-width: 840px;
  font-size: 3.75rem;
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.page-hero-panel {
  align-self: end;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.page-hero-panel p {
  margin-top: 0.85rem;
}

.product-detail-section {
  padding: 6rem 0;
}

.product-detail-grid {
  align-items: center;
}

.reverse-grid .interface-preview {
  order: 1;
}

.reverse-grid .product-copy-block {
  order: 2;
}

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

.product-copy-block h2 {
  color: inherit;
}

.platform-callout {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(88, 220, 255, 0.13), rgba(255, 184, 77, 0.1)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.platform-callout strong {
  color: var(--paper);
}

.platform-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.interface-preview,
.product-screen {
  display: grid;
  min-height: 430px;
  padding: 1rem;
  overflow: hidden;
  background: #111412;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-screen {
  padding: 0;
  align-content: stretch;
}

.product-screen img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.product-screen-contain {
  align-content: center;
  background: #070a09;
}

.product-screen-contain img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  align-self: center;
}

.product-screen-map img {
  object-position: center bottom;
}

.product-screen figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

figure.product-screen {
  margin: 0;
  position: relative;
}

.poker-preview {
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(145deg, rgba(88, 220, 255, 0.12), transparent 46%),
    #101412;
}

.preview-top {
  display: flex;
  gap: 0.4rem;
}

.preview-top span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.map-grid {
  position: relative;
  min-height: 230px;
  margin: 1rem 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.map-route {
  position: absolute;
  inset: 52% 12% auto 14%;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--red));
  transform: rotate(-8deg);
  transform-origin: left;
  box-shadow: 0 0 18px rgba(88, 220, 255, 0.42);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--amber);
  border: 3px solid var(--night);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 178, 77, 0.68);
}

.pin-a {
  left: 17%;
  top: 58%;
}

.pin-b {
  left: 46%;
  top: 35%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(88, 220, 255, 0.68);
}

.pin-c {
  left: 75%;
  top: 52%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(239, 106, 91, 0.62);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.stat-strip div {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.stat-strip span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.secure-preview {
  align-content: center;
  justify-items: center;
  gap: 1.2rem;
  background:
    linear-gradient(145deg, rgba(158, 211, 106, 0.12), transparent 46%),
    #101412;
}

.secure-core {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: var(--green);
  background: rgba(158, 211, 106, 0.1);
  border: 1px solid rgba(158, 211, 106, 0.35);
  border-radius: 8px;
}

.secure-core svg {
  width: 48px;
  height: 48px;
}

.secure-lanes {
  display: grid;
  width: min(380px, 100%);
  gap: 0.75rem;
}

.secure-lanes span {
  display: block;
  height: 9px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.secure-lanes span::before {
  content: "";
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.secure-lanes span:nth-child(2)::before {
  width: 48%;
}

.secure-lanes span:nth-child(3)::before {
  width: 84%;
}

.secure-tags,
.contact-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.secure-tags span,
.contact-facts span {
  padding: 0.45rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
  border-radius: 99px;
}

.secure-tags span {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid div {
  display: grid;
  gap: 0.55rem;
  min-height: 170px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-grid strong {
  color: var(--cyan);
  font-size: 1.4rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

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

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

.services-command-section {
  background: var(--mist);
}

.service-track-grid {
  display: grid;
  gap: 1rem;
}

.service-track {
  display: grid;
  gap: 1.2rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.track-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
}

.track-head p,
.track-columns p {
  color: rgba(23, 24, 23, 0.68);
}

.track-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.track-columns strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--steel);
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.contact-aside {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  color: var(--paper);
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  margin-top: 0;
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-aside a {
  color: var(--cyan);
  font-weight: 900;
}

.contact-facts span {
  color: var(--night);
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--mist);
  border: 1px solid var(--line-dark);
}

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

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(88, 220, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(88, 220, 255, 0.18);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-status {
  flex: 1 1 260px;
  min-height: 1.4rem;
  color: rgba(23, 24, 23, 0.66);
  font-size: 0.93rem;
}

.form-status[data-tone="success"] {
  color: #18643b;
  font-weight: 850;
}

.form-status[data-tone="error"] {
  color: #9f2b20;
  font-weight: 850;
}

.form-status a {
  color: var(--night);
  text-decoration: underline;
  text-decoration-color: rgba(88, 220, 255, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.site-footer {
  padding: 3rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: 2rem;
  align-items: start;
}

.footer-grid p {
  font-size: 0.9rem;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
  max-width: 360px;
}

.footer-brand .brand-mark {
  width: 62px;
  height: 62px;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-column {
  display: grid;
  gap: 0.72rem;
}

.footer-column strong {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--cyan);
  outline: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--amber);
  outline: 0;
}

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

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 3rem;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--mist);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.legal-index strong {
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--steel);
}

.legal-index a {
  color: rgba(23, 24, 23, 0.72);
  font-weight: 850;
}

.legal-index a:hover,
.legal-index a:focus-visible {
  color: var(--ink);
  outline: 0;
}

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

.legal-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  background: var(--mist);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.legal-card h2 {
  margin-top: 0;
  font-size: 1.85rem;
}

.legal-card h3 {
  margin-top: 0.35rem;
}

.legal-card p,
.legal-card li {
  color: rgba(23, 24, 23, 0.72);
}

.legal-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.15rem;
}

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

.security-card {
  display: grid;
  gap: 0.75rem;
  min-height: 230px;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.security-card span {
  width: fit-content;
  padding: 0.38rem 0.55rem;
  color: var(--night);
  font-size: 0.75rem;
  font-weight: 950;
  background: var(--cyan);
  border-radius: 6px;
}

.security-card p {
  color: rgba(23, 24, 23, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@keyframes introFade {
  to {
    opacity: 0;
  }
}

@keyframes heroImageIn {
  to {
    opacity: 0.42;
    transform: scale(1);
  }
}

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

@keyframes launchSweep {
  0% {
    opacity: 0;
    transform: rotate(-18deg) scaleX(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0.56;
    transform: rotate(-18deg) scaleX(1);
  }
}

@keyframes launchSweepAlt {
  0% {
    opacity: 0;
    transform: rotate(12deg) scaleX(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
    transform: rotate(12deg) scaleX(1);
  }
}

@keyframes pulseIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  45% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .hero-inner,
  .split-grid,
  .page-hero-grid,
  .product-detail-grid,
  .contact-layout,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-panel {
    max-width: 560px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-index {
    position: static;
  }

  .cta-grid .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-subline {
    min-width: 7.6rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 0.55rem;
    background: rgba(9, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 66% 34%, rgba(88, 220, 255, 0.11), transparent 16rem),
      linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.83)),
      linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.34) 52%, rgba(9, 10, 10, 0.72));
  }

  .hero-inner {
    min-height: 84svh;
    padding: 6.5rem 0 2rem;
  }

  .hero-brand-lockup {
    width: min(100%, 420px);
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.86rem;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .home-hero h1 {
    font-size: 2.04rem;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

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

  .metric-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .ticker-section {
    padding: 1.8rem 0 2.2rem;
  }

  .section,
  .product-detail-section,
  .cta-section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: 7.4rem 0 3.5rem;
  }

  .service-grid,
  .process-grid,
  .proof-grid,
  .product-preview-grid,
  .form-grid,
  .track-columns,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .product-preview {
    min-height: auto;
  }

  .product-preview-featured {
    grid-template-columns: 1fr;
  }

  .product-preview-featured .product-card-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-row {
    grid-template-columns: 44px 1fr;
  }

  .interface-preview {
    min-height: 330px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .reverse-grid .interface-preview,
  .reverse-grid .product-copy-block {
    order: initial;
  }

  .contact-form,
  .contact-aside {
    padding: 1rem;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  .marquee-track {
    animation: none;
  }

  .reveal,
  .hero-media,
  .hero-brand-lockup,
  .eyebrow,
  .home-hero h1 span,
  .hero-copy,
  .hero-actions,
  .hero-panel {
    opacity: 1;
    transform: none;
  }

  body::before,
  .launch-field {
    display: none;
  }
}
