:root {
  --bg: #050606;
  --panel: #0c0f0e;
  --panel-2: #111514;
  --text: #f4f0eb;
  --muted: #9c9b96;
  --line: rgba(244, 240, 235, 0.14);
  --blue: #355cff;
  --cyan: #11cdf5;
  --green: #87f59b;
  --mint: #b9f7c2;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(17, 205, 245, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(135, 245, 155, 0.14), transparent 26rem),
    linear-gradient(180deg, #050606 0%, #090b0a 52%, #050606 100%);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    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: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.2rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(17, 205, 245, 0.2), transparent 24rem),
    radial-gradient(circle at 54% 42%, rgba(135, 245, 155, 0.14), transparent 20rem),
    #050606;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(18rem, 62vw);
  aspect-ratio: 1;
}

.loader-mark::before,
.loader-mark::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 240, 235, 0.12);
  border-radius: 50%;
  content: "";
  animation: loaderSpin 2.4s linear infinite;
}

.loader-mark::after {
  inset: 1.8rem;
  border-color: rgba(135, 245, 155, 0.26);
  border-top-color: transparent;
  animation-duration: 1.4s;
  animation-direction: reverse;
}

.loader-mark img {
  width: 72%;
  filter: drop-shadow(0 0 35px rgba(17, 205, 245, 0.38));
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-mark span {
  position: absolute;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  animation: loaderScan 1.7s ease-in-out infinite;
}

.loader-copy {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.loader-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.loader-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader-bar {
  width: min(22rem, 72vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 240, 235, 0.12);
}

.loader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  animation: loaderBar 1.1s ease-in-out infinite;
}

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

button,
input,
textarea {
  font: inherit;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(135, 245, 155, 0.12), rgba(17, 205, 245, 0.07) 38%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 5.2rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(17, 205, 245, 0.28));
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #cbc8c1;
  font-size: 0.88rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transition: width 180ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  padding: 0 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.ghost-btn {
  border: 1px solid rgba(185, 247, 194, 0.35);
  color: var(--mint);
  background: rgba(185, 247, 194, 0.05);
}

.primary-btn {
  border: 0;
  color: #04100a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 15px 45px rgba(17, 205, 245, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: 5rem 0 4rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  color: #d8d4cd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span,
.site-footer span {
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 42rem;
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 5.9vw, 5.7rem);
  line-height: 0.92;
}

h2 {
  max-width: 43rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 0.95;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 240, 235, 0.62);
  text-shadow: 0 0 30px rgba(135, 245, 155, 0.18);
}

.hero-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.hero-signal span {
  border: 1px solid rgba(185, 247, 194, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: #dfffe5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(135, 245, 155, 0.12), rgba(17, 205, 245, 0.06));
}

.hero-intro,
.contact-band p,
.process p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-intro {
  max-width: 43rem;
  font-size: 1.1rem;
}

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

.hero-orbit {
  position: relative;
  min-height: 34rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(12, 15, 14, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-orbit::before {
  position: absolute;
  inset: 7%;
  border: 1px dashed rgba(244, 240, 235, 0.15);
  border-radius: 50%;
  content: "";
  animation: spin 18s linear infinite;
}

.logo-stage {
  position: absolute;
  inset: 14%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 240, 235, 0.09);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 205, 245, 0.16), transparent 62%);
}

.logo-stage img {
  width: min(76%, 22rem);
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(17, 205, 245, 0.35));
}

.scan-line {
  position: absolute;
  left: -20%;
  top: 28%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135, 245, 155, 0.75), transparent);
  animation: scan 3.8s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  width: 8.4rem;
  border: 1px solid rgba(244, 240, 235, 0.13);
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(5, 6, 6, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.orbit-card strong {
  display: block;
  font-size: 1.65rem;
}

.orbit-card span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.card-a {
  left: 1.1rem;
  top: 5rem;
}

.card-b {
  right: 1.2rem;
  top: 12rem;
}

.card-c {
  left: 40%;
  bottom: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: 1.6rem 1rem;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.stats span {
  color: var(--green);
}

.stats p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-section,
.process,
.contact-band {
  padding: clamp(4rem, 9vw, 7rem) 0;
  scroll-margin-top: 7rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.service-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 15, 14, 0.76);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  padding: 1.25rem;
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 30%), rgba(135, 245, 155, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(53, 92, 255, 0.16), transparent 38%);
  transition: opacity 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -1rem;
  bottom: -1.7rem;
  width: 7.8rem;
  height: 7.8rem;
  border: 1px solid rgba(244, 240, 235, 0.09);
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.8;
}

.service-card:hover {
  border-color: rgba(135, 245, 155, 0.38);
  background: rgba(15, 20, 18, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card span,
.process strong {
  color: var(--green);
  font-weight: 900;
}

.service-card > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(135, 245, 155, 0.24);
  border-radius: 50%;
  color: #06110a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 30px rgba(17, 205, 245, 0.16);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 1.55rem 0 0.8rem;
  font-size: 1.25rem;
}

.service-card p {
  position: relative;
  z-index: 1;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-console {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  gap: 1rem;
  margin-top: 2rem;
}

.process-card {
  position: relative;
  min-height: 17.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
  color: var(--text);
  text-align: left;
  background: rgba(12, 15, 14, 0.76);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.process-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    linear-gradient(120deg, rgba(53, 92, 255, 0.18), transparent 38%),
    radial-gradient(circle at 24% 20%, rgba(135, 245, 155, 0.22), transparent 9rem);
  transition: opacity 180ms ease;
}

.process-card::after {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.15rem;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.process-card:hover,
.process-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(135, 245, 155, 0.42);
  background: rgba(16, 22, 20, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.process-card:hover::before,
.process-card.is-active::before {
  opacity: 1;
}

.process-card.is-active::after {
  transform: scaleX(1);
}

.process-card strong,
.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card strong {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: #06110a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.process-card h3 {
  margin: 1.2rem 0 1.3rem;
  font-size: 1.28rem;
}

.process-visual {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 17.5rem;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 235, 0.14);
  border-radius: 8px;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(17, 205, 245, 0.19), transparent 10rem),
    rgba(12, 15, 14, 0.76);
}

.build-orb {
  position: relative;
  width: 10.5rem;
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(244, 240, 235, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 245, 155, 0.18), transparent 62%);
  animation: orbBreathe 2.8s ease-in-out infinite;
}

.build-orb span {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(135, 245, 155, 0.28);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.build-orb span:nth-child(2) {
  inset: 28%;
  border-color: rgba(17, 205, 245, 0.35);
  animation-duration: 5s;
  animation-direction: reverse;
}

.build-orb span:nth-child(3) {
  inset: 43%;
  border-style: solid;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(17, 205, 245, 0.36);
}

.build-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(244, 240, 235, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(5, 6, 6, 0.48);
}

.build-panel small {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.build-panel h3 {
  margin: 0.65rem 0 0.45rem;
}

.build-panel p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.build-meter {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 240, 235, 0.12);
}

.build-meter span {
  display: block;
  width: var(--meter, 34%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  transition: width 260ms ease;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 28rem);
  gap: 2rem;
  align-items: start;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: #d8d4cd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 240, 235, 0.14);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--text);
  outline: 0;
  background: rgba(5, 6, 6, 0.62);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(135, 245, 155, 0.55);
  box-shadow: 0 0 0 4px rgba(135, 245, 155, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

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

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

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

@keyframes scan {
  0%, 100% { transform: translateY(-7rem); opacity: 0; }
  20%, 70% { opacity: 1; }
  50% { transform: translateY(10rem); }
}

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

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes loaderScan {
  0%, 100% { transform: translateY(-4.8rem); opacity: 0; }
  25%, 70% { opacity: 1; }
  50% { transform: translateY(4.8rem); }
}

@keyframes loaderBar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(240%); }
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.04); }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    position: sticky;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.85rem 0;
    background: rgba(5, 6, 6, 0.78);
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid rgba(244, 240, 235, 0.1);
    border-radius: 999px;
    padding: 0.35rem;
    background: rgba(12, 15, 14, 0.72);
  }

  .nav-links a {
    flex: 1;
    border-radius: 999px;
    padding: 0.55rem 0.7rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
  }

  .hero,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 3.4rem;
    gap: 2rem;
  }

  .hero-orbit {
    min-height: 25rem;
  }

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

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

  .process-visual {
    min-height: 20rem;
  }

  .service-card {
    min-height: 14rem;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 18% 12%, rgba(17, 205, 245, 0.16), transparent 17rem),
      radial-gradient(circle at 88% 4%, rgba(135, 245, 155, 0.14), transparent 15rem),
      linear-gradient(180deg, #050606 0%, #090b0a 52%, #050606 100%);
  }

  body::before {
    background-size: 44px 44px;
  }

  .loader {
    gap: 0.9rem;
    padding: 1.4rem;
  }

  .loader-mark {
    width: min(13.5rem, 74vw);
  }

  .loader-copy strong {
    font-size: 1.6rem;
  }

  .loader-copy small {
    max-width: 16rem;
    line-height: 1.5;
  }

  .page-shell {
    width: min(100% - 24px, 460px);
  }

  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
    gap: 0.65rem;
  }

  .brand img {
    width: 3.55rem;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand small {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-width: 6.4rem;
    white-space: nowrap;
  }

  .eyebrow {
    gap: 0.65rem;
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    line-height: 1.4;
    letter-spacing: 0.16em;
  }

  .eyebrow span {
    width: 1.7rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13.2vw, 3.45rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 1;
  }

  .hero {
    padding: 2rem 0 2.7rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-signal {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .hero-signal span {
    padding: 0.42rem 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
    min-height: 3rem;
  }

  .hero-orbit {
    min-height: 19rem;
    border-radius: 8px;
  }

  .logo-stage {
    inset: 18%;
  }

  .orbit-card {
    width: 6.8rem;
    padding: 0.7rem;
  }

  .orbit-card strong {
    font-size: 1.2rem;
  }

  .orbit-card span {
    font-size: 0.64rem;
  }

  .card-a {
    left: 0.7rem;
    top: 2.6rem;
  }

  .card-b {
    right: 0.7rem;
    top: 7.4rem;
  }

  .card-c {
    left: 1rem;
    bottom: 1rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

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

  .stats div {
    min-height: 8.1rem;
    padding: 1.1rem 0.85rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stats div:nth-child(2n) {
    border-right: 0;
  }

  .stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stats strong,
  .stats span {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .stats p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .split-section,
  .process,
  .contact-band {
    padding: 3.5rem 0;
    scroll-margin-top: 9.4rem;
  }

  .service-grid,
  .process-console {
    gap: 0.85rem;
    margin-top: 1.4rem;
  }

  .service-card {
    min-height: auto;
    padding: 1rem;
    transform: none !important;
  }

  .service-card h3 {
    margin: 1rem 0 0.55rem;
  }

  .service-card > span,
  .process-card strong {
    width: 2.35rem;
    height: 2.35rem;
  }

  .process-list {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0 0 0.4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process-list::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    flex: 0 0 84%;
    min-height: 15rem;
    padding: 1rem;
    scroll-snap-align: start;
  }

  .process-card:hover,
  .process-card.is-active {
    transform: translateY(-3px);
  }

  .process-card h3 {
    margin: 0.95rem 0 0.9rem;
    font-size: 1.12rem;
  }

  .process-card p {
    font-size: 0.94rem;
  }

  .process-visual {
    min-height: 18rem;
    padding: 1rem;
  }

  .build-orb {
    width: 8.4rem;
  }

  .build-panel {
    padding: 0.9rem;
  }

  .contact-band {
    gap: 1.3rem;
  }

  .contact-form {
    padding: 0.85rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 3rem;
    padding: 0.85rem;
  }

  .contact-form textarea {
    min-height: 7rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.86rem;
  }

  .site-footer p {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }
}

@media (hover: none) and (pointer: coarse) {
  .cursor-light {
    display: none;
  }

  .magnetic,
  .tilt-card,
  .process-card:hover {
    transform: none !important;
  }

  .service-card::before,
  .process-card::before {
    opacity: 0.85;
  }

  .service-card:hover {
    box-shadow: none;
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
  }

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

  .stats div,
  .stats div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .process-card {
    flex-basis: 90%;
  }
}

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