:root {
  color-scheme: dark;
  --black: #080909;
  --panel: #111313;
  --panel-soft: #171919;
  --line: rgba(255, 255, 255, 0.11);
  --white: #f5f3ed;
  --muted: #a2a5a2;
  --orange: #ff6a32;
  --green: #35d17e;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 30%),
    var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.nav-wrap {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 28px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1380px);
  margin-inline: auto;
  padding: 9px 10px 9px 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 11, 11, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.logo strong { font-weight: 800; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links > a {
  color: #c7c9c6;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav__links > a:hover,
.nav__links > a:focus-visible { color: #fff; }

.nav__links .nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 11px 15px;
  border-radius: 9px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, .72fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
  min-height: 910px;
  padding: 140px max(28px, calc((100vw - 1380px) / 2)) 78px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.23;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero__aurora {
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.hero__aurora--orange { top: -210px; right: 8%; background: var(--orange); }
.hero__aurora--green { right: -260px; bottom: 0; background: var(--green); }

.hero__copy { max-width: 710px; }

.eyebrow,
.kicker {
  margin: 0;
  color: #c7cac6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(53, 209, 126, 0.1), 0 0 18px rgba(53, 209, 126, .55);
}

h1,
h2,
h3 { font-family: "Manrope", Arial, sans-serif; }

h1 {
  margin: 0;
  font-size: clamp(64px, 6.2vw, 104px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 585px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button:focus-visible { outline: 3px solid rgba(255, 106, 50, .28); outline-offset: 3px; }

.button--primary { background: var(--orange); color: #130a06; }
.button--primary:hover { background: #ff7a46; }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.025); color: #d8dad6; }
.button--ghost:hover { border-color: rgba(255,255,255,.28); }

.play-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .12);
  font-size: 12px;
}

.button__store {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  text-align: left;
}

.button__store small {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 50px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.trust div { padding-right: 20px; }
.trust div + div { padding-left: 24px; border-left: 1px solid var(--line); }

.trust dt {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.trust dt span { color: #777; font-size: 12px; }
.trust dd { margin: 5px 0 0; color: #777b78; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.technician-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  margin: 0;
  aspect-ratio: .83 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 28px;
  background: #151616;
  box-shadow: 0 55px 120px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255,255,255,.08);
}

.technician-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  pointer-events: none;
}

.technician-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.technician-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 5, .92) 0%, rgba(4,5,5,.18) 38%, transparent 64%);
}

.technician-card__status {
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(9, 10, 10, .64);
  color: #e7e8e4;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.technician-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(53, 209, 126, .7);
}

.technician-card figcaption {
  position: absolute;
  right: 35px;
  bottom: 34px;
  left: 35px;
  display: grid;
  gap: 8px;
}

.technician-card figcaption span {
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.technician-card figcaption strong {
  max-width: 380px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.service-strip { overflow: hidden; border-block: 1px solid var(--line); background: #0c0d0d; }
.service-strip__track { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 3vw, 54px); min-width: max-content; min-height: 78px; padding: 0 32px; }
.service-strip span { color: #b7bab7; font-family: "Manrope", Arial, sans-serif; font-size: clamp(11px, 1.1vw, 14px); font-weight: 600; letter-spacing: -.02em; }
.service-strip i { width: 5px; height: 5px; border-radius: 50%; background: #3f4240; }

.campaign-visual {
  width: min(100% - 56px, 1380px);
  margin: 90px auto 0;
}

.campaign-visual__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 19px;
}

.campaign-visual figcaption {
  display: grid;
  gap: 7px;
}

.campaign-visual figcaption span {
  color: #686c69;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.campaign-visual figcaption strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -.04em;
}

.campaign-visual__head > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #959995;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.campaign-visual__head > a:hover,
.campaign-visual__head > a:focus-visible { color: var(--white); }

.campaign-visual__frame {
  position: relative;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,106,50,.25), rgba(255,255,255,.04) 35%, rgba(53,209,126,.19));
  box-shadow: 0 55px 130px rgba(0, 0, 0, .48);
}

.campaign-visual__frame::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 18px;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, .2);
  pointer-events: none;
}

.campaign-visual__frame img {
  width: 100%;
  aspect-ratio: 1.906 / 1;
  border-radius: 18px;
  object-fit: cover;
}

.section { width: min(100% - 56px, 1380px); margin-inline: auto; padding-block: 140px; }

.section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.section__heading h2,
.process__intro h2,
.download h2 {
  margin: 14px 0 0;
  font-size: clamp(48px, 5.7vw, 84px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.065em;
}

.section__heading > p,
.process__intro > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.service-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.service-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.22); background: var(--panel-soft); }
.service-card--feature { grid-row: span 2; min-height: 552px; background: var(--orange); color: #160a05; }
.service-card--feature::after { content: ""; position: absolute; right: -120px; bottom: -160px; width: 380px; height: 380px; border: 1px solid rgba(0,0,0,.15); border-radius: 50%; box-shadow: 0 0 0 55px rgba(0,0,0,.035), 0 0 0 110px rgba(0,0,0,.025); }
.service-card--feature:hover { background: #ff7542; border-color: transparent; }
.service-card__number { color: #656966; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.service-card--feature .service-card__number { color: rgba(22,10,5,.5); }
.service-card p { margin: 0 0 7px; color: #737774; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.service-card--feature p { color: rgba(22,10,5,.56); }
.service-card h3 { margin: 0; font-size: clamp(26px, 2.4vw, 38px); letter-spacing: -.055em; }
.service-card--feature h3 { font-size: clamp(48px, 4.7vw, 72px); }
.service-card__copy { display: block; max-width: 320px; margin-top: 17px; color: rgba(22,10,5,.68); font-size: 13px; line-height: 1.6; }
.service-card > a { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(22,10,5,.18); font-size: 11px; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.service-card__arrow { align-self: flex-end; color: #666a67; font-size: 20px; }

.process {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(440px, 1.28fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.process__intro { position: sticky; top: 40px; }
.process__intro h2 em { color: var(--green); font-style: normal; }
.process__intro > p:last-child { max-width: 420px; margin-top: 28px; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 39px 0; border-top: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; border-top: 0; }
.steps > li > span { color: var(--orange); font-family: "Manrope", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.steps h3 { margin: 0; font-size: clamp(23px, 2.4vw, 35px); letter-spacing: -.045em; }
.steps p { max-width: 520px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.download {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  width: min(100% - 56px, 1380px);
  margin: 0 auto 28px;
  padding: clamp(50px, 7vw, 100px);
  border-radius: 26px;
  background: var(--white);
  color: var(--black);
}

.download .kicker { color: #696c69; }
.download h2 { font-size: clamp(52px, 7vw, 98px); }
.button--light { min-width: 215px; background: var(--black); color: var(--white); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(100% - 56px, 1380px);
  margin-inline: auto;
  padding: 46px 0;
  color: #666a67;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer p { margin: 0; }
footer p:last-child { text-align: right; }
.logo--footer { text-transform: none; }
.logo--footer img { width: 35px; height: 35px; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 150px; }
  .hero__copy { max-width: 860px; }
  .technician-card { width: min(100%, 680px); aspect-ratio: 1.05 / 1; }
  .service-grid { grid-template-columns: 1.2fr 1fr; }
  .service-card--feature { grid-row: span 2; }
  .process { gap: 60px; }
}

@media (max-width: 760px) {
  .nav-wrap { padding: 14px; }
  .nav { border-radius: 13px; }
  .nav__links > a:not(.nav__cta) { display: none; }
  .nav__links { gap: 0; }
  .nav__links .nav__cta { gap: 10px; padding-inline: 13px; }
  .logo span { display: none; }

  .hero { min-height: 720px; padding: 118px 20px 58px; }
  h1 { font-size: clamp(54px, 17vw, 78px); line-height: .91; }
  .hero__lead { margin-top: 25px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .trust { grid-template-columns: 1fr; gap: 16px; margin-top: 38px; }
  .trust div { display: flex; align-items: baseline; justify-content: space-between; padding: 0 0 13px; border-bottom: 1px solid var(--line); }
  .trust div + div { padding-left: 0; border-left: 0; }
  .trust dd { text-align: right; }

  .technician-card { width: 100%; aspect-ratio: .83 / 1; border-radius: 20px; }
  .technician-card::before { inset: 7px; border-radius: 14px; }
  .technician-card__status { top: 19px; right: 19px; }
  .technician-card figcaption { right: 25px; bottom: 25px; left: 25px; }

  .service-strip__track { justify-content: flex-start; }
  .campaign-visual { width: calc(100% - 28px); margin-top: 60px; }
  .campaign-visual__head { align-items: start; flex-direction: column; gap: 13px; padding-inline: 6px; }
  .campaign-visual__frame { padding: 4px; border-radius: 16px; }
  .campaign-visual__frame::after { inset: 4px; border-radius: 12px; }
  .campaign-visual__frame img { border-radius: 12px; }
  .section { width: min(100% - 40px, 1380px); padding-block: 95px; }
  .section__heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section__heading h2, .process__intro h2 { font-size: clamp(46px, 14vw, 68px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--feature { grid-row: auto; min-height: 240px; }
  .service-card--feature { min-height: 420px; }
  .service-card--feature h3 { font-size: 52px; }

  .process { grid-template-columns: 1fr; gap: 58px; }
  .process__intro { position: static; }
  .steps li { grid-template-columns: 42px 1fr; gap: 16px; }

  .download { align-items: stretch; flex-direction: column; width: calc(100% - 28px); margin-bottom: 14px; padding: 44px 26px; border-radius: 20px; }
  .download h2 { font-size: 52px; }

  footer { grid-template-columns: 1fr auto; width: calc(100% - 40px); }
  footer > p:first-of-type { display: none; }
  .logo--footer span { display: inline; }
}

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