@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --navy: #050c1f;
  --navy-dark: #030714;
  --navy-light: #0e1a36;
  --text: #f4f6ff;
  --muted: #9ca9c6;
  --red: #ff304e;
  --gold: #f6c65b;
  --border: rgba(244, 246, 255, 0.12);
  --card-bg: rgba(8, 17, 39, 0.85);
  --card-bg-light: rgba(14, 27, 58, 0.85);
  --max-width: 1200px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--red);
  color: var(--text);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.promo-strip {
  background: #000000;
  text-align: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.promo-strip h2 {
  margin: 0.5rem 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-strip .subtitle {
  color: var(--muted);
  margin-bottom: 1rem;
}

.promo-strip .small-print {
  font-size: 0.9rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0;
}

.subtitle {
  margin-top: 0.5rem;
  color: var(--muted);
}

.site-header {
  background: #000000;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-header nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header nav a {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.site-header nav button {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.site-header nav a:hover,
.site-header nav a:focus,
.site-header nav button:hover,
.site-header nav button:focus {
  color: var(--text);
}

.site-header nav a.active {
  color: var(--gold);
  position: relative;
}

.site-header nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  margin: 0;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 200px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  z-index: 10;
  text-align: center;
  align-items: center;
}

.dropdown-menu li {
  list-style: none;
  }

.dropdown-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--text);
}

.dropdown-menu[hidden] {
  display: none !important;
}

.logo img {
  height: 56px;
  opacity: 1;
  filter: brightness(1.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 48px;
  padding: 0.85rem 1.75rem;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 48, 78, 0.35);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn.outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

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

.btn.primary:hover {
  box-shadow: 0 12px 28px rgba(255, 48, 78, 0.5);
}

.btn.secondary:hover,
.btn.outline:hover {
  border-color: var(--text);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero {
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 1rem 0;
}

.hero-copy .accent {
  color: var(--red);
}

.hero-copy .break {
  display: block;
}

.hero-copy .subheading {
  font-size: 1.25rem;
  max-width: 28ch;
}

.hero-copy .tagline {
  font-style: italic;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media img {
  width: min(520px, 100%);
  margin-left: auto;
}

.hero-secondary {
  background: #000000;
  padding: 4rem 0;
}

.contract-section {
  padding: 4rem 0;
  background: #000000;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contract-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contract-card {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  margin: 0;
}

.contract-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contract-ca-label {
  background: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.contract-card code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1rem;
  word-break: break-all;
  color: #000;
  background: transparent;
  flex: 1;
  padding: 0 1rem;
  min-width: 0;
  font-weight: 500;
}

.copy-btn {
  border: none;
  background: #dc143c;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.copy-btn:hover,
.copy-btn:focus {
  background: #ff1a3d;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 48, 78, 0.4);
}

.copy-feedback {
  font-size: 0.85rem;
  color: var(--gold);
  min-height: 1rem;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
}

.disclaimer {
  padding: 4rem 0;
  color: var(--muted);
}

.fight-strip {
  --marquee-duration: 30s;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #000000;
  position: relative;
  width: 100%;
}

.fight-strip .strip-wrapper {
  display: inline-flex;
  animation: marquee var(--marquee-duration) linear infinite;
  will-change: transform;
}

.fight-strip .strip-wrapper:hover {
  animation-play-state: paused;
}

.fight-strip .strip-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
  padding-left: 3rem;
  flex-shrink: 0;
}

.fight-strip .strip-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}

.fight-strip .strip-item-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid rgba(246, 198, 91, 0.3);
}

.fight-strip .strip-item-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.fight-strip .strip-item-text span {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.fight-highlight {
  padding: 4rem 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.fact-card {
  background: #1a1a1a;
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.fact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(246, 198, 91, 0.3);
  border-color: var(--gold);
}

.fact-card img {
  border-radius: 16px;
  margin-bottom: 1rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.fact-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.story-section {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.story-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 2rem;
  font-size: 1.5rem;
  color: var(--text);
}

.fight-highlight .story {
  max-width: 100%;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}

.story-list {
  max-width: 100%;
  margin: 1.5rem auto;
  padding-left: 0;
  list-style: none;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.story-list li {
  margin: 0;
  display: inline;
}

.story-list li::before {
  content: " • ";
  color: var(--gold);
  font-weight: bold;
}

.story-list li:first-child::before {
  content: "";
}

.fight-highlight .callout {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 1.5rem auto;
  max-width: 100%;
}

.allocation {
  padding: 4rem 0;
  border-block: 1px solid var(--border);
  background: #000000;
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.allocation-visual {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  padding: 1rem;
}

.buy-section {
  padding: 4rem 0;
  background: #000000;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.logo-row img {
  height: 40px;
  object-fit: contain;
  filter: invert(1) contrast(0.8);
}

.moonshot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 auto 2rem;
}

.moonshot-link:hover,
.moonshot-link:focus {
  transform: translateY(-2px);
  border-color: var(--text);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.moonshot-link img {
  height: 32px;
  filter: invert(1);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 1.5rem;
  border: 2px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(246, 198, 91, 0.3);
}

.step-card ul {
  padding-left: 1.25rem;
  color: var(--muted);
}

.step-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.step-link:hover {
  color: var(--text);
  text-decoration: underline;
}

.step-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gold);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-arrow:hover,
.link-arrow:focus {
  gap: 0.75rem;
  color: var(--text);
}

.tron {
  background: #000000;
}

.mission {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.mission-media {
  display: grid;
  gap: 1.5rem;
}

.mission-callout {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
}

.dinner {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.dinner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.dinner-cards {
  display: grid;
  gap: 1rem;
}

.dinner-card {
  background: #1a1a1a;
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dinner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(246, 198, 91, 0.3);
}

.dinner-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.faq {
  padding: 4rem 0;
  background: #000000;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 2px solid var(--gold);
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(246, 198, 91, 0.3);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
}

.faq-item button img {
  width: 18px;
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] img {
  transform: rotate(90deg);
}

.faq-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
}

.faq-item.open .faq-body {
  display: block;
}

.contact-strip {
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: #000000;
}

.contact-strip .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0;
  text-align: center;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social {
  transition: transform 0.2s ease;
}

.social:hover,
.social:focus {
  transform: scale(1.15);
}

.social img {
  width: 56px;
  height: 56px;
  filter: invert(1);
}

.site-footer {
  padding: 3rem 0;
  background: #000000;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.footer-logo {
  height: 64px;
  margin-bottom: 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.small-print {
  font-size: 0.85rem;
  color: var(--muted);
}

.copyright {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-top: 1rem;
}

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

  body.reveal-ready .reveal {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 640px) {
  .header-layout {
    flex-direction: column;
    gap: 1rem;
  }

  .site-header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .site-header nav a.active::after {
    bottom: -2px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .moonshot-link {
    width: 100%;
    justify-content: center;
  }

  .faq-item button {
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .logo-row {
    gap: 1rem;
  }

  .logo-row img {
    height: 32px;
  }

  .contract-card {
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 24px;
    gap: 1rem;
  }

  .contract-ca-label {
    width: 100%;
    text-align: center;
  }

  .contract-card code {
    font-size: 0.75rem;
    text-align: center;
  }

  .copy-btn {
    width: 100%;
  }
}

/* Additional improvements */
* {
  -webkit-tap-highlight-color: transparent;
}

.promo-strip .btn.primary {
  margin-top: 0.5rem;
}

.hero-media img {
  animation: float 6s ease-in-out infinite;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
  }
}

/* Disclaimer Modal */
.disclaimer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.disclaimer-modal.active {
  display: flex;
}

.disclaimer-content {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.disclaimer-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.disclaimer-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.disclaimer-content button {
  margin-top: 1.5rem;
}
