:root {
  --navy: #0b1120;
  --navy-2: #0d1525;
  --navy-3: #070d1a;
  --gold: #c9a227;
  --gold-light: #e5c04a;
  --cream: #fefce8;
  --cream-soft: #e2d9c0;
  --muted: #94a3b8;
  --dim: #475569;
  --green: #4ade80;
  --green-dark: #22c55e;
  --discord: #5865f2;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.75rem 1.5rem;
  background: rgba(11, 17, 32, 0.96);
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.brand-link img {
  height: 30px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-pill,
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(34, 197, 94, 0.34);
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.34rem 0.75rem;
}

.status-pill span,
.hero-status span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--green-dark);
  animation: pulse 1.9s ease-in-out infinite;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 0.75rem;
  color: #fff;
  font-family: var(--body);
  font-weight: 800;
  line-height: 1.1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.button svg {
  width: 1.3em;
  height: 1.3em;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-discord {
  background: var(--discord);
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.button-large {
  min-height: 56px;
  padding: 1rem 1.65rem;
  font-size: 1rem;
}

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

.section-inner.narrow {
  width: min(100% - 2rem, 48rem);
}

.section-blue {
  background: var(--navy-2);
}

.hero {
  position: relative;
  display: flex;
  height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: calc(64px + clamp(0.75rem, 2.5svh, 1.6rem)) 1rem clamp(3rem, 6svh, 4.75rem);
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(11, 17, 32, 0.55) 0%, rgba(11, 17, 32, 0.2) 32%, rgba(11, 17, 32, 0.42) 66%, #0b1120 100%),
    url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 56rem);
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(100%, clamp(260px, 27vw, 340px));
  margin-bottom: clamp(0.65rem, 1.4svh, 1rem);
}

.hero-tagline {
  max-width: 42rem;
  margin: 0;
  color: var(--cream-soft);
  font-family: var(--display);
  font-size: clamp(2.45rem, 8vw, 3.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.hero .hero-status {
  margin-top: clamp(0.8rem, 1.8svh, 1.25rem);
  background: rgba(0, 0, 0, 0.6);
}

.hero .button-large {
  margin-top: clamp(0.8rem, 1.8svh, 1.25rem);
}

.video-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem, 62vw);
  max-height: 32svh;
  margin-top: clamp(1rem, 3svh, 2.2rem);
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.video-frame video {
  width: 100%;
  height: 100%;
  max-height: 32svh;
  object-fit: cover;
}

.discover {
  position: absolute;
  z-index: 3;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discover > span:last-child {
  display: flex;
  width: 1.25rem;
  height: 2rem;
  justify-content: center;
  padding-top: 0.35rem;
  border: 1px solid var(--dim);
  border-radius: 999px;
}

.discover i {
  width: 0.25rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  animation: bounce 1.2s infinite;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1rem 4rem;
  background: linear-gradient(160deg, #3b1500 0%, #2a0e00 42%, #1a0800 100%);
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201, 162, 39, 0.025) 0, rgba(201, 162, 39, 0.025) 1px, transparent 1px, transparent 44px);
}

.quote-band .section-inner {
  position: relative;
  text-align: center;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), #d4aa2e, var(--gold-light), #d4aa2e, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

.world-note {
  margin-top: 2.8rem;
}

.world-note p {
  margin: 0;
  color: #d4b88a;
  font-size: 1.05rem;
  font-weight: 600;
}

.world-note ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--gold);
  list-style: none;
}

.world-note li::before {
  content: "-";
  margin-right: 0.55rem;
}

.how-to {
  padding: 5.5rem 0 6.5rem;
}

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

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
}

.section-heading p {
  max-width: 36rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
  margin-top: 5rem;
}

.feature-row:first-of-type {
  margin-top: 0;
}

.feature-row-reverse {
  flex-direction: row-reverse;
}

.phone-shot {
  position: relative;
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.phone-shot::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 50%;
  z-index: 2;
  width: 3rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.32);
  transform: translateX(-50%);
}

.phone-shot img {
  width: min(100%, 220px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 3px solid rgba(201, 162, 39, 0.36);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 39, 0.08);
}

.feature-copy {
  flex: 1;
}

.feature-copy > p:first-child {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 0.7rem 0 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.feature-copy > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.playtest-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}

.playtest-media,
.playtest-media img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.playtest-media img {
  object-fit: cover;
}

.cta-overlay {
  background: linear-gradient(to bottom, rgba(11, 20, 38, 0.84) 0%, rgba(11, 20, 38, 0.72) 50%, rgba(11, 20, 38, 0.88) 100%);
}

.playtest-cta .section-inner {
  position: relative;
  z-index: 2;
}

.playtest-cta h2 {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
}

.playtest-cta p {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.playtest-cta .button {
  margin-top: 2rem;
}

.playtest-cta .founder-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.founder-note strong {
  color: var(--gold);
}

.faq {
  padding: 5.5rem 0 6rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: 0.75rem;
  background: rgba(11, 17, 32, 0.75);
  transition: border-color 0.2s ease;
}

.faq details[open],
.faq details:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

.faq summary {
  display: flex;
  min-height: 3rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  list-style: none;
  outline: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
}

.faq summary span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.faq summary span::before,
.faq summary span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.75rem;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.faq details[open] summary span::after {
  opacity: 0;
}

.faq details > p {
  margin: 0;
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 0.75rem 1rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(11, 17, 32, 0.96);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.mobile-cta .button {
  width: 100%;
  min-height: 48px;
}

.site-footer {
  padding: 2.5rem 1.5rem;
  padding-bottom: 5rem;
  background: var(--navy-3);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  text-align: center;
}

.footer-inner {
  display: flex;
  width: min(100%, 64rem);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner > img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--dim);
}

.social-links a {
  transition: color 0.18s ease;
}

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

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.site-footer p {
  margin: 1.25rem 0 0;
  color: #334155;
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .status-pill {
    display: none;
  }

  .brand-link img {
    height: 24px;
  }

  .header-actions {
    display: none;
  }

  .button-small {
    width: 42px;
    min-height: 38px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .button-small svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .hero {
    padding-top: calc(64px + 1rem);
    padding-bottom: 5.25rem;
  }

  .hero-logo {
    width: 260px;
    max-width: 68vw;
  }

  .hero-tagline {
    width: min(100%, 21rem);
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .video-frame {
    width: min(100%, 30rem);
    max-height: 26svh;
    margin-top: clamp(1.1rem, 3svh, 2rem);
    border-radius: 0.75rem;
  }

  .video-frame video {
    max-height: 26svh;
  }

  .discover {
    display: flex;
    bottom: calc(4.75rem + max(0.75rem, env(safe-area-inset-bottom)));
  }

  .feature-row,
  .feature-row-reverse {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4.25rem;
    text-align: center;
  }

  .phone-shot {
    flex-basis: auto;
    width: 100%;
  }

  .phone-shot img {
    width: min(72vw, 220px);
  }

  .footer-inner {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 420px) {
  .quote-band,
  .how-to,
  .playtest-cta,
  .faq {
    padding-top: 4.25rem;
    padding-bottom: 4.75rem;
  }
}
