:root {
  --night: #120914;
  --plum: #1d101f;
  --ink: #2b162c;
  --bone: #f4eadc;
  --paper: #efe3d2;
  --rose: #ff3b6b;
  --rose-deep: #c81e4a;
  --lime: #d6ff3d;
  --copper: #e6a57a;
  --fog: #b7a8b4;
  --mute: #8b7c88;
  --line: rgba(214, 255, 61, 0.16);
  --shadow: 0 22px 50px rgba(8, 3, 10, 0.42);
  --max: 1160px;
  --display: "Syne", "Segoe UI", sans-serif;
  --serif: "Lora", "Georgia", serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(900px 520px at 110% -10%, rgba(255, 59, 107, 0.16), transparent 52%),
    radial-gradient(700px 420px at -8% 18%, rgba(214, 255, 61, 0.08), transparent 46%),
    var(--night);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
  font-synthesis: none;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lime); text-underline-offset: 3px; }

.ato-skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--rose);
  color: #fff;
  padding: 8px 12px;
  z-index: 90;
}
.ato-skip:focus { top: 64px; }

.ato-dock {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(18, 9, 20, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.ato-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}

.ato-btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(255, 59, 107, 0.55);
  animation: pulse 1.8s ease-out infinite;
}

.ato-btn-lime {
  background: var(--lime);
  color: var(--night);
}

.ato-btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(244, 234, 220, 0.24);
}

.ato-btn-lg { min-height: 56px; padding: 0 28px; font-size: 17px; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 107, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255, 59, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 107, 0); }
}

.ato-ticker {
  overflow: hidden;
  background: var(--lime);
  color: var(--night);
  transform: rotate(-0.6deg);
  transform-origin: left center;
  margin: 8px -8px 0;
}

.ato-ticker-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 9px 0;
  animation: slide 26s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.ato-ticker b { font-weight: 700; }

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ato-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.ato-mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 8px;
}

.ato-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.ato-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.ato-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.ato-brand small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
}

.ato-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--display);
  font-size: 14px;
}

.ato-nav a {
  color: var(--bone);
  text-decoration: none;
}

.ato-nav a:hover { color: var(--lime); }

.ato-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0 48px;
  position: relative;
}

.ato-hero::before {
  content: "UB";
  position: absolute;
  left: -8px;
  top: 10px;
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(214, 255, 61, 0.06);
  pointer-events: none;
  line-height: 0.8;
}

.ato-kicker {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.ato-hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ato-lead {
  margin: 0 0 22px;
  color: #efe6db;
  max-width: 38ch;
}

.ato-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.ato-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--fog);
}

.ato-ticket {
  background:
    linear-gradient(180deg, rgba(255, 59, 107, 0.12), transparent 28%),
    var(--plum);
  border: 1px dashed rgba(214, 255, 61, 0.28);
  border-radius: 28px;
  padding: 22px 20px 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.ato-ticket::after,
.ato-ticket::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--night);
  border-radius: 50%;
  top: 46%;
}

.ato-ticket::before { left: -11px; }
.ato-ticket::after { right: -11px; }

.ato-stamp {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid var(--rose);
  color: var(--rose);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.ato-ticket h2 {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.ato-ticket p { margin: 0 0 14px; color: var(--fog); font-size: 15px; }

.ato-slider { overflow: hidden; }

.ato-track {
  display: flex;
  transition: transform 0.45s ease;
}

.ato-slide { min-width: 100%; padding-right: 2px; }

.ato-addr {
  background: var(--ink);
  border-radius: 18px;
  padding: 16px;
}

.ato-addr small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.ato-addr strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  word-break: break-word;
}

.ato-addr p { margin: 0 0 12px; font-size: 14px; color: var(--fog); }

.ato-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.ato-dots { display: flex; gap: 7px; }

.ato-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(244, 234, 220, 0.28);
  padding: 0;
}

.ato-dots button.is-on { background: var(--lime); }

.ato-ctrl button[data-prev],
.ato-ctrl button[data-next] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  font-size: 16px;
}

.ato-orbs { position: relative; height: 0; }

.ato-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.ato-orb-a {
  width: 90px; height: 90px; right: 8%; top: 120px;
  background: rgba(255, 59, 107, 0.16);
}

.ato-orb-b {
  width: 54px; height: 54px; left: 6%; top: 340px;
  background: rgba(214, 255, 61, 0.12);
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.ato-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 36px;
}

.ato-chip {
  background: var(--plum);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
}

.ato-chip b {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.ato-chip span { color: var(--fog); font-size: 13px; }

.ato-paper {
  background: var(--paper);
  color: #2a1a22;
  border-radius: 36px 36px 0 0;
  padding: 48px 0 20px;
  position: relative;
}

.ato-paper::before {
  content: "";
  position: absolute;
  inset: -8px 18% auto 18%;
  height: 16px;
  background: repeating-linear-gradient(90deg, var(--rose) 0 12px, var(--lime) 12px 24px);
  border-radius: 8px;
}

.ato-paper h2,
.ato-paper h3 { font-family: var(--display); letter-spacing: -0.03em; color: #1b1016; }

.ato-paper .ato-kicker { color: var(--rose-deep); }

.ato-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 40px;
}

.ato-step {
  background: #fff8ee;
  border-radius: 20px;
  padding: 18px;
  min-height: 180px;
}

.ato-step em {
  font-family: var(--mono);
  font-style: normal;
  color: var(--rose-deep);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.ato-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 42px;
}

.ato-card {
  background: #fff8ee;
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(42, 22, 28, 0.08);
}

.ato-card h3 { margin: 12px 16px 6px; font-size: 18px; }
.ato-card p { margin: 0 16px 16px; font-size: 14px; color: #5c4650; }

.ato-long {
  margin: 0 0 42px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(42, 22, 28, 0.16);
}

.ato-long img { border-radius: 22px; }

.ato-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a5d68;
}

.ato-long h2 { font-size: clamp(26px, 4vw, 38px); margin: 8px 0 14px; }

.ato-long p { margin: 0 0 14px; }

.ato-long p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.1em;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--rose-deep);
}

.ato-night {
  padding: 42px 0 20px;
}

.ato-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.ato-review,
.ato-event,
.ato-faq-box {
  background: var(--plum);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
}

.ato-score strong {
  display: block;
  font-family: var(--display);
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--lime);
}

.ato-stars { color: var(--rose); letter-spacing: 3px; margin: 6px 0 10px; }

.ato-faq + .ato-faq { border-top: 1px solid var(--line); }

.ato-faq button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: 18px;
  padding: 14px 0;
  cursor: pointer;
}

.ato-faq p {
  display: none;
  margin: 0 0 14px;
  color: var(--fog);
}

.ato-faq.is-open p { display: block; }

.ato-langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
}

.ato-langs a { color: var(--fog); text-decoration: none; }
.ato-langs a[aria-current="page"] { color: var(--lime); }

.ato-foot {
  padding: 28px 0 90px;
  color: var(--fog);
  font-size: 14px;
}

.ato-foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ato-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 6px 0 18px;
}

.ato-crumb a { color: var(--fog); text-decoration: none; }
.ato-crumb span { opacity: 0.5; }

@media (max-width: 900px) {
  .ato-hero,
  .ato-split,
  .ato-steps,
  .ato-chips,
  .ato-rail { grid-template-columns: 1fr 1fr; }

  .ato-nav { display: none; }
  .ato-hero { padding-top: 12px; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .ato-hero,
  .ato-split,
  .ato-steps,
  .ato-chips,
  .ato-rail { grid-template-columns: 1fr; }

  .ato-dock { gap: 8px; }
  .ato-dock .ato-btn { flex: 1; }
  .ato-mast { padding-top: 10px; }
  .ato-ticket { margin-top: 8px; }
  .ato-paper { border-radius: 28px 28px 0 0; padding-top: 36px; }
  .ato-foot { padding-bottom: 28px; }
  .ato-hero h1 { font-size: 34px; }
  .ato-actions .ato-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ato-btn-rose,
  .ato-ticker-track,
  .ato-orb { animation: none; }
  html { scroll-behavior: auto; }
}
