:root {
  --navy-950: #030a14;
  --navy-900: #07172a;
  --navy-800: #0b2238;
  --blue-600: #0066e6;
  --blue-500: #0085ff;
  --green-500: #39d353;
  --green-400: #62e84d;
  --text-primary: #f5f9ff;
  --text-body: #eaf2f8;
  --text-secondary: #9aaabc;
  --text-muted: #6f8092;
  --border: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(0, 102, 230, 0.25);
  --border-green: rgba(57, 211, 83, 0.2);
  --white: #f5f9ff;
  --gradient: linear-gradient(135deg, #0066e6 0%, #0085ff 45%, #39d353 100%);
  --header-h: 76px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: Inter, sans-serif;
  --page-gutter: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--navy-950);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.container,
.nav {
  width: min(1180px, calc(100% - (var(--page-gutter) * 2))) !important;
  max-width: 1180px;
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: var(--page-gutter);
  top: -48px;
  z-index: 10001;
  background: var(--blue-600);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 10000;
  background: var(--gradient);
  transform-origin: left;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .service-card,
body.has-custom-cursor .hardware-card,
body.has-custom-cursor .benefit-card {
  cursor: none;
}

body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-500);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 133, 255, 0.55);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

body.cursor-hover .cursor-ring {
  width: 46px;
  height: 46px;
  border-color: var(--green-500);
}

body.cursor-card .cursor-ring {
  width: 42px;
  height: 42px;
  border-color: rgba(57, 211, 83, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 10, 20, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 10, 20, 0.88);
  border-bottom-color: var(--border);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 150px;
  height: 64px;
  animation: fade-in 0.8s ease both;
}

.nav-logo img {
  width: 150px !important;
  height: 64px !important;
  max-width: 150px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.card-icon svg,
.contact-list svg,
.back-to-top svg,
.footer-social svg {
  width: 20px;
  height: 20px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient);
  transition: transform 0.28s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--text-primary);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gradient);
  color: #041018;
  box-shadow: 0 10px 24px rgba(0, 102, 230, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(57, 211, 83, 0.22);
}

.btn-secondary {
  background: rgba(7, 23, 42, 0.7);
  color: var(--text-primary);
  border: 1px solid var(--border-blue);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--green-500);
  box-shadow: 0 0 0 1px rgba(57, 211, 83, 0.2);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 48px 0 80px;
  overflow: clip;
}

.hero-bg,
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 230, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-blue {
  width: 420px;
  height: 420px;
  left: -80px;
  top: 10%;
  background: rgba(0, 102, 230, 0.18);
}

.hero-glow-green {
  width: 280px;
  height: 280px;
  right: 4%;
  bottom: 8%;
  background: rgba(57, 211, 83, 0.1);
}

.hero-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(0, 102, 230, 0.22);
}

.particle-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 2px;
  opacity: 0.35;
  animation: float-y 12s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  animation: fade-up 0.7s 0.1s ease both;
}

.hero-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 18ch;
  animation: fade-up 0.8s 0.18s ease both;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin: 0 0 28px;
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  animation: fade-up 0.8s 0.32s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fade-up 0.8s 0.44s ease both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  animation: fade-in 1s 0.5s ease both;
}

.n-structure {
  width: min(100%, 420px);
  filter: drop-shadow(0 20px 40px rgba(0, 102, 230, 0.18));
}

.n-bit {
  animation: bit-float 5s ease-in-out infinite;
}

.n-bit-2,
.n-bit-5,
.n-bit-7 {
  animation-delay: 0.6s;
}

.n-bit-3,
.n-bit-6,
.n-bit-8 {
  animation-delay: 1.2s;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2,
.cta-copy h2,
.about-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.section-desc,
.about-copy p,
.cta-copy p {
  color: var(--text-secondary);
  max-width: 640px;
}

.section-services {
  background: var(--navy-950);
}

.service-grid,
.hardware-grid,
.benefit-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.hardware-card,
.benefit-card,
.contact-card {
  position: relative;
  background: var(--navy-900);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card::before,
.hardware-card::before {
  content: "";
  position: absolute;
  inset: auto 28px 0 28px;
  height: 2px;
  background: var(--gradient);
  opacity: 0.7;
  border-radius: 2px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 20% 20% auto;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 102, 230, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card.accent-green::after {
  background: radial-gradient(circle, rgba(57, 211, 83, 0.16), transparent 70%);
}

.service-card:hover,
.hardware-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  background: #0a1d33;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--blue-500);
  background: rgba(0, 102, 230, 0.08);
  border: 1px solid var(--border-blue);
  transition: transform 0.3s ease;
}

.accent-green .card-icon {
  color: var(--green-500);
  border-color: var(--border-green);
  background: rgba(57, 211, 83, 0.08);
}

.accent-dual .card-icon {
  color: var(--blue-500);
  background: linear-gradient(135deg, rgba(0, 102, 230, 0.12), rgba(57, 211, 83, 0.1));
}

.service-card:hover .card-icon,
.benefit-card:hover .card-icon {
  transform: translateY(-3px);
}

.service-card h3,
.hardware-card h3,
.benefit-card h3,
.process-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.service-card p,
.hardware-card p,
.benefit-card p,
.process-step p {
  margin: 0;
  color: var(--text-secondary);
}

.section-about {
  background: linear-gradient(180deg, #04101c 0%, var(--navy-950) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-svg {
  width: 100%;
  height: auto;
}

.about-copy p + p {
  margin-top: 14px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.stat {
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section-capabilities {
  background: var(--navy-950);
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.capability-tags li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--navy-900);
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.capability-graph {
  position: relative;
  height: 520px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(0, 102, 230, 0.1), transparent 42%),
    var(--navy-900);
  overflow: clip;
}

.capability-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cap-line {
  stroke: url(#nGrad);
  stroke: #0066e6;
  stroke-opacity: 0.35;
  stroke-dasharray: 5 8;
  animation: dash 18s linear infinite;
}

.cap-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 108px;
  min-height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--navy-950), var(--navy-950)), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  box-shadow: 0 0 40px rgba(0, 133, 255, 0.18);
}

.cap-node {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 23, 42, 0.92);
  border: 1px solid var(--border-blue);
  color: var(--text-primary);
  font-size: 0.82rem;
  white-space: nowrap;
}

.cap-top { top: 28px; left: 50%; transform: translateX(-50%); }
.cap-bottom { bottom: 28px; left: 50%; transform: translateX(-50%); }
.cap-left { top: 50%; left: 28px; transform: translateY(-50%); }
.cap-right { top: 50%; right: 28px; transform: translateY(-50%); }
.cap-tl { top: 18%; left: 8%; }
.cap-tr { top: 18%; right: 8%; border-color: var(--border-green); }
.cap-bl { bottom: 18%; left: 8%; border-color: var(--border-green); }
.cap-br { bottom: 18%; right: 8%; }

.capability-stack {
  display: none;
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--navy-900);
}

.capability-stack .cap-core {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: 0 auto 16px;
}

.stack-label {
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.capability-stack li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

.section-hardware {
  background: #061525;
}

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

.hw-visual {
  width: 88px;
  height: 64px;
  margin-bottom: 16px;
}

.hardware-card h3 {
  font-size: 1.05rem;
}

.section-why {
  background: var(--navy-950);
}

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

.section-process {
  background: linear-gradient(180deg, var(--navy-950), #040d18);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--gradient);
  opacity: 0.55;
}

.process-step {
  position: relative;
  padding-top: 8px;
}

.step-index {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid var(--border-blue);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-step.is-active .step-index,
.process-step.in-view .step-index {
  border-color: var(--green-500);
  box-shadow: 0 0 18px rgba(57, 211, 83, 0.25);
}

.section-cta {
  position: relative;
  overflow: clip;
  padding: 108px 0;
  background: var(--navy-950);
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
  padding: 8px;
  border: 1px solid var(--border-blue);
  border-radius: 28px;
  background: rgba(7, 23, 42, 0.55);
}

.cta-copy,
.contact-card {
  padding: 36px;
}

.contact-card {
  background: rgba(3, 10, 20, 0.72);
  backdrop-filter: blur(10px);
}

.contact-brand {
  margin: 0 0 8px;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-500);
  font-size: 0.8rem;
}

.contact-lead {
  margin: 0 0 24px;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.contact-list a:hover,
.footer a:hover {
  color: var(--text-primary);
}

.contact-list svg,
.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
}

.site-footer {
  background: #02080f;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 64px !important;
  width: auto !important;
  max-width: 180px;
  max-height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-tagline {
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a,
.footer-contact {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-placeholder {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  right: var(--page-gutter);
  bottom: var(--page-gutter);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-blue);
  background: var(--navy-900);
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  border-color: var(--green-500);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="fade-left"] {
  transform: translateX(24px);
}

[data-reveal="fade-right"] {
  transform: translateX(-24px);
}

[data-reveal="scale-in"] {
  transform: scale(0.97);
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes float-y {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

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

@keyframes dash {
  to { stroke-dashoffset: -120; }
}

@media (max-width: 1100px) {
  .hardware-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-graph {
    display: none;
  }

  .capability-stack {
    display: block;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 40px;
  }

  .hero-inner,
  .about-grid,
  .cta-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: none;
  }

  .hero-visual {
    order: 2;
  }

  .n-structure {
    width: min(100%, 320px);
  }

  .benefit-grid,
  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline::before {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --page-gutter: 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px var(--page-gutter) 28px;
    background: rgba(3, 10, 20, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 12px 4px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .benefit-grid,
  .process-timeline,
  .stat-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    border-left: 2px solid transparent;
    border-image: var(--gradient) 1;
    margin-left: 52px;
    padding-left: 28px;
  }

  .step-index {
    position: absolute;
    left: -52px;
    top: 0;
  }

  .section {
    padding: 80px 0;
  }

  .cta-copy,
  .contact-card {
    padding: 24px;
  }

  .particle-layer .particle:nth-child(n + 10) {
    display: none;
  }
}

@media (max-width: 480px) {
  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo {
    width: 120px;
    height: 52px;
  }

  .nav-logo img {
    width: 120px !important;
    height: 52px !important;
    max-width: 120px;
    max-height: 52px;
  }

  .hero-title {
    font-size: 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}
