:root {
  --black: #050505;
  --carbon: #0f1115;
  --orange: #ff6b00;
  --orange-glow: #ff8a00;
  --smoke: #f5f5f5;
  --graphite: #1a1d24;
  --ui: #2a2f38;
  --muted: #9ca3af;
  --line: rgba(245, 245, 245, 0.1);
  --line-strong: rgba(255, 107, 0, 0.34);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-tech: "Rajdhani", var(--font-body);
  --font-accent: "Orbitron", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--black);
  color: var(--smoke);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 107, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #050505 0%, #0b0c10 46%, #050505 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 84%);
}

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

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

::selection {
  background: rgba(255, 107, 0, 0.35);
  color: #fff;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--orange);
  color: #111;
  transform: translateY(-150%);
}

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

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1180px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.w-100 { width: 100%; }
.ms-auto { margin-left: auto; }
.position-relative { position: relative; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .ms-lg-3 {
    margin-left: 1rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 0;
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.28), rgba(255, 138, 0, 0.05));
  box-shadow: 0 0 26px rgba(255, 107, 0, 0.22);
  color: #fff;
  font-family: var(--font-accent);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--smoke);
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.22);
}

.navbar-toggler-icon {
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  filter: invert(1);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
}

.collapse:not(.show) {
  display: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  list-style: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 14px;
  }
}

.nav-link {
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.btn {
  min-height: 46px;
  border-radius: 6px;
  font-weight: 700;
}

.btn span {
  display: inline-grid;
  place-items: center;
}

.btn-nav {
  border: 1px solid var(--line-strong);
  background: rgba(255, 107, 0, 0.08);
  color: #fff;
}

.btn-nav:hover,
.btn-nav:focus {
  border-color: rgba(255, 138, 0, 0.72);
  background: rgba(255, 107, 0, 0.16);
  color: #fff;
}

.btn-primary-tech,
.btn-secondary-tech {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.btn-primary-tech {
  border: 1px solid rgba(255, 138, 0, 0.72);
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  box-shadow: 0 0 34px rgba(255, 107, 0, 0.24);
  color: #141414;
}

.btn-primary-tech:hover,
.btn-primary-tech:focus {
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, #ff7b18, #ffa12b);
  color: #050505;
  transform: translateY(-1px);
}

.btn-secondary-tech {
  border: 1px solid var(--line);
  background: rgba(245, 245, 245, 0.04);
  color: #fff;
}

.btn-secondary-tech:hover,
.btn-secondary-tech:focus {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(245, 245, 245, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.section-grid {
  position: relative;
  overflow: hidden;
}

.hero-section {
  min-height: 86svh;
  padding: clamp(56px, 8vw, 118px) 0 58px;
}

.hero-section::before {
  position: absolute;
  inset: 10% 0 auto;
  height: 46%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.16), transparent);
  filter: blur(52px);
}

.particle-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-glow);
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 800;
  line-height: 1;
}

h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-proof div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.58);
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-family: var(--font-tech);
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.system-visual {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.16), transparent 36%),
    rgba(15, 17, 21, 0.82);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.46), 0 0 58px rgba(255, 107, 0, 0.14);
}

.system-visual::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 107, 0, 0.16);
  border-radius: 6px;
}

.visual-topbar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 6px;
}

.visual-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.28);
}

.visual-topbar span:first-child {
  background: var(--orange);
}

.visual-topbar p {
  margin: 0 0 0 auto;
  color: rgba(245, 245, 245, 0.62);
  font-family: var(--font-accent);
  font-size: 0.7rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.signal-panel {
  min-height: 138px;
  padding: 16px;
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.48);
}

.main-panel {
  min-height: 286px;
  grid-row: span 2;
}

.wide-panel {
  min-height: 116px;
  grid-column: 1 / -1;
}

.panel-label,
.panel-kicker {
  display: block;
  color: var(--orange-glow);
  font-family: var(--font-tech);
  font-weight: 700;
  text-transform: uppercase;
}

.panel-label {
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.radar {
  position: relative;
  display: grid;
  width: min(100%, 205px);
  aspect-ratio: 1;
  margin: 8px auto 18px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0 5%, transparent 6% 100%);
}

.radar span {
  position: absolute;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 50%;
  inset: var(--ring);
}

.radar span:nth-child(1) { --ring: 12%; }
.radar span:nth-child(2) { --ring: 26%; }
.radar span:nth-child(3) { --ring: 40%; }

.radar i {
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
  transform-origin: left;
  animation: scan 4s linear infinite;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-row strong {
  color: #fff;
}

.bar-stack {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.bar-stack span {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 0, 0.18));
}

.node-map {
  position: relative;
  min-height: 72px;
}

.node-map::before,
.node-map::after {
  position: absolute;
  inset: 50% 12% auto;
  height: 1px;
  content: "";
  background: rgba(255, 107, 0, 0.28);
}

.node-map::after {
  inset: 18% 50% auto;
  width: 1px;
  height: 58px;
}

.node-map span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 138, 0, 0.8);
  border-radius: 50%;
  background: var(--black);
}

.node-map span:nth-child(1) { top: 7%; left: 46%; }
.node-map span:nth-child(2) { top: 44%; left: 10%; }
.node-map span:nth-child(3) { top: 44%; right: 10%; }
.node-map span:nth-child(4) { bottom: 5%; left: 46%; }

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 23px;
}

.flow-line span {
  height: 38px;
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), transparent);
}

.trust-strip {
  padding: 0 0 48px;
}

.trust-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.76);
}

.founder {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-tech);
  font-weight: 800;
}

.founder p,
.founder strong {
  display: block;
  margin: 0;
}

.founder p {
  color: #fff;
  font-weight: 800;
}

.founder strong {
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trust-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.82rem;
}

.section-space {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contrast-panel,
.service-card,
.process-line article,
.benefit-grid div,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.74);
}

.contrast-panel {
  min-height: 100%;
  padding: clamp(24px, 4vw, 36px);
}

.panel-kicker {
  margin-bottom: 18px;
}

.issue-list,
.solution-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-list li,
.solution-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.65;
}

.issue-list li::before,
.solution-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--orange);
}

.solution-panel {
  border-color: rgba(255, 107, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(15, 17, 21, 0.78));
}

.solution-list strong {
  color: #fff;
}

.services-section {
  background: rgba(255, 255, 255, 0.015);
}

.service-card {
  min-height: 228px;
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 107, 0, 0.42);
  background: rgba(26, 29, 36, 0.86);
  transform: translateY(-4px);
}

.service-card span {
  color: var(--orange-glow);
  font-family: var(--font-tech);
  font-weight: 800;
}

.service-card h3 {
  margin: 34px 0 12px;
}

.service-card p,
.process-line p,
.benefit-grid span,
.contact-copy p,
.cta-content p {
  color: rgba(245, 245, 245, 0.68);
  line-height: 1.65;
}

.brand-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.55);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  min-width: 140px;
  color: rgba(245, 245, 245, 0.56);
  font-family: var(--font-tech);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

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

.process-line article {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.process-line article::before {
  position: absolute;
  top: 35px;
  right: -14px;
  z-index: 1;
  width: 14px;
  height: 1px;
  content: "";
  background: rgba(255, 107, 0, 0.42);
}

.process-line article:last-child::before {
  content: none;
}

.process-line span {
  color: var(--orange-glow);
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 800;
}

.process-line h3 {
  margin: 38px 0 12px;
}

.benefit-shell {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent 30%),
    rgba(15, 17, 21, 0.64);
}

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

.benefit-grid div {
  min-height: 150px;
  padding: 20px;
}

.benefit-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 0;
  border-block: 1px solid var(--line);
  background: #070707;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.18), transparent 38%, rgba(255, 138, 0, 0.08));
}

.cta-content {
  position: relative;
  max-width: 790px;
}

.cta-content p {
  max-width: 560px;
  margin: 18px 0 28px;
  font-size: 1.12rem;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
}

.lead-form label {
  margin-bottom: 8px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 50px;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 6px;
  background-color: rgba(5, 5, 5, 0.72);
  color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 107, 0, 0.62);
  background-color: #070707;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.16);
  color: #fff;
}

.form-select option {
  background: #0f1115;
  color: #fff;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--orange-glow);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: rgba(245, 245, 245, 0.56);
}

.site-footer .container {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

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

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 17, 21, 0.96);
  }

  .hero-section {
    min-height: auto;
    padding-top: 54px;
  }

  .system-visual {
    margin: 0;
  }

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

  .process-line article::before {
    content: none;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .hero-actions .btn,
  .btn-primary-tech,
  .btn-secondary-tech {
    width: 100%;
  }

  .hero-proof,
  .visual-grid,
  .process-line,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .main-panel,
  .wide-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-card,
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-proof div {
    min-height: 74px;
  }

  .system-visual,
  .lead-form,
  .benefit-shell {
    padding: 16px;
  }

  .signal-panel {
    min-height: 118px;
  }
}
