:root {
  --bg: #060606;
  --bg-elevated: #0f1114;
  --surface: rgba(17, 19, 23, 0.82);
  --surface-strong: rgba(18, 21, 26, 0.96);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(214, 168, 86, 0.34);
  --text: #f4f0e8;
  --muted: #b7afa2;
  --gold: #d6a856;
  --gold-bright: #f0cc85;
  --gold-deep: #9a6b1d;
  --red: #8f1f1f;
  --red-bright: #da4747;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
  --glow-gold: rgba(240, 204, 133, 0.16);
  --max-width: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --section-space: 6.5rem;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top, rgba(214, 168, 86, 0.1), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(143, 31, 31, 0.14), transparent 18%),
    linear-gradient(180deg, #070707 0%, #060606 48%, #090b0d 100%);
  color: var(--text);
}

::selection {
  background: rgba(240, 204, 133, 0.24);
  color: var(--text);
}

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

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

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

.site-shell {
  overflow: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.88), rgba(6, 6, 6, 0.74));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(240, 204, 133, 0.22), rgba(143, 31, 31, 0.18)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 168, 86, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 24px rgba(0, 0, 0, 0.22);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--gold-bright);
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-name,
.footer-name {
  font-family: "Syne", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag,
.footer-copy,
.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(244, 240, 232, 0.88);
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.site-nav__contact {
  min-height: 44px;
  padding: 0.7rem 1.05rem;
  margin-left: 0.25rem;
  border-color: rgba(214, 168, 86, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.site-nav__contact::after {
  display: none;
}

.site-nav__contact:hover,
.site-nav__contact:focus-visible {
  border-color: rgba(214, 168, 86, 0.42);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

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

.button--primary {
  color: #110d07;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 40px rgba(214, 168, 86, 0.22);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.1);
}

.button--secondary:hover,
.button--ghost:hover,
.button--secondary:focus-visible,
.button--ghost:focus-visible {
  border-color: rgba(214, 168, 86, 0.42);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 22px 46px rgba(214, 168, 86, 0.28);
}

.hero {
  position: relative;
  padding: 6.5rem 0 4.75rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient,
.hero-grid,
.hero-streak {
  position: absolute;
}

.hero-systems,
.hero-systems__plane,
.hero-systems__flow,
.hero-systems__nodes {
  position: absolute;
}

.hero-gradient {
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(214, 168, 86, 0.12), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(143, 31, 31, 0.15), transparent 16%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.04), transparent 24%);
}

.hero-grid {
  inset: 10% 0 auto auto;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 78%);
  opacity: 0.3;
}

.hero-systems {
  inset: 0;
  overflow: hidden;
}

.hero-systems__plane {
  border: 1px solid rgba(214, 168, 86, 0.06);
  background-image:
    linear-gradient(rgba(240, 204, 133, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 204, 133, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 74%);
  opacity: 0.18;
}

.hero-systems__plane--one {
  top: 8%;
  right: -4%;
  width: min(42vw, 560px);
  height: min(34vw, 460px);
  transform: perspective(1200px) rotateX(72deg) rotateZ(-12deg);
  animation: systemGridDrift 22s linear infinite;
}

.hero-systems__plane--two {
  left: -8%;
  bottom: 2%;
  width: min(38vw, 520px);
  height: min(24vw, 320px);
  transform: perspective(1200px) rotateX(78deg) rotateZ(10deg);
  opacity: 0.12;
  animation: systemGridDriftReverse 26s linear infinite;
}

.hero-systems__flow {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(240, 204, 133, 0.28), rgba(255, 255, 255, 0.06), transparent);
  box-shadow: 0 0 18px rgba(240, 204, 133, 0.12);
  opacity: 0.4;
}

.hero-systems__flow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 204, 133, 0.78);
  box-shadow: 0 0 12px rgba(240, 204, 133, 0.28);
  transform: translateY(-50%);
  animation: dataPointRun 6s linear infinite;
}

.hero-systems__flow--one {
  top: 24%;
  left: 12%;
  width: 26%;
  transform: rotate(-8deg);
  animation: systemFlow 12s ease-in-out infinite;
}

.hero-systems__flow--two {
  top: 56%;
  right: 12%;
  width: 22%;
  transform: rotate(14deg);
  animation: systemFlow 14s ease-in-out infinite -4s;
}

.hero-systems__flow--three {
  bottom: 18%;
  left: 32%;
  width: 18%;
  transform: rotate(-14deg);
  animation: systemFlow 13s ease-in-out infinite -8s;
}

.hero-systems__nodes {
  inset: 0;
}

.hero-systems__nodes span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(240, 204, 133, 0.24);
  background: rgba(240, 204, 133, 0.08);
  box-shadow: 0 0 0 8px rgba(240, 204, 133, 0.02);
  animation: nodePulse 7.5s ease-in-out infinite;
}

.hero-systems__nodes span:nth-child(1) { top: 18%; left: 18%; animation-delay: -1s; }
.hero-systems__nodes span:nth-child(2) { top: 30%; left: 42%; animation-delay: -3s; }
.hero-systems__nodes span:nth-child(3) { top: 22%; right: 18%; animation-delay: -5s; }
.hero-systems__nodes span:nth-child(4) { top: 64%; left: 14%; animation-delay: -2s; }
.hero-systems__nodes span:nth-child(5) { top: 72%; right: 24%; animation-delay: -6s; }
.hero-systems__nodes span:nth-child(6) { bottom: 14%; left: 48%; animation-delay: -4s; }

.hero-streak {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 204, 133, 0.66), transparent);
  filter: blur(0.2px);
}

.hero-streak--one {
  top: 18%;
  left: 53%;
  width: 24vw;
  transform: rotate(24deg);
}

.hero-streak--two {
  top: 62%;
  left: 58%;
  width: 18vw;
  transform: rotate(-12deg);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: 4.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: 1rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -1rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 204, 133, 0.16), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 232, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-kicker__signal {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
  box-shadow: 0 0 18px rgba(240, 204, 133, 0.55);
  animation: nodePulse 6s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.9rem, 8vw, 7.15rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(180deg, #fff7e6 0%, var(--gold-bright) 48%, #b87d25 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(240, 204, 133, 0.12);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

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

.hero-text,
.section-heading p,
.card p,
.why-panel p,
.timeline-step p,
.proof-card p,
.proof-stats span,
.cta-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 1.75rem 0 0;
  font-size: 1.16rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-actions .button {
  position: relative;
  min-width: 204px;
  gap: 0.65rem;
  padding-inline: 1.45rem;
  overflow: hidden;
}

.hero-actions .button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 34%, transparent 52%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.hero-actions .button::after {
  content: "\2192";
  position: relative;
  transition: transform 220ms ease;
}

.hero-actions .button:hover::before,
.hero-actions .button:focus-visible::before {
  transform: translateX(130%);
}

.hero-actions .button:hover::after,
.hero-actions .button:focus-visible::after {
  transform: translateX(2px);
}

.hero-cta-note {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: rgba(244, 240, 232, 0.74);
  font-size: 0.96rem;
}

.hero-cta-note strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.hero-authority {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-authority span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 232, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.15rem;
}

.hero-metrics article,
.card,
.why-panel,
.timeline-step,
.proof-card,
.proof-stats article,
.cta-panel,
.services-intro,
.process-intro,
.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-metrics article {
  position: relative;
  padding: 1.25rem 1.1rem 1.1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-metrics article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 204, 133, 0.5), transparent 60%);
}

.hero-metrics article::after,
.services-intro::after,
.process-intro::after,
.service-card::before,
.why-panel::before,
.proof-card::before,
.cta-panel::before,
.timeline-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 168, 86, 0.08), transparent 34%, rgba(143, 31, 31, 0.06));
  pointer-events: none;
}

.hero-metrics strong,
.proof-stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.hero-stage-wrap {
  position: relative;
  min-height: 700px;
  perspective: 1800px;
}

.hero-stage-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 8% 6%;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 46%, rgba(240, 204, 133, 0.14), transparent 56%);
  filter: blur(26px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 700px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 168, 86, 0.12), transparent 28%),
    radial-gradient(circle at 52% 50%, rgba(143, 31, 31, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(16, 17, 21, 0.95), rgba(7, 8, 11, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -24px 40px rgba(0, 0, 0, 0.22),
    0 40px 120px rgba(0, 0, 0, 0.58);
  transform-style: preserve-3d;
  perspective: 1600px;
  will-change: transform;
  transition: box-shadow 320ms ease, border-color 320ms ease;
}

.hero-stage:hover,
.hero-stage:focus-within {
  border-color: rgba(214, 168, 86, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -24px 40px rgba(0, 0, 0, 0.24),
    0 48px 140px rgba(0, 0, 0, 0.6);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-stage::before {
  border: 1px solid rgba(240, 204, 133, 0.12);
  filter: blur(0.2px);
}

.hero-stage::after {
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stage__grid {
  position: absolute;
  inset: 12%;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(214, 168, 86, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 86, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
  opacity: 0.28;
}

.hero-stage__sheen,
.hero-stage__spotlight,
.hero-stage__scanlines,
.hero-stage__beam,
.hero-stage__orbit,
.hero-stage__pedestal {
  position: absolute;
  pointer-events: none;
}

.hero-stage__sheen {
  inset: 0;
  background:
    linear-gradient(130deg, transparent 12%, rgba(255, 255, 255, 0.08) 28%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.03));
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-stage__spotlight {
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 204, 133, 0.12), rgba(240, 204, 133, 0.02) 42%, transparent 70%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  animation: pulseGlowCentered 8s ease-in-out infinite;
}

.hero-stage__scanlines {
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 6px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 44%, transparent 88%);
}

.hero-stage__beam {
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 204, 133, 0.44), transparent);
  box-shadow: 0 0 28px rgba(240, 204, 133, 0.16);
}

.hero-stage__beam--one {
  --beam-rotation: 18deg;
  top: 26%;
  left: -2%;
  transform: rotate(var(--beam-rotation));
  animation: beamSweep 15s ease-in-out infinite;
}

.hero-stage__beam--two {
  --beam-rotation: -14deg;
  right: -6%;
  bottom: 26%;
  transform: rotate(var(--beam-rotation));
  animation: beamSweep 18s ease-in-out infinite -5s;
}

.hero-stage__orbit {
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(240, 204, 133, 0.12);
  opacity: 0.5;
}

.hero-stage__orbit--one {
  width: 62%;
  aspect-ratio: 1;
  border-style: solid;
  box-shadow: 0 0 26px rgba(240, 204, 133, 0.06);
  transform: translate(-50%, -50%);
  animation: orbitSpin 36s linear infinite;
}

.hero-stage__orbit--two {
  width: 48%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
  animation: orbitSpinReverse 30s linear infinite;
}

.hero-stage__ring,
.hero-stage__pulse {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-stage__ring {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__ring--outer {
  width: 94%;
  aspect-ratio: 1;
  border-color: rgba(214, 168, 86, 0.18);
  animation: spin 32s linear infinite;
}

.hero-stage__ring--inner {
  width: 70%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  animation: spinReverse 26s linear infinite;
}

.hero-stage__ring--accent {
  width: 56%;
  aspect-ratio: 1;
  border-color: rgba(143, 31, 31, 0.22);
  box-shadow: 0 0 48px rgba(143, 31, 31, 0.15);
  animation: pulseRing 11s ease-in-out infinite;
}

.hero-stage__pulse {
  width: 38%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240, 204, 133, 0.22), transparent 68%);
  filter: blur(14px);
  animation: pulseGlow 7.5s ease-in-out infinite;
}

.hero-stage__pedestal {
  bottom: 15%;
  left: 50%;
  width: 42%;
  height: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 204, 133, 0.16), transparent 62%),
    radial-gradient(circle, rgba(190, 32, 48, 0.18), transparent 74%);
  filter: blur(18px);
  transform: translateX(-50%) translateZ(-70px);
}

.hero-emblem {
  position: relative;
  z-index: 2;
  width: min(56%, 390px);
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation:
    emblemFloat 10s ease-in-out infinite,
    emblemSpin 18s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(214, 168, 86, 0.18)) drop-shadow(0 34px 52px rgba(0, 0, 0, 0.52));
  will-change: transform;
}

.hero-stage:hover .hero-emblem,
.hero-stage:focus-within .hero-emblem {
  filter: drop-shadow(0 0 32px rgba(240, 204, 133, 0.24)) drop-shadow(0 36px 56px rgba(0, 0, 0, 0.56));
}

.hero-emblem__halo,
.hero-emblem__frame,
.hero-emblem__shadow {
  position: absolute;
  pointer-events: none;
}

.hero-emblem__halo {
  top: 50%;
  left: 50%;
  width: 112%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 204, 133, 0.18), rgba(240, 204, 133, 0.06) 32%, transparent 68%),
    radial-gradient(circle at 52% 48%, rgba(143, 31, 31, 0.12), transparent 52%);
  filter: blur(10px);
  transform: translate(-50%, -50%) translateZ(-40px);
  animation: pulseGlowCentered3d 8s ease-in-out infinite;
}

.hero-emblem__frame {
  top: 50%;
  left: 50%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 28%;
  border: 1px solid rgba(240, 204, 133, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.06), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%) translateZ(-18px) rotate(45deg);
}

.hero-emblem__asset {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(26px);
}

.hero-emblem__shadow {
  bottom: -8%;
  left: 50%;
  width: 68%;
  height: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.62), transparent 70%);
  filter: blur(12px);
  transform: translateX(-50%) translateZ(-60px);
}

.hero-stage__hud {
  position: absolute;
  left: 50%;
  width: min(80%, 480px);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  transform: translateX(-50%);
  border-radius: 999px;
  color: rgba(244, 240, 232, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.hero-stage__hud--top {
  top: 8%;
}

.hero-stage__hud--bottom {
  bottom: 8%;
}

.hero-stage__readout {
  position: absolute;
  display: grid;
  gap: 0.3rem;
  max-width: 160px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(244, 240, 232, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-stage__readout--left {
  top: 24%;
  left: 6%;
}

.hero-stage__readout--right {
  right: 6%;
  bottom: 24%;
  text-align: right;
}

.hero-stage__readout-label {
  color: var(--gold-bright);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage__readout strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-stage__readout small {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(183, 175, 162, 0.86);
}

.hero-stage__particles {
  position: absolute;
  inset: 0;
}

.hero-stage__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(240, 204, 133, 0.68);
  box-shadow: 0 0 12px rgba(240, 204, 133, 0.4);
  animation: particleDrift linear infinite;
}

.hero-stage__particles span:nth-child(1) { top: 18%; left: 24%; animation-duration: 12s; animation-delay: -2s; }
.hero-stage__particles span:nth-child(2) { top: 28%; left: 75%; animation-duration: 16s; animation-delay: -8s; }
.hero-stage__particles span:nth-child(3) { top: 62%; left: 18%; animation-duration: 13s; animation-delay: -4s; }
.hero-stage__particles span:nth-child(4) { top: 74%; left: 78%; animation-duration: 18s; animation-delay: -11s; }
.hero-stage__particles span:nth-child(5) { top: 40%; left: 14%; animation-duration: 14s; animation-delay: -6s; }
.hero-stage__particles span:nth-child(6) { top: 20%; left: 52%; animation-duration: 11s; animation-delay: -1s; }
.hero-stage__particles span:nth-child(7) { top: 48%; left: 82%; animation-duration: 15s; animation-delay: -9s; }
.hero-stage__particles span:nth-child(8) { top: 80%; left: 48%; animation-duration: 17s; animation-delay: -7s; }
.hero-stage__particles span:nth-child(9) { top: 55%; left: 58%; animation-duration: 12s; animation-delay: -5s; }
.hero-stage__particles span:nth-child(10) { top: 30%; left: 35%; animation-duration: 19s; animation-delay: -12s; }

.section {
  position: relative;
  padding: var(--section-space) 0;
  scroll-margin-top: 100px;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
}

.section-heading p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.02rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.section--services {
  position: relative;
}

.section--services::before {
  content: "";
  position: absolute;
  inset: 6% 0 auto;
  height: 280px;
  background:
    radial-gradient(circle at 20% 50%, rgba(240, 204, 133, 0.08), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(190, 32, 48, 0.08), transparent 22%);
  pointer-events: none;
}

.services-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.4rem;
  align-items: end;
}

.services-intro {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(214, 168, 86, 0.12), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.services-intro::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(240, 204, 133, 0.5), transparent 70%);
}

.services-intro span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--gold-bright);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.services-intro strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.services-intro p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.6rem;
}

.service-card {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 280px;
  padding: 1.55rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(214, 168, 86, 0.09), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.service-card::before,
.why-panel::before,
.proof-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 168, 86, 0.1), transparent 34%, rgba(143, 31, 31, 0.08));
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.55rem 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 204, 133, 0.38), transparent 72%);
  opacity: 0.4;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(214, 168, 86, 0.18);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.44);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 0.92;
  transform: scaleX(1.03);
}

.service-card--featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.15fr) minmax(140px, 0.85fr);
  align-items: end;
}

.service-card--featured h3,
.service-card--featured p {
  grid-column: 1;
}

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

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__index,
.timeline-step__number {
  display: inline-flex;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.timeline-step__number {
  margin-bottom: 1rem;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(240, 204, 133, 0.22), rgba(143, 31, 31, 0.16)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(240, 204, 133, 0.18);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card h3 {
  font-size: 1.24rem;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.service-card__footer span {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 232, 0.8);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-layout,
.proof-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.why-panel,
.proof-card,
.cta-panel {
  position: relative;
  padding: 2.15rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.why-panel {
  display: grid;
  gap: 1.5rem;
}

.why-panel:hover,
.why-panel:focus-within,
.proof-card:hover,
.proof-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 86, 0.16);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.4);
}

.why-panel article + article,
.proof-stats article + article {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section--process {
  position: relative;
}

.section--process::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 260px;
  background:
    radial-gradient(circle at 24% 40%, rgba(240, 204, 133, 0.08), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(190, 32, 48, 0.07), transparent 20%);
  pointer-events: none;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.4rem;
  align-items: end;
}

.process-intro {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(214, 168, 86, 0.1), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-intro::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(240, 204, 133, 0.5), transparent 72%);
}

.process-intro span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--gold-bright);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-intro strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.process-intro p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.timeline--process {
  gap: 1.15rem;
  margin-top: 2.7rem;
}

.timeline--process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 204, 133, 0.26), rgba(255, 255, 255, 0.08), rgba(240, 204, 133, 0.26));
  pointer-events: none;
}

.timeline-step {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(214, 168, 86, 0.08), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
  box-shadow: 0 0 18px rgba(240, 204, 133, 0.34);
}

.timeline-step::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 204, 133, 0.46), transparent 60%);
  opacity: 0.72;
}

.timeline-step:hover,
.timeline-step:focus-within {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 86, 0.16);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
}

.timeline-step__content {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
}

.timeline-step__label {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 232, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-stats {
  display: grid;
  gap: 1rem;
}

.proof-stats article {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.proof-stats article:hover,
.proof-stats article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(214, 168, 86, 0.14);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
}

.section--cta {
  padding-top: 4rem;
  padding-bottom: 6.5rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: 1.5rem;
  align-items: start;
}

.cta-panel {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.contact-panel {
  text-align: left;
  margin: 0;
}

.contact-panel .hero-actions {
  justify-content: flex-start;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.contact-points span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 232, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(214, 168, 86, 0.12), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 168, 86, 0.08), transparent 34%, rgba(143, 31, 31, 0.06));
  pointer-events: none;
}

.contact-form__heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}

.contact-form__eyebrow {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form__heading strong {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-form__heading p {
  margin: 0;
  color: var(--muted);
}

.form-field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  padding: 0.3rem;
  border-radius: 20px;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.form-field span {
  padding-inline: 0.2rem;
  color: rgba(244, 240, 232, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(10px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(183, 175, 162, 0.68);
}

.form-field:focus-within {
  background: rgba(240, 204, 133, 0.03);
  box-shadow: 0 0 0 1px rgba(240, 204, 133, 0.08);
  transform: translateY(-1px);
}

.form-field:focus-within input,
.form-field:focus-within textarea {
  border-color: rgba(214, 168, 86, 0.34);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 3px rgba(240, 204, 133, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

.form-field--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.contact-form__submit {
  z-index: 1;
  width: 100%;
  margin-top: 0.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 42px rgba(214, 168, 86, 0.24),
    0 0 0 0 rgba(240, 204, 133, 0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 22px 48px rgba(214, 168, 86, 0.28),
    0 0 24px rgba(240, 204, 133, 0.16);
  filter: saturate(1.04);
}

.contact-form__submit:disabled {
  cursor: default;
  transform: none;
  opacity: 0.88;
}

.contact-form.is-loading .contact-form__submit {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 42px rgba(214, 168, 86, 0.18),
    0 0 18px rgba(240, 204, 133, 0.1);
}

.contact-form.is-success {
  animation: formSuccess 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-form.is-success .contact-form__submit {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 22px 48px rgba(214, 168, 86, 0.2),
    0 0 26px rgba(240, 204, 133, 0.18);
}

.contact-form__status {
  position: relative;
  z-index: 1;
  min-height: 1.4rem;
  margin: 0;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

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

.contact-form__status.is-success {
  color: var(--gold-bright);
}

.contact-form__status.is-error {
  color: #ffb3b3;
}

.site-footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

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

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="scale"] {
  transform: translateY(16px) scale(0.98);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes emblemSpin {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) rotateZ(-2deg); }
  50% { transform: rotateY(8deg) rotateX(-3deg) rotateZ(2deg); }
}

@keyframes emblemFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.58; }
  50% { transform: scale(1.08); opacity: 0.95; }
}

@keyframes pulseGlowCentered {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.58; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.95; }
}

@keyframes pulseGlowCentered3d {
  0%, 100% { transform: translate(-50%, -50%) translateZ(-40px) scale(0.92); opacity: 0.58; }
  50% { transform: translate(-50%, -50%) translateZ(-40px) scale(1.08); opacity: 0.95; }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(0.98); opacity: 0.52; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

@keyframes particleDrift {
  0% { transform: translate3d(0, 0, 0) scale(0.8); opacity: 0.2; }
  50% { transform: translate3d(10px, -18px, 0) scale(1.2); opacity: 1; }
  100% { transform: translate3d(-8px, -32px, 0) scale(0.9); opacity: 0.18; }
}

@keyframes systemGridDrift {
  from { transform: perspective(1200px) rotateX(72deg) rotateZ(-12deg) translate3d(0, 0, 0); }
  50% { transform: perspective(1200px) rotateX(72deg) rotateZ(-10deg) translate3d(-10px, 10px, 0); }
  to { transform: perspective(1200px) rotateX(72deg) rotateZ(-12deg) translate3d(-20px, 20px, 0); }
}

@keyframes systemGridDriftReverse {
  from { transform: perspective(1200px) rotateX(78deg) rotateZ(10deg) translate3d(0, 0, 0); }
  50% { transform: perspective(1200px) rotateX(78deg) rotateZ(12deg) translate3d(10px, -8px, 0); }
  to { transform: perspective(1200px) rotateX(78deg) rotateZ(10deg) translate3d(18px, -16px, 0); }
}

@keyframes systemFlow {
  0%, 100% { opacity: 0.18; transform-origin: center; }
  50% { opacity: 0.48; }
}

@keyframes nodePulse {
  0%, 100% {
    opacity: 0.18;
    transform: scale(0.82);
    box-shadow: 0 0 0 0 rgba(240, 204, 133, 0.02);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(240, 204, 133, 0.03);
  }
}

@keyframes dataPointRun {
  0% { right: 88%; opacity: 0; }
  10% { opacity: 0.75; }
  50% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { right: 10%; opacity: 0; }
}

@keyframes beamSweep {
  0%, 100% { opacity: 0.18; transform: translateX(0) rotate(var(--beam-rotation, 0deg)); }
  50% { opacity: 0.4; transform: translateX(18px) rotate(var(--beam-rotation, 0deg)); }
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes formSuccess {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-2px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .hero-layout,
  .why-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage-wrap {
    min-height: auto;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-stage__hud {
    width: min(84%, 500px);
  }

  .services-shell {
    grid-template-columns: 1fr;
  }

  .process-shell {
    grid-template-columns: 1fr;
  }

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

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

  .hero-systems__plane--two {
    opacity: 0.08;
  }

  .hero-stage__readout {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 0;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .hero-layout {
    gap: 2.4rem;
  }

  .hero-systems__plane--one,
  .hero-systems__plane--two {
    width: 72vw;
  }

  .hero-systems__flow--one,
  .hero-systems__flow--two,
  .hero-systems__flow--three {
    width: 28%;
    opacity: 0.24;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .hero-metrics,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-kicker {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.45rem;
  }

  .hero-cta-note {
    display: block;
    line-height: 1.7;
  }

  .hero-authority {
    gap: 0.65rem;
  }

  .hero-authority span {
    width: 100%;
    text-align: center;
  }

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

  .hero-stage {
    min-height: 500px;
    border-radius: 28px;
  }

  .contact-form,
  .contact-panel {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .contact-points span {
    width: 100%;
    text-align: center;
  }

  .hero-stage__orbit--one {
    width: 70%;
  }

  .hero-stage__orbit--two {
    width: 54%;
  }

  .hero-stage__pedestal {
    width: 56%;
    bottom: 18%;
  }

  .hero-stage__hud {
    width: calc(100% - 2rem);
    font-size: 0.62rem;
    padding-inline: 0.85rem;
  }

  .hero-emblem {
    width: min(64%, 290px);
  }

  .service-card,
  .service-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .service-card__footer span {
    width: 100%;
    text-align: center;
  }

  .timeline--process::before {
    top: 0;
    bottom: 0;
    left: 1.55rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(240, 204, 133, 0.26), rgba(255, 255, 255, 0.08), rgba(240, 204, 133, 0.26));
  }

  .timeline-step {
    padding: 1.35rem;
    padding-left: 2.6rem;
  }

  .timeline-step::before {
    top: 1.55rem;
    left: 1.2rem;
  }

  .section,
  .section--cta {
    padding: 4.75rem 0;
  }

  .footer-inner,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
