* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

body {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  color: #f3f0e8;
  background: #05070d;
}

.eyebrow,
.section__kicker {
  margin: 0 0 16px;
  color: #f1d28d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

[data-split] {
  font-kerning: none;
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

:root {
  --color-black: #05070d;
  --color-ink: #0b1020;
  --color-navy: #071936;
  --color-navy-soft: #10274d;
  --color-gold: #c9a45c;
  --color-gold-light: #f1d28d;
  --color-platinum: #f3f0e8;
  --color-muted: #a8b0c2;
  --color-white: #ffffff;
}

:root,
[data-theme=elegant] {
  --theme-name: "elegant";
}

[data-theme=neon] {
  --theme-name: "neon";
  --color-black: #0f172a;
  --color-ink: #111827;
  --color-navy: #0f172a;
  --color-navy-soft: #164e63;
  --color-gold: #bef227;
  --color-gold-light: #d9ff63;
  --color-cyan: #22d3ee;
  --color-platinum: #f8fafc;
  --color-muted: #cbd5e1;
  --color-white: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(243, 240, 232, 0.76);
  font-size: 0.94rem;
}
.nav__links a, .nav__action {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav__links a:hover {
  color: #f1d28d;
}
.nav__action {
  border: 1px solid rgba(241, 210, 141, 0.5);
  border-radius: 999px;
  padding: 11px 18px;
  color: #f1d28d;
  font-weight: 700;
}
.nav__action:hover {
  background: rgba(201, 164, 92, 0.12);
  border-color: #f1d28d;
}

.nav__tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #05070d;
  background: linear-gradient(135deg, #f1d28d, #c9a45c 58%, #8c6b2d);
  box-shadow: 0 12px 30px rgba(201, 164, 92, 0.22);
}
.brand__text {
  color: #ffffff;
}

.theme-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(241, 210, 141, 0.36);
  border-radius: 999px;
  padding: 0 14px;
  color: #f3f0e8;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 210, 141, 0.7);
  background: rgba(201, 164, 92, 0.1);
}
.theme-toggle__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f1d28d;
  box-shadow: 0 0 18px rgba(241, 210, 141, 0.45);
}

@media (max-width: 920px) {
  .nav__links {
    display: none;
  }
}
@media (max-width: 620px) {
  .service-modal {
    align-items: end;
    padding: 14px;
  }
  .service-modal__panel {
    padding: 28px 20px 22px;
  }
  .service-modal__list {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 68px;
  }
  .nav__tools {
    gap: 8px;
  }
  .nav__action {
    display: none;
  }
  .theme-toggle {
    min-height: 38px;
    padding: 0 11px;
  }
  .brand__text {
    font-size: 0.96rem;
  }
}
.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 78%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}
.button:hover::after {
  transform: translateX(120%);
}
.button:hover {
  transform: translateY(-3px);
}
.button--primary {
  color: #05070d;
  background: linear-gradient(135deg, #f1d28d, #c9a45c);
  box-shadow: 0 16px 34px rgba(201, 164, 92, 0.24);
}
.button--ghost {
  color: #f3f0e8;
  border-color: rgba(243, 240, 232, 0.28);
  background: rgba(255, 255, 255, 0.05);
}
.button--ghost:hover {
  border-color: rgba(241, 210, 141, 0.66);
}

.service-card {
  min-width: 0;
  min-height: 300px;
  border: 1px solid rgba(241, 210, 141, 0.22);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.service-card:hover, .service-card:focus-visible {
  border-color: rgba(241, 210, 141, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 60px rgba(5, 7, 13, 0.34), 0 0 0 1px rgba(201, 164, 92, 0.1);
  transform: translateY(-8px) rotateX(2deg);
  outline: none;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 210, 141, 0.42);
  border-radius: 8px;
  color: #f1d28d;
  font-weight: 800;
}
.service-card h3 {
  margin: 54px 0 14px;
  color: #ffffff;
  font-size: 1.35rem;
}
.service-card p {
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  line-height: 1.65;
}

.metric {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(241, 210, 141, 0.22);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform-origin: center;
  background: radial-gradient(circle at 20% 0%, rgba(241, 210, 141, 0.14), transparent 38%), rgba(16, 39, 77, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.metric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08), transparent 78%);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}
.metric:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 210, 141, 0.54);
  box-shadow: 0 28px 70px rgba(201, 164, 92, 0.1), 0 18px 50px rgba(5, 7, 13, 0.34);
}
.metric:hover::after {
  transform: translateX(110%);
}
.metric strong {
  position: relative;
  z-index: 1;
  color: #f1d28d;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}
.metric span {
  position: relative;
  z-index: 1;
  color: rgba(243, 240, 232, 0.78);
  line-height: 1.45;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  perspective: 1400px;
  transition: opacity 180ms ease;
}
.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201, 164, 92, 0.18), transparent 34%), rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(18px);
}
.service-modal__panel {
  position: relative;
  width: min(780px, 100%);
  border: 1px solid rgba(241, 210, 141, 0.28);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
  color: #f3f0e8;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)), linear-gradient(135deg, rgba(7, 25, 54, 0.96), rgba(5, 7, 13, 0.98));
  box-shadow: 0 34px 90px rgba(5, 7, 13, 0.62);
  transform-style: preserve-3d;
  overflow: hidden;
}
.service-modal__panel > *:not(.service-modal__glow):not(.service-modal__close) {
  position: relative;
  z-index: 1;
}
.service-modal__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -160px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 210, 141, 0.22), rgba(201, 164, 92, 0.08) 38%, transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}
.service-modal .section__kicker {
  opacity: 0;
}
.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 240, 232, 0.2);
  border-radius: 50%;
  color: #f3f0e8;
  background: rgba(5, 7, 13, 0.36);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.service-modal__close:hover, .service-modal__close:focus-visible {
  border-color: rgba(241, 210, 141, 0.7);
  color: #f1d28d;
  transform: rotate(90deg);
  outline: none;
}
.service-modal h2 {
  max-width: 660px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
}
.service-modal__description {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(243, 240, 232, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
  opacity: 0;
}
.service-modal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}
.service-modal__list li {
  border: 1px solid rgba(241, 210, 141, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  color: rgba(243, 240, 232, 0.84);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.service-modal__list li:hover {
  border-color: rgba(241, 210, 141, 0.42);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.modal-open {
  overflow: hidden;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(241, 210, 141, 0.22);
  border-radius: 8px;
  padding: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)), rgba(5, 7, 13, 0.26);
  transform-style: preserve-3d;
  box-shadow: 0 28px 70px rgba(5, 7, 13, 0.24);
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.contact-form__shine {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(241, 210, 141, 0.18), transparent);
  filter: blur(10px);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
.contact-form__field {
  position: relative;
  z-index: 1;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #f3f0e8;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 240, 232, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  color: #ffffff;
  background: rgba(5, 7, 13, 0.48);
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(241, 210, 141, 0.78);
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.12);
  background: rgba(5, 7, 13, 0.62);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(243, 240, 232, 0.66);
  border-top: 1px solid rgba(243, 240, 232, 0.12);
}

@media (max-width: 620px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 164, 92, 0.16);
}
.hero__media, .hero__canvas, .hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__media {
  background: url("../assets/hero-software.png") 72% center/cover no-repeat;
  transform: scale(1.02);
  opacity: 1;
}
.hero__canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__overlay {
  z-index: 2;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.9) 34%, rgba(5, 7, 13, 0.5) 62%, rgba(5, 7, 13, 0.72) 100%), linear-gradient(180deg, rgba(5, 7, 13, 0.38) 0%, rgba(7, 25, 54, 0.08) 48%, rgba(5, 7, 13, 0.96) 100%);
}
.hero__content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 136px 0 86px;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  line-height: 1;
  letter-spacing: 0;
}
.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(243, 240, 232, 0.82);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__summary {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid rgba(241, 210, 141, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}
.hero__summary span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  color: rgba(243, 240, 232, 0.78);
  background: rgba(5, 7, 13, 0.28);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}
.hero__summary span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(241, 210, 141, 0.72);
  border-right: 2px solid rgba(241, 210, 141, 0.72);
  transform: rotate(45deg);
  opacity: 0.75;
  transition: transform 180ms ease, opacity 180ms ease;
}
.hero__summary span:hover {
  color: #ffffff;
  background: rgba(201, 164, 92, 0.09);
}
.hero__summary span:hover::after {
  opacity: 1;
  transform: translateX(4px) rotate(45deg);
}

.section {
  padding: 104px 0;
  background: radial-gradient(circle at 12% 0%, rgba(16, 39, 77, 0.42), transparent 32%), #05070d;
}
.section--intro {
  padding: 78px 0 82px;
  background: linear-gradient(180deg, #05070d, #0b1020);
}
.section__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section__heading {
  max-width: 720px;
  margin-bottom: 38px;
}
.section h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.section p {
  color: #a8b0c2;
  line-height: 1.75;
}

.intro {
  max-width: 900px;
}
.intro h2 {
  max-width: 860px;
}
.intro p:last-child {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.scroll-feature {
  min-height: 190vh;
  background: linear-gradient(180deg, #0b1020 0%, #05070d 28%, #05070d 100%);
  border-block: 1px solid rgba(243, 240, 232, 0.1);
}
.scroll-feature__pin {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(520px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 96px 0;
}
.scroll-feature__copy h2 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 4.35vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.scroll-feature__copy p:last-child {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(243, 240, 232, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}
.scroll-feature__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.scroll-feature__copy [data-split] {
  text-wrap: balance;
}

.software-flow {
  position: absolute;
  top: 50px;
  right: 4%;
  width: min(520px, 92%);
  min-height: 250px;
}
.software-flow__line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  overflow: hidden;
  background: rgba(243, 240, 232, 0.12);
}
.software-flow__line span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #f1d28d, #39c6ef, #c9a45c);
}

.software-node {
  position: absolute;
  width: 116px;
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(241, 210, 141, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)), rgba(5, 7, 13, 0.38);
  box-shadow: 0 22px 70px rgba(5, 7, 13, 0.32);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.software-node::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(241, 210, 141, 0.24), transparent 62%);
  pointer-events: none;
}
.software-node strong {
  color: #f1d28d;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.software-node span {
  color: #ffffff;
  font-weight: 800;
}
.software-node--idea {
  left: 0;
  top: 82px;
}
.software-node--design {
  left: 27%;
  top: 12px;
}
.software-node--code {
  right: 27%;
  top: 138px;
}
.software-node--deploy {
  right: 0;
  top: 54px;
}

.software-node.is-active {
  border-color: rgba(241, 210, 141, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)), rgba(7, 25, 54, 0.42);
  box-shadow: 0 24px 80px rgba(201, 164, 92, 0.16), 0 0 0 1px rgba(241, 210, 141, 0.1);
}
.software-node.is-active::after {
  opacity: 1;
}

.code-window {
  position: relative;
  width: min(560px, 100%);
  margin-top: 250px;
  border: 1px solid rgba(241, 210, 141, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(36, 36, 49, 0.9);
  box-shadow: 0 30px 90px rgba(5, 7, 13, 0.44);
  transform-style: preserve-3d;
}
.code-window__bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}
.code-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(241, 210, 141, 0.72);
}
.code-window pre {
  margin: 0;
  padding: 26px;
  color: rgba(243, 240, 232, 0.92);
  font-size: clamp(0.86rem, 1.5vw, 1.05rem);
  line-height: 1.62;
  white-space: pre-wrap;
}
.code-window code {
  display: block;
  background: linear-gradient(90deg, #f3f0e8 0 0) left/0% 100% no-repeat;
}
.code-window.is-active {
  border-color: rgba(241, 210, 141, 0.38);
  box-shadow: 0 34px 110px rgba(201, 164, 92, 0.12), 0 30px 90px rgba(5, 7, 13, 0.44);
}

.scroll-progress {
  position: absolute;
  right: 0;
  top: 50%;
  width: 84px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: #f1d28d;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 100%;
}

.horizontal-scroll {
  position: relative;
  overflow: hidden;
  background: #05070d;
}

.horizontal-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.horizontal-panel {
  width: 100vw;
  min-height: 100vh;
  flex: 0 0 100vw;
}

.horizontal-panel > section {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.horizontal-progress {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: min(320px, calc(100% - 48px));
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(243, 240, 232, 0.14);
  transform: translateX(-50%);
}

.horizontal-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #f1d28d, #c9a45c);
}

@media (max-width: 1180px) {
  .horizontal-scroll {
    overflow: visible;
  }
  .horizontal-track {
    display: block;
    width: auto;
  }
  .horizontal-panel {
    width: auto;
    min-height: auto;
    flex: initial;
  }
  .horizontal-panel > section {
    min-height: auto;
  }
  .horizontal-progress {
    display: none;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .band__inner,
  .proof {
    grid-template-columns: 1fr;
  }
}

.band {
  padding: 104px 0;
  background: linear-gradient(135deg, #071936 0%, #081126 46%, #05070d 100%);
  border-block: 1px solid rgba(201, 164, 92, 0.16);
}
.band__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}
.band h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.timeline {
  display: grid;
  gap: 14px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, rgba(241, 210, 141, 0), rgba(241, 210, 141, 0.45), rgba(241, 210, 141, 0));
}
.timeline__item {
  display: grid;
  grid-template-columns: 58px 1fr;
  -moz-column-gap: 18px;
       column-gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(243, 240, 232, 0.14);
  position: relative;
}
.timeline__item span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 210, 141, 0.28);
  border-radius: 50%;
  color: #f1d28d;
  font-weight: 800;
  background: rgba(5, 7, 13, 0.58);
  box-shadow: 0 0 0 8px rgba(7, 25, 54, 0.32);
  transform-origin: center;
}
.timeline__item h3 {
  margin: 0 0 8px;
  color: #ffffff;
}
.timeline__item p {
  grid-column: 2;
  margin: 0;
  color: rgba(243, 240, 232, 0.7);
  line-height: 1.65;
}

.proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.proof__copy p:last-child {
  margin-top: 22px;
  max-width: 640px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact {
  padding: 104px 0;
  background: radial-gradient(circle at 10% 28%, rgba(201, 164, 92, 0.08), transparent 30%), linear-gradient(180deg, #0b1020, #05070d);
}
.contact__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.contact__title {
  max-width: 680px;
  text-wrap: balance;
}
.contact p {
  max-width: 560px;
  color: #a8b0c2;
  line-height: 1.75;
}

[data-animate] {
  will-change: transform, opacity;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

@media (max-width: 920px) {
  .horizontal-scroll {
    overflow: visible;
  }
  .horizontal-track {
    display: block;
    width: auto;
  }
  .horizontal-panel {
    width: auto;
    min-height: auto;
    flex: initial;
  }
  .horizontal-panel > section {
    min-height: auto;
  }
  .horizontal-progress {
    display: none;
  }

  .hero {
    min-height: auto;
  }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(5, 7, 13, 0.96), rgba(5, 7, 13, 0.7)), linear-gradient(180deg, rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.94));
  }
  .service-grid,
  .band__inner,
  .proof,
  .contact__inner,
  .scroll-feature__pin {
    grid-template-columns: 1fr;
  }
  .scroll-feature {
    min-height: auto;
  }
  .scroll-feature__pin {
    min-height: auto;
    padding: 86px 0;
  }
  .scroll-feature__visual {
    min-height: 520px;
  }
  .service-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }
  .hero__media {
    background-position: 64% center;
    opacity: 0.72;
  }
  .hero__canvas {
    opacity: 0.72;
  }
  .hero__content {
    padding: 112px 0 64px;
  }
  .hero__summary {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .section,
  .band,
  .contact,
  .scroll-feature__pin {
    padding: 72px 0;
  }
  .scroll-feature__copy h2 {
    font-size: clamp(2.4rem, 12vw, 4.1rem);
  }
  .software-flow {
    right: 0;
    width: 100%;
  }
  .code-window {
    margin-top: 250px;
  }
  .scroll-progress {
    right: 6px;
  }
  .service-grid,
  .metrics {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 250px;
  }
  .service-modal {
    align-items: end;
    padding: 14px;
  }
  .service-modal__panel {
    padding: 28px 20px 22px;
  }
  .service-modal__list {
    grid-template-columns: 1fr;
  }
  .timeline__item {
    grid-template-columns: 44px 1fr;
  }
}

[data-theme=neon] body {
  color: var(--color-platinum);
  background: var(--color-black);
}

[data-theme=neon] .site-header {
  border-bottom-color: rgba(34, 211, 238, 0.18);
  background: rgba(15, 23, 42, 0.82);
}

[data-theme=neon] .brand__mark,
[data-theme=neon] .button--primary {
  color: #0f172a;
  background: linear-gradient(135deg, #f8fafc, #bef227 46%, #22d3ee);
  box-shadow: 0 16px 38px rgba(190, 242, 39, 0.22);
}

[data-theme=neon] .nav__links,
[data-theme=neon] .hero__lead,
[data-theme=neon] .section p,
[data-theme=neon] .contact p,
[data-theme=neon] .service-card p,
[data-theme=neon] .timeline__item p,
[data-theme=neon] .proof__copy p:last-child {
  color: rgba(248, 250, 252, 0.76);
}

[data-theme=neon] .eyebrow,
[data-theme=neon] .section__kicker,
[data-theme=neon] .service-card__icon,
[data-theme=neon] .timeline__item span,
[data-theme=neon] .metric strong,
[data-theme=neon] .software-node strong {
  color: #bef227;
}

[data-theme=neon] .nav__action,
[data-theme=neon] .theme-toggle,
[data-theme=neon] .button--ghost {
  border-color: rgba(34, 211, 238, 0.42);
  color: #f8fafc;
  background: rgba(34, 211, 238, 0.06);
}

[data-theme=neon] .theme-toggle__dot {
  background: #22d3ee;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.65);
}

[data-theme=neon] .hero__overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 34%, rgba(15, 23, 42, 0.46) 62%, rgba(15, 23, 42, 0.72) 100%), linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.96));
}

[data-theme=neon] .hero__summary,
[data-theme=neon] .service-card,
[data-theme=neon] .contact-form,
[data-theme=neon] .metric,
[data-theme=neon] .code-window,
[data-theme=neon] .software-node,
[data-theme=neon] .service-modal__panel {
  border-color: rgba(34, 211, 238, 0.24);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(15, 23, 42, 0.36)), rgba(15, 23, 42, 0.72);
}

[data-theme=neon] .section,
[data-theme=neon] .horizontal-scroll {
  background: radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.14), transparent 32%), #0f172a;
}

[data-theme=neon] .section--intro,
[data-theme=neon] .contact {
  background: radial-gradient(circle at 12% 24%, rgba(190, 242, 39, 0.1), transparent 30%), linear-gradient(180deg, #111827, #0f172a);
}

[data-theme=neon] .band,
[data-theme=neon] .scroll-feature {
  background: linear-gradient(135deg, #0f172a 0%, #111827 46%, #0f172a 100%);
  border-color: rgba(34, 211, 238, 0.18);
}

[data-theme=neon] .timeline::before,
[data-theme=neon] .software-flow__line span,
[data-theme=neon] .scroll-progress span,
[data-theme=neon] .horizontal-progress span {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0), rgba(190, 242, 39, 0.62), rgba(34, 211, 238, 0));
}

[data-theme=neon] .software-flow__line span,
[data-theme=neon] .scroll-progress span,
[data-theme=neon] .horizontal-progress span {
  background: linear-gradient(90deg, #bef227, #22d3ee);
}

[data-theme=neon] .hero__summary span::after {
  border-color: #22d3ee;
}

[data-theme=neon] .contact-form input,
[data-theme=neon] .contact-form textarea {
  border-color: rgba(248, 250, 252, 0.16);
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.68);
}

[data-theme=neon] .contact-form input:focus,
[data-theme=neon] .contact-form textarea:focus {
  border-color: rgba(190, 242, 39, 0.78);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}
