/* ==========================================================================
   KOLIBRINA — ВАУ-ДИЗАЙН ЛЕНДИНГА (3 ЭКРАНА)
   Apple / Linear level tech aesthetic:
   Обсидиановое стекло, неоновые лучи, 3D титановые мокапы, идеальные бейджи
   ========================================================================== */

:root {
  color-scheme: dark;

  /* Обсидиановая основа */
  --bg-space: #020308;
  --bg-card: rgba(12, 15, 33, 0.65);
  --bg-card-hover: rgba(18, 22, 48, 0.85);
  
  /* Неоновая палитра Kolibrina */
  --cyan: #42E8FF;
  --blue: #5572FF;
  --violet: #9B5CFF;
  --pink: #FF3DBB;
  --success: #42F5A7;
  --amber: #FFB300;

  /* Текст */
  --text-pure: #FFFFFF;
  --text-muted: #8E92B8;
  --text-dim: #54587C;

  /* Градиенты */
  --grad-logo: linear-gradient(135deg, #FF3DBB 0%, #9B5CFF 35%, #5572FF 70%, #42E8FF 100%);
  --grad-btn: linear-gradient(90deg, #FF3DBB 0%, #9B5CFF 40%, #5572FF 75%, #42E8FF 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(155, 92, 255, 0.3) 0%, rgba(66, 232, 255, 0.15) 50%, transparent 75%);

  /* Стеклянные рамки */
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-glow: 1px solid rgba(66, 232, 255, 0.4);

  --r-phone: 50px;
  --r-card: 28px;
  --r-pill: 9999px;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-space);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: var(--bg-space);
  color: var(--text-pure);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   КОСМИЧЕСКИЙ СВЕТ И ДИНАМИЧЕСКИЙ ФОН
   ========================================================================== */
.space-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.32;
  mix-blend-mode: screen;
  pointer-events: none;
}

.aurora-1 {
  width: 900px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(155, 92, 255, 0.5) 0%, rgba(85, 114, 255, 0.25) 50%, transparent 75%);
}

.aurora-2 {
  width: 800px;
  height: 800px;
  top: 40%;
  right: -250px;
  background: radial-gradient(circle, rgba(255, 61, 187, 0.3) 0%, transparent 70%);
}

.aurora-3 {
  width: 950px;
  height: 800px;
  bottom: -200px;
  left: -250px;
  background: radial-gradient(circle, rgba(66, 232, 255, 0.28) 0%, transparent 70%);
}

.cyber-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.shell-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   ВЕРХНИЙ СТЕКЛЯННЫЙ БАР (TOPBAR)
   ========================================================================== */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.glass-header.scrolled {
  background: rgba(2, 3, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-header .shell-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-capsule {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #FFFFFF;
}

.brand-capsule-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(66, 232, 255, 0.4));
  transition: transform 0.4s var(--ease-spring);
}

.brand-capsule:hover .brand-capsule-logo {
  transform: scale(1.1) rotate(-4deg);
}

.brand-capsule-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s var(--ease-spring);
}

.header-cta-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(66, 232, 255, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   СЕКЦИИ (3 ГЛАВНЫХ ЭКРАНА)
   ========================================================================== */
.stage-section {
  min-height: 100vh;
  padding: 150px 0 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

/* ==========================================================================
   ЭКРАН 1 — KOLIBRINA
   ========================================================================== */
.hero-emblem-wrap {
  margin-bottom: 28px;
  display: inline-flex;
  position: relative;
}

.hero-emblem {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(66, 232, 255, 0.55)) drop-shadow(0 0 90px rgba(155, 92, 255, 0.35));
  animation: float-emblem 5s ease-in-out infinite alternate;
}

@keyframes float-emblem {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.04); }
}

.hero-h1 {
  font-size: clamp(4rem, 9.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(155, 92, 255, 0.3));
}

.hero-h3 {
  font-size: clamp(1.4rem, 2.7vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  max-width: 860px;
  margin: 0 auto 16px;
  line-height: 1.28;
}

.hero-caption {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 60px;
  font-weight: 500;
}

/* 3D Сцена устройств Hero */
.hero-stage-view {
  position: relative;
  width: 100%;
  max-width: 1040px;
  height: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

/* Реалистичный титановый мокап смартфона */
.titanium-phone {
  position: absolute;
  width: 300px;
  border-radius: var(--r-phone);
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(30, 35, 70, 0.5) 45%, rgba(10, 12, 28, 0.8) 100%);
  box-shadow: 
    0 40px 120px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(155, 92, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  transition: transform 0.6s var(--ease-spring), box-shadow 0.6s ease;
  transform-style: preserve-3d;
}

/* Внутренний OLED дисплей */
.phone-glass-screen {
  border-radius: 40px;
  overflow: hidden;
  background-color: #000000;
  aspect-ratio: 1170 / 2532;
  position: relative;
  box-shadow: 0 0 0 2px #090B1B;
}

.phone-glass-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Блик на стекле экрана */
.phone-glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Динамический остров / вырез */
.phone-dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Позиционирование 3 телефонов в сцене */
.phone-layer-left {
  left: 60px;
  transform: rotateY(18deg) rotateZ(-6deg) scale(0.86) translateY(25px);
  z-index: 1;
  opacity: 0.85;
}

.phone-layer-center {
  z-index: 3;
  transform: scale(1.06);
  box-shadow: 
    0 50px 140px rgba(0, 0, 0, 0.95),
    0 0 100px rgba(155, 92, 255, 0.4),
    0 0 150px rgba(66, 232, 255, 0.25);
}

.phone-layer-right {
  right: 60px;
  transform: rotateY(-18deg) rotateZ(6deg) scale(0.86) translateY(25px);
  z-index: 2;
  opacity: 0.85;
}

/* Парящие голографические виджеты Hero */
.holo-hud-chip {
  position: absolute;
  background: rgba(18, 22, 50, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-card);
  padding: 14px 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(66, 232, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  pointer-events: none;
  animation: hud-float 6s ease-in-out infinite alternate;
}

.hud-left {
  top: 12%;
  left: 0;
}

.hud-right {
  bottom: 18%;
  right: 0;
  animation-delay: -3s;
}

.hud-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(66, 232, 255, 0.15);
  border: 1px solid var(--cyan);
  display: grid;
  place-items: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.hud-icon-box.pink {
  background: rgba(255, 61, 187, 0.15);
  border-color: var(--pink);
  color: var(--pink);
}

.hud-texts {
  text-align: left;
}

.hud-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #FFFFFF;
}

.hud-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes hud-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   ЭКРАН 2 — СКОРО В APP STORE И GOOGLE PLAY
   ========================================================================== */
.soon-h2 {
  font-size: clamp(2.8rem, 6vw, 4.85rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.soon-lead-text {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--text-muted);
  margin-bottom: 54px;
  font-weight: 500;
}

/* Две большие роскошные карточки магазинов */
.luxury-store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 65px;
}

.luxury-store-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.luxury-store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.6s ease;
}

.luxury-store-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(66, 232, 255, 0.5);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85), 0 0 40px rgba(66, 232, 255, 0.3);
}

.luxury-store-card:hover::before {
  left: 100%;
}

.store-badge-emblem {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.store-badge-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.store-badge-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-brand-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.store-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-soon-badge.emerald {
  color: var(--success);
}

.radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: radar-pulse 2s infinite ease-in-out;
}

.radar-dot.emerald {
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}

@keyframes radar-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Центральный экран для СКОРО */
.soon-stage-device {
  max-width: 320px;
  margin: 0 auto;
}

.soon-stage-device .titanium-phone {
  position: relative;
  width: 100%;
  transform: none;
  box-shadow: 
    0 40px 110px rgba(0, 0, 0, 0.9),
    0 0 70px rgba(85, 114, 255, 0.35);
}

/* ==========================================================================
   ЭКРАН 3 — ЗАКРЫТОЕ ТЕСТИРОВАНИЕ
   ========================================================================== */
.test-h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.test-lead-text {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 54px;
  font-weight: 500;
}

.vip-access-card {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20, 24, 52, 0.75) 0%, rgba(10, 13, 30, 0.9) 100%);
  border-radius: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 44px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(155, 92, 255, 0.2);
  text-align: left;
  position: relative;
}

.vip-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.field-control {
  width: 100%;
  background: rgba(3, 4, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 1.1rem;
  color: #FFFFFF;
  font-family: inherit;
  outline: none;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6);
  transition: all 0.3s var(--ease-spring);
}

.field-control::placeholder {
  color: var(--text-dim);
}

.field-control:focus {
  border-color: var(--cyan);
  background: rgba(10, 14, 34, 0.95);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(66, 232, 255, 0.3);
}

.field-wrapper.has-error .field-control {
  border-color: #FF527B;
  box-shadow: 0 0 25px rgba(255, 82, 123, 0.3);
}

.field-error-msg {
  font-size: 0.8125rem;
  color: #FF527B;
  font-weight: 700;
  display: none;
}

.field-wrapper.has-error .field-error-msg {
  display: block;
}

.gmail-badge-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gmail-badge-note.active {
  color: var(--cyan);
  font-weight: 700;
}

.btn-vip-submit {
  width: 100%;
  min-height: 64px;
  margin-top: 12px;
  border-radius: 20px;
  background: var(--grad-btn);
  background-size: 200% auto;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 45px rgba(155, 92, 255, 0.5), 0 0 25px rgba(66, 232, 255, 0.35);
  transition: all 0.4s var(--ease-spring);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-vip-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: light-sweep 3.5s infinite;
}

@keyframes light-sweep {
  0% { left: -100%; }
  40%, 100% { left: 100%; }
}

.btn-vip-submit:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 55px rgba(155, 92, 255, 0.65), 0 0 40px rgba(66, 232, 255, 0.5);
}

.btn-vip-submit:active {
  transform: translateY(0);
}

.vip-spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-vip-submit.loading .btn-vip-text {
  display: none;
}

.btn-vip-submit.loading .vip-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Карточка подтверждения */
.vip-success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 12px;
  gap: 20px;
  animation: zoom-in 0.5s var(--ease-spring);
}

.vip-success-box.active {
  display: flex;
}

.success-trophy-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(66, 245, 167, 0.14);
  border: 2px solid var(--success);
  display: grid;
  place-items: center;
  color: var(--success);
  box-shadow: 0 0 50px rgba(66, 245, 167, 0.45);
}

.success-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.success-hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
}

@keyframes zoom-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   ФИНАЛ
   ========================================================================== */
.epic-footer {
  padding: 80px 0 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.footer-emblem {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(66, 232, 255, 0.45));
}

.footer-statement {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ПОД МОБИЛЬНЫЕ УСТРОЙСТВА И ПЛАНШЕТЫ
   ========================================================================== */

/* Планшеты и компактные ноутбуки */
@media (max-width: 992px) {
  .shell-container {
    padding: 0 24px;
  }

  .stage-section {
    padding: 130px 0 90px;
  }

  .hero-stage-view {
    height: 520px;
  }

  .titanium-phone {
    width: 250px;
  }

  .phone-layer-left {
    left: 20px;
    transform: rotateY(18deg) rotateZ(-6deg) scale(0.85) translateY(20px);
  }

  .phone-layer-right {
    right: 20px;
    transform: rotateY(-18deg) rotateZ(6deg) scale(0.85) translateY(20px);
  }

  .holo-hud-chip {
    display: none;
  }

  .luxury-store-grid {
    gap: 20px;
  }

  .luxury-store-card {
    padding: 28px 24px;
  }
}

/* Мобильные телефоны (смартфоны до 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  .shell-container {
    padding: 0 20px;
  }

  /* Шапка на мобильных */
  .glass-header {
    height: 66px;
  }

  .brand-capsule {
    gap: 10px;
  }

  .brand-capsule-logo {
    width: 36px;
    height: 36px;
  }

  .brand-capsule-title {
    font-size: 1.08rem;
    letter-spacing: 0.03em;
  }

  .header-cta-pill {
    padding: 8px 16px;
    font-size: 0.8125rem;
    gap: 6px;
  }

  /* Фон и аврора */
  .aurora-1 {
    width: 450px;
    height: 450px;
    filter: blur(80px);
    opacity: 0.28;
  }

  .aurora-2 {
    width: 400px;
    height: 400px;
    filter: blur(80px);
    opacity: 0.22;
  }

  .aurora-3 {
    width: 420px;
    height: 420px;
    filter: blur(80px);
    opacity: 0.22;
  }

  /* Секции */
  .stage-section {
    padding: 95px 0 65px;
    min-height: auto;
  }

  /* ЭКРАН 1 (Hero) */
  .hero-emblem-wrap {
    margin-bottom: 18px;
  }

  .hero-emblem {
    width: 86px;
    height: 86px;
    filter: drop-shadow(0 0 35px rgba(66, 232, 255, 0.5));
  }

  .hero-h1 {
    font-size: clamp(2.6rem, 11.5vw, 4.4rem);
    margin-bottom: 14px;
    line-height: 1;
  }

  .hero-h3 {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    line-height: 1.35;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .hero-caption {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 36px;
  }

  .hero-stage-view {
    height: auto;
    min-height: 0;
    padding: 10px 0 20px;
    perspective: none;
  }

  .phone-layer-left, .phone-layer-right {
    display: none;
  }

  .phone-layer-center {
    position: relative;
    width: min(285px, 82vw);
    transform: none !important;
    border-radius: 42px;
    padding: 8px;
    box-shadow: 
      0 30px 80px rgba(0, 0, 0, 0.9),
      0 0 60px rgba(155, 92, 255, 0.35),
      0 0 90px rgba(66, 232, 255, 0.2);
  }

  .phone-layer-center .phone-glass-screen {
    border-radius: 34px;
  }

  .phone-dynamic-island {
    top: 10px;
    width: 76px;
    height: 20px;
  }

  /* ЭКРАН 2 (Скоро) */
  .soon-h2 {
    font-size: clamp(2.1rem, 8vw, 3.4rem);
    margin-bottom: 12px;
  }

  .soon-lead-text {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .luxury-store-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
    max-width: 400px;
  }

  .luxury-store-card {
    padding: 22px 20px;
    border-radius: 22px;
    gap: 18px;
  }

  .store-badge-emblem {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    padding: 10px;
  }

  .store-brand-title {
    font-size: 1.4rem;
  }

  .store-soon-badge {
    font-size: 0.8125rem;
  }

  .soon-stage-device {
    max-width: min(275px, 78vw);
  }

  .soon-stage-device .titanium-phone {
    border-radius: 40px;
    padding: 8px;
  }

  .soon-stage-device .phone-glass-screen {
    border-radius: 32px;
  }

  /* ЭКРАН 3 (Закрытое тестирование) */
  .test-h2 {
    font-size: clamp(1.95rem, 7.5vw, 3.2rem);
    margin-bottom: 12px;
  }

  .test-lead-text {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .vip-access-card {
    padding: 28px 20px;
    border-radius: 26px;
    max-width: 100%;
  }

  .vip-form {
    gap: 16px;
  }

  .field-wrapper {
    gap: 6px;
  }

  .field-label {
    font-size: 0.875rem;
  }

  .field-control {
    padding: 15px 18px;
    font-size: 1.05rem;
    border-radius: 15px;
  }

  .gmail-badge-note {
    font-size: 0.775rem;
    line-height: 1.35;
  }

  .btn-vip-submit {
    min-height: 58px;
    font-size: 1.08rem;
    margin-top: 8px;
    border-radius: 16px;
    padding: 0 16px;
  }

  .vip-success-box {
    padding: 24px 8px;
    gap: 14px;
  }

  .success-trophy-ring {
    width: 68px;
    height: 68px;
  }

  .success-hero-title {
    font-size: 2rem;
  }

  .success-hero-desc {
    font-size: 1.05rem;
  }

  /* Футер */
  .epic-footer {
    padding: 60px 0 45px;
    gap: 14px;
  }

  .footer-emblem {
    width: 44px;
    height: 44px;
  }

  .footer-statement {
    font-size: 0.95rem;
    padding: 0 16px;
  }
}

/* Сверхкомпактные экраны (iPhone SE, Galaxy Fold в сложенном виде < 380px) */
@media (max-width: 380px) {
  .shell-container {
    padding: 0 16px;
  }

  .brand-capsule-title {
    display: none;
  }

  .header-cta-pill {
    padding: 7px 12px;
    font-size: 0.75rem;
  }

  .hero-h1 {
    font-size: 2.3rem;
  }

  .hero-h3 {
    font-size: 1.05rem;
  }

  .phone-layer-center, .soon-stage-device {
    width: 250px;
  }

  .luxury-store-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .store-badge-emblem {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .store-brand-title {
    font-size: 1.25rem;
  }

  .vip-access-card {
    padding: 22px 14px;
  }
}
