:root {
  color-scheme: dark;
  --obsidian: #04050a;
  --ink: #080b14;
  --graphite: #111827;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f8ff;
  --muted: #9aa8bc;
  --soft: #6b7a90;
  --cyan: #2ee8ff;
  --lime: #7dff6a;
  --amber: #ffc93d;
  --pink: #ff4fd0;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1200px;
  --wide: 1400px;
  --header-h: 76px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.ambient__orb--cyan {
  width: 50vw;
  height: 50vw;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(46, 232, 255, 0.35), transparent 70%);
}

.ambient__orb--pink {
  width: 40vw;
  height: 40vw;
  bottom: 20%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 79, 208, 0.25), transparent 70%);
}

.ambient__orb--lime {
  width: 30vw;
  height: 30vw;
  top: 50%;
  left: 40%;
  background: radial-gradient(circle, rgba(125, 255, 106, 0.12), transparent 70%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
}

/* Typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

.section__desc {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
  padding: 0 clamp(16px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease-out), border-color 0.3s, backdrop-filter 0.3s;
}

.header--scrolled {
  background: rgba(4, 5, 10, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(20px) saturate(160%);
}

.header__brand img { width: clamp(140px, 16vw, 200px); height: auto; }

.header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 32px);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.header__nav a:hover,
.header__nav a:focus-visible { color: var(--text); }

.header__cta {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.header__cta:hover { transform: translateY(-1px); background: var(--panel-strong); border-color: rgba(255, 201, 61, 0.4); }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

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

.btn--primary {
  color: #0a0b10;
  background: linear-gradient(135deg, var(--amber), var(--lime));
  box-shadow: 0 12px 40px rgba(255, 201, 61, 0.22);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
}

.btn--block { width: 100%; }

/* Hero */
.hero {
  width: min(var(--wide), 100%);
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: calc(var(--header-h) + 48px) clamp(20px, 5vw, 64px) 64px;
}

.hero__lede {
  max-width: 540px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(244, 248, 255, 0.85);
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  vertical-align: middle;
}

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

.hero__visual { position: relative; min-height: 420px; }

.hero__frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 232, 255, 0.08), transparent 50%, rgba(255, 79, 208, 0.06));
  pointer-events: none;
}

.float-card {
  position: absolute;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 11, 20, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: float 6s ease-in-out infinite;
}

.float-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-card strong { font-size: 0.95rem; }
.float-card--a { top: 8%; left: -4%; animation-delay: 0s; }
.float-card--b { top: 42%; right: -6%; animation-delay: -2s; }
.float-card--c { bottom: 6%; left: 8%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(244, 248, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee__track span { white-space: nowrap; }

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

/* Sections */
.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 0;
}

.section__head { margin-bottom: 40px; }

/* Media stage */
.media-stage {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--panel);
}

.media-stage__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-stage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-stage__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 5, 10, 0.15);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
  transition: transform 0.2s, background 0.2s;
}

.play-btn:hover { transform: scale(1.08); background: rgba(255, 201, 61, 0.3); }

.media-stage__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.media-stage__stats article {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.media-stage__stats article:last-child { border-right: 0; }

.media-stage__stats span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-stage__stats strong { font-size: 0.95rem; }

/* Product */
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: 72px;
}

.product__text p { color: var(--muted); margin: 0 0 16px; }

.product__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.product__image img { width: 100%; height: 100%; object-fit: cover; }

.advantages__title { margin-bottom: 28px; font-size: 1.5rem; }

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

.adv-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel-strong), var(--panel));
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.adv-card:hover { transform: translateY(-4px); border-color: rgba(46, 232, 255, 0.3); }

.adv-card--accent {
  border-color: rgba(255, 201, 61, 0.35);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 208, 0.12), transparent 50%),
    linear-gradient(160deg, var(--panel-strong), var(--panel));
}

.adv-card__icon {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.adv-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Explorer (modes & locations) */
.explorer--wide { width: min(var(--wide), calc(100% - 40px)); }

.explorer__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.explorer__tab {
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  transition: all 0.2s var(--ease-out);
}

.explorer__tab:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.2); }

.explorer__tab[aria-selected="true"] {
  color: #0a0b10;
  background: linear-gradient(135deg, var(--amber), var(--lime));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 201, 61, 0.2);
}

.explorer__panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.explorer__preview {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--line);
}

.explorer__preview img { width: 100%; height: 100%; object-fit: cover; }

.location-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: start;
}

.location-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}

.location-detail__image img { width: 100%; height: 100%; object-fit: cover; }

.location-detail__info h3 { margin-bottom: 12px; color: var(--cyan); }
.location-detail__info p { margin: 0; color: var(--muted); }

/* Slider */
.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.slider__btn:hover { background: var(--panel-strong); border-color: var(--cyan); }

.slider__viewport { overflow: hidden; border-radius: var(--radius-sm); }

.slider__track {
  display: flex;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s, transform 0.2s;
}

.slider__dot[aria-current="true"] {
  background: var(--amber);
  transform: scale(1.25);
}

.explorer__caption {
  margin: 20px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Interface */
.interface__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ui-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 0.25s var(--ease-out);
}

.ui-card:hover { transform: translateY(-4px); }

.ui-card__screen {
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}

.ui-card__screen img { width: 100%; height: 100%; object-fit: cover; }

.ui-card h3 { margin-bottom: 8px; font-size: 1rem; }
.ui-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

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

.platform-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.platform-card--featured {
  border-color: rgba(46, 232, 255, 0.35);
  background:
    radial-gradient(circle at 0% 100%, rgba(46, 232, 255, 0.1), transparent 50%),
    var(--panel);
}

.platform-card__icon {
  margin-bottom: 20px;
  color: var(--cyan);
}

.platform-card h3 { margin-bottom: 12px; }
.platform-card p { margin: 0 0 16px; color: var(--muted); font-size: 0.92rem; }

.platform-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-card__tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(244, 248, 255, 0.8);
}

/* Pricing */
.pricing__versions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.pricing__versions article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.pricing__versions h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pricing__versions p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, var(--panel-strong), var(--panel));
}

.price-card--featured {
  border-color: rgba(255, 201, 61, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 208, 0.15), transparent 40%),
    linear-gradient(165deg, var(--panel-strong), var(--panel));
}

.price-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--lime));
  color: #0a0b10;
  font-size: 0.72rem;
  font-weight: 800;
}

.price-card__label {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.88rem;
}

.price-card__price {
  margin-bottom: 24px;
}

.price-card__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
}

.price-card__price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card__features {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card__features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 800;
}

/* Contact */
.contact__panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact__note {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: left;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.contact-card:hover { transform: translateY(-4px); border-color: rgba(46, 232, 255, 0.35); }

.contact-card--accent {
  border-color: rgba(255, 201, 61, 0.35);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 201, 61, 0.08), transparent 50%),
    var(--panel);
}

.contact-card__label {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card strong {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.contact-card__action {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.88rem;
}

.feedback-form[hidden] { display: none; }

.feedback-form {
  max-width: 560px;
  margin: 40px auto 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  display: grid;
  gap: 14px;
}

.feedback-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.feedback-form input,
.feedback-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(4, 5, 10, 0.5);
  color: var(--text);
  font: inherit;
}

.feedback-form .consent-label { font-weight: 500; font-size: 0.85rem; }
.feedback-form .consent-links { margin: 0; font-size: 0.85rem; color: var(--muted); }
.feedback-form .consent-links a { color: var(--amber); }
.form-status { min-height: 24px; margin: 0; color: var(--muted); font-size: 0.9rem; }

.media-stage__image video,
.media-stage__image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Footer */
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
}

.footer__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.footer__main p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}

.footer__links a,
.footer__links button {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__links button:hover,
.footer__links a:focus-visible,
.footer__links button:focus-visible { color: var(--amber); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.82rem;
}

.footer__bottom a { color: var(--amber); font-weight: 700; }

/* Modal */
.modal {
  width: min(560px, calc(100% - 32px));
  max-height: 85vh;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: #0c0f18;
  color: var(--text);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(4, 5, 10, 0.75);
  backdrop-filter: blur(6px);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.modal__header h2 { margin: 0; font-size: 1.3rem; }

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--panel);
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s;
}

.modal__close:hover { background: var(--panel-strong); }

.modal__body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  max-height: calc(85vh - 80px);
}

.company-list { margin: 0; }

.company-list div {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.company-list div:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }

.company-list dt {
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.company-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Responsive */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { order: -1; min-height: 340px; }
  .product__grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .interface__grid { grid-template-columns: repeat(2, 1fr); }
  .platform__grid { grid-template-columns: 1fr; }
  .location-detail { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header__burger { display: flex; }
  .header__nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(4, 5, 10, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
  }
  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }
  .header__nav a:hover { background: var(--panel); }
  .header__cta { display: none; }
  .media-stage__stats { grid-template-columns: repeat(2, 1fr); }
  .media-stage__stats article:nth-child(2) { border-right: 0; }
  .media-stage__stats article { border-bottom: 1px solid var(--line); }
  .media-stage__stats article:nth-child(3),
  .media-stage__stats article:nth-child(4) { border-bottom: 0; }
  .pricing__versions,
  .pricing__cards,
  .contact__channels { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 600px) {
  .advantages__grid,
  .interface__grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .explorer__tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: thin; }
  .explorer__tab { flex-shrink: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .float-card { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slider__track { transition: none; }
}
