:root {
  --ink: #11110f;
  --night: #151515;
  --night-2: #202322;
  --paper: #f8f8f3;
  --muted: #b8c0cf;
  --gold: #e63946;
  --gold-2: #ffffff;
  --teal: #5ad7ff;
  --red: #e9554f;
  --line: rgba(246, 241, 231, 0.15);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(230, 57, 70, 0.22), transparent 28rem),
    radial-gradient(circle at 18% 0%, rgba(42, 102, 198, 0.24), transparent 30rem),
    linear-gradient(135deg, #0a1020 0%, #151b2d 45%, #0d1018 100%);
  color: var(--paper);
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(17, 17, 15, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-cta,
.hero-actions,
.contract-strip,
.community-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(242, 185, 75, 0.55);
  border-radius: 50%;
  background: #121826;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(242, 185, 75, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(246, 241, 231, 0.75);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.nav-cta,
.button,
.contract-strip button {
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.nav-cta {
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  background: var(--paper);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 3px;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding: 120px clamp(20px, 6vw, 72px) 58px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.98) 0%, rgba(7, 10, 18, 0.84) 42%, rgba(7, 10, 18, 0.54) 72%, rgba(7, 10, 18, 0.86) 100%),
    linear-gradient(0deg, rgba(7, 10, 18, 0.96) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 9.5vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
  color: #ff344a;
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  color: rgba(246, 241, 231, 0.82);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #e63946;
  color: white;
  box-shadow: 0 14px 38px rgba(230, 57, 70, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.contract-strip {
  width: 100%;
  max-width: 650px;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(21, 21, 21, 0.8);
  box-shadow: var(--shadow);
}

.contract-strip span {
  flex: 0 0 auto;
  padding-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contract-strip code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--paper);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-strip button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 18px;
  background: #5ad7ff;
  color: #071526;
}

.hero-photo-stack {
  position: relative;
  z-index: 2;
  flex: 0 1 470px;
  width: min(36vw, 470px);
  min-width: 300px;
  min-height: 560px;
}

.hero-photo-stack::before {
  content: "";
  position: absolute;
  inset: 38px 24px 44px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  transform: rotate(-2deg);
}

.hero-photo-stack img {
  position: absolute;
  object-fit: cover;
  border: 10px solid #f8f8f3;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.hero-photo-stack .photo-main {
  top: 18px;
  right: 14px;
  width: min(74%, 360px);
  aspect-ratio: 0.82;
  transform: rotate(2.4deg);
}

.hero-photo-stack .photo-float {
  width: 190px;
  aspect-ratio: 1;
  border-width: 7px;
}

.hero-photo-stack .photo-top {
  top: 34px;
  left: 0;
  transform: rotate(-8deg);
}

.hero-photo-stack .photo-bottom {
  right: 0;
  bottom: 18px;
  transform: rotate(8deg);
}

.ticker-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 18px clamp(16px, 4vw, 32px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, #17356f 0 32%, #f8f8f3 32% 64%, #e63946 64% 100%);
  color: #071526;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.copy-stack {
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.copy-stack p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.buy-section,
.roadmap-section,
.controversy-section {
  background: rgba(246, 241, 231, 0.045);
  border-block: 1px solid var(--line);
}

.campaign-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 53, 111, 0.42), transparent 48%),
    linear-gradient(135deg, rgba(230, 57, 70, 0.2), transparent 36%);
}

.campaign-poster {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #102451;
  box-shadow: var(--shadow);
}

.campaign-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 10, 18, 0.28) 48%, rgba(7, 10, 18, 0.92) 100%),
    repeating-linear-gradient(0deg, rgba(230, 57, 70, 0.7) 0 30px, rgba(248, 248, 243, 0.74) 30px 58px);
  mix-blend-mode: normal;
}

.campaign-poster img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  opacity: 0.92;
}

.campaign-poster div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.campaign-poster span {
  width: max-content;
  padding: 8px 12px;
  background: #e63946;
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

.campaign-poster strong {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.campaign-copy p {
  max-width: 720px;
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.1rem;
  line-height: 1.78;
}

.slogan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.slogan-grid span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 850;
}

.steps-grid,
.stats-grid,
.roadmap,
.photo-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.stat-panel,
.roadmap article,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.photo-card {
  min-height: 520px;
  overflow: hidden;
  background: #f2ece0;
  color: var(--ink);
  transform-origin: center;
}

.photo-card.rotate-left {
  transform: rotate(-1.4deg);
}

.photo-card.rotate-right {
  transform: rotate(1.2deg);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a2440;
  border-bottom: 10px solid #17356f;
}

.photo-card div {
  padding: 22px;
}

.photo-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #b80f2f;
  font-weight: 950;
  text-transform: uppercase;
}

.photo-card h3 {
  font-size: 1.48rem;
}

.photo-card p {
  color: rgba(17, 17, 15, 0.72);
  line-height: 1.6;
}

.step-card {
  min-height: 230px;
  padding: 24px;
}

.step-card span,
.roadmap span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 950;
}

.step-card p,
.roadmap p {
  color: rgba(246, 241, 231, 0.72);
  line-height: 1.62;
}

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

.stat-panel {
  min-height: 160px;
  padding: 24px;
}

.stat-panel span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-panel strong {
  display: block;
  margin-top: 24px;
  color: var(--gold-2);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

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

.roadmap article {
  min-height: 240px;
  padding: 28px;
  border-top: 4px solid var(--red);
}

.community-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.community-actions {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.community-actions a {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-weight: 950;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: #0f0f0d;
  color: rgba(246, 241, 231, 0.62);
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .site-nav {
    position: fixed;
    top: 75px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(20, 20, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .menu-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    align-items: flex-end;
    min-height: 92svh;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 10, 18, 0.96) 0%, rgba(7, 10, 18, 0.68) 54%, rgba(7, 10, 18, 0.86) 100%),
      linear-gradient(0deg, rgba(7, 10, 18, 0.99) 0%, rgba(7, 10, 18, 0.5) 62%, rgba(7, 10, 18, 0.62) 100%);
  }

  .hero-photo-stack {
    position: absolute;
    top: 112px;
    right: -92px;
    width: 320px;
    min-width: 0;
    min-height: 360px;
    opacity: 0.34;
  }

  .hero-photo-stack .photo-main {
    width: 260px;
  }

  .hero-photo-stack .photo-float {
    width: 138px;
  }

  .split,
  .community-section,
  .campaign-section {
    grid-template-columns: 1fr;
  }

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

  .roadmap,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .campaign-poster {
    min-height: 440px;
  }

  .community-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .hero {
    padding: 112px 16px 34px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.3rem);
    line-height: 0.95;
  }

  .hero-content,
  .hero-copy,
  .contract-strip {
    max-width: min(358px, 100%);
  }

  .button {
    width: 100%;
  }

  .contract-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
  }

  .contract-strip button {
    justify-self: end;
  }

  .contract-strip span {
    grid-column: 1 / -1;
  }

  .section {
    padding-inline: 16px;
  }

  .ticker-band {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    font-size: 0.88rem;
    text-align: center;
  }

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

  .step-card,
  .stat-panel,
  .roadmap article,
  .photo-card {
    min-height: 0;
  }

  .campaign-poster {
    min-height: 390px;
    padding: 20px;
  }

  .campaign-poster img {
    top: 24px;
    width: min(84%, 310px);
  }

  .campaign-poster strong {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
  }

  .photo-card.rotate-left,
  .photo-card.rotate-right {
    transform: none;
  }
}
