:root {
  --bg: #050a1c;
  --bg-soft: #0c1636;
  --card: rgba(10, 22, 54, 0.82);
  --gold: #f5b302;
  --ice: #9adcfb;
  --text: #eef6ff;
  --muted: #a9bbd4;
  --stroke: rgba(154, 220, 251, 0.24);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 80% 10%, rgba(245, 179, 2, 0.14), transparent 35%),
              radial-gradient(circle at 10% 20%, rgba(154, 220, 251, 0.15), transparent 35%),
              var(--bg);
  color: var(--text);
  line-height: 1.78;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 2.2rem)); margin-inline: auto; }

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .28;
  pointer-events: none;
  z-index: -2;
  animation: drift 16s ease-in-out infinite alternate;
}
.orb-1 { width: 320px; height: 320px; background: rgba(245,179,2,.25); top: -40px; left: -60px; }
.orb-2 { width: 280px; height: 280px; background: rgba(154,220,251,.24); right: -80px; top: 200px; animation-delay: 1.4s; }
.orb-3 { width: 220px; height: 220px; background: rgba(245,179,2,.18); left: 45%; bottom: 40px; animation-delay: .7s; }

@keyframes drift {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(30px) translateX(-16px) scale(1.08); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(5, 10, 28, 0.76);
  border-bottom: 1px solid rgba(154,220,251,.12);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .94rem;
}
.main-nav a:hover { color: var(--ice); }

.header-cta,
.hero-buttons,
.address-actions {
  display: inline-flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .24s ease;
}

.btn-glow {
  background: linear-gradient(120deg, #f5b302, #ffd457);
  color: #231100;
  box-shadow: 0 0 0 rgba(245,179,2,0.5), 0 0 24px rgba(245,179,2,0.36);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,179,2,0.35), 0 0 22px rgba(245,179,2,.26); }
  60% { box-shadow: 0 0 0 10px rgba(245,179,2,0), 0 0 34px rgba(245,179,2,.48); }
}
.btn-glow:hover { transform: translateY(-1px); filter: brightness(1.06); }

.btn-outline {
  border-color: rgba(154,220,251,.35);
  color: var(--ice);
  background: rgba(8, 20, 48, .6);
}
.btn-outline:hover { border-color: var(--ice); background: rgba(8, 20, 48, .95); }

.marquee {
  border-top: 1px solid rgba(245,179,2,.26);
  border-bottom: 1px solid rgba(245,179,2,.26);
  background: rgba(245, 179, 2, 0.09);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: .58rem 0;
  animation: ticker 24s linear infinite;
  font-family: "JetBrains Mono", monospace;
  color: #ffd765;
  letter-spacing: .12em;
  font-size: .83rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero { padding-top: 2rem; padding-bottom: 1.4rem; }
.breadcrumb ol {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .88rem;
}
.breadcrumb li + li::before {
  content: ">";
  margin-right: .4rem;
  color: rgba(255,255,255,.35);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.35rem;
  align-items: stretch;
}

.kicker {
  font-family: "JetBrains Mono", monospace;
  color: var(--ice);
  margin: 0 0 .55rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.25;
  font-family: "Sora", sans-serif;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.34rem, 2.3vw, 2.1rem); margin-bottom: .8rem; }
h3 { color: #ffd765; font-size: clamp(1.02rem, 2vw, 1.25rem); margin-bottom: .9rem; }

.hero-copy p { color: var(--text); }
.hero-stats {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
}
.hero-stats li {
  background: linear-gradient(165deg, rgba(14,29,70,.85), rgba(8,18,45,.75));
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: .8rem;
  text-align: center;
}
.hero-stats strong { display: block; color: var(--gold); font-size: 1.38rem; }
.hero-stats span { color: var(--muted); font-size: .84rem; }

.hero-stage {
  position: relative;
  min-height: 340px;
  border-radius: 24px;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10,22,56,.88), rgba(9,18,42,.84));
  border: 1px solid rgba(154,220,251,.24);
}
.stage-rotor {
  position: absolute;
  inset: -44%;
  background: conic-gradient(from 35deg, rgba(245,179,2,.24), transparent 36%, rgba(154,220,251,.18), transparent 72%, rgba(245,179,2,.2));
  animation: rotate 13s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

.stage-card {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  background: rgba(6, 12, 30, 0.86);
  border: 1px solid rgba(154,220,251,.24);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.05rem 3.2rem;
}
.slide { display: none; }
.slide.is-active { display: block; }
.slide h2 { margin-bottom: .45rem; font-size: 1.35rem; color: #fff0c2; }
.slide p { color: var(--muted); margin: 0; }

.slider-arrow {
  position: absolute;
  bottom: .9rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(154,220,251,.28);
  border-radius: 50%;
  background: rgba(8, 20, 50, 0.95);
  color: var(--ice);
  cursor: pointer;
}
.slider-arrow.prev { left: .9rem; }
.slider-arrow.next { left: 3.6rem; }
.slider-arrow:hover { border-color: var(--gold); color: var(--gold); }

.slider-dots {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: .46rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.25);
  cursor: pointer;
}
.dot.is-active { background: var(--gold); }

.floating-badge {
  position: absolute;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: .75rem;
  border-radius: 999px;
  padding: .32rem .7rem;
  border: 1px solid rgba(154,220,251,.3);
  background: rgba(6, 17, 42, 0.85);
  color: #d5efff;
  animation: float 3s ease-in-out infinite;
}
.badge-1 { top: .85rem; right: 1rem; }
.badge-2 { bottom: 4rem; right: 2rem; animation-delay: .8s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.event-strip {
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  border: 1px dashed rgba(245,179,2,.48);
  background: rgba(245,179,2,.08);
  padding: .9rem 1rem;
}
.event-strip h2 { margin: 0 0 .35rem; font-size: 1.05rem; color: #ffdb78; }
.event-strip p { margin: 0; color: #f6f1df; }

.content-section {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  margin: 1.3rem auto;
}
.section-tag {
  align-self: start;
  position: sticky;
  top: 106px;
  font-family: "Unbounded", sans-serif;
  font-size: 2.1rem;
  color: rgba(245,179,2,.9);
  text-shadow: 0 0 22px rgba(245,179,2,.22);
}
.content-section article {
  background: linear-gradient(165deg, rgba(12, 24, 58, 0.88), rgba(8, 17, 40, 0.88));
  border: 1px solid rgba(154,220,251,.2);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.6rem);
  box-shadow: var(--shadow);
}
.content-section p { color: #d9e7fb; }
.editor-note {
  margin-top: 1rem;
  font-family: "JetBrains Mono", monospace;
  color: #ffdf8b;
  font-size: .86rem;
  border-top: 1px solid rgba(154,220,251,.18);
  padding-top: .75rem;
}

.steps { padding-left: 1.22rem; }
.steps li { margin-bottom: .65rem; }
.steps strong { color: #ffe39d; }

.address-card {
  border: 1px solid rgba(245,179,2,.42);
  border-radius: 15px;
  padding: 1rem;
  background: rgba(6, 14, 34, .84);
}
.address-label { margin: 0 0 .45rem; color: var(--muted); font-size: .93rem; }
#currentAddress {
  display: inline-block;
  margin: 0 0 .8rem;
  padding: .62rem .78rem;
  border-radius: 10px;
  border: 1px solid rgba(154,220,251,.3);
  background: rgba(2, 7, 20, 0.95);
  color: #ecfbff;
  font-size: .95rem;
  word-break: break-all;
  font-family: "JetBrains Mono", monospace;
}
.address-help { font-size: .93rem; color: var(--muted); margin: .7rem 0 0; }

.status-table-wrap { overflow-x: auto; margin-top: 1rem; }
.status-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
  table-layout: fixed;
  font-size: .92rem;
}
.status-table th,
.status-table td {
  border: 1px solid rgba(154,220,251,.18);
  padding: .65rem .6rem;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.status-table th {
  background: rgba(154,220,251,.1);
  color: #dff6ff;
}
.pill {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(245,179,2,.35);
  color: #ffd567;
}
.pill.active {
  border-color: rgba(154,220,251,.55);
  color: #8ff7bd;
}

.rating-card {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(154,220,251,.25);
  border-radius: 16px;
  background: rgba(4, 10, 24, .85);
}
.rating-main {
  border-radius: 12px;
  border: 1px solid rgba(245,179,2,.28);
  background: rgba(245,179,2,.08);
  padding: 1rem;
  display: grid;
  place-items: center;
}
.rating-main strong { font-size: 2rem; color: #ffe395; }
.rating-main span { color: var(--muted); font-size: .9rem; text-align: center; }
.rating-bars { display: grid; gap: .48rem; }
.bar-row {
  display: grid;
  grid-template-columns: 72px 1fr 45px;
  align-items: center;
  gap: .55rem;
}
.bar-row span, .bar-row em { font-style: normal; font-size: .9rem; color: #dceaf8; }
.bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd061, #f5b302);
}

.user-review {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(245,179,2,.08);
  border-radius: 0 12px 12px 0;
}
.user-review p { margin: 0 0 .42rem; }
.user-review cite { color: #ffe3a0; font-style: normal; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.pros-cons > div {
  border: 1px solid rgba(154,220,251,.2);
  border-radius: 12px;
  background: rgba(8, 18, 44, .75);
  padding: .8rem;
}
.pros-cons h4 { margin-bottom: .5rem; color: #d9f4ff; }
.pros-cons ul { margin: 0; padding-left: 1.08rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-item {
  border: 1px solid rgba(154,220,251,.2);
  border-radius: 12px;
  background: rgba(6, 15, 36, .75);
  overflow: clip;
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: #e6f4ff;
  text-align: left;
  padding: .95rem;
  font-weight: 700;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  float: right;
  color: var(--gold);
}
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-a p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #d2e5fc;
}

.final-cta {
  margin: 2rem auto 5rem;
  border: 1px solid rgba(245,179,2,.35);
  border-radius: 18px;
  text-align: center;
  padding: 1.4rem 1rem;
  background: linear-gradient(150deg, rgba(245,179,2,.12), rgba(12,22,52,.86));
}
.final-cta h2 { margin-bottom: .5rem; }
.final-cta p { color: #dbe8fd; }

.site-footer {
  border-top: 1px solid rgba(154,220,251,.2);
  background: rgba(3, 7, 18, .9);
  padding: 1.3rem 0 5.3rem;
}
.footer-grid {
  display: grid;
  gap: .4rem;
  color: #c3d2ea;
  font-size: .92rem;
}
.lang-links { display: inline-flex; gap: .75rem; }
.lang-links a {
  border: 1px solid rgba(154,220,251,.22);
  border-radius: 999px;
  padding: .22rem .6rem;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  bottom: 1.4rem;
  z-index: 60;
  background: rgba(6, 14, 34, .95);
  color: #fef3cf;
  border: 1px solid rgba(245,179,2,.52);
  padding: .66rem .95rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: .65rem;
  padding: .72rem;
  background: rgba(4, 9, 24, .97);
  border-top: 1px solid rgba(154,220,251,.2);
}
.mobile-dock .btn { flex: 1; min-height: 46px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .56s ease, transform .56s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .content-section { grid-template-columns: 1fr; }
  .section-tag {
    position: static;
    font-size: 1.5rem;
    margin-bottom: -.5rem;
  }
}

@media (max-width: 760px) {
  .header-cta { display: none; }
  .mobile-dock { display: flex; }
  .site-footer { padding-bottom: 6rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .rating-card { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 66px 1fr 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
}
