/* =========================================================================
   БАШНЯ СВОБОДНОГО ПАДЕНИЯ — design system
   ========================================================================= */

:root {
  /* palette */
  --navy-900: #050B22;
  --navy-800: #071233;
  --navy-700: #0A1A3F;
  --navy-600: #102554;
  --sky-500:  #2BA8F2;
  --sky-400:  #4FC3F7;
  --sky-300:  #7DD3FC;
  --sky-100:  #D6EEFF;
  --sky-050:  #EAF6FF;
  --yellow:   #FFD23F;
  --yellow-d: #F4B400;
  --orange:   #FF6A1A;
  --red:      #FF2E3F;
  --ink:      #10162B;
  --ink-soft: #3A4564;
  --white:    #FFFFFF;

  /* semantic */
  --bg: var(--navy-800);
  --text-on-dark: #EAF1FF;
  --text-on-dark-dim: #9DB0D6;

  /* type */
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* fx */
  --glow-red: 0 0 0 1px rgba(255,46,63,.4), 0 8px 40px rgba(255,46,63,.45);
  --glow-sky: 0 0 60px rgba(79,195,247,.55);
  --glow-yellow: 0 0 50px rgba(255,210,63,.5);
  --card-shadow: 0 30px 60px -20px rgba(2,8,30,.6);
  --radius: 22px;
  --radius-lg: 30px;

  /* layout */
  --maxw: 1240px;
  --nav-h: 74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--text-on-dark);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

section { position: relative; }

.scroll-hint { display: none !important; }

/* ---- shared section heading ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sky-300);
  padding: 8px 16px; border-radius: 100px;
  background: rgba(79,195,247,.08);
  border: 1px solid rgba(79,195,247,.22);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 12px var(--orange);
}
.section-title {
  font-size: clamp(34px, 5.2vw, 68px);
  margin: 22px 0 0;
  text-wrap: balance;
}
.section-lead {
  margin-top: 18px; max-width: 620px;
  font-size: clamp(16px, 1.9vw, 20px);
  color: var(--text-on-dark-dim); line-height: 1.6;
}
.section-head { margin-bottom: 56px; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: .01em;
  padding: 16px 26px; border-radius: 100px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.96); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(255,46,63,.6);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  box-shadow: 0 0 0 0 rgba(255,46,63,.55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,46,63,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(255,46,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,46,63,0); }
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -10px rgba(255,46,63,.75); }

.btn-glass {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }

.btn-yellow {
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(255,210,63,.7);
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(255,210,63,.85); }

.btn-lg { padding: 19px 34px; font-size: 17px; }

/* ============================ NAV ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(5,11,34,.82);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 12px 40px rgba(0,0,0,.4);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 17px; white-space: nowrap; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; position: relative; flex: none;
  background: linear-gradient(160deg, var(--sky-400), var(--navy-600));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  overflow: hidden;
}
.brand-mark::before {
  content: ""; position: absolute; left: 50%; top: 5px; bottom: 5px; width: 4px;
  transform: translateX(-50%); border-radius: 4px;
  background: linear-gradient(var(--yellow), var(--orange));
}
.brand-mark::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 12px; height: 6px;
  transform: translateX(-50%); border-radius: 2px; background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: markdrop 3.4s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes markdrop {
  0%, 18% { top: 7px; } 30% { top: 22px; } 45%,100% { top: 7px; }
}
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: .14em; color: var(--text-on-dark-dim); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-on-dark-dim);
  padding: 9px 13px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(5,11,34,.97);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 30px) 30px 40px; gap: 6px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 22px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .btn { margin-top: 20px; }

/* ============================ HERO ============================ */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, #04081C 0%, #071945 38%, #0E3E7E 70%, #2E78BC 100%);
}
/* sky layers */
.sky-stars, .sky-cloud { position: absolute; inset: 0; pointer-events: none; }
.sky-cloud {
  background:
    radial-gradient(60% 40% at 18% 30%, rgba(255,255,255,.10), transparent 70%),
    radial-gradient(50% 30% at 82% 22%, rgba(255,255,255,.08), transparent 70%),
    radial-gradient(70% 45% at 60% 85%, rgba(126,211,252,.18), transparent 70%);
  will-change: transform;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 7.6923% 100%;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
}

.hero-inner {
  position: relative; z-index: 5; width: 100%;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: end;
  padding-bottom: 56px;
}
.hero-badges-top { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 9px 15px; border-radius: 100px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.pill b { color: var(--yellow); font-weight: 700; }
.pill.hot { background: rgba(255,46,63,.16); border-color: rgba(255,106,26,.5); }
.pill.hot b { color: var(--orange); }

.hero h1 {
  font-size: clamp(44px, 8vw, 116px);
  line-height: .92; letter-spacing: -.02em; margin-bottom: 6px;
  text-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero h1 .out { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.5); }
.hero h1 .accent { color: var(--yellow); }
.hero-slogan {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 2.8vw, 34px); margin: 22px 0 16px; line-height: 1.08;
  color: #fff;
}
.hero-slogan .pop { color: var(--orange); }
.hero-sub { max-width: 540px; font-size: clamp(15px,1.7vw,18px); color: var(--text-on-dark); opacity: .92; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

/* hero quick badges row */
.hero-quick {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.qb {
  display: flex; flex-direction: column; line-height: 1.1;
  padding: 4px 18px 4px 0; border-right: 1px solid rgba(255,255,255,.12);
}
.qb:last-child { border-right: none; }
.qb b { font-family: var(--font-display); font-size: 22px; color: #fff; }
.qb span { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-on-dark-dim); margin-top: 3px; }
.qb b.y { color: var(--yellow); }
.qb b.o { color: var(--orange); }

/* hero right: height scale + photo */
.hero-side { display: flex; gap: 14px; align-items: stretch; height: 100%; min-height: 520px; min-width: 0; }
.ride-lift {
  position: relative; width: 112px; flex: none;
  border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 44px rgba(0,0,0,.22);
}
.ride-rails { position: absolute; inset: 24px 18px 22px; }
.ride-rails span { position: absolute; top: 0; bottom: 0; width: 2px; border-radius: 2px; background: rgba(255,255,255,.18); }
.ride-rails span:nth-child(1) { left: 18%; }
.ride-rails span:nth-child(2) { left: 50%; transform: translateX(-50%); background: rgba(79,195,247,.2); }
.ride-rails span:nth-child(3) { right: 18%; }
.ride-seats {
  position: absolute; left: 50%; bottom: 24px; z-index: 3;
  width: 86px; height: 50px; transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding: 7px 6px 8px; border-radius: 14px;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-d));
  box-shadow: 0 0 26px rgba(255,210,63,.7), inset 0 -4px 0 rgba(0,0,0,.22);
  animation: rideSeatsLoop 6.2s linear infinite;
}
.ride-seats::before {
  content: ""; position: absolute; left: 9px; right: 9px; bottom: -8px; height: 8px;
  border-radius: 0 0 10px 10px; background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 16px rgba(255,46,63,.55);
}
.ride-seats span {
  border-radius: 6px 6px 8px 8px;
  background: linear-gradient(180deg, rgba(16,22,43,.58), rgba(16,22,43,.28));
  box-shadow: inset 0 2px 0 rgba(255,255,255,.14);
}
.ride-floor {
  position: absolute; left: 18px; right: 18px; bottom: 16px; height: 3px;
  border-radius: 3px; background: rgba(255,255,255,.16);
}
@keyframes rideSeatsLoop {
  0%, 18% { bottom: 24px; animation-timing-function: cubic-bezier(.45,0,.25,1); }
  55%, 63% { bottom: calc(100% - 74px); animation-timing-function: cubic-bezier(.6,0,.95,.25); }
  73%, 100% { bottom: 24px; }
}
.height-scale {
  position: relative; width: 54px; flex: none;
  border-radius: 100px; padding: 14px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
}
.height-scale .tick {
  position: relative; width: 100%; display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px; font-family: var(--font-display); font-size: 10px; font-weight: 600;
  color: var(--text-on-dark-dim);
}
.height-scale .tick::before { content: ""; position: absolute; left: 8px; width: 10px; height: 2px; background: rgba(255,255,255,.25); }
.height-scale .tick.top { color: var(--yellow); }
.scale-track {
  position: absolute; left: 50%; top: 14px; bottom: 14px; width: 6px; transform: translateX(-50%);
  background: rgba(255,255,255,.1); border-radius: 6px; overflow: hidden;
}
.scale-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0%;
  background: linear-gradient(180deg, var(--orange), var(--yellow));
  border-radius: 6px; transition: height .1s linear;
}
.cabin {
  position: absolute; left: 50%; transform: translate(-50%, 50%);
  width: 26px; height: 18px; border-radius: 5px; bottom: 0%;
  background: linear-gradient(var(--yellow), var(--yellow-d));
  box-shadow: 0 0 16px var(--yellow), inset 0 -2px 0 rgba(0,0,0,.2);
  z-index: 3; transition: bottom .1s linear;
}
.cabin::before, .cabin::after { content: ""; position: absolute; top: 3px; width: 4px; height: 9px; background: rgba(16,22,43,.5); border-radius: 2px; }
.cabin::before { left: 5px; } .cabin::after { right: 5px; }

.hero-photo {
  position: relative; flex: 1 1 320px; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--card-shadow);
  min-width: 260px;
  background: linear-gradient(180deg, #1E5FA8, #4FC3F7 60%, #BEE7FF);
}
.hero-photo,
.gal-item {
  isolation: isolate;
}
.hero-photo image-slot, .gal-item image-slot { --slot-bg: transparent; }
.hero-photo image-slot { width: 100%; height: 100%; }
.hero-photo img,
.gal-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hero-photo .ph-cap {
  position: absolute; left: 16px; bottom: 16px; z-index: 4;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 8px 14px; border-radius: 100px; background: rgba(5,11,34,.6);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-on-dark-dim);
}
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; position: relative; }
.scroll-hint .mouse::before { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 7px; background: #fff; border-radius: 3px; transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0;top:6px} 30%{opacity:1} 60%{opacity:0;top:16px} 100%{opacity:0} }

/* ============================ NUMBERS ============================ */
.section-pad { padding: clamp(80px, 11vw, 150px) 0; }
.numbers { background: linear-gradient(180deg, #2E78BC 0%, #0A1A3F 22%, var(--navy-800) 100%); }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.num-card {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); overflow: hidden;
}
.num-card::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(70% 50% at 80% 0%, rgba(79,195,247,.25), transparent 70%);
}
.num-card .val { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 5vw, 60px); line-height: 1; }
.num-card .val .u { font-size: .42em; color: var(--text-on-dark-dim); margin-left: 4px; }
.num-card .lab { margin-top: 12px; font-size: 14px; color: var(--text-on-dark-dim); }
.num-card.span2 { grid-column: span 2; }
.num-card .val.y { color: var(--yellow); }
.num-card .val.o { color: var(--orange); }
.num-card .val.s { color: var(--sky-300); }

/* ============================ FEATURE CARDS ============================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
}
.feat-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255,106,26,.18), transparent 70%);
}
.feat-card:hover { transform: translateY(-8px); border-color: rgba(255,106,26,.4); box-shadow: var(--card-shadow); }
.feat-card:hover::after { opacity: 1; }
.feat-ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(79,195,247,.18), rgba(79,195,247,.04));
  border: 1px solid rgba(79,195,247,.3); margin-bottom: 22px;
}
.feat-ic svg { width: 28px; height: 28px; stroke: var(--sky-300); }
.feat-card h3 { font-size: 21px; margin-bottom: 10px; }
.feat-card p { color: var(--text-on-dark-dim); font-size: 15px; }

/* ============================ HOW IT WORKS ============================ */
.how { background: var(--navy-900); }
.how-layout { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.mini-tower { position: sticky; top: calc(var(--nav-h) + 40px); height: 480px; display: flex; justify-content: center; }
.mt-rail {
  position: relative; width: 96px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
}
.mt-rail::before, .mt-rail::after { content: ""; position: absolute; top: 12px; bottom: 12px; width: 3px; background: rgba(255,255,255,.14); border-radius: 3px; }
.mt-rail::before { left: 30px; } .mt-rail::after { right: 30px; }
.mt-cabin {
  position: absolute; left: 50%; transform: translateX(-50%); top: 4%;
  width: 64px; height: 46px; border-radius: 10px;
  background: linear-gradient(var(--yellow), var(--yellow-d));
  box-shadow: 0 0 30px rgba(255,210,63,.6), inset 0 -3px 0 rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: top .25s cubic-bezier(.4,0,.5,1);
}
.mt-cabin span { width: 8px; height: 18px; background: rgba(16,22,43,.55); border-radius: 3px; }
.mt-glow { position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 130px; height: 40px; border-radius: 50%; background: radial-gradient(var(--orange), transparent 70%); opacity: 0; filter: blur(8px); }

.how-steps { display: flex; flex-direction: column; gap: 14px; }
.how-step {
  display: flex; gap: 22px; align-items: center; padding: 26px 28px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: border-color .3s, background .3s, transform .3s;
}
.how-step.active { border-color: var(--orange); background: linear-gradient(150deg, rgba(255,106,26,.12), rgba(255,106,26,.02)); transform: translateX(8px); }
.how-step .n { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: rgba(255,255,255,.18); flex: none; width: 56px; }
.how-step.active .n { color: var(--orange); }
.how-step h3 { font-size: 22px; margin-bottom: 6px; }
.how-step p { color: var(--text-on-dark-dim); font-size: 15px; }

/* ============================ SENSATION METER ============================ */
.meter { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.meter-shell {
  border-radius: var(--radius-lg); padding: clamp(28px,4vw,54px);
  background: linear-gradient(160deg, rgba(255,46,63,.08), rgba(10,26,63,.6));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 80px rgba(255,46,63,.06), var(--card-shadow);
  position: relative; overflow: hidden;
}
.meter-grid { display: grid; grid-template-columns: 260px 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.dials { display: flex; flex-direction: column; gap: 26px; }
.dial { display: flex; align-items: center; gap: 18px; }
.dial-ring { --p: 0; width: 92px; height: 92px; flex: none; position: relative; }
.dial-ring svg { transform: rotate(-90deg); }
.dial-ring .track { stroke: rgba(255,255,255,.1); }
.dial-ring .val { stroke: var(--orange); stroke-linecap: round; transition: stroke-dashoffset 1.4s cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 0 6px rgba(255,106,26,.6)); }
.dial-ring .pct { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.dial-meta b { font-family: var(--font-display); display: block; font-size: 16px; }
.dial-meta span { font-size: 13px; color: var(--text-on-dark-dim); }

.bars { display: flex; flex-direction: column; gap: 22px; }
.bar-row .bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.bar-row .bar-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(15px,1.8vw,18px); }
.bar-row .bar-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px,2.2vw,24px); }
.bar-track { height: 14px; border-radius: 100px; background: rgba(255,255,255,.08); overflow: hidden; position: relative; }
.bar-fill { height: 100%; width: 0; border-radius: 100px; transition: width 1.6s cubic-bezier(.2,.8,.2,1); position: relative; }
.bar-fill::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35)); opacity: .6; }
.bar-fill.red { background: linear-gradient(90deg, var(--orange), var(--red)); box-shadow: 0 0 20px rgba(255,46,63,.5); }
.bar-fill.sky { background: linear-gradient(90deg, var(--sky-400), var(--sky-300)); box-shadow: 0 0 20px rgba(79,195,247,.5); }
.bar-fill.yel { background: linear-gradient(90deg, var(--yellow-d), var(--yellow)); box-shadow: 0 0 20px rgba(255,210,63,.5); }

/* ============================ QUIZ ============================ */
.quiz { background: var(--navy-800); }
.quiz-card {
  max-width: 720px; margin-inline: auto; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--card-shadow);
  padding: clamp(30px,5vw,56px); position: relative; overflow: hidden; min-height: 360px;
}
.quiz-progress { display: flex; gap: 7px; margin-bottom: 32px; }
.quiz-progress i { flex: 1; height: 5px; border-radius: 5px; background: rgba(255,255,255,.12); transition: background .4s; }
.quiz-progress i.on { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.quiz-q { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,3.4vw,38px); margin-bottom: 8px; text-wrap: balance; }
.quiz-step-lab { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--sky-300); margin-bottom: 14px; }
.quiz-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.quiz-opt {
  flex: 1; min-width: 140px; padding: 20px; border-radius: 16px; font-family: var(--font-display);
  font-weight: 600; font-size: 18px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05); color: #fff; transition: .25s;
}
.quiz-opt:hover { background: rgba(255,106,26,.16); border-color: var(--orange); transform: translateY(-3px); }
.quiz-result { text-align: center; }
.quiz-result .ring-ok { width: 110px; height: 110px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, rgba(255,210,63,.25), transparent 70%); animation: popin .5s cubic-bezier(.2,1.4,.4,1) both; }
.quiz-result .ring-ok svg { width: 60px; height: 60px; stroke: var(--yellow); }
@keyframes popin { from { transform: scale(.3); opacity: 0; } }
.quiz-result h3 { font-size: clamp(26px,3.6vw,40px); margin-bottom: 14px; }
.quiz-result p { color: var(--text-on-dark-dim); max-width: 460px; margin: 0 auto 28px; }
.quiz-fade { animation: quizfade .4s ease both; }
@keyframes quizfade { from { opacity: 0; transform: translateY(12px); } }

/* ============================ REQUIREMENTS ============================ */
.req { background: linear-gradient(180deg, var(--navy-800), #0C2452); }
.req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.req-card {
  padding: 28px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.req-card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(79,195,247,.14); border: 1px solid rgba(79,195,247,.28); margin-bottom: 18px; }
.req-card .ic svg { width: 24px; height: 24px; stroke: var(--sky-300); }
.req-card b { font-family: var(--font-display); font-size: 26px; display: block; }
.req-card span { font-size: 14px; color: var(--text-on-dark-dim); display: block; margin-top: 6px; }
.req-card.wide { grid-column: span 4; display: flex; gap: 22px; align-items: flex-start; background: rgba(255,210,63,.06); border-color: rgba(255,210,63,.22); }
.req-card.wide .ic { background: rgba(255,210,63,.14); border-color: rgba(255,210,63,.32); margin-bottom: 0; }
.req-card.wide .ic svg { stroke: var(--yellow); }
.req-card.wide p { color: var(--text-on-dark-dim); font-size: 15px; max-width: 760px; }
.req-card.wide h4 { font-size: 18px; margin-bottom: 8px; }

/* ============================ PRICES ============================ */
.prices { background: #0C2452; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin-inline: auto; }
.price-card {
  position: relative; padding: 40px 36px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(255,255,255,.1); transition: transform .4s, box-shadow .4s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow); }
.price-card.adult { background: linear-gradient(165deg, #18356E, #0A1A3F); border-color: rgba(255,210,63,.3); }
.price-tag { position: absolute; top: 24px; right: 28px; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .1em; padding: 7px 14px; border-radius: 100px; text-transform: uppercase; }
.price-tag.child { background: rgba(79,195,247,.16); color: var(--sky-300); border: 1px solid rgba(79,195,247,.35); }
.price-tag.adult { background: rgba(255,210,63,.16); color: var(--yellow); border: 1px solid rgba(255,210,63,.4); }
.price-card h3 { font-size: 26px; }
.price-card .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(56px,8vw,88px); line-height: 1; margin: 12px 0 4px; }
.price-card .price .cur { font-size: .45em; color: var(--text-on-dark-dim); }
.price-card.child .price { color: var(--sky-300); }
.price-card.adult .price { color: var(--yellow); }
.price-card .age { font-size: 15px; color: var(--text-on-dark-dim); margin-bottom: 24px; }
.price-incl { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-incl li { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.price-incl li svg { width: 20px; height: 20px; flex: none; stroke: var(--orange); }
.prices-note { text-align: center; margin-top: 28px; color: var(--text-on-dark-dim); font-size: 15px; }

/* ============================ HOURS ============================ */
.hours { background: var(--navy-800); }
.hours-card {
  max-width: 760px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--card-shadow); display: grid; grid-template-columns: 1fr 1fr;
}
.hours-status { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.status-led { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 15px; padding: 10px 18px; border-radius: 100px; background: rgba(54,211,153,.14); border: 1px solid rgba(54,211,153,.4); color: #4FE3A8; width: fit-content; }
.status-led .dot { width: 9px; height: 9px; border-radius: 50%; background: #4FE3A8; box-shadow: 0 0 10px #4FE3A8; animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .35; } }
.status-led.closed { background: rgba(255,46,63,.14); border-color: rgba(255,46,63,.4); color: #FF7A86; }
.status-led.closed .dot { background: #FF7A86; box-shadow: 0 0 10px #FF7A86; }
.hours-status .now { font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1; }
.hours-status .now small { font-size: 16px; color: var(--text-on-dark-dim); display: block; font-weight: 500; font-family: var(--font-body); margin-top: 8px; }
.hours-rows { background: rgba(0,0,0,.2); padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { color: #fff; }
.hours-row .d { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.hours-row .t { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--yellow); }
.hours-row.dim { color: var(--text-on-dark-dim); }
.hours-row.dim .t { color: var(--text-on-dark-dim); }
.hours-row .badge-today { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-left: 10px; }

/* ============================ SAFETY ============================ */
.safety { background: linear-gradient(180deg, var(--navy-800), #0B2B5C); }
.safety-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.safety-card { padding: 28px 22px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(126,211,252,.16); }
.safety-card .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(79,195,247,.14); margin-bottom: 18px; }
.safety-card .ic svg { width: 26px; height: 26px; stroke: var(--sky-300); }
.safety-card p { font-size: 14.5px; color: var(--text-on-dark); }

/* ============================ GALLERY ============================ */
.gallery { background: var(--navy-900); }
.gal-track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 26vw, 320px); gap: 18px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; }
.gal-track::-webkit-scrollbar { height: 8px; }
.gal-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 8px; }
.gal-item { position: relative; height: clamp(360px, 50vw, 480px); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); scroll-snap-align: start; background: linear-gradient(180deg, #1E5FA8, #4FC3F7 65%, #CDEBFF); }
.gal-item image-slot { width: 100%; height: 100%; }
.gal-item .cap { position: absolute; left: 14px; bottom: 14px; z-index: 3; font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 8px 14px; border-radius: 100px; background: rgba(5,11,34,.55); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.16); pointer-events: none; }
.gal-item.tall { grid-row: span 1; }

/* ============================ ROUTE / SCENARIO ============================ */
.route { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.route-line { position: relative; display: flex; flex-direction: column; gap: 0; padding-left: 8px; }
.route-step { position: relative; display: flex; gap: 28px; padding: 18px 0 38px 0; }
.route-step:last-child { padding-bottom: 0; }
.route-rail { position: relative; flex: none; width: 48px; display: flex; flex-direction: column; align-items: center; }
.route-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--navy-700); border: 3px solid var(--sky-300); z-index: 2; transition: .4s; }
.route-step.in .route-dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 20px var(--orange); }
.route-conn { position: absolute; top: 22px; bottom: -16px; width: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.route-conn i { position: absolute; inset: 0; background: linear-gradient(var(--orange), var(--yellow)); transform: scaleY(0); transform-origin: top; transition: transform .6s; }
.route-step.in .route-conn i { transform: scaleY(1); }
.route-step:last-child .route-conn { display: none; }
.route-body { padding-top: 0; }
.route-body .num { font-family: var(--font-display); font-weight: 700; color: var(--sky-300); font-size: 13px; letter-spacing: .1em; }
.route-body h3 { font-size: clamp(20px,2.6vw,28px); margin: 4px 0 6px; }
.route-body p { color: var(--text-on-dark-dim); font-size: 15px; max-width: 520px; }

/* ============================ NEARBY ============================ */
.nearby { background: var(--navy-800); }
.near-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.near-card { display: flex; gap: 18px; align-items: center; padding: 22px 24px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: .3s; }
.near-card:hover { transform: translateY(-5px); border-color: rgba(79,195,247,.35); }
.near-card .ic { width: 52px; height: 52px; flex: none; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(79,195,247,.18), rgba(79,195,247,.03)); border: 1px solid rgba(79,195,247,.25); }
.near-card .ic svg { width: 26px; height: 26px; stroke: var(--sky-300); }
.near-card b { font-family: var(--font-display); font-size: 17px; }
.near-card span { font-size: 13.5px; color: var(--text-on-dark-dim); }

/* ============================ REVIEWS ============================ */
.reviews { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { padding: 32px 30px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 18px; }
.rev-stars { display: flex; gap: 3px; color: var(--yellow); font-size: 20px; letter-spacing: 3px; line-height: 1; }
.rev-stars svg { width: 20px; height: 20px; fill: var(--yellow); }
.rev-card p { font-size: 16px; line-height: 1.6; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 13px; }
.rev-ava { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.rev-author b { font-family: var(--font-display); font-size: 15px; display: block; }
.rev-author span { font-size: 13px; color: var(--text-on-dark-dim); }

/* ============================ GET THERE / MAP ============================ */
.getthere { background: var(--navy-900); }
.map-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: stretch; }
.map-info { display: flex; flex-direction: column; gap: 18px; }
.map-addr { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.map-addr .lab { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--sky-300); margin-bottom: 10px; }
.map-addr p { font-size: 19px; font-family: var(--font-display); font-weight: 500; line-height: 1.4; }
.travel-modes { display: flex; flex-direction: column; gap: 12px; }
.travel-mode { display: flex; gap: 16px; align-items: center; padding: 18px 22px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.travel-mode .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(79,195,247,.12); }
.travel-mode .ic svg { width: 22px; height: 22px; stroke: var(--sky-300); }
.travel-mode b { font-family: var(--font-display); font-size: 15px; display: block; }
.travel-mode span { font-size: 13.5px; color: var(--text-on-dark-dim); }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.12); min-height: 440px; box-shadow: var(--card-shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); position: absolute; inset: 0; }
.map-pin-cta { position: absolute; left: 20px; bottom: 20px; z-index: 3; }

/* ============================ FAQ ============================ */
.faq { background: var(--navy-800); }
.faq-list { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(255,106,26,.4); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 26px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: clamp(16px,2vw,19px); color: #fff; }
.faq-icn { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: .3s; position: relative; }
.faq-icn::before, .faq-icn::after { content: ""; position: absolute; background: #fff; border-radius: 2px; }
.faq-icn::before { width: 13px; height: 2px; }
.faq-icn::after { width: 2px; height: 13px; transition: transform .3s; }
.faq-item.open .faq-icn { background: var(--orange); }
.faq-item.open .faq-icn::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--text-on-dark-dim); font-size: 15.5px; line-height: 1.6; }

/* ============================ SEO TEXT ============================ */
.seo { background: var(--navy-900); }
.seo-text { max-width: 840px; margin-inline: auto; }
.seo-text p { color: var(--text-on-dark-dim); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.seo-text p b { color: var(--text-on-dark); }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.seo-tags span { font-size: 12.5px; padding: 7px 13px; border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--text-on-dark-dim); }

/* ============================ FINAL CTA ============================ */
.final {
  background: linear-gradient(180deg, var(--navy-900) 0%, #14224F 50%, #1E3A7A 100%);
  text-align: center; overflow: hidden;
}
.final h2 { font-size: clamp(34px,6.5vw,84px); margin-bottom: 26px; text-wrap: balance; }
.final h2 .accent { color: var(--yellow); }
.final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }
.final-phone { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px,5vw,52px); color: #fff; display: inline-flex; align-items: center; gap: 16px; }
.final-phone svg { width: 38px; height: 38px; stroke: var(--orange); }

/* ============================ FOOTER ============================ */
.footer { background: var(--navy-900); padding: 50px 0 40px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
.footer p { font-size: 13.5px; color: var(--text-on-dark-dim); }
.footer .brand { font-size: 16px; }

/* ============================ MOBILE BOTTOM BAR ============================ */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(5,11,34,.92); backdrop-filter: blur(18px); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-bar .btn { width: 100%; padding: 16px; }

/* ============================ REVEAL ANIM ============================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-side { min-height: 360px; order: -1; height: 360px; }
  .hero-side .height-scale { display: none; }
  .hero-side .ride-lift { width: 86px; }
  .hero-photo { min-width: 0; width: 100%; flex-basis: auto; }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid, .near-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .req-card.wide { grid-column: span 2; }
  .how-layout { grid-template-columns: 1fr; }
  .mini-tower { position: relative; top: 0; height: 320px; margin-bottom: 20px; }
  .meter-grid { grid-template-columns: 1fr; }
  .dials { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .map-layout { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ride-seats { animation: none; bottom: calc(100% - 74px); }
}
@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 78px; }
  .hero-cta .btn { flex: 1; }
  .hero-quick { gap: 6px; }
  .qb { padding-right: 12px; }
  .qb b { font-size: 18px; }
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feat-grid, .near-grid, .rev-grid, .req-grid, .safety-grid, .price-grid { grid-template-columns: 1fr; }
  .req-card.wide { grid-column: span 1; flex-direction: column; gap: 14px; }
  .hours-card { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
  .how-step { padding: 20px; gap: 14px; }
  .how-step .n { font-size: 30px; width: 40px; }
}
