:root {
  --ink: #06141c;
  --deep: #0a1f2a;
  --panel: #123040;
  --panel-2: #184153;
  --line: rgba(62, 224, 196, 0.18);
  --amber: #ffb34d;
  --amber-2: #ffd089;
  --sea: #3ee0c4;
  --sea-2: #8af0dc;
  --copper: #d4784a;
  --paper: #f3ead6;
  --fog: #b7c9d0;
  --mute: #7d939c;
  --dock: 78px;
  --mast: 52px;
  --max: 1140px;
  --ui: "Outfit", "Segoe UI", sans-serif;
  --display: "Fraunces", "Times New Roman", serif;
  --read: "Source Serif 4", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(255, 179, 77, 0.08), transparent 55%),
    radial-gradient(900px 480px at 100% 8%, rgba(62, 224, 196, 0.07), transparent 50%),
    var(--ink);
  color: var(--paper);
  font-family: var(--read);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}
body.has-dock { padding-bottom: calc(var(--dock) + env(safe-area-inset-bottom)); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--ink); }

.skip {
  position: absolute;
  left: 12px;
  top: -56px;
  z-index: 80;
  background: var(--amber);
  color: var(--ink);
  padding: 8px 12px;
  font-family: var(--ui);
  font-weight: 700;
}
.skip:focus { top: 12px; }

.fog,
.radar,
.tide {
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
.fog {
  width: min(640px, 90vw);
  height: min(640px, 90vw);
  right: -16%;
  top: -12%;
  background: rgba(255, 179, 77, 0.11);
  filter: blur(80px);
  animation: drift 16s ease-in-out infinite;
}
.radar {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  left: -8%;
  bottom: 8%;
  border: 1px solid rgba(62, 224, 196, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(62, 224, 196, 0.04);
}
.radar::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(62, 224, 196, 0.28) 100%);
  animation: sweep 9s linear infinite;
}
.tide {
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0 46px,
    rgba(243, 234, 214, 0.06) 46px 47px
  );
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 4%); }
}
@keyframes sweep { to { transform: rotate(360deg); } }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.mast {
  display: none;
}

.board {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 20, 28, 0.86);
}
.board-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-2);
  animation: crawl 38s linear infinite;
}
.board-track span { white-space: nowrap; }
.board-track b { color: var(--amber-2); font-weight: 600; }
@keyframes crawl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 20, 28, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.top-in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 179, 77, 0.35);
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.live {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fog);
}
.live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 0 rgba(62, 224, 196, 0.7);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(62, 224, 196, 0); }
}

.menu-btn {
  margin-left: auto;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
}
.nav {
  display: none;
}
.nav a {
  text-decoration: none;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--fog);
}
.nav a:hover { color: var(--amber-2); }
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #0b1c25;
  padding: 12px 16px 16px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.cta {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  order: 8;
}
.cta .lang { display: none; }
.cta .btn { flex: 1; }
.lang {
  display: flex;
  gap: 6px;
}
.lang a {
  font-family: var(--mono);
  font-size: 11px;
  text-decoration: none;
  color: var(--mute);
  border: 1px solid transparent;
  padding: 4px 6px;
  border-radius: 6px;
}
.lang a[aria-current="page"] {
  color: var(--amber-2);
  border-color: rgba(255, 179, 77, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-in {
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #2a1600;
  box-shadow: 0 0 0 0 rgba(255, 179, 77, 0.55);
  animation: glow-in 1.6s ease-out infinite;
}
.btn-up {
  background: transparent;
  color: var(--sea-2);
  border: 1.5px solid var(--sea);
  box-shadow: 0 0 0 0 rgba(62, 224, 196, 0.4);
  animation: glow-up 1.8s ease-out infinite;
}
@keyframes glow-in {
  0% { box-shadow: 0 0 0 0 rgba(255, 179, 77, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 179, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 179, 77, 0); }
}
@keyframes glow-up {
  0% { box-shadow: 0 0 0 0 rgba(62, 224, 196, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(62, 224, 196, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 224, 196, 0); }
}

.hero { padding: 28px 0 10px; }
.crumbs {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 18px;
}
.crumbs a { color: var(--sea-2); text-decoration: none; }
.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-2);
}
.kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}
h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(32px, 6.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.lead {
  margin: 0 0 20px;
  color: var(--fog);
  font-size: 18px;
}
.hero-grid {
  display: grid;
  gap: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  font-family: var(--ui);
  font-size: 13px;
  color: var(--mute);
}

.radio {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 179, 77, 0.08), transparent 28%),
    #102833;
  border: 1px solid rgba(255, 179, 77, 0.28);
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.radio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 3px,
    rgba(255, 255, 255, 0.015) 3px 4px
  );
  pointer-events: none;
}
.stamp {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #2a1600;
  background: var(--amber);
  padding: 5px 8px;
  border-radius: 6px;
}
.addr {
  margin: 12px 0 14px;
  font-family: var(--mono);
  font-size: clamp(14px, 3.4vw, 17px);
  color: var(--sea-2);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.copy {
  width: 100%;
  min-height: 42px;
  margin-bottom: 12px;
  border: 1px dashed rgba(62, 224, 196, 0.4);
  background: transparent;
  color: var(--sea-2);
  border-radius: 10px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
}
.radio p {
  margin: 0 0 14px;
  color: var(--fog);
  font-size: 15px;
}
.meters {
  display: flex;
  gap: 6px;
  height: 28px;
  margin: 8px 0 16px;
  align-items: flex-end;
}
.meters b {
  flex: 1;
  background: linear-gradient(180deg, var(--sea), #1a6b5c);
  border-radius: 3px 3px 0 0;
  animation: vu 1.4s ease-in-out infinite;
}
.meters b:nth-child(2) { animation-delay: 0.15s; height: 70%; }
.meters b:nth-child(3) { animation-delay: 0.3s; height: 90%; }
.meters b:nth-child(4) { animation-delay: 0.08s; height: 55%; }
.meters b:nth-child(5) { animation-delay: 0.22s; height: 80%; }
.meters b:nth-child(6) { animation-delay: 0.4s; height: 64%; }
@keyframes vu {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

.slider-block { padding: 28px 0 8px; }
.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.slider-nav { display: flex; gap: 8px; }
.slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--deep);
  color: var(--paper);
}
.slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 min(78vw, 260px);
  scroll-snap-align: start;
  background: linear-gradient(180deg, #143544, #0e2834);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px 16px;
  min-height: 188px;
}
.slide em {
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  color: var(--copper);
}
.slide h3 {
  margin: 8px 0 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}
.slide p { margin: 0; color: var(--fog); font-size: 15px; }

.article {
  padding: 36px 0 8px;
}
.article + .article { border-top: 1px solid var(--line); margin-top: 18px; }
.num {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.article h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 4.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.article p { margin: 0 0 16px; color: #e6ddd0; }
.article p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--amber);
}
.split {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.note {
  background: rgba(212, 120, 74, 0.1);
  border-left: 3px solid var(--copper);
  padding: 12px 14px;
  color: var(--paper);
  font-size: 16px;
}
.steps {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 12px 0 12px 48px;
  border-bottom: 1px dashed var(--line);
  color: #e6ddd0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #184153;
  color: var(--amber-2);
  font-family: var(--mono);
  font-size: 13px;
  display: grid;
  place-items: center;
}

.reviews {
  display: grid;
  gap: 12px;
}
.card {
  margin: 0;
  background: #102833;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.stars { margin: 0 0 8px; color: var(--amber); letter-spacing: 2px; }
.quote {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--paper);
}
.card figcaption {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--mute);
}

.event {
  display: grid;
  gap: 16px;
  background: linear-gradient(135deg, #163847, #0e2732);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.event-date {
  width: 92px;
  background: var(--amber);
  color: #2a1600;
  border-radius: 14px;
  text-align: center;
  padding: 10px 8px;
  font-family: var(--ui);
}
.event-date b {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}
.event h3 { margin: 0 0 8px; font-family: var(--display); font-size: 24px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 650;
  font-size: 17px;
  padding: 8px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--amber);
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: 16px; }

.foot {
  margin-top: 40px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
  font-family: var(--ui);
  font-size: 14px;
  color: var(--mute);
  position: relative;
  z-index: 1;
}
.foot-in { display: grid; gap: 8px; }
.foot a { color: var(--sea-2); text-decoration: none; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 20, 28, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.dock .btn { flex: 1; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .split { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .event { grid-template-columns: auto 1fr; align-items: center; }
  .slide { flex-basis: 250px; }
  .live { display: inline-flex; }
}

@media (min-width: 980px) {
  .menu-btn { display: none; }
  .nav {
    display: flex;
    gap: 16px;
    margin-left: auto;
  }
  .cta {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    order: 0;
  }
  .cta .lang { display: flex; }
  .cta .btn { flex: none; }
  .dock { display: none; }
  body.has-dock { padding-bottom: 0; }
  .mast {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--mast);
    z-index: 15;
    writing-mode: vertical-rl;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    border-left: 1px solid var(--line);
    background: rgba(6, 20, 28, 0.72);
  }
  body { padding-right: var(--mast); }
}

@media (max-width: 979px) {
  .cta.cta-mobile-hide { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .board-track { animation: none; }
}
