:root {
  --bg: #120907;
  --panel: rgba(33, 15, 13, 0.82);
  --panel-strong: rgba(46, 19, 16, 0.92);
  --panel-soft: rgba(255, 246, 229, 0.04);
  --border: rgba(236, 193, 102, 0.24);
  --border-strong: rgba(255, 224, 158, 0.42);
  --gold: #ecc166;
  --gold-soft: #f7ddb0;
  --gold-bright: #fff0cb;
  --cream: #fff8e8;
  --text: #fbf0da;
  --muted: #dfcfac;
  --shadow: 0 26px 62px rgba(5, 2, 2, 0.36);
  --container: min(1140px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Cinzel", serif;
  background:
    radial-gradient(circle at 50% -5%, rgba(255, 238, 190, 0.2), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(130, 18, 28, 0.14), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(236, 193, 102, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 233, 178, 0.05), rgba(18, 9, 7, 0.16) 18%, rgba(18, 9, 7, 0.96) 100%),
    url("background.svg") center top / cover no-repeat fixed,
    #120907;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 235, 186, 0.035), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 124px,
      rgba(255, 223, 154, 0.014) 124px,
      rgba(255, 223, 154, 0.014) 125px
    );
}

body::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 247, 219, 0.09), transparent 28%),
    linear-gradient(180deg, transparent, rgba(7, 3, 3, 0.38) 82%);
}

.cross {
  position: fixed;
  z-index: 0;
  color: rgba(236, 193, 102, 0.11);
  font-size: clamp(1rem, 2.5vw, 2.4rem);
  text-shadow: 0 0 18px rgba(236, 193, 102, 0.22);
  pointer-events: none;
}

.cross-1 { top: 8%; left: 3%; }
.cross-2 { top: 16%; right: 5%; }
.cross-3 { top: 36%; left: 10%; }
.cross-4 { top: 42%; right: 12%; }
.cross-5 { top: 60%; left: 4%; }
.cross-6 { top: 68%; right: 8%; }
.cross-7 { top: 84%; left: 16%; }
.cross-8 { top: 88%; right: 16%; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--gold-soft);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 2rem;
}

main {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.topbar {
  position: sticky;
  top: 0.85rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 226, 156, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 244, 216, 0.1), rgba(255, 244, 216, 0.025)),
    rgba(18, 9, 8, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 186, 0.045), transparent);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
}

.brand-mark img {
  width: 3.15rem;
  height: 3.15rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 224, 158, 0.55);
  box-shadow:
    0 0 0 6px rgba(255, 226, 160, 0.07),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong,
.hero h1 {
  font-family: "UnifrakturCook", serif;
  font-weight: 700;
}

.brand-copy strong {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
  color: var(--gold-bright);
}

.brand-copy em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nav a {
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.88rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-bright);
  border-color: rgba(255, 220, 126, 0.32);
  background: rgba(255, 239, 196, 0.05);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 223, 154, 0.32);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 4, 4, 0.24);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1rem;
  white-space: nowrap;
}

.button-primary {
  color: #2d1504;
  border-color: rgba(255, 232, 173, 0.6);
  background: linear-gradient(135deg, #fff0c1, #e8bb63 58%, #b3782c);
}

.button-secondary {
  color: var(--gold-bright);
  border-color: rgba(255, 226, 156, 0.28);
  background: linear-gradient(180deg, rgba(255, 246, 229, 0.1), rgba(255, 246, 229, 0.02));
}

.section {
  padding-top: 0;
}

.hero,
.section-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.25rem 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.hero::before,
.section-shell::before {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0.25rem 0.15rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.7rem, 8vw, 5.8rem);
  line-height: 0.9;
  color: var(--gold-bright);
  text-shadow: 0 4px 18px rgba(5, 2, 2, 0.32);
}

.hero-symbol {
  margin: 0.5rem 0 0.85rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.lead,
.bio,
.panel p,
.footer p {
  color: var(--muted);
  line-height: 1.68;
}

.lead {
  margin: 0 0 0.8rem;
  max-width: 56ch;
  font-size: 0.98rem;
}

.bio {
  margin: 0 0 1rem;
  max-width: 54ch;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.ca-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 223, 154, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.06), rgba(255, 247, 234, 0.018)),
    rgba(28, 13, 12, 0.7);
}

.ca-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.ca-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ca-copy strong {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--cream);
  word-break: break-all;
}

.button-copy {
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  margin: 0.9rem 0 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.88rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 223, 154, 0.18);
  background: rgba(255, 244, 216, 0.05);
  color: var(--gold-soft);
  font-size: 0.79rem;
  font-weight: 700;
}

.hero-side {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 1.05rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.08), rgba(255, 247, 234, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.separator-carousel {
  position: relative;
  display: flex;
  gap: 1.25rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 223, 154, 0.12);
  border-bottom: 1px solid rgba(255, 223, 154, 0.12);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.separator-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: none;
  min-width: max-content;
  animation: holy-marquee 26s linear infinite;
}

.separator-track span {
  white-space: nowrap;
  color: rgba(247, 221, 176, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes holy-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1.25rem));
  }
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 227, 158, 0.09), transparent 40%);
  pointer-events: none;
}

.panel h3 {
  margin: 0 0 0.55rem;
  color: var(--gold-bright);
  font-size: 0.98rem;
}

.logo-panel {
  width: min(100%, 390px);
  padding: 0.85rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 228, 171, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 245, 220, 0.08), rgba(255, 245, 220, 0.015)),
    rgba(39, 17, 14, 0.82);
}

.logo-panel-glow {
  position: absolute;
  inset: 16% 18% 38%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 226, 162, 0.5), rgba(255, 226, 162, 0));
  filter: blur(24px);
}

.logo-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  margin: 0 auto;
  padding: 0.9rem;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.06), rgba(255, 246, 229, 0.01)),
    rgba(25, 11, 10, 0.8);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
}

.summary-kicker {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.38rem;
  max-width: 52rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.08;
}

.about-layout,
.vault-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 0.95rem;
}

.about-layout > .section-heading,
.vault-layout > .section-heading,
.section-shell > .section-heading {
  grid-column: 1 / -1;
}

.about-story,
.join-copy {
  padding: 1.15rem;
}

.about-story p:first-child,
.join-copy p:first-child {
  margin-top: 0;
}

.about-cards {
  display: grid;
  gap: 0.8rem;
}

.vault-content {
  display: grid;
  gap: 0.8rem;
}

.vault-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 231, 170, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 247, 234, 0.08), rgba(255, 247, 234, 0.018)),
    rgba(39, 17, 14, 0.88);
}

.vault-visual-frame {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 0.85rem;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.08), rgba(255, 246, 229, 0.01)),
    rgba(24, 10, 9, 0.72);
}

.vault-visual-frame img {
  width: 100%;
  height: auto;
}

.vault-copy {
  padding: 1.2rem;
}

.vault-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button-coming {
  cursor: not-allowed;
  color: var(--cream);
  border-color: rgba(255, 224, 158, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.08), rgba(255, 247, 234, 0.02)),
    rgba(32, 16, 15, 0.92);
  box-shadow: none;
  opacity: 0.98;
}

.button-coming:hover,
.button-coming:focus-visible {
  transform: none;
  box-shadow: none;
}

.button-coming span {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(236, 193, 102, 0.16);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-coming-secondary {
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.05), rgba(255, 247, 234, 0.015)),
    rgba(28, 13, 13, 0.92);
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.vault-card {
  min-height: 100%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-card {
  padding: 1.1rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  color: #2d1504;
  font-size: 0.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff0c1, #e8bb63 60%, #b3782c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.buy-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 241, 210, 0.08), rgba(255, 241, 210, 0.02)),
    rgba(58, 20, 18, 0.82);
}

.chart-card {
  display: grid;
  gap: 0.8rem;
  padding: 0.2rem 0 0;
}

.chart-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 223, 154, 0.12);
}

.chart-card-head > div {
  max-width: 44rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 800;
}

.join-card {
  display: grid;
  padding: 0.2rem 0 0;
}

.join-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.9rem;
  align-items: center;
  padding-top: 0.15rem;
}

.join-card .join-copy {
  padding: 0.2rem 0.35rem 0.2rem 0;
}

.chart-frame-wrapper {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 223, 154, 0.18);
  background: rgba(11, 14, 22, 0.82);
}

#dexscreener-frame {
  width: 100%;
  height: 28rem;
  border: 0;
  display: block;
  background: #0d1117;
}

.banner-card {
  padding: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 243, 204, 0.08), rgba(255, 243, 204, 0.015)),
    var(--panel-strong);
}

.banner-frame {
  width: 100%;
  aspect-ratio: 2172 / 724;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 223, 154, 0.16);
  background: rgba(24, 10, 9, 0.7);
}

.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
  padding: 1.2rem 0 1rem;
  border-top: 1px solid rgba(255, 223, 154, 0.16);
}

.footer a {
  color: var(--gold-soft);
}

@media (max-width: 1080px) {
  .topbar,
  .hero-grid,
  .about-layout,
  .vault-layout,
  .join-card-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    justify-items: start;
  }

  .nav {
    justify-content: flex-start;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vault-grid {
    grid-template-columns: 1fr;
  }

  .chart-card-head {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 1rem, 100%);
  }

  .topbar {
    position: static;
    padding: 0.9rem 1rem 1rem;
  }

  .hero,
  .section-shell {
    padding: 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .vault-actions,
  .buy-panel,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ca-card {
    flex-direction: column;
    align-items: flex-start;
  }

  #dexscreener-frame {
    height: 24rem;
  }
}
