:root {
  --ink: #f5f7fb;
  --muted: #aeb7c6;
  --paper: #f6f8fb;
  --paper-soft: #e7edf3;
  --graphite: #080b10;
  --graphite-2: #101722;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #58d7f7;
  --mint: #7edcff;
  --violet: #8e79ff;
  --danger: #ff6b82;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Unbounded", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--graphite);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(88, 215, 247, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(88, 215, 247, 0.06) 1px, transparent 1px),
    var(--graphite);
  background-size: 44px 44px;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x, 12%) 12%, rgba(88, 215, 247, 0.18), transparent 25%),
    linear-gradient(180deg, transparent 0, rgba(8, 11, 16, 0.72) 58%, var(--graphite) 100%);
  z-index: -1;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 16, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand__logo {
  width: clamp(86px, 8vw, 112px);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(88, 215, 247, 0.18));
}

.brand span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(12px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-phone {
  transition: color 180ms ease;
}

.nav a:hover,
.header-phone:hover,
.nav a:focus-visible,
.header-phone:focus-visible {
  color: var(--cyan);
}

.header-phone {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  padding: 118px clamp(18px, 4vw, 56px) 64px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.96) 0%, rgba(8, 11, 16, 0.82) 36%, rgba(8, 11, 16, 0.1) 72%),
    linear-gradient(0deg, var(--graphite) 0%, transparent 26%);
}

.hero__scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 0%, rgba(88, 215, 247, 0.18) 49%, rgba(126, 220, 255, 0.28) 50%, transparent 53%);
  mix-blend-mode: screen;
  opacity: 0.5;
  transform: translateY(-110%);
  animation: scanSweep 7.5s cubic-bezier(0.65, 0, 0.35, 1) 1.2s infinite;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.035) translate3d(var(--image-shift-x, 0px), var(--image-shift-y, 0px), 0);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 830px;
  grid-column: 1 / 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-family: var(--font-display);
  margin-bottom: 20px;
  font-size: clamp(36px, 5.4vw, 74px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 13ch;
  animation: titleEnter 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__lead {
  max-width: 650px;
  color: #d4dbe6;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero__actions,
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(88, 215, 247, 0.18);
}

.button--primary {
  background: #58d7f7;
  color: #041017;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero__facts {
  margin-top: 42px;
  padding: 0;
}

.hero__facts div {
  width: min(180px, 100%);
  border-left: 1px solid rgba(88, 215, 247, 0.55);
  padding-left: 15px;
}

.hero__facts dt {
  font-size: 27px;
  font-weight: 600;
}

.hero__facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.scan-card {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 6vw, 92px);
  width: min(260px, 38vw);
  border: 1px solid rgba(88, 215, 247, 0.24);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(9, 16, 25, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: translate3d(var(--card-shift-x, 0px), var(--card-shift-y, 0px), 0);
  animation: floatCard 7s ease-in-out infinite;
}

.scan-card--top {
  top: 22%;
}

.scan-card--bottom {
  bottom: 18%;
  animation-delay: -3s;
}

.scan-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.scan-card strong {
  display: block;
  margin-top: 6px;
  color: var(--cyan);
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: 18px clamp(26px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: #101722;
}

.intro .section-kicker,
.trust .section-kicker {
  color: #1679b7;
}

.intro h2 {
  grid-column: 2;
  max-width: 920px;
}

.intro p:not(.section-kicker) {
  grid-column: 2;
  max-width: 820px;
}

.intro h2,
.section__heading h2,
.process h2,
.trust h2,
.form-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 0;
  font-size: clamp(26px, 3.35vw, 46px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.intro p:not(.section-kicker),
.form-copy p {
  color: #4b596b;
  font-size: 18px;
  line-height: 1.65;
}

.cases {
  background: #111924;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.case-card {
  min-height: 260px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(88, 215, 247, 0.08), transparent 45%),
    #111924;
  transition: transform 260ms ease, background 260ms ease;
}

.case-card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(88, 215, 247, 0.14), transparent 48%),
    #131d2a;
}

.case-card__icon {
  display: inline-grid;
  min-width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(88, 215, 247, 0.34);
  border-radius: 50%;
  color: var(--mint);
  font-weight: 600;
}

.case-card h3 {
  margin: 42px 0 12px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.12;
}

.case-card p,
.timeline p {
  color: var(--muted);
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  background: var(--graphite);
}

.process__panel {
  position: sticky;
  top: 110px;
  align-self: start;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.timeline li:hover {
  transform: translateX(8px);
  border-color: rgba(88, 215, 247, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.timeline span {
  color: var(--cyan);
  font-size: 19px;
  font-weight: 600;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 600;
}

.trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  background: linear-gradient(135deg, #ebf7ff, #f8fbff);
  color: #101722;
}

.trust__items {
  display: grid;
  gap: 14px;
}

.trust__items p {
  margin: 0;
  border: 1px solid #cfdae6;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #435064;
  background: rgba(255, 255, 255, 0.7);
}

.trust__items strong {
  color: #111924;
}

.form-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(88, 215, 247, 0.08), transparent 34%),
    #080d12;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  color: var(--ink);
  font-weight: 600;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 28px;
  border: 1px solid rgba(88, 215, 247, 0.16);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0b1219;
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.lead-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, #2f9de3, var(--cyan));
}

.lead-form > * {
  position: relative;
  z-index: 1;
}

.lead-form__grid {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.lead-form__grid label:last-child {
  grid-column: 1 / -1;
}

.lead-form .device-field {
  position: relative;
  z-index: 20;
}

.lead-form label {
  display: grid;
  gap: 10px;
  color: #dbe7f1;
  font-size: 13px;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(174, 183, 198, 0.35);
  border-radius: 0;
  padding: 11px 0 13px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-select {
  position: relative;
  display: block;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 20;
}

.custom-select__button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(174, 183, 198, 0.35);
  border-radius: 0;
  padding: 11px 34px 13px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-select__button::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #2f9de3;
  border-bottom: 2px solid #2f9de3;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.custom-select.is-open .custom-select__button::after {
  border-color: #1679b7;
  transform: translateY(-40%) rotate(225deg);
}

.custom-select__button:focus-visible,
.custom-select.is-open .custom-select__button {
  border-color: var(--mint);
  box-shadow: 0 2px 0 rgba(88, 215, 247, 0.32);
}

.custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(88, 215, 247, 0.28);
  border-radius: var(--radius);
  padding: 6px;
  background: #101923;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.52);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.custom-select.is-open .custom-select__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select__list button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 11px 12px;
  background: transparent;
  color: #dbe7f1;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.custom-select__list button:hover,
.custom-select__list button:focus-visible,
.custom-select__list button[aria-selected="true"] {
  background: rgba(88, 215, 247, 0.12);
  color: var(--ink);
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #748293;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form__wide textarea {
  min-height: 132px;
}

.lead-form__wide,
.lead-form__footer,
.form-status {
  position: relative;
  z-index: 1;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 2px 0 rgba(88, 215, 247, 0.32);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lead-form__footer {
  display: grid;
  gap: 12px;
}

.lead-form .button {
  width: 100%;
  min-height: 54px;
  border-radius: var(--radius);
  justify-content: center;
  background: #58d7f7;
  color: #041017;
  text-transform: uppercase;
}

.lead-form .button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-radius: 50%;
  background: #041017;
  box-shadow: 0 0 16px rgba(4, 16, 23, 0.34);
}

.lead-form .button:hover,
.lead-form .button:focus-visible {
  box-shadow: 0 16px 34px rgba(13, 21, 29, 0.18);
}

.form-status {
  min-height: 20px;
  color: #1679b7;
  font-weight: 600;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #080b10;
}

.footer__logo {
  width: 122px;
  height: auto;
  opacity: 0.92;
}

.footer p {
  margin: 0;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(var(--image-shift-x, 0px), var(--image-shift-y, 0px), 0);
  }

  to {
    transform: scale(1.08) translate3d(var(--image-drift-x, -18px), var(--image-drift-y, 10px), 0);
  }
}

@keyframes scanSweep {
  0%,
  35% {
    transform: translateY(-110%);
  }

  70%,
  100% {
    transform: translateY(110%);
  }
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes titleEnter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 3px solid rgba(88, 215, 247, 0.62);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .brand span {
    display: none;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(8, 11, 16, 0.94), rgba(8, 11, 16, 0.58)),
      linear-gradient(0deg, var(--graphite) 0%, transparent 35%);
  }

  .scan-card {
    display: none;
  }

  .intro,
  .process,
  .trust,
  .form-section {
    grid-template-columns: 1fr;
  }

  .intro h2,
  .intro p:not(.section-kicker) {
    grid-column: auto;
  }

  .process__panel {
    position: static;
  }

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

  .lead-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero {
    padding-bottom: 52px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.4vw, 48px);
  }

  .hero__lead,
  .intro p:not(.section-kicker),
  .form-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero__facts div {
    width: calc(50% - 6px);
  }

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

  .case-card {
    min-height: 250px;
  }

  .case-card h3 {
    margin-top: 44px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
