:root {
  --rose-ink: #12080d;
  --rose-deep: #1c0d13;
  --rose-mid: #2c141c;
  --rose-card: #3a1a24;
  --pink: #ff4f9a;
  --pink-hot: #ff2d86;
  --pink-soft: #ffb6d0;
  --pink-blush: #f7c8d6;
  --gold: #d4af37;
  --gold-light: #f3d77a;
  --gold-deep: #8a6a14;
  --cream: #fff4ef;
  --chrome: #ece6e1;
  --line: rgba(212, 175, 55, 0.35);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-script: "Great Vibes", cursive;
  --font-serif: "Cinzel Decorative", serif;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--rose-ink);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.velvet {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(255, 79, 154, 0.16), transparent 60%),
    radial-gradient(700px 480px at 88% 18%, rgba(212, 175, 55, 0.1), transparent 58%),
    radial-gradient(800px 600px at 50% 100%, rgba(255, 45, 134, 0.1), transparent 55%),
    linear-gradient(180deg, #160910 0%, #1c0d13 40%, #14080d 100%);
}

.wave {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.wave-a {
  width: 42vw;
  height: 42vw;
  left: -8vw;
  top: 8vh;
  background: #ff6ba8;
  animation: drift 22s ease-in-out infinite;
}

.wave-b {
  width: 36vw;
  height: 36vw;
  right: -6vw;
  top: 28vh;
  background: #c2185b;
  animation: drift 28s ease-in-out infinite reverse;
}

.wave-c {
  width: 30vw;
  height: 30vw;
  left: 38vw;
  bottom: -8vw;
  background: #d4af37;
  opacity: 0.16;
  animation: drift 26s ease-in-out infinite 1s;
}

.jacket-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.jw {
  fill: none;
  stroke-width: 18;
  stroke-linecap: round;
}

.jw1 {
  stroke: #ff8ec4;
  animation: waveShift 16s ease-in-out infinite;
}

.jw2 {
  stroke: #ff4f9a;
  animation: waveShift 20s ease-in-out infinite reverse;
}

#dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header,
.hero,
.about,
.howtobuy,
.chart,
.joinus,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(18, 8, 13, 0.62);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(18, 8, 13, 0.86);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.brand.compact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-frame {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 2px;
}

.brand-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--gold-light), var(--pink), var(--gold), var(--gold-light));
  animation: spinSlow 10s linear infinite;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--rose-ink);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.brand-script {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--pink-soft);
}

.brand-serif {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  background: linear-gradient(180deg, #fff4ef 0%, #ff8ec4 40%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--pink-blush);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-x {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.nav-x img {
  width: 14px;
  height: 14px;
  filter: invert(1) brightness(1.2);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn-buy,
.btn-gold {
  background: linear-gradient(180deg, #f3d77a 0%, #d4af37 48%, #a8861d 100%);
  color: #2a1608;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.btn-ghost img {
  filter: invert(86%) sepia(18%) saturate(400%) hue-rotate(350deg);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  animation: sheen 4.8s ease-in-out infinite;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 48px 0 0;
}

.hero-grid,
.section-shell,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.kicker-sol,
.kicker img {
  width: 16px;
  height: 16px;
}

.kicker.light,
.lede.light {
  color: #ffe9f2;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.82;
}

.wordmark-pink {
  position: relative;
  font-family: var(--font-script);
  font-size: clamp(4.6rem, 10vw, 8.4rem);
  font-weight: 400;
  background: linear-gradient(180deg, #ffe4f0 0%, #ff6ba8 55%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(255, 79, 154, 0.25));
}

.crown {
  position: absolute;
  width: 58px;
  left: 8px;
  top: -18px;
  animation: bob 3.4s ease-in-out infinite;
}

.wordmark-trump {
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.95) 0 7%, transparent 8%),
    radial-gradient(circle at 70% 60%, rgba(255, 214, 232, 0.85) 0 6%, transparent 7%),
    radial-gradient(circle at 40% 80%, rgba(243, 215, 122, 0.8) 0 5%, transparent 6%),
    linear-gradient(180deg, #fff0f6 0%, #ff8ec4 28%, #ff2d86 52%, #fff 64%, #c2185b 100%);
  background-size: 22px 22px, 28px 28px, 18px 18px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.7);
  animation: gemShift 8s linear infinite;
}

.star-rule {
  display: flex;
  gap: 10px;
  margin: 18px 0 8px;
}

.star-rule i {
  width: 11px;
  height: 11px;
  background: var(--gold-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: twinkle 2.4s ease-in-out infinite;
}

.star-rule i:nth-child(2) { animation-delay: 0.2s; }
.star-rule i:nth-child(3) { animation-delay: 0.4s; }
.star-rule i:nth-child(4) { animation-delay: 0.6s; }
.star-rule i:nth-child(5) { animation-delay: 0.8s; }

.symbol-line {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-light);
}

.tagline {
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--pink-blush);
}

.ca-row {
  margin: 28px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  width: fit-content;
}

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

.ca-value {
  font-size: 0.92rem;
  color: var(--cream);
}

.ca-copy {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 79, 154, 0.18);
  color: var(--pink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-portrait {
  display: grid;
  place-items: center;
}

.medallion {
  position: relative;
  width: min(420px, 86vw);
  aspect-ratio: 1;
}

.medallion-spin {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f3d77a, #ff4f9a, #ffffff, #d4af37, #ff2d86, #f3d77a);
  animation: spinSlow 12s linear infinite;
  filter: blur(0.4px);
}

.medallion-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #1a0b12;
  box-shadow: var(--shadow);
}

.medallion-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.08);
}

.medallion-glint {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  mix-blend-mode: screen;
  animation: glint 5.5s ease-in-out infinite;
}

.portrait-caption {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--pink-soft);
}

.ticker {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 79, 154, 0.06);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-light);
}

.about,
.howtobuy,
.chart {
  padding: 110px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.88;
}

.section-head .section-title {
  align-items: center;
}

.script-line {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  color: var(--pink-soft);
}

.serif-line {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #fff4ef, #ff8ec4 40%, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin-top: 18px;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.6;
  color: var(--pink-blush);
}

.lede.center {
  margin-left: auto;
  margin-right: auto;
}

.body-copy {
  margin-top: 16px;
  max-width: 40rem;
  line-height: 1.75;
  color: rgba(255, 244, 239, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}

.about-frame,
.chart-frame {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.about-frame {
  padding: 16px;
  box-shadow: var(--shadow);
}

.about-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-light);
}

.c-tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.c-tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.c-bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.c-br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.facts li {
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 79, 154, 0.08), rgba(18, 8, 13, 0.2));
}

.fact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.fact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.fact-chain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fact-chain img {
  width: 16px;
  height: 16px;
}

.route {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.route::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.stop {
  position: relative;
  padding: 28px 20px 24px;
  border: 1px solid var(--line);
  background: rgba(26, 11, 18, 0.72);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.stop:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 79, 154, 0.45);
}

.stop-num {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 16px;
}

.stop-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.stop-icon img {
  width: 30px;
  height: 30px;
}

.stop h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.stop p {
  color: rgba(255, 244, 239, 0.72);
  line-height: 1.65;
  font-size: 0.95rem;
}

.stop-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
}

.chart-frame {
  height: min(680px, 78vh);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0e11;
}

.chart-note {
  margin-top: 18px;
  text-align: center;
}

.chart-note a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}

.chart-note img {
  width: 18px;
  height: 18px;
  filter: invert(86%) sepia(18%) saturate(400%) hue-rotate(350deg);
}

.joinus {
  padding: 0 0 40px;
}

.join-mural {
  position: relative;
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 86vh;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.join-banner {
  width: 100%;
  height: 100%;
  min-height: 86vh;
  object-fit: cover;
  object-position: center 30%;
  animation: kenburns 28s ease-in-out infinite alternate;
}

.join-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 8, 13, 0.12) 0%, rgba(18, 8, 13, 0.28) 45%, rgba(18, 8, 13, 0.78) 100%);
}

.join-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 32px 40px;
}

.join-panel .section-title {
  align-items: flex-start;
}

.join-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  max-width: 760px;
}

.join-card {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(243, 215, 122, 0.35);
  background: rgba(18, 8, 13, 0.62);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.join-card:hover {
  transform: translateY(-4px);
  background: rgba(42, 16, 24, 0.78);
}

.join-card img {
  width: 22px;
  height: 22px;
}

.join-card img.ink {
  filter: invert(1) brightness(1.15);
}

.join-card span {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.join-card small {
  color: var(--pink-soft);
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.fine {
  font-size: 0.82rem;
  color: rgba(255, 244, 239, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s ease forwards;
}

.hero-copy .reveal:nth-child(1) { animation-delay: 0.05s; }
.hero-copy .reveal:nth-child(2) { animation-delay: 0.16s; }
.hero-copy .reveal:nth-child(3) { animation-delay: 0.26s; }
.hero-copy .reveal:nth-child(4) { animation-delay: 0.36s; }
.hero-copy .reveal:nth-child(5) { animation-delay: 0.46s; }
.hero-copy .reveal:nth-child(6) { animation-delay: 0.56s; }
.hero-portrait { animation-delay: 0.2s; }
.stop:nth-child(1) { animation-delay: 0.05s; }
.stop:nth-child(2) { animation-delay: 0.15s; }
.stop:nth-child(3) { animation-delay: 0.25s; }
.stop:nth-child(4) { animation-delay: 0.35s; }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4vw, -3vh, 0) scale(1.08); }
}

@keyframes waveShift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-40px); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes sheen {
  0%, 70% { left: -40%; }
  100% { left: 130%; }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes glint {
  0%, 70% { transform: translateX(-18%); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateX(18%); opacity: 0; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes gemShift {
  0% { background-position: 0 0, 10px 8px, 4px 12px, 0 0; }
  100% { background-position: 22px 18px, 38px 28px, 22px 18px, 0 0; }
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-btn {
    display: grid;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(18, 8, 13, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .route,
  .facts,
  .join-links {
    grid-template-columns: 1fr;
  }

  .route::before {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 20px;
  }

  .join-panel {
    padding: 24px 18px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
