:root {
  --ink: #07110e;
  --panel: #0d1c17;
  --panel-2: #122820;
  --line: rgba(212, 175, 110, 0.28);
  --copper: #d4af6e;
  --copper-bright: #f0d39a;
  --mint: #5ef0b8;
  --mint-deep: #1dbf7a;
  --fog: #d8e4dc;
  --muted: #9bb0a4;
  --danger: #ff6b6b;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-serif: "Literata", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fog);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(94, 240, 184, 0.12), transparent 55%),
    radial-gradient(900px 600px at 90% 5%, rgba(212, 175, 110, 0.16), transparent 50%),
    linear-gradient(180deg, #050b09 0%, var(--ink) 40%, #0a1511 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--mint);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mint);
  color: #04110c;
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.bg-orb {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-orb.one {
  background: #1dbf7a;
  top: -12vw;
  left: -10vw;
}

.bg-orb.two {
  background: #b8860b;
  right: -14vw;
  top: 20vh;
  animation-duration: 22s;
}

.bg-orb.three {
  background: #0e7c66;
  bottom: -18vw;
  left: 30vw;
  animation-duration: 26s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 3vh, 0) scale(1.12); }
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 14, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(94, 240, 184, 0.18), rgba(212, 175, 110, 0.08)),
    var(--panel);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--copper-bright);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: none;
  gap: 1.1rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--fog);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--mint);
}

.cta-pair {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--mint), #9affd4 45%, var(--copper-bright));
  color: #06140f;
  box-shadow: 0 0 0 0 rgba(94, 240, 184, 0.55);
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--copper-bright);
  border: 1px solid var(--copper);
}

.btn-secondary:hover {
  background: rgba(212, 175, 110, 0.12);
  color: var(--copper-bright);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 240, 184, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(94, 240, 184, 0); }
}

.mobile-cta-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(5, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.mobile-cta-dock .btn {
  flex: 1;
  padding: 0.9rem 0.75rem;
  font-size: 0.95rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(18, 40, 32, 0.7);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.7rem 0;
  animation: marquee 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--copper-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-track span::before {
  content: "◆";
  margin-right: 0.75rem;
  color: var(--mint);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  padding: 2.4rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.9rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--copper-bright);
}

.lead {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(13, 28, 23, 0.8);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  color: var(--fog);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(160deg, rgba(94, 240, 184, 0.08), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(94, 240, 184, 0.7);
  animation: live 1.6s infinite;
  display: inline-block;
  margin-right: 0.4rem;
}

@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(94, 240, 184, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(94, 240, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 240, 184, 0); }
}

.slider {
  position: relative;
  min-height: 210px;
}

.slide {
  display: none;
  padding: 1.2rem 1.15rem 1.4rem;
  animation: fadeSlide 0.45s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.slide h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.slide p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.address-box {
  font-family: var(--font-mono);
  background: #06140f;
  border: 1px dashed rgba(94, 240, 184, 0.45);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--mint);
  word-break: break-all;
}

.slider-nav {
  display: flex;
  gap: 0.45rem;
  padding: 0 1.15rem 1.15rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(216, 228, 220, 0.25);
  cursor: pointer;
}

.dot.active {
  background: var(--copper-bright);
}

.section {
  padding: 2.4rem 0;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 46rem;
}

.article-card {
  background: rgba(13, 28, 23, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.article-card h2,
.article-card h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.article-card h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.article-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #e7efe9;
}

.article-body p {
  margin: 0 0 1rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.article-body li {
  margin-bottom: 0.45rem;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.grid-2 {
  display: grid;
  gap: 1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: rgba(7, 17, 14, 0.55);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--copper-bright);
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-box {
  display: grid;
  gap: 1rem;
}

.stars {
  color: var(--copper-bright);
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 28, 23, 0.72);
  padding: 0.95rem 1.05rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.event-card {
  border: 1px solid rgba(94, 240, 184, 0.35);
  background:
    linear-gradient(135deg, rgba(94, 240, 184, 0.1), transparent 45%),
    var(--panel-2);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.event-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--mint);
}

.breadcrumb span {
  opacity: 0.5;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 6.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer strong {
  color: var(--fog);
  font-family: var(--font-display);
}

.disclaimer {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 3px solid var(--copper);
  background: rgba(212, 175, 110, 0.06);
  border-radius: 0 12px 12px 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-cta-dock {
    display: none;
  }

  .hero {
    padding: 3.5rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 960px) {
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb,
  .marquee-track,
  .btn-primary,
  .live-dot,
  .slide {
    animation: none !important;
  }
}
