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

:root {
  --black: #08090d;
  --dark: #101218;
  --dark-2: #181c24;
  --red: #c8102e;
  --red-light: #e23b3b;
  --red-dim: #8a1524;
  --kraft: #c4a484;
  --kraft-deep: #9a7b5a;
  --cream: #f3efe6;
  --muted: #8e8a84;
  --line: rgba(200, 16, 46, 0.22);
  --display: "Oswald", "Impact", sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1080px, 90vw);
  margin: 0 auto;
}

.center {
  text-align: center;
}
.sub {
  color: var(--muted);
}

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--kraft);
}

.logo-name {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-ticker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--red-light);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red-light);
  transition: background 0.2s, border-color 0.2s;
}

.nav-icon:hover {
  background: rgba(200, 16, 46, 0.1);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-banner-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(8, 9, 13, 0.94) 0%,
      rgba(8, 9, 13, 0.72) 38%,
      rgba(8, 9, 13, 0.28) 68%,
      rgba(8, 9, 13, 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 9, 13, 0.35) 0%,
      transparent 22%,
      transparent 72%,
      var(--black) 100%
    );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
}

.hero-eyebrow .star {
  color: var(--red-light);
  font-size: 0.62rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.hero-anon {
  display: block;
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: #fff;
  margin-bottom: 0.35rem;
}

.hero-trump {
  display: block;
  color: var(--red-light);
  text-shadow: 0 0 40px rgba(200, 16, 46, 0.28);
}

.hero-ticker {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--kraft);
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(243, 239, 230, 0.78);
  max-width: 460px;
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 38vw, 420px);
}

.hero-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.28) 0%,
    rgba(196, 164, 132, 0.1) 45%,
    transparent 70%
  );
  animation: hero-pulse 4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 164, 132, 0.28);
}

.hero-orbit-1 {
  width: 88%;
  aspect-ratio: 1;
  animation: hero-spin 24s linear infinite;
}

.hero-orbit-2 {
  width: 100%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(200, 16, 46, 0.18);
  animation: hero-spin 36s linear infinite reverse;
}

@keyframes hero-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-coin-frame {
  position: relative;
  z-index: 1;
  width: min(72%, 300px);
  aspect-ratio: 1;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--kraft), var(--kraft-deep), #6e5340);
  box-shadow: 0 0 0 1px rgba(196, 164, 132, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.55), 0 0 80px rgba(200, 16, 46, 0.18);
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--black);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

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

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-light);
}

.btn-line {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(243, 239, 230, 0.25);
}

.btn-line:hover {
  border-color: var(--red);
  color: var(--red-light);
}

.btn-lg {
  padding: 1rem 2rem;
}
.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
}
.btn-sm.copied {
  opacity: 0.65;
}

/* ── Ticker bar ── */
.ticker-bar {
  overflow: hidden;
  padding: 0.7rem 0;
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-inner {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-inner span:nth-child(odd) {
  color: var(--red-light);
}

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

/* ── Blocks ── */
.block {
  padding: 5.5rem 0;
}

.block-dark {
  background: var(--dark);
}

.block-head {
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.block-head.center {
  margin-left: auto;
  margin-right: auto;
}

.tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.6rem;
}

.block h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.block h2 em {
  font-style: italic;
  text-transform: none;
  color: var(--red-light);
}

.block-head p {
  color: var(--muted);
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  background: var(--black);
  padding: 2rem 1.75rem;
}

.card-accent {
  background: var(--dark-2);
}

.card-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red-dim);
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--kraft);
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--kraft);
  box-shadow: 0 0 0 8px rgba(196, 164, 132, 0.1);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.about-text strong {
  color: var(--cream);
}

.meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.meta dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.meta dd {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red-light);
}

/* ── Look / identity ── */
.look {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 0.75rem;
}

.look-item {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: zoom-in;
  background: var(--dark);
  min-height: 280px;
}

.look-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.look-item:hover img {
  transform: scale(1.04);
}

.look-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(8, 9, 13, 0.85), transparent);
  pointer-events: none;
}

.look-item span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look-wide {
  min-height: 360px;
}

.look-wide span {
  font-size: 0.9rem;
  bottom: 1rem;
  left: 1rem;
}

/* ── Contract ── */
.contract-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--black);
  border: 1px solid var(--line);
}

.ca-box code {
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: clamp(0.75rem, 2vw, 0.92rem);
  letter-spacing: 0.05em;
  word-break: break-all;
  color: var(--kraft);
}

.toast {
  text-align: center;
  min-height: 1.2rem;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--red-light);
  opacity: 0;
  transition: opacity 0.3s;
}

.toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-box {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.chart-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-iframe.hidden,
.chart-ph.hidden {
  display: none;
}

.chart-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--red-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.chart-link:hover {
  text-decoration: underline;
}

@media (min-width: 1000px) {
  .chart-box {
    padding-bottom: 65%;
  }
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 2rem 0 2.5rem;
}

.steps li {
  background: var(--black);
  padding: 1.75rem 1.25rem;
}

.steps span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red-dim);
  margin-bottom: 0.5rem;
}

.steps h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.steps p {
  font-size: 0.88rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--kraft);
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red-light);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: #5c5854;
  line-height: 1.65;
  max-width: 600px;
}

/* ── Lightbox ── */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(960px, 92vw);
}

.lightbox::backdrop {
  background: rgba(8, 9, 13, 0.92);
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--line);
}

.lightbox-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .cards,
  .about-grid,
  .steps,
  .look {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: none;
    margin: 0 auto;
  }

  .hero-eyebrow {
    justify-content: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }

  .hero-banner {
    object-position: 80% center;
  }

  .hero-banner-shade {
    background: linear-gradient(
        180deg,
        rgba(8, 9, 13, 0.55) 0%,
        rgba(8, 9, 13, 0.78) 42%,
        rgba(8, 9, 13, 0.9) 100%
      ),
      linear-gradient(90deg, rgba(8, 9, 13, 0.35), transparent 60%);
  }

  .hero-showcase {
    min-height: 260px;
    max-width: 320px;
    margin: 0 auto;
  }

  .look-wide,
  .look-item {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(8, 9, 13, 0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .logo-name {
    font-size: 0.85rem;
  }

  .ca-box {
    flex-direction: column;
  }
  .ca-box .btn {
    width: 100%;
    justify-content: center;
  }

  .meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .look-item {
    aspect-ratio: 4 / 3;
  }
  .hero-coin-frame {
    width: 78%;
  }
}
