:root {
  color-scheme: dark;
  --noir: #03040a;
  --graphite: #0d1019;
  --glass: rgba(255, 255, 255, 0.065);
  --ink: #f5f8ff;
  --soft: #dbe7f8;
  --muted: #9aa8bd;
  --line: rgba(220, 232, 255, 0.16);
  --line-bright: rgba(130, 245, 255, 0.42);
  --cyan: #77f5ff;
  --violet: #9d7cff;
  --champagne: #f1cf9a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --glow: 0 0 48px rgba(119, 245, 255, 0.18);
  --max: 1180px;
  --space-section: clamp(72px, 9vw, 112px);
  --space-section-tight: clamp(34px, 5vw, 56px);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--noir);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 4%, rgba(119, 245, 255, 0.12), transparent 30vw),
    radial-gradient(circle at 82% 14%, rgba(157, 124, 255, 0.13), transparent 34vw),
    linear-gradient(180deg, #04050b 0%, #090b13 42%, #03040a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 9px 9px, 88px 88px, 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 82%);
}

body::after {
  z-index: 90;
  opacity: 0.2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
}

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

::selection {
  background: rgba(119, 245, 255, 0.24);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 120;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: #050713;
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-premium);
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

main:focus {
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  border-bottom: 1px solid rgba(220, 232, 255, 0.12);
  background: rgba(3, 4, 10, 0.7);
  backdrop-filter: blur(20px);
}

.site-header__inner,
.section,
.footer-grid,
.hero__content {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
nav,
.header-actions,
.button,
.status-pill,
.metric-pill,
.footer-brand,
.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 11px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-type {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(119, 245, 255, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(119, 245, 255, 0.18), rgba(157, 124, 255, 0.12)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 36px rgba(119, 245, 255, 0.16);
}

.navoo-logo {
  width: 26px;
  height: 26px;
  overflow: visible;
}

.navoo-logo path:first-child {
  fill: var(--ink);
}

.navoo-logo path:last-child {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 40;
}

nav {
  gap: 18px;
}

nav a,
.header-actions a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: color 180ms ease;
}

nav a,
.header-actions a {
  min-height: 44px;
}

nav a:hover,
.header-actions a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 8px;
}

.header-actions button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  color: var(--muted);
  font-weight: 850;
  padding: 0 11px;
}

.header-actions button[aria-pressed="true"] {
  border-color: rgba(119, 245, 255, 0.7);
  color: var(--cyan);
}

.button {
  min-height: 46px;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 880;
  text-decoration: none;
  transition: transform 180ms var(--ease-premium), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #abfbff, var(--cyan) 38%, var(--champagne));
  color: #03040a;
  box-shadow: 0 18px 48px rgba(119, 245, 255, 0.28), inset 0 1px rgba(255, 255, 255, 0.42);
}

.button--secondary {
  border-color: rgba(220, 232, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.atelier-hero,
.final-cinematic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.atelier-hero {
  min-height: calc(100svh - 76px);
  border-bottom: 1px solid rgba(220, 232, 255, 0.12);
}

.atelier-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 10, 0.96) 0%, rgba(3, 4, 10, 0.82) 45%, rgba(3, 4, 10, 0.2) 100%),
    radial-gradient(circle at 70% 42%, rgba(119, 245, 255, 0.18), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(157, 124, 255, 0.16), transparent 24%);
}

.hero-canvas,
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-glow {
  position: absolute;
  inset: 12% -8% auto auto;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(119, 245, 255, 0.24), transparent 58%),
    radial-gradient(circle at 30% 70%, rgba(241, 207, 154, 0.12), transparent 36%);
  filter: blur(30px);
  z-index: -1;
}

.atelier-hero__grid {
  display: grid;
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  padding: 86px 0 72px;
}

.hero__copy {
  max-width: 780px;
}

.hero-logo-lockup {
  gap: 12px;
  margin-bottom: 22px;
}

.hero-logo-text {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navoo-sigil {
  position: relative;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(119, 245, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(119, 245, 255, 0.16), rgba(157, 124, 255, 0.1)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 42px rgba(119, 245, 255, 0.2);
}

.navoo-sigil--large {
  width: 64px;
  height: 64px;
}

.navoo-sigil span {
  position: absolute;
  border-radius: 8px;
}

.navoo-sigil span:first-child {
  width: 28px;
  height: 36px;
  border: 2px solid var(--ink);
  transform: skewX(-12deg);
}

.navoo-sigil span:last-child {
  width: 46px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(119, 245, 255, 0.62);
  transform: rotate(-38deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 1060px;
  font-size: clamp(52px, 8vw, 126px);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-lede,
.hero p {
  max-width: 700px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.inline-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section-actions--center {
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li,
.status-pill,
.metric-pill {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 7px 10px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  min-height: min(58vw, 620px);
  transform: translateY(var(--parallax-y, 0)) rotate(var(--parallax-r, 0));
  perspective: 1100px;
}

.spatial-field {
  position: relative;
  width: min(560px, 86vw);
  aspect-ratio: 1;
  margin-left: auto;
  transform-style: preserve-3d;
}

.orbit,
.data-beam,
.server-core,
.cloud-core,
.floating-window {
  position: absolute;
}

.orbit {
  inset: 13%;
  border: 1px solid rgba(119, 245, 255, 0.18);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-24deg);
}

.orbit--two {
  inset: 5%;
  border-color: rgba(157, 124, 255, 0.2);
  transform: rotateX(64deg) rotateZ(18deg);
}

.orbit--three {
  inset: 24%;
  border-color: rgba(241, 207, 154, 0.18);
  transform: rotateX(72deg) rotateZ(48deg);
}

.floating-window,
.server-core,
.cloud-core {
  border: 1px solid rgba(220, 232, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.048)),
    rgba(8, 12, 22, 0.72);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(18px);
}

.floating-window {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: var(--ink);
}

.floating-window span {
  display: block;
  width: 48px;
  height: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.floating-window strong {
  font-size: 18px;
}

.floating-window em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-window--main {
  right: 8%;
  top: 16%;
  width: min(245px, 54vw);
  min-height: 138px;
  transform: rotateX(58deg) rotateZ(-16deg) translateZ(46px);
}

.floating-window--side {
  left: 6%;
  bottom: 20%;
  width: min(210px, 48vw);
  min-height: 116px;
  transform: rotateX(60deg) rotateZ(18deg) translateZ(28px);
}

.server-core {
  left: 38%;
  top: 38%;
  width: 126px;
  height: 176px;
  transform: rotateX(58deg) rotateZ(-35deg) translateZ(64px);
}

.server-core i {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 10px;
  border-radius: 8px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(119, 245, 255, 0.46);
}

.server-core i:nth-child(1) {
  top: 38px;
}

.server-core i:nth-child(2) {
  top: 72px;
  background: var(--violet);
}

.server-core i:nth-child(3) {
  top: 106px;
  background: var(--champagne);
}

.cloud-core {
  display: grid;
  right: 14%;
  bottom: 12%;
  width: 176px;
  height: 92px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: end;
  padding: 14px;
  transform: rotateX(62deg) rotateZ(18deg) translateZ(16px);
}

.cloud-core b {
  display: block;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(119, 245, 255, 0.78), rgba(119, 245, 255, 0.1));
}

.cloud-core b:nth-child(1) {
  height: 34px;
}

.cloud-core b:nth-child(2) {
  height: 56px;
  background: linear-gradient(180deg, rgba(157, 124, 255, 0.78), rgba(157, 124, 255, 0.1));
}

.cloud-core b:nth-child(3) {
  height: 42px;
  background: linear-gradient(180deg, rgba(241, 207, 154, 0.78), rgba(241, 207, 154, 0.1));
}

.data-beam {
  width: 2px;
  height: 160px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  filter: drop-shadow(0 0 14px rgba(119, 245, 255, 0.7));
}

.data-beam--one {
  left: 23%;
  top: 18%;
  transform: rotate(54deg);
}

.data-beam--two {
  right: 24%;
  bottom: 22%;
  transform: rotate(-42deg);
  background: linear-gradient(180deg, transparent, var(--champagne), transparent);
}

.section {
  padding: var(--space-section) 0;
}

.section--tight {
  padding: var(--space-section-tight) 0;
}

main > section:not(.atelier-hero):not(.staging-banner) {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.section-header {
  max-width: 840px;
  margin-bottom: 36px;
}

.section-header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.story-board {
  position: relative;
  border-bottom: 1px solid rgba(220, 232, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
    radial-gradient(circle at 18% 20%, rgba(241, 207, 154, 0.09), transparent 28%);
}

.story-board__inner {
  min-height: 70svh;
  display: grid;
  align-content: center;
}

.story-line {
  max-width: 1100px;
  margin-bottom: 8px;
  font-size: clamp(42px, 8vw, 128px);
}

.story-line--muted {
  color: rgba(245, 248, 255, 0.34);
}

.story-board p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 19px;
}

.grid,
.sector-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

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

.package-card,
.content-panel,
.form-panel,
.sector-card,
.dashboard-preview,
.timeline-step,
.studio-package,
.world-node {
  position: relative;
  border: 1px solid rgba(220, 232, 255, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 20%), rgba(119, 245, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.package-card,
.content-panel,
.sector-card,
.timeline-step,
.world-node {
  padding: 24px;
}

.package-card,
.sector-card,
.timeline-step,
.world-node,
.studio-package,
.dashboard-preview {
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.package-card:hover,
.sector-card:hover,
.timeline-step:hover,
.world-node:hover,
.studio-package:hover,
.dashboard-preview:hover {
  border-color: var(--line-bright);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.5), 0 0 48px rgba(119, 245, 255, 0.14);
}

.package-card--featured {
  border-color: rgba(119, 245, 255, 0.66);
}

.package-card h3 span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.package-card ul,
.check-list {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  color: var(--muted);
}

.package-card .button,
.sector-card .button {
  margin-top: 12px;
}

.service-world-section {
  position: relative;
}

.service-world {
  position: relative;
  min-height: 720px;
  border: 1px solid rgba(220, 232, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(119, 245, 255, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.service-world::before,
.service-world::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-world::before {
  inset: 15%;
  border: 1px solid rgba(119, 245, 255, 0.18);
}

.service-world::after {
  inset: 29%;
  border: 1px solid rgba(157, 124, 255, 0.16);
  transform: rotate(22deg);
}

.world-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid rgba(119, 245, 255, 0.28);
  border-radius: 50%;
  background: rgba(5, 8, 16, 0.72);
  box-shadow: 0 0 88px rgba(119, 245, 255, 0.24);
  transform: translate(-50%, -50%);
}

.world-node {
  position: absolute;
  z-index: 3;
  width: min(260px, 36vw);
  min-height: 170px;
}

.world-node span {
  color: var(--champagne);
  font-weight: 950;
}

.world-node--hosting {
  left: 7%;
  top: 10%;
}

.world-node--wordpress {
  right: 9%;
  top: 13%;
}

.world-node--ai {
  left: 39%;
  top: 3%;
}

.world-node--ssl {
  left: 10%;
  bottom: 12%;
}

.world-node--dashboard {
  right: 9%;
  bottom: 13%;
}

.world-node--backup {
  left: 39%;
  bottom: 4%;
}

.sector-card {
  min-height: 295px;
  display: grid;
  align-content: space-between;
}

.sector-card::after,
.package-card::after,
.world-node::after {
  content: "";
  position: absolute;
  inset: auto -22% -42% 14%;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 245, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.cinematic-timeline {
  counter-reset: flow;
  display: grid;
  gap: 14px;
}

.cinematic-timeline {
  position: relative;
}

.cinematic-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), rgba(157, 124, 255, 0.28), transparent);
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-step::before {
  counter-increment: flow;
  content: "0" counter(flow);
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(119, 245, 255, 0.5);
  border-radius: 8px;
  background: rgba(5, 8, 16, 0.86);
  color: var(--cyan);
  font-weight: 950;
}

.sector-card::before,
.package-card::before,
.studio-package::before,
.world-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.sector-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(119, 245, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(119, 245, 255, 0.18), rgba(241, 207, 154, 0.12));
  color: var(--cyan);
  font-weight: 950;
}

.studio-package {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
}

.dashboard-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
}

.dashboard-preview {
  padding: 18px;
}

.dashboard-preview--cinematic {
  background:
    radial-gradient(circle at 70% 12%, rgba(119, 245, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.dashboard-topbar,
.dashboard-grid,
.dashboard-list {
  display: grid;
  gap: 12px;
}

.dashboard-topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 16px;
}

.dashboard-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.dashboard-card--wide {
  grid-column: 1 / -1;
}

.dashboard-card strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.dashboard-list {
  margin-top: 12px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}

.final-cinematic {
  min-height: 72svh;
  display: grid;
  align-items: center;
  border-top: 1px solid rgba(220, 232, 255, 0.1);
}

.final-cinematic__panel {
  max-width: 920px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(220, 232, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 15%, rgba(241, 207, 154, 0.13), transparent 34%),
    rgba(8, 12, 22, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-panel {
  padding: 24px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 850;
}

.staging-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(119, 245, 255, 0.1), rgba(241, 207, 154, 0.08), rgba(157, 124, 255, 0.08));
}

.staging-banner .section {
  padding: 18px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 4, 10, 0.92);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 24px;
}

.site-footer section {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer h2 {
  font-size: 16px;
}

.footer-brand {
  gap: 12px;
  font-weight: 950;
}

[data-animate] {
  opacity: 0.001;
  transform: translateY(28px);
  transition: opacity 640ms ease, transform 640ms var(--ease-premium);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-cursor {
  position: fixed;
  top: -12px;
  left: -12px;
  z-index: 100;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(119, 245, 255, 0.82);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: width 180ms ease, height 180ms ease, margin 180ms ease, background 180ms ease;
}

.custom-cursor.is-active {
  width: 46px;
  height: 46px;
  margin: -11px 0 0 -11px;
  background: rgba(119, 245, 255, 0.08);
}

.mobile-cta-bar {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .navoo-logo path:last-child {
    animation: logo-draw 2.2s ease both;
  }

  .navoo-sigil span:last-child {
    animation: sigil-scan 3.5s ease-in-out infinite;
  }

  .spatial-field {
    animation: scene-float 8s ease-in-out infinite;
  }

  .floating-window--main,
  .world-node--ai,
  .world-node--dashboard {
    animation: scene-drift 7s ease-in-out infinite;
  }

  .floating-window--side,
  .world-node--hosting,
  .world-node--backup {
    animation: scene-drift 9s ease-in-out infinite reverse;
  }

  .orbit--one {
    animation: slow-spin 24s linear infinite;
  }

  .orbit--two {
    animation: slow-spin 32s linear infinite reverse;
  }
}

@keyframes logo-draw {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes sigil-scan {
  0%,
  100% {
    opacity: 0.58;
    transform: rotate(-38deg) translateX(-3px);
  }
  50% {
    opacity: 1;
    transform: rotate(-38deg) translateX(4px);
  }
}

@keyframes scene-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes scene-drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -13px;
  }
}

@keyframes slow-spin {
  to {
    rotate: 360deg;
  }
}

@media (max-width: 1120px) {
  .world-node {
    width: min(240px, 40vw);
  }
}

@media (max-width: 920px) {
  .site-header__inner,
  nav,
  .header-actions,
  .hero-actions,
  .inline-actions {
    align-items: stretch;
  }

  .site-header__inner,
  .atelier-hero__grid,
  .grid--3,
  .grid--2,
  .sector-grid,
  .pricing-grid,
  .form-grid,
  .footer-grid,
  .dashboard-grid,
  .dashboard-stage,
  .studio-package {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
    padding: 14px 0;
  }

  nav,
  .header-actions {
    flex-wrap: wrap;
  }

  .atelier-hero,
  .atelier-hero__grid,
  .hero,
  .hero__content {
    min-height: auto;
  }

  .atelier-hero__grid {
    padding-top: 76px;
  }

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

  .spatial-field {
    margin: 0 auto;
  }

  .service-world {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 16px;
  }

  .service-world::before,
  .service-world::after,
  .world-core {
    display: none;
  }

  .world-node {
    position: relative;
    inset: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .section,
  .hero__content {
    width: min(var(--max), calc(100vw - 24px));
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(42px, 13vw, 52px);
    line-height: 0.96;
  }

  h2,
  .story-line {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .section-actions {
    gap: 10px;
  }

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

  .floating-window--main {
    right: 0;
  }

  .floating-window--side {
    left: 0;
  }

  .server-core {
    width: 106px;
    height: 150px;
  }

  body.home-page {
    padding-bottom: 78px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid rgba(220, 232, 255, 0.16);
    border-radius: 8px;
    background: rgba(3, 4, 10, 0.84);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.48);
    padding: 8px;
    backdrop-filter: blur(18px);
  }

  .mobile-cta-bar .button {
    min-height: 44px;
    padding: 0 12px;
  }
}

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

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

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

  .custom-cursor {
    display: none;
  }
}
