:root {
  color-scheme: dark;
  --bg: #060300;
  --ink: #fff6df;
  --muted: #d1b77d;
  --soft: #9b8350;
  --gold: #f5c75a;
  --amber: #a86912;
  --panel: rgba(18, 11, 3, .84);
  --line: rgba(245, 199, 90, .34);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(245, 199, 90, .2), transparent 28rem),
    radial-gradient(circle at 88% 15%, rgba(168, 105, 18, .22), transparent 32rem),
    linear-gradient(180deg, #050200 0%, #100902 48%, #050200 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    repeating-radial-gradient(circle at center, rgba(245, 199, 90, .07) 0 1px, transparent 1px 88px),
    linear-gradient(90deg, transparent, rgba(245, 199, 90, .06), transparent);
  content: "";
  opacity: .8;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 60;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  background: var(--gold);
  color: #140b02;
  font-weight: 900;
}
.skip:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(245, 199, 90, .22);
  background: rgba(5, 2, 0, .88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .7rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(245, 199, 90, .42);
}

.menu-button { display: none; }
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}
.nav a,
.footer a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .52rem .78rem;
  color: #f4e5ba;
  font-size: .9rem;
  font-weight: 850;
  transition: transform .22s, border-color .22s, color .22s, background .22s;
}
.nav a:hover,
.nav a.active,
.footer a:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 199, 90, .58);
  background: rgba(245, 199, 90, .1);
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid: auto / minmax(0, .92fr) minmax(340px, 1.08fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
  min-height: 82svh;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero::after {
  position: absolute;
  inset: auto 8% 4rem auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(245, 199, 90, .28);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 60px rgba(245, 199, 90, .12), inset 0 0 34px rgba(245, 199, 90, .08);
  pointer-events: none;
}

.kicker {
  margin-bottom: .75rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .93;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(245, 199, 90, .42);
  overflow-wrap: anywhere;
}
h1 span {
  display: block;
  overflow-wrap: anywhere;
}
h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}
h3 {
  margin-bottom: .55rem;
  font-size: 1.22rem;
}
.lead {
  max-width: 650px;
  color: #fff1c7;
  font-size: clamp(1.03rem, 2vw, 1.25rem);
}

.hero-copy,
.hero-media,
.split > *,
.orbit-card,
.body-card { min-width: 0; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 199, 90, .48);
  border-radius: 999px;
  padding: .82rem 1.08rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .22s, box-shadow .22s, background .22s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 199, 90, .25);
}
.primary {
  background: radial-gradient(circle at 35% 20%, #ffe38f, #d49a28 58%, #7c4706);
  color: #140a01;
}
.ghost { background: rgba(20, 12, 3, .72); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(245, 199, 90, .14), transparent 45%),
    conic-gradient(from 15deg, transparent, rgba(245, 199, 90, .3), transparent 32%, rgba(245, 199, 90, .18), transparent 70%);
  animation: arrive .8s ease-out both;
}
.hero-media::before {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(245, 199, 90, .32);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 40px rgba(245, 199, 90, .08);
  animation: slowspin 28s linear infinite;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: 72%;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 34px rgba(245, 199, 90, .25));
}
.orbit {
  position: absolute;
  z-index: 2;
  display: grid;
  width: clamp(112px, 16vw, 148px);
  height: clamp(112px, 16vw, 148px);
  place-items: center;
  border: 1px solid rgba(245, 199, 90, .46);
  border-radius: 50%;
  background: rgba(8, 4, 1, .86);
  color: #ffe8a2;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(245, 199, 90, .16);
}
.orbit.one { left: -1rem; top: 10%; }
.orbit.two { right: -1rem; bottom: 12%; }

.coin-row {
  display: grid;
  grid: auto / repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.coin {
  min-height: 168px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 199, 90, .32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 229, 138, .14), transparent 34%),
    rgba(18, 11, 3, .78);
  color: #ffe9aa;
  font-weight: 950;
  text-align: center;
  transition: transform .22s, border-color .22s;
}
.coin:hover {
  transform: translateY(-4px) rotate(-2deg);
  border-color: rgba(255, 229, 138, .72);
}

.split {
  display: grid;
  grid: auto / minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.split p,
.round-card p,
.body-card p,
.body-card li,
.faq p,
.footer p { color: var(--muted); }

.showcase {
  border: 1px solid rgba(245, 199, 90, .26);
  border-radius: 999px;
  padding: 1rem;
  background: rgba(6, 3, 0, .68);
  box-shadow: 0 0 40px rgba(245, 199, 90, .12);
}
.showcase img {
  aspect-ratio: 16 / 9;
  border-radius: 999px;
  object-fit: cover;
}

.round-grid {
  display: grid;
  grid: auto / repeat(3, 1fr);
  gap: 1rem;
}
.round-card {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 199, 90, .12), transparent 45%),
    rgba(17, 10, 2, .82);
  text-align: center;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.round-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(255, 229, 138, .72);
  box-shadow: 0 0 34px rgba(245, 199, 90, .14);
}
.round-card b {
  color: var(--gold);
  text-transform: uppercase;
}

.ring-band {
  margin: clamp(2rem, 5vw, 4rem) 0;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-block: 1px solid rgba(245, 199, 90, .16);
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 199, 90, .13), transparent 38rem),
    linear-gradient(90deg, rgba(5, 2, 0, .94), rgba(32, 19, 4, .72), rgba(5, 2, 0, .94));
}
.orbit-cards {
  display: grid;
  grid: auto / repeat(4, 1fr);
  gap: 1rem;
}
.orbit-card {
  min-height: 210px;
  border: 1px solid rgba(245, 199, 90, .34);
  border-radius: 999px 999px 24px 24px;
  padding: 1.25rem;
  background: rgba(7, 4, 1, .78);
}
.orbit-card span {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(245, 199, 90, .44);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 950;
}

.faq {
  max-width: 900px;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
}
.faq details {
  margin-top: .8rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem 1.15rem;
  background: rgba(18, 11, 3, .78);
}
.faq summary {
  cursor: pointer;
  color: #fff6df;
  font-weight: 950;
}
.faq details[open] { border-color: rgba(255, 229, 138, .66); }

.page-hero {
  display: grid;
  grid: auto / minmax(0, 1fr) 230px;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-hero img {
  width: 190px;
  height: 190px;
  justify-self: end;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(245, 199, 90, .25);
}
.body-copy {
  display: grid;
  gap: 1rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.body-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.25rem;
  background: rgba(18, 11, 3, .78);
}
.body-card ul {
  margin: .6rem 0 0;
  padding-left: 1.2rem;
}
.body-card a {
  color: #ffe7a0;
  font-weight: 900;
}

.footer {
  border-top: 1px solid rgba(245, 199, 90, .2);
  background: rgba(5, 2, 0, .9);
}
.footer-inner {
  display: grid;
  grid: auto / minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
}
.footer img {
  width: 46px;
  height: 46px;
  float: left;
  margin-right: .75rem;
  border-radius: 50%;
  object-fit: cover;
}
.footer b { display: block; }
.footer p {
  margin: .15rem 0 0;
  font-size: .92rem;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}

.reveal {
  transform: none;
  opacity: 1;
  animation: softRise .72s ease both;
}
.reveal.visible {
  opacity: 1;
}

@keyframes arrive {
  from { transform: scale(.92) translateY(18px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes slowspin {
  to { transform: rotate(360deg); }
}
@keyframes softRise {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

@media (max-width: 960px) {
  .topbar {
    flex-wrap: wrap;
    padding-inline: 12px;
  }
  .brand {
    flex: 1 1 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .menu-button {
    display: inline-grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(245, 199, 90, .46);
    border-radius: 50%;
    background: rgba(18, 11, 3, .9);
  }
  .menu-button span {
    position: relative;
    display: block;
    width: 19px;
    height: 2px;
    background: var(--gold);
  }
  .menu-button span::before,
  .menu-button span::after {
    position: absolute;
    left: 0;
    width: 19px;
    height: 2px;
    background: var(--gold);
    content: "";
  }
  .menu-button span::before { top: -7px; }
  .menu-button span::after { top: 7px; }
  .nav {
    display: none;
    flex: 0 0 100%;
  }
  .nav.open { display: grid; grid: auto / repeat(2, 1fr); }
  .nav a { text-align: center; }
  .hero,
  .split,
  .page-hero,
  .footer-inner { grid: auto / 1fr; }
  .hero { min-height: auto; }
  .hero-media { width: min(620px, 100%); justify-self: center; }
  .coin-row,
  .orbit-cards { grid: auto / repeat(2, 1fr); }
  .round-grid { grid: auto / 1fr; }
  .round-card {
    min-height: 240px;
    border-radius: 30px;
  }
  .page-hero img { justify-self: start; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 40px), 340px); }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand { font-size: .94rem; }
  .nav.open,
  .coin-row,
  .orbit-cards { grid: auto / 1fr; }
  h1 { font-size: clamp(1.95rem, 8.2vw, 2.28rem); line-height: 1.05; }
  h2 { font-size: clamp(1.85rem, 10vw, 2.7rem); }
  .lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; max-width: 100%; padding-inline: .7rem; text-align: center; }
  .hero-media {
    aspect-ratio: auto;
    border-radius: 28px;
    padding: .8rem;
  }
  .hero-media::before { border-radius: 28px; }
  .hero-media img {
    width: 82%;
    border-radius: 24px;
  }
  .orbit {
    position: static;
    width: 100%;
    height: auto;
    min-height: 74px;
    margin-top: .75rem;
    border-radius: 24px;
  }
  .showcase,
  .showcase img { border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
