:root {
  --navy: #14233a;
  --navy-deep: #0b1626;
  --blue: #1e3a5f;
  --blue-soft: #2a4a72;
  --gold: #e2b84a;
  --gold-soft: #f0d48a;
  --cream: #f7f1e6;
  --fur: #c4a07a;
  --fur-deep: #7a5638;
  --mist: rgba(247, 241, 230, 0.72);
  --line: rgba(247, 241, 230, 0.14);
  --shadow: 0 24px 60px rgba(8, 14, 28, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 18px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(42, 74, 114, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(226, 184, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 40%, #101c30 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  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='0.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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(11, 22, 38, 0.92), rgba(11, 22, 38, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(226, 184, 74, 0.45);
  box-shadow: 0 0 0 3px rgba(20, 35, 58, 0.5);
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mist);
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover {
  color: var(--cream);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-primary,
.btn-buy {
  background: linear-gradient(135deg, var(--gold) 0%, #c9922e 100%);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(226, 184, 74, 0.25);
}

.btn-primary:hover,
.btn-buy:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
}

.btn-ghost {
  background: rgba(247, 241, 230, 0.06);
  border-color: var(--line);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(247, 241, 230, 0.12);
  border-color: rgba(226, 184, 74, 0.45);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 28, 0.78) 0%, rgba(8, 14, 28, 0.35) 48%, rgba(8, 14, 28, 0.55) 100%),
    linear-gradient(0deg, rgba(8, 14, 28, 0.92) 0%, rgba(8, 14, 28, 0.25) 42%, rgba(8, 14, 28, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto 0 clamp(1rem, 5vw, 4rem);
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  animation: rise 1s ease both;
}

.token-chip {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(226, 184, 74, 0.35);
  border-radius: 999px;
  background: rgba(11, 22, 38, 0.45);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  line-height: 0.92;
}

.brand-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.name-line {
  display: block;
  margin-top: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.tagline {
  max-width: 34ch;
  margin: 1.25rem 0 1.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--mist);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 22, 38, 0.4);
  color: var(--cream);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  border-color: var(--gold);
  background: rgba(226, 184, 74, 0.15);
  transform: translateY(-2px);
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-head p,
.about-copy p {
  margin: 0;
  color: var(--mist);
  font-size: 1.05rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(226, 184, 74, 0.4);
  box-shadow: var(--shadow), 0 0 0 12px rgba(30, 58, 95, 0.35);
  animation: floaty 5.5s ease-in-out infinite;
}

.about-copy strong {
  color: var(--gold-soft);
}

.gallery {
  background:
    linear-gradient(180deg, transparent, rgba(20, 35, 58, 0.55), transparent);
}

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

.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(8, 14, 28, 0.55);
  min-height: 520px;
}

.video-frame .tiktok-embed {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.video-meta h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.video-meta p {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.steps li {
  padding: 1.5rem 1.35rem;
  border-top: 2px solid rgba(226, 184, 74, 0.55);
  background: linear-gradient(180deg, rgba(42, 74, 114, 0.28), rgba(42, 74, 114, 0.05));
}

.step-num {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: var(--mist);
  font-size: 0.98rem;
}

.buy-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 22, 38, 0.55);
}

.ca {
  margin: 0.35rem 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  color: var(--gold-soft);
  word-break: break-all;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.join {
  padding-top: 2rem;
}

.join-inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(226, 184, 74, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 184, 74, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(30, 58, 95, 0.55), rgba(11, 22, 38, 0.75));
}

.join-logo {
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(226, 184, 74, 0.45);
  animation: floaty 5.5s ease-in-out infinite;
}

.join-inner h2 {
  margin-bottom: 0.6rem;
}

.join-inner > p {
  margin: 0 auto 1.5rem;
  max-width: 34ch;
  color: var(--mist);
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.disclaimer,
.copy {
  margin: 0;
  color: rgba(247, 241, 230, 0.55);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes kenburns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

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

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .video-frame {
    min-height: 580px;
  }

  .hero-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 560px) {
  .site-header .btn-buy {
    padding-inline: 0.9rem;
    font-size: 0.85rem;
  }

  .brand span small {
    display: none;
  }

  .buy-panel {
    align-items: stretch;
  }

  .buy-actions {
    width: 100%;
  }

  .buy-actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-banner,
  .about-photo img,
  .join-logo,
  .hero-content {
    animation: none;
  }

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