/* Vandrouka — ночная Беларусь: чернильная зелень, мятный глоу, орнамент-вышиванка */
:root {
  --ink: #0a1410;
  --ink-2: #0e1d16;
  --mint: #5be3b7;
  --cyan: #38c6d9;
  --violet: #8b7bf4;
  --text: #e8f2ec;
  --text-dim: #9db8aa;
  --glass: rgba(232, 242, 236, 0.05);
  --glass-border: rgba(91, 227, 183, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Golos Text", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Атмосфера: глоу-орбы + орнамент */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-mint { width: 480px; height: 480px; background: var(--mint); top: -180px; right: -120px; }
.orb-cyan { width: 380px; height: 380px; background: var(--cyan); bottom: 10%; left: -160px; animation-delay: -6s; }
.orb-violet { width: 300px; height: 300px; background: var(--violet); top: 45%; right: 8%; opacity: 0.18; animation-delay: -12s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 50px) scale(1.12); }
}

/* Орнамент: ромбы вышиванки, едва заметные */
.ornament {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%235be3b7' stroke-opacity='0.07'%3E%3Cpath d='M28 8 48 28 28 48 8 28Z'/%3E%3Cpath d='M28 18 38 28 28 38 18 28Z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

main { position: relative; z-index: 1; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Шапка */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}
.logo {
  font-family: "Unbounded", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo span { opacity: 0.8; }

/* Герой */
.hero { padding: 72px 0 96px; }
.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  max-width: 17ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--mint) 0%, var(--cyan) 55%, var(--violet) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 52ch;
}

.cta-row { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 14px;
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  color: #07120d;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  box-shadow: 0 0 32px rgba(91, 227, 183, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(91, 227, 183, 0.55); }
.btn-ghost {
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--mint); }

.note { font-size: 0.85rem; color: var(--text-dim); }

/* Стеклянная карточка маршрута в герое */
.itinerary-card {
  margin-top: 64px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  padding: 28px 32px;
  max-width: 560px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.itinerary-card .chip {
  display: inline-block;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(91, 227, 183, 0.12);
  color: var(--mint);
  margin-bottom: 14px;
}
.itinerary-card h3 { font-family: "Unbounded", sans-serif; font-size: 1.05rem; font-weight: 600; }
.itinerary-item {
  display: flex;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(232, 242, 236, 0.07);
  font-size: 0.95rem;
}
.itinerary-item:last-child { border-bottom: none; }
.itinerary-item .time { color: var(--cyan); font-variant-numeric: tabular-nums; min-width: 52px; }
.itinerary-item .what b { font-weight: 600; }
.itinerary-item .what span { display: block; color: var(--text-dim); font-size: 0.85rem; }

/* Секции */
section { padding: 72px 0; }
.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}
h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  max-width: 24ch;
}

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.step {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
}
.step .num {
  font-family: "Unbounded", sans-serif;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin: 14px 0 8px; font-size: 1.05rem; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

.cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.city {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}
.city.soon { opacity: 0.45; }

/* Premium */
.premium-card {
  margin-top: 48px;
  max-width: 520px;
  background: linear-gradient(160deg, rgba(91, 227, 183, 0.10), rgba(139, 123, 244, 0.08));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(18px);
}
.premium-card .price { font-family: "Unbounded", sans-serif; font-size: 2.2rem; margin: 12px 0; }
.premium-card .price small { font-size: 0.95rem; font-family: "Golos Text", sans-serif; color: var(--text-dim); }
.premium-card ul { list-style: none; margin: 20px 0 28px; }
.premium-card li { padding: 7px 0 7px 30px; position: relative; color: var(--text-dim); }
.premium-card li::before {
  content: "✦";
  position: absolute;
  left: 4px;
  color: var(--mint);
}

footer {
  padding: 48px 0 64px;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid rgba(232, 242, 236, 0.07);
}
footer a { color: var(--text-dim); }

/* Появление при загрузке */
.reveal { opacity: 0; transform: translateY(24px); animation: reveal 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.reveal:nth-child(2) { animation-delay: 0.12s; }
.reveal:nth-child(3) { animation-delay: 0.24s; }
.reveal:nth-child(4) { animation-delay: 0.36s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .orb, .reveal { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
