@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

/* ========================================
   AURORA DARK THEME - Остров монтажа
   Animated gradients, floating orbs, glow effects
   ======================================== */

:root {
  color-scheme: dark;

  /* Aurora Color Palette */
  --aurora-1: #a855f7;      /* Purple */
  --aurora-2: #10b981;      /* Emerald green */
  --aurora-3: #06b6d4;      /* Cyan */
  --aurora-4: #8b5cf6;      /* Violet */
  --aurora-5: #34d399;      /* Light emerald */

  /* Background */
  --bg-0: #030014;
  --bg-1: #0a0520;
  --bg-2: #120a28;

  /* Glass */
  --glass-1: rgba(255, 255, 255, 0.03);
  --glass-2: rgba(255, 255, 255, 0.06);
  --glass-3: rgba(255, 255, 255, 0.08);

  /* Strokes */
  --stroke-1: rgba(255, 255, 255, 0.08);
  --stroke-2: rgba(255, 255, 255, 0.12);
  --stroke-glow: rgba(168, 85, 247, 0.3);

  /* Text */
  --text-1: #f8fafc;
  --text-2: rgba(248, 250, 252, 0.7);
  --text-3: rgba(248, 250, 252, 0.45);

  /* Accents */
  --accent: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  --accent-glow: rgba(168, 85, 247, 0.4);

  /* Shadows */
  --shadow-1: 0 25px 80px rgba(0, 0, 0, 0.6);
  --shadow-2: 0 15px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.15);

  --blur: 20px;
  --radius: 24px;
  --wrap: 920px;
  --pad: 16px;
  --dockH: 112px;

  /* Back-compat */
  --bg0: var(--bg-0);
  --bg1: var(--bg-1);
  --glass: var(--glass-1);
  --glass2: var(--glass-2);
  --stroke: var(--stroke-1);
  --text: var(--text-1);
  --muted: var(--text-2);
  --muted2: var(--text-3);
  --green: var(--aurora-1);
  --green2: var(--aurora-2);
  --shadow: var(--shadow-1);
  --shadowSoft: var(--shadow-2);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

/* ========================================
   ANIMATED AURORA BACKGROUND
   ======================================== */
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  color: var(--text-1);
  background: var(--bg-0);
  position: relative;
  overflow-x: hidden;
}

/* Main aurora gradient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(168, 85, 247, 0.25), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(16, 185, 129, 0.2), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 60%, rgba(6, 182, 212, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(139, 92, 246, 0.18), transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(168, 85, 247, 0.08), transparent 60%);
  animation: auroraShift 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes auroraShift {
  0% {
    filter: hue-rotate(0deg);
    opacity: 1;
  }
  50% {
    filter: hue-rotate(15deg);
    opacity: 0.9;
  }
  100% {
    filter: hue-rotate(-10deg);
    opacity: 1;
  }
}

/* Noise texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

body { touch-action: manipulation; }

/* ========================================
   FLOATING ORBS (added via JS)
   ======================================== */
.aurora-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}

.aurora-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--aurora-1), transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.aurora-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--aurora-2), transparent 70%);
  top: 30%;
  right: -10%;
  animation-delay: -5s;
}

.aurora-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--aurora-3), transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 30px) scale(0.95);
  }
  75% {
    transform: translate(20px, 20px) scale(1.02);
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* Stagger animation for lists */
.stagger-animate > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-animate.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-animate.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-animate.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-animate.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-animate.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-animate.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-animate.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-animate.is-visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-animate.is-visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-animate.is-visible > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-animate.is-visible > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-animate.is-visible > *:nth-child(12) { transition-delay: 0.6s; }

.stagger-animate.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   GRADIENT TEXT
   ======================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--aurora-1) 0%, var(--aurora-2) 50%, var(--aurora-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ========================================
   GLASS CARDS - Aurora Style
   ======================================== */
.glassCard {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--shadow-1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

/* Aurora glow on hover */
.glassCard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(168, 85, 247, 0.2) 0%,
    rgba(16, 185, 129, 0.15) 50%,
    rgba(6, 182, 212, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(20px);
}

.glassCard:hover::before {
  opacity: 1;
}

.glassCard:hover {
  transform: translateY(-4px) translateZ(0);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow:
    var(--shadow-1),
    0 0 60px rgba(168, 85, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Inner glow line */
.glassCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), rgba(16, 185, 129, 0.4), transparent);
  opacity: 0.6;
}

/* ========================================
   BUTTONS - Gradient Glow
   ======================================== */
button {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.ctaPrimary {
  position: relative;
  flex: 1;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 8px 30px rgba(168, 85, 247, 0.35),
    0 0 0 1px rgba(168, 85, 247, 0.2);
}

.ctaPrimary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ctaPrimary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(168, 85, 247, 0.4),
    0 0 0 1px rgba(168, 85, 247, 0.3),
    0 0 80px rgba(16, 185, 129, 0.2);
}

.ctaPrimary:hover::before {
  opacity: 1;
}

.ctaPrimary:active {
  transform: translateY(0) scale(0.98);
}

.ctaPrimary span {
  position: relative;
  z-index: 1;
}

/* Shimmer effect */
.ctaPrimary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmerBtn 3s infinite;
}

@keyframes shimmerBtn {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.ctaSecondary {
  position: relative;
  flex: 1;
  border-radius: 999px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-1);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  overflow: hidden;
}

.ctaSecondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(16, 185, 129, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ctaSecondary:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

.ctaSecondary:hover::before {
  opacity: 1;
}

.ctaSecondary span {
  position: relative;
  z-index: 1;
}

.ctaRow {
  display: flex;
  gap: 12px;
}

/* ========================================
   LANDING HEADER - Floating Glass
   ======================================== */
a { color: var(--aurora-1); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--aurora-2); }

body.isGuest .nav { display: none; }
body.isGuest .wrap { padding-bottom: var(--pad); }
body.landingOnly .nav { display: none; }
body.landingOnly .wrap { padding-bottom: var(--pad); }

.landingSingle {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  position: relative;
  z-index: 2;
}

.landingHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 5, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateZ(0);
  transition: all 0.3s ease;
}

.landingHeader:hover {
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(168, 85, 247, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.landingBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--text-1);
  white-space: nowrap;
}

.landingBrandDot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.6),
    0 0 40px rgba(16, 185, 129, 0.4);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), 0 0 40px rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8), 0 0 60px rgba(16, 185, 129, 0.6);
  }
}

.landingNav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.navLink {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.navLink:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.navCta {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.navCta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.4);
}

/* ========================================
   LANDING SECTIONS
   ======================================== */
.landingSection {
  scroll-margin-top: calc(100px + env(safe-area-inset-top, 0px));
}
.landingSection:first-of-type { margin-top: 8px; }

/* Offer Section */
.offerH1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.offerText {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.offerCtas {
  margin-top: 20px;
}

/* Section caps and titles */
.sectionCap {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--aurora-5);
  margin-bottom: 12px;
}

.sectionTitleStrong {
  font-size: 26px;
  font-weight: 900;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}

/* ========================================
   ACCORDION V2 - Aurora Style
   ======================================== */
.accV2 {
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.accV2Item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.accV2Item:first-child {
  border-top: 0;
}

.accV2Item:hover {
  background: rgba(168, 85, 247, 0.03);
}

.accV2Item[open] {
  background: rgba(168, 85, 247, 0.05);
}

.accV2Summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accV2Summary::-webkit-details-marker { display: none; }

.accV2Title {
  color: var(--text-1);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.accV2Item:hover .accV2Title {
  color: var(--aurora-5);
}

.accV2Chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--aurora-1);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accV2Item[open] .accV2Chevron {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  color: #fff;
  border-color: transparent;
}

.accV2Body {
  padding: 0 20px 20px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accV2Desc {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 12px;
  padding-left: 4px;
}

.accV2List {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}

.accV2List li {
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
}

.accV2List li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  opacity: 0.8;
}

/* ========================================
   FORM - Aurora Inputs
   ======================================== */
.formGrid {
  margin-top: 16px;
}

input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-1);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: var(--text-3);
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.05);
  box-shadow:
    0 0 0 4px rgba(168, 85, 247, 0.1),
    0 0 30px rgba(168, 85, 247, 0.1);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.formStatus {
  font-size: 14px;
  color: var(--text-2);
  min-height: 20px;
  padding: 8px 0;
}

.formStatus.ok {
  color: var(--aurora-3);
}

.formStatus.err {
  color: #f87171;
}

.consentRow {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 12px;
  row-gap: 6px;
  align-items: start;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 0;
}

.consentRow input[type="checkbox"] {
  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  cursor: pointer;
  accent-color: var(--aurora-1);
}

.consentRow .link {
  color: var(--aurora-5);
  text-decoration: underline;
  font-weight: 700;
}

.consentRow .link:hover {
  color: var(--aurora-1);
}

.btnPrimary {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.45);
}

.btnPrimary:active {
  transform: translateY(0);
}

.btnPrimary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========================================
   LANDING ONLY OVERRIDES
   ======================================== */
body.landingOnly::before,
body.landingOnly::after {
  display: block; /* Keep aurora effect */
}

body.landingOnly {
  background: var(--bg-0);
}

body.landingOnly .glassCard {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.landingOnly .landingHeader {
  position: sticky;
  background: rgba(10, 5, 32, 0.85);
}

body.landingOnly .accV2Item,
body.landingOnly input,
body.landingOnly textarea,
body.landingOnly select {
  background: rgba(255, 255, 255, 0.03);
}

/* ========================================
   FALLBACK STATES
   ======================================== */
.landingFallback {
  margin: 24px auto 0;
  max-width: 520px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-1);
  text-align: center;
}

.landingFallbackError {
  border-color: rgba(248, 113, 113, 0.3);
}

.landingFallbackTitle {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}

.landingFallbackText {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 16px;
}

.landingFallbackBtn {
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(16, 185, 129, 0.15));
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.landingFallbackBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 420px) {
  .landingNav { display: none; }
  .navCta { margin-left: auto; }
  .offerH1 { font-size: 26px; }
  .sectionTitleStrong { font-size: 22px; }
  .glassCard { padding: 20px; }
}

/* ========================================
   WRAP / LAYOUT
   ======================================== */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: calc(var(--pad) + env(safe-area-inset-top, 0px)) var(--pad) calc(var(--dockH) + 20px + env(safe-area-inset-bottom, 0px));
  position: relative;
  z-index: 2;
}

body.landingOnly .wrap {
  padding-top: calc(var(--pad) + env(safe-area-inset-top, 0px));
  padding-bottom: calc(var(--pad) + env(safe-area-inset-bottom, 0px));
}

#view { position: relative; }

/* ========================================
   NAVIGATION DOCK
   ======================================== */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  pointer-events: none;
}

.navInner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: center;
}

.dock {
  pointer-events: auto;
  width: min(380px, 90vw);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 5, 32, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    var(--shadow-1),
    0 0 60px rgba(168, 85, 247, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.dockPill {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(168, 85, 247, 0.2);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease-out, width 220ms ease-out, height 220ms ease-out;
  will-change: transform, width, height;
  pointer-events: none;
}

.dockBtn {
  flex: 1 1 0;
  border-radius: 999px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--text-2);
  transition: color 0.3s ease;
}

.dockBtn:hover {
  color: var(--text-1);
}

.dockBtnInner {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 14px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  transition: transform 220ms ease-out, color 220ms ease-out, opacity 220ms ease-out;
  transform: scale(0.98);
  opacity: 0.7;
}

.dockBtnActive .dockBtnInner {
  transform: scale(1);
  opacity: 1;
  color: var(--text-1);
}

.dockBtn:active .dockBtnInner {
  transform: translateY(1px) scale(0.96);
}

.ico {
  width: 24px;
  height: 24px;
}

/* ========================================
   PRESERVED STYLES FROM ORIGINAL
   (keeping for compatibility)
   ======================================== */

.heroV2 {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid;
  gap: 14px;
}

.heroTopRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heroLogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.heroLogoDot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.heroMenu {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-1);
  display: grid;
  place-items: center;
  font-size: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.heroMenu:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
}

.heroH1 {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
}

.heroDesc {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
}

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

.infoCard {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.infoCard:hover {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
}

.infoLabel {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.infoValue {
  font-size: 18px;
  font-weight: 900;
}

.infoSub {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.scrollHint {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}

/* Section headers */
.sectionHeader {
  padding: 4px 2px 12px;
}

.sectionTitle {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  color: var(--text-1);
}

.sectionMeta {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-2);
}

/* Player */
.playerCard {
  padding: 16px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.lessonHeader {
  padding: 12px 2px 18px;
}

.lessonTitle {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text-1);
}

.lessonMeta {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-2);
}

/* Sheet */
.sheet {
  padding: 20px;
  border-radius: 24px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sheetSectionTitle {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-1);
  margin-bottom: 10px;
}

.sheetBlock {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
}

.sheetBlockFlush {
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-left: -20px;
  margin-right: -20px;
}

.sheetBlockFlush .listRow {
  border-radius: 0;
}

.sheetBlockFlush .listRowInner {
  padding-left: 20px;
  padding-right: 20px;
}

.materialsRow {
  width: 100%;
}

.materialsRow + .materialsRow {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sheetBlock + .sheetBlock {
  margin-top: 14px;
}

.sheetText {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-2);
  white-space: pre-wrap;
}

.sheetHint {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-3);
}

.sheetDivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0;
}

/* Landing Hero */
.landingHero {
  padding: 24px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.landingRoot {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landingGrid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Hero blocks */
.heroBlock {
  display: grid;
  gap: 16px;
}

.heroImage {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.heroTitle {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.heroText {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
}

.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pillBadge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  transition: all 0.3s ease;
}

.pillBadge:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  color: var(--text-1);
}

.ctaWide {
  width: 100%;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 35px rgba(168, 85, 247, 0.35);
  transition: all 0.3s ease;
}

.ctaWide:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(168, 85, 247, 0.45);
}

/* Bullet lists */
.bulletList {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 12px;
}

.bulletItem {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.45;
}

.bulletItem::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
}

/* Modules list */
.modulesList {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.moduleRow {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-2);
  font-size: 14px;
  transition: all 0.3s ease;
}

.moduleRow:hover {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
}

/* FAQ */
.faqGrid {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.faqCard {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.faqCard:hover {
  border-color: rgba(168, 85, 247, 0.2);
}

.faqQ {
  font-weight: 900;
  color: var(--text-1);
  margin-bottom: 8px;
}

.faqA {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}

/* TG Section */
.tgSectionTitle {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.tgSectionSubtitle {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}

.tgGroup {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tgGroupLabel {
  padding: 14px 18px 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aurora-5);
  font-weight: 900;
}

.tgRow {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  padding: 14px 18px;
  align-items: start;
}

.tgIcon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--aurora-1);
  font-size: 15px;
  line-height: 1;
  margin-top: 2px;
}

.tgText {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.4;
}

.tgDivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-left: calc(18px + 20px + 14px);
}

.tgGroupDivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 18px;
  border-radius: 1px;
}

.tgManifest {
  margin-top: 14px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.5;
}

/* Film section */
.filmSection {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.filmSection::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  pointer-events: none;
}

.filmKicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aurora-5);
  font-weight: 800;
}

.filmTitle {
  margin: 10px 0 8px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.filmText {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
}

.filmList {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.filmList li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-2);
}

.filmList li::before {
  content: "✦";
  color: var(--aurora-1);
  font-size: 14px;
  line-height: 1.2;
}

.filmHero {
  display: grid;
  gap: 16px;
}

.filmHeroImage {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.filmBadgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filmBadge {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.filmBtn {
  width: 100%;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 35px rgba(168, 85, 247, 0.35);
  transition: all 0.3s ease;
}

.filmBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(168, 85, 247, 0.45);
}

.filmFrameTitle {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.filmModules {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.filmModuleRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.filmModuleRow span {
  color: var(--text-2);
  font-size: 14px;
}

.faqList {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.faqItem {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* New hero */
.newHero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(10, 5, 32, 0.6);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-2);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  width: fit-content;
}

.landingKicker {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-2);
}

.landingHeadline {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.landingHeadline.small {
  font-size: 22px;
}

.landingTitle {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text-1);
}

.landingText {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  white-space: pre-wrap;
}

.heroBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badgeGlow {
  padding: 10px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(16, 185, 129, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--aurora-5);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.heroBtn {
  width: 100%;
  text-align: center;
}

/* Landing card */
.landingCard {
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.landingCard .list {
  margin: 12px 0 0;
}

.landingCard .list li {
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Tariffs */
.tariffs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tariffCard {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.tariffCard:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.tariffHot {
  border-color: rgba(168, 85, 247, 0.5);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(16, 185, 129, 0.05));
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.tariffHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tariffName {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-1);
}

.tariffAccent {
  font-size: 12px;
  color: var(--aurora-5);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(16, 185, 129, 0.15));
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-weight: 800;
}

.tariffPrice {
  margin: 6px 0 12px;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tariffBtn {
  margin-top: 14px;
  width: 100%;
}

.landingCTA {
  text-align: left;
  padding: 24px;
}

/* List */
.list {
  padding-left: 0;
  margin: 10px 0 0;
  color: var(--text-1);
  list-style: none;
}

.list li {
  margin-bottom: 10px;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
}

/* Modal */
.modalLegacyHide { display: none; }

.landingTimer {
  font-size: 15px;
  color: var(--text-2);
}

/* Accordion */
.accItem {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.accItem:first-child { border-top: 0; }

.accSummary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  cursor: pointer;
}

.accSummary::-webkit-details-marker { display: none; }
.accBody { padding: 0 14px 16px; }

/* Screen transitions */
.screen {
  transition: opacity 250ms ease-out, transform 250ms ease-out;
  will-change: opacity, transform;
}

.screenEnter {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  pointer-events: none;
}

.screenExit {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Cards */
.card {
  position: relative;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.hero {
  padding: 24px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.heroTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 10px 0 0;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.3;
}

.gearBtn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--text-2);
  transition: all 0.3s ease;
}

.gearBtn:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  color: var(--text-1);
}

.gearBtn:active { transform: translateY(1px); }

.title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.muted {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.4;
}

.muted2 {
  margin: 0;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.4;
}

.row { display: flex; align-items: center; gap: 12px; }
.rowBetween { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.col { display: flex; flex-direction: column; gap: 8px; }

.chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-1);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  user-select: none;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.softCard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

/* Profile */
.profileHero {
  padding: 20px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.profileHead {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profileAvatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(168, 85, 247, 0.3), rgba(10, 5, 32, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--text-1);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4px;
  overflow: hidden;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(168, 85, 247, 0.15);
}

.profileAvatar.hasImage {
  background: rgba(255, 255, 255, 0.04);
}

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

.profileInfo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.profileName {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-1);
}

.profileUser {
  font-size: 15px;
  color: var(--text-2);
}

.profileMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profileLine {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profileMenu .listRowInner {
  padding: 14px;
}

/* Badge */
.badge {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--aurora-5);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* Progress */
.progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progressFill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  width: 0%;
  transition: width 0.5s ease;
}

.progressMeta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 15px;
}

/* Buttons */
.btnOpen {
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(10, 5, 32, 0.4);
  color: var(--text-1);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-2);
  transition: all 0.3s ease;
}

.btnOpen:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow:
    var(--shadow-2),
    0 0 30px rgba(168, 85, 247, 0.15);
}

.btnOpen:active { transform: translateY(1px); }

.btnSave {
  width: 100%;
  border-radius: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border: none;
  color: #fff;
  font-weight: 900;
  transition: all 0.3s ease;
}

.btnSave:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.35);
}

.btnSave:active { transform: translateY(0); }

/* Modal */
.modalBg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal {
  width: min(520px, 94vw);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 5, 32, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    var(--shadow-1),
    0 0 80px rgba(168, 85, 247, 0.15);
  padding: 20px;
}

.modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.modalHeader .title {
  font-size: 20px;
  font-weight: 900;
}

.modal input,
.modal textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-1);
}

.xbtn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-1);
  font-weight: 800;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.xbtn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.xbtn:active { transform: translateY(1px); }

/* Continue card */
.continueCard {
  padding: 16px 18px;
  background: rgba(10, 5, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.continueRow {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.continueRow[disabled] {
  opacity: 0.5;
  cursor: default;
}

.continueTitle {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.continueSubtitle {
  margin: 0;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.3;
}

.chev {
  color: var(--text-3);
  font-size: 28px;
  line-height: 1;
  padding-left: 12px;
}

/* List card */
.listCard {
  padding: 8px;
  overflow: hidden;
}

.listRow {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.listRow + .listRow {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.listRowInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 14px;
  transition: background 200ms ease-out, transform 200ms ease-out;
}

.listRow:hover .listRowInner {
  background: rgba(168, 85, 247, 0.05);
}

.listText {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.rowTitle {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1px;
  color: var(--text-1);
}

.rowSubtitle {
  font-size: 14px;
  line-height: 1.25;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 64vw;
}

.rowHint {
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-3);
  min-height: 16px;
  transition: opacity 200ms ease-out;
}

.rowHintHidden {
  opacity: 0;
}

.rowRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.listRow:active .listRowInner {
  background: rgba(168, 85, 247, 0.08);
  border-radius: 18px;
  transform: translateY(1px);
}

/* Skeleton */
.skeletonRow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px;
}

.skeletonRow + .skeletonRow {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.skeletonLine {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.skeletonLine.wide { width: 70%; }
.skeletonLine:not(.wide) { width: 40%; }

.skeletonLine::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
  animation: shimmer 1.8s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-40%); }
  100% { transform: translateX(40%); }
}

/* Admin tabs */
.adminTabs {
  display: flex;
  gap: 12px;
  padding: 0 2px 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.adminTabs::-webkit-scrollbar { display: none; }

.adminTab {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: all 0.3s ease;
}

.adminTab:hover {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
}

.adminTab:active { transform: translateY(1px); }

.adminTabActive {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(16, 185, 129, 0.1));
  border-color: rgba(168, 85, 247, 0.35);
  color: var(--text-1);
}

/* Responsive */
@media (max-width: 420px) {
  .h1 { font-size: 34px; }
  .dock { width: min(380px, 92vw); }
}
