:root {
  color-scheme: light dark;
  --day: 0;
  --dusk: 0;
  --night: 0;
  --day-opacity: 1;
  --sunset-opacity: 0;
  --night-opacity: 0;
  --flashlight-x: 50vw;
  --flashlight-y: 50vh;
  --flashlight-opacity: 0;
  --flashlight-ease: 0;
  --flashlight-size: clamp(280px, 32vw, 520px);
  --flashlight-radius: calc(var(--flashlight-size) * 0.36);
  --ink: #070707;
  --paper: #fff8ec;
  --cream: #f1dcc0;
  --orange: #db7b2b;
  --amber: #ffc46a;
  --blue: #061a2f;
  --deep: #020813;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.18);
  --max: 1160px;
  --blend: clamp(130px, 18svh, 250px);
  --font-text: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-display: "Quest Condensed", "Roboto Condensed", "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-script: "Brush Script MT", "Segoe Script", cursive;
  --header-text: rgb(
    calc(7 + (255 - 7) * var(--night))
    calc(7 + (255 - 7) * var(--night))
    calc(7 + (255 - 7) * var(--night))
  );
}

@font-face {
  font-family: "Quest Condensed";
  src: local("Roboto Condensed"), local("Oswald");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--white);
  font-family: var(--font-text);
  line-height: 1.35;
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

h1,
h2,
h3,
.brand,
.main-nav,
.nav-button,
.primary-button,
.lang-button,
.video-button,
.all-routes {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.time-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    url("assets/moscow-night.webp") center / cover no-repeat;
}

.time-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--day-opacity);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.12) 0%, rgba(255, 248, 236, 0.02) 48%, rgba(255, 209, 150, 0.2) 100%),
    url("assets/hero-day.webp") center / cover no-repeat;
  transition: opacity 80ms linear;
}

.time-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--sunset-opacity);
  background:
    linear-gradient(180deg, rgba(255, 190, 112, 0.06) 0%, rgba(237, 118, 43, 0.14) 48%, rgba(2, 8, 19, 0.4) 100%),
    url("assets/moscow-sunset.webp") center / cover no-repeat;
  transition: opacity 80ms linear;
}

.time-layer .skyline-back {
  display: block;
  position: absolute;
  inset: 0;
  opacity: var(--night-opacity);
  background:
    linear-gradient(180deg, rgba(2, 8, 19, 0) 0%, rgba(2, 8, 19, 0.26) 48%, rgba(2, 8, 19, 0.72) 100%),
    radial-gradient(circle at 18% calc(16% + 56% * var(--dusk)), rgba(255, 185, 83, 0.18), transparent 23%);
  transition: opacity 80ms linear;
}

.flashlight-layer {
  display: none;
}

.flashlight-layer::before {
  display: none;
}

.flashlight-layer::after {
  display: none;
}

@supports (-webkit-background-clip: text) {
  html.has-flashlight .scene-night h2,
  html.has-flashlight .scene-night h3,
  html.has-flashlight .scene-night p,
  html.has-flashlight .scene-night li,
  html.has-flashlight .scene-night a,
  html.has-flashlight .scene-deep h2,
  html.has-flashlight .scene-deep p,
  html.has-flashlight .scene-deep label,
  html.has-flashlight .scene-deep .form-note,
  html.has-flashlight .scene-deep .cta-tags span,
  html.has-flashlight .reviews h2,
  html.has-flashlight .reviews blockquote,
  html.has-flashlight .faq h2,
  html.has-flashlight .faq summary,
  html.has-flashlight .faq p {
    --flashlight-text-base: #fff;
    color: var(--flashlight-text-base);
    background-image:
      radial-gradient(
        circle var(--flashlight-radius) at var(--flashlight-x) var(--flashlight-y),
        #17100a 0 76%,
        var(--flashlight-text-base) 84%
      );
    background-attachment: fixed;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  html.has-flashlight .scene-night p,
  html.has-flashlight .scene-night .route-body p,
  html.has-flashlight .scene-night .route-notes,
  html.has-flashlight .scene-deep p,
  html.has-flashlight .scene-deep label,
  html.has-flashlight .scene-deep .form-note,
  html.has-flashlight .reviews blockquote,
  html.has-flashlight .faq p {
    --flashlight-text-base: rgba(255, 255, 255, 0.82);
  }
}

.sun,
.moon {
  position: absolute;
  border-radius: 50%;
  transition: opacity 120ms linear;
}

.sun {
  left: calc(10% + 18% * var(--dusk));
  top: calc(13% + 54% * var(--dusk));
  width: clamp(90px, 12vw, 170px);
  aspect-ratio: 1;
  background: radial-gradient(circle, #fff8cd 0 25%, #ffd574 52%, rgba(255, 132, 52, 0) 72%);
  filter: blur(1px);
  opacity: calc(1 - var(--night));
}

.moon {
  right: clamp(28px, 4.2vw, 76px);
  top: calc(8% + 8% * var(--dusk));
  width: clamp(38px, 5vw, 70px);
  aspect-ratio: 1;
  background: #f4f0d8;
  box-shadow: 0 0 42px rgba(244, 240, 216, 0.46);
  opacity: var(--night);
}

.stars {
  position: absolute;
  inset: 0;
  opacity: var(--night);
  background-image:
    radial-gradient(circle at 18% 18%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 77% 22%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 63% 50%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 32% 64%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 88% 72%, #fff 0 1px, transparent 2px);
}

.skyline {
  display: none;
}

.skyline-back {
  bottom: 9vh;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(3, 10, 18, 0.7) 32px 92px, transparent 92px 128px);
  filter: blur(1px);
}

.skyline-front {
  background-image:
    linear-gradient(to top, #020813 0 26%, transparent 26%),
    repeating-linear-gradient(90deg, #06101d 0 46px, transparent 46px 66px, #091929 66px 118px, transparent 118px 146px);
  clip-path: polygon(0 68%, 4% 42%, 9% 68%, 16% 48%, 22% 70%, 28% 38%, 35% 69%, 41% 50%, 48% 72%, 55% 44%, 61% 70%, 67% 52%, 74% 66%, 82% 36%, 90% 68%, 100% 47%, 100% 100%, 0 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px clamp(20px, 4vw, 54px);
  color: var(--header-text);
  transition:
    padding 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(2, 8, 19, calc(0.12 + var(--night) * 0.72));
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 0.92;
}

.brand-text span {
  display: block;
}

.pin-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 38px;
  border-radius: 18px 18px 18px 4px;
  background: currentColor;
  rotate: -45deg;
}

.pin-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--paper);
}

.main-nav {
  gap: clamp(20px, 3vw, 42px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a,
.nav-button,
.lang-button {
  transition:
    transform 160ms ease,
    color 160ms ease,
    opacity 160ms ease,
    background 160ms ease;
}

.main-nav a:hover,
.nav-button:hover,
.lang-button:hover {
  transform: translateY(-1px);
}

.site-header .nav-button {
  border: 1px solid rgba(255, 196, 106, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.site-header .nav-button:hover {
  background: #17100a;
  border-color: rgba(255, 196, 106, 0.78);
  box-shadow:
    0 0 28px rgba(255, 196, 106, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-header .nav-button.is-active {
  background: #17100a;
  border-color: rgba(255, 196, 106, 0.86);
  color: #fff6cd;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--amber);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.main-nav a.is-active {
  color: var(--amber);
}

.main-nav a.is-active::after {
  opacity: 0.86;
  transform: scaleX(1);
}

.header-actions {
  gap: 14px;
}

.language-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.lang-button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.lang-button.is-active {
  background: currentColor;
  color: rgb(
    calc(255 - (255 - 2) * var(--night))
    calc(255 - (255 - 8) * var(--night))
    calc(255 - (255 - 19) * var(--night))
  );
}

.nav-button,
.primary-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 106, 0.24), transparent);
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 160ms ease,
    transform 260ms ease;
}

.primary-button:hover::before,
.primary-button:focus-visible::before {
  opacity: 1;
  transform: translateX(70%);
}

.primary-button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.scene {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.scene::before,
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene::before {
  top: 0;
}

.scene::after {
  bottom: 0;
}

.scene-photo {
  display: none;
}

.scene-photo::after {
  display: none;
}

.scene-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.94) 0%, rgba(255, 248, 236, 0.62) 34%, rgba(255, 248, 236, 0.08) 68%),
    linear-gradient(180deg, transparent 68%, rgba(237, 118, 43, calc(0.16 * var(--dusk))) 86%, rgba(6, 26, 47, calc(0.42 * var(--night))) 100%);
}

.hero {
  min-height: 100svh;
  color: var(--ink);
}

.hero::after {
  background:
    radial-gradient(ellipse at 24% 58%, rgba(255, 196, 106, 0.2), transparent 44%),
    linear-gradient(180deg, rgba(255, 248, 236, 0) 0%, rgba(255, 208, 142, calc(0.06 + 0.12 * var(--dusk))) 34%, rgba(211, 100, 45, calc(0.12 + 0.2 * var(--dusk))) 70%, rgba(36, 18, 20, calc(0.18 + 0.3 * var(--night))) 100%),
    radial-gradient(ellipse at 52% 100%, rgba(255, 159, 72, 0.28), transparent 62%);
}

.hero-photo {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.16), rgba(255, 248, 236, 0) 62%),
    url("assets/hero-day.webp") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 156px 0 88px;
  display: grid;
  align-content: center;
}

.eyebrow {
  max-width: 420px;
  margin: 0 0 28px;
  font-family: var(--font-text);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

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

h1 {
  display: grid;
  max-width: 540px;
  margin: 0 0 24px;
  font-size: clamp(64px, 8.6vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
}

h1 em {
  display: block;
  margin-top: 4px;
  font-family: var(--font-script);
  font-size: 0.56em;
  font-style: italic;
  font-weight: 700;
  text-transform: lowercase;
  transform: rotate(-4deg);
}

.hero-lead {
  max-width: 420px;
  margin-bottom: 30px;
  font-family: var(--font-text);
  font-size: 19px;
}

.hero-actions {
  display: grid;
  width: fit-content;
  gap: 20px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 460px;
  margin-top: 28px;
  color: rgba(7, 7, 7, 0.78);
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof span {
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.42);
  padding: 8px 12px;
}

.video-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.play-icon {
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 9px;
  border-left: 10px solid currentColor;
  border-block: 6px solid transparent;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.why {
  min-height: 58svh;
  display: grid;
  align-items: center;
  margin-top: 0;
  padding: 92px 0 96px;
  color: #fff;
}

.why::before {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, calc(0.22 * var(--day-opacity))) 0%, rgba(255, 209, 150, 0.18) 42%, transparent 100%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 238, 190, 0.18), transparent 62%);
}

.why::after {
  background:
    linear-gradient(180deg, rgba(237, 118, 43, 0) 0%, rgba(211, 100, 45, calc(0.1 + 0.18 * var(--dusk))) 44%, rgba(8, 24, 39, calc(0.2 + 0.18 * var(--night))) 66%, rgba(2, 8, 19, calc(0.38 + 0.34 * var(--night))) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 146, 72, 0.24), transparent 62%);
}

.why h2,
.routes h2,
.reviews h2,
.faq h2 {
  margin-bottom: 44px;
  text-align: center;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit {
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 170px;
  color: #fff;
}

.benefit h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.45;
}

.format-panel,
.route-notes {
  max-width: 920px;
  margin: 46px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.56;
}

.format-panel h3 {
  margin-bottom: 14px;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 26px;
}

.steps-grid article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.steps-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.steps-grid h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.format-panel p,
.route-notes p {
  margin-bottom: 14px;
}

.format-panel p:last-child,
.route-notes p:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  display: block;
  width: clamp(86px, 8.5vw, 118px);
  height: clamp(86px, 8.5vw, 118px);
  object-fit: contain;
  filter:
    drop-shadow(0 18px 22px rgba(2, 8, 19, 0.24))
    drop-shadow(0 3px 8px rgba(255, 196, 112, 0.18));
}

.routes {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 88px 0 74px;
  color: #fff;
}

.routes::before {
  background:
    linear-gradient(180deg, rgba(123, 59, 28, calc(0.22 * var(--sunset-opacity))) 0%, rgba(237, 118, 43, 0.12) 28%, rgba(8, 24, 39, 0.24) 58%, transparent 100%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 165, 82, 0.22), transparent 62%);
}

.routes::after {
  background: linear-gradient(180deg, rgba(2, 8, 19, 0), rgba(2, 8, 19, 0.74));
}

html.has-flashlight .routes::after {
  background:
    radial-gradient(
      circle var(--flashlight-radius) at var(--flashlight-x) var(--flashlight-y),
      rgba(255, 250, 215, var(--flashlight-ease)) 0 76%,
      rgba(255, 250, 215, calc(0.42 * var(--flashlight-ease))) 81%,
      transparent 86%
    ),
    linear-gradient(180deg, rgba(2, 8, 19, 0), rgba(2, 8, 19, 0.74));
  background-attachment: fixed, scroll;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.route-card {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(9, 22, 36, 0.76);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 205, 0.5), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 246, 205, 0.12) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-38%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 246, 205, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(10, 26, 42, 0.84);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 42px rgba(255, 196, 106, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.route-card:hover::after {
  opacity: 1;
  transform: translateX(38%);
}

.route-image {
  position: relative;
  overflow: hidden;
  height: 140px;
  background-size: cover;
  background-position: center;
  transition: filter 180ms ease, scale 180ms ease;
}

.route-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-video:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -6px;
}

.route-card:hover .route-image {
  filter: saturate(1.08) contrast(1.03);
  scale: 1.015;
}

.route-day .route-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(2, 8, 19, 0.25)),
    url("assets/hero-day.webp") center / cover no-repeat;
}

.route-secret .route-image {
  background:
    linear-gradient(180deg, rgba(2, 8, 19, 0.08), rgba(2, 8, 19, 0.48)),
    url("assets/moscow-sunset.webp") center / cover no-repeat;
}

.route-future .route-image {
  background:
    linear-gradient(180deg, rgba(36, 124, 194, 0.1), rgba(2, 8, 19, 0.38)),
    url("assets/moscow-night.webp") center / cover no-repeat;
}

.route-placeholder {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(9, 22, 36, 0.64);
}

.route-placeholder:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(9, 22, 36, 0.7);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.route-placeholder:hover::after {
  opacity: 0;
  transform: translateX(-38%);
}

.route-placeholder .route-image {
  position: relative;
  filter: grayscale(0.95) saturate(0.45) brightness(0.72);
  scale: 1;
}

.route-placeholder .route-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.1) 0 1px,
      transparent 1px 12px
    ),
    linear-gradient(180deg, rgba(2, 8, 19, 0.12), rgba(2, 8, 19, 0.48));
}

.route-placeholder h3,
.route-placeholder li {
  color: rgba(255, 255, 255, 0.78);
}

.route-body {
  padding: 20px;
}

.route-body h3 {
  margin-bottom: 8px;
  font-size: 22px;
  text-transform: uppercase;
}

.route-body p {
  min-height: 44px;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.5;
}

.route-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: var(--font-text);
  font-size: 13px;
  list-style: none;
}

.route-body li::before {
  content: "◎";
  margin-right: 6px;
}

.all-routes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: fit-content;
  margin: 42px auto 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-notes {
  max-width: 880px;
  text-align: center;
}

.app-cta {
  position: relative;
  min-height: 80svh;
  margin-top: 0;
  padding: 92px 0 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.88) 0%, rgba(2, 8, 19, 0.58) 45%, rgba(2, 8, 19, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 8, 19, 0.52), rgba(2, 8, 19, 0.92));
}

.app-cta::before {
  background: linear-gradient(180deg, rgba(2, 8, 19, 0.78), rgba(2, 8, 19, 0.06));
}

.app-cta::after {
  background: linear-gradient(180deg, rgba(2, 8, 19, 0), rgba(2, 8, 19, 0.98));
}

html.has-flashlight .app-cta::after {
  background:
    radial-gradient(
      circle var(--flashlight-radius) at var(--flashlight-x) var(--flashlight-y),
      rgba(255, 250, 215, var(--flashlight-ease)) 0 76%,
      rgba(255, 250, 215, calc(0.42 * var(--flashlight-ease))) 81%,
      transparent 86%
    ),
    linear-gradient(180deg, rgba(2, 8, 19, 0), rgba(2, 8, 19, 0.98));
  background-attachment: fixed, scroll;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.app-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  text-transform: uppercase;
}

.app-copy {
  position: relative;
}

.app-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  bottom: 42px;
  width: 2px;
  background:
    radial-gradient(circle, var(--amber) 0 3px, transparent 4px) 50% 0 / 10px 58px repeat-y,
    linear-gradient(180deg, rgba(255, 196, 106, 0.52), rgba(255, 196, 106, 0.02));
  opacity: 0.72;
}

.app-copy > p {
  max-width: 390px;
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.48;
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 440px;
  margin: 22px 0 0;
}

.cta-tags span {
  border: 1px solid rgba(255, 196, 106, 0.32);
  border-radius: 999px;
  background: rgba(255, 196, 106, 0.08);
  color: rgba(255, 246, 205, 0.92);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  max-width: 440px;
  gap: 14px;
  margin-top: 24px;
}

.lead-form.is-submitting input {
  opacity: 0.72;
}

.form-trap {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(8, 16, 27, 0.52);
  color: #fff;
  outline: none;
  padding: 0 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lead-form input:focus {
  border-color: var(--amber);
}

.form-note {
  min-height: 36px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 13px;
}

.phone-wrap {
  position: relative;
  display: grid;
  justify-items: end;
  align-self: stretch;
  align-items: center;
  min-height: 560px;
  overflow: visible;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 55% 58%, rgba(255, 140, 48, 0.18) 0%, rgba(255, 140, 48, 0.08) 34%, transparent 66%),
    radial-gradient(ellipse at 50% 50%, rgba(2, 8, 19, 0.7) 0%, rgba(2, 8, 19, 0.34) 46%, transparent 76%);
  filter: blur(28px);
}

.phone-wrap::after {
  display: none;
}

.phone {
  display: block;
  width: min(520px, 86vw);
  aspect-ratio: 2 / 3;
  height: auto;
  opacity: 0.96;
  filter:
    brightness(0.92)
    saturate(0.96)
    contrast(0.98)
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.58));
  transform: translateX(clamp(90px, 12vw, 180px)) rotate(-5deg);
}

.reviews,
.faq {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 78px 0;
  background: #020813;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 196, 106, 0.06), transparent 62%);
}

html.has-flashlight .reviews::before {
  background:
    radial-gradient(
      circle var(--flashlight-radius) at var(--flashlight-x) var(--flashlight-y),
      rgba(255, 250, 215, var(--flashlight-ease)) 0 76%,
      rgba(255, 250, 215, calc(0.42 * var(--flashlight-ease))) 81%,
      transparent 86%
    ),
    radial-gradient(ellipse at 50% 0%, rgba(255, 196, 106, 0.06), transparent 62%);
  background-attachment: fixed, scroll;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 30%, rgba(255, 196, 106, 0.05), transparent 58%);
}

html.has-flashlight .faq::before {
  background:
    radial-gradient(
      circle var(--flashlight-radius) at var(--flashlight-x) var(--flashlight-y),
      rgba(255, 250, 215, var(--flashlight-ease)) 0 76%,
      rgba(255, 250, 215, calc(0.42 * var(--flashlight-ease))) 81%,
      transparent 86%
    ),
    radial-gradient(ellipse at 20% 30%, rgba(255, 196, 106, 0.05), transparent 58%);
  background-attachment: fixed, scroll;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote,
details {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 16px;
}

blockquote {
  min-height: 150px;
  padding: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 44px;
}

.faq h2 {
  text-align: left;
}

details {
  padding: 20px 22px;
}

details + details {
  margin-top: 12px;
}

summary {
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 54px);
  background: #020813;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-text);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 19, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__panel {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.96);
  color: var(--ink);
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.video-modal__panel h2 {
  margin: 0 44px 10px 0;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.video-modal__panel p {
  margin: 0;
  color: rgba(7, 7, 7, 0.72);
}

.modal-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: modal-step;
}

.modal-steps li {
  counter-increment: modal-step;
  position: relative;
  min-height: 54px;
  padding: 0 0 0 48px;
  color: rgba(7, 7, 7, 0.76);
  font-size: 15px;
  line-height: 1.38;
}

.modal-steps li::before {
  content: counter(modal-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #17100a;
  color: #fff6cd;
  font-size: 11px;
  font-weight: 900;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(7, 7, 7, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

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

@media (hover: none), (pointer: coarse) {
  .flashlight-layer {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .moon {
    right: 20px;
    top: calc(9% + 7% * var(--dusk));
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    padding-top: 130px;
    align-content: start;
  }

  .scene-shade {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0%, rgba(255, 248, 236, 0.72) 50%, rgba(6, 26, 47, 0.42) 100%);
  }

  .benefit-grid,
  .route-grid,
  .review-grid,
  .app-grid,
  .faq-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    gap: 30px;
  }

  .benefit {
    min-height: 0;
  }

  .steps-grid article,
  .benefit,
  .format-panel,
  .route-notes {
    min-width: 0;
  }

  .app-copy::before {
    display: none;
  }

  .phone-wrap {
    min-height: 430px;
  }

  .phone {
    width: min(360px, 82vw);
    transform: rotate(-4deg);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 18px 18px;
  }

  .brand {
    font-size: 14px;
  }

  .pin-mark {
    width: 24px;
    height: 30px;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-button {
    display: none;
  }

  h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero-actions,
  .primary-button {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 330px);
  }

  .section-inner {
    width: min(100%, calc(100% - 32px));
  }

  .why {
    padding: 72px 0 78px;
  }

  .why h2,
  .routes h2,
  .reviews h2,
  .faq h2 {
    margin-bottom: 34px;
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .benefit-grid {
    gap: 28px;
  }

  .benefit h3 {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.12;
  }

  .benefit p,
  .format-panel p,
  .route-notes p {
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .format-panel,
  .route-notes {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.5;
  }

  .format-panel h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .steps-grid {
    gap: 12px;
    margin: 20px 0 24px;
  }

  .steps-grid article {
    min-height: 0;
    padding: 16px;
  }

  .steps-grid span {
    margin-bottom: 12px;
  }

  .steps-grid h4 {
    font-size: 16px;
    line-height: 1.14;
  }

  .steps-grid p {
    font-size: 13px;
    overflow-wrap: anywhere;
  }
}
