:root {
  --navy-ink: #120d3a;
  --signature-red: #d91f31;
  --white: #ffffff;
  --signature-gold: #e6c378;
  --gold-mid: #b98f49;
  --gold-deep: #a76b2b;
  --near-black: #05031b;
  --royal-deep: #0a1f53;
  --link-blue: #1927ae;
  --page: #f6f5f7;
  --surface: #ffffff;
  --muted: #69727d;
  --border: #e4e4e4;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--navy-ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

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

.font-display {
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.gold-rule {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), var(--signature-gold));
}

.wordmark-stack {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1;
}

.wordmark-stack .rule {
  width: 2px;
  align-self: stretch;
  min-height: 2.4rem;
  background: linear-gradient(180deg, var(--signature-gold), var(--gold-deep));
  border-radius: 999px;
}

.wordmark-stack .line {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.wordmark-stack .queue {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--signature-red);
  line-height: 0.95;
}

.wordmark-stack.ink .line {
  color: var(--navy-ink);
}

.wordmark-stack.compact .queue {
  font-size: 1.25rem;
}

.btn-stadium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-stadium:active {
  transform: scale(0.97);
}

.btn-red {
  background: var(--signature-red);
  color: var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
}

.btn-red:hover {
  background: #c41b2c;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-mid), var(--gold-deep));
  color: var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.28);
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(230, 195, 120, 0.45);
}

.btn-ghost:hover {
  border-color: var(--signature-gold);
  color: var(--signature-gold);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.65rem 1.15rem 0.65rem 1rem;
  border-radius: 0.75rem;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-badge:hover {
  background: #111;
  transform: translateY(-1px);
}

.store-badge:active {
  transform: scale(0.98);
}

.store-badge .apple {
  font-size: 1.65rem;
  line-height: 1;
}

.store-badge .meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-badge .meta small {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.store-badge .meta strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: var(--safe-top);
  background: rgba(5, 3, 27, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 195, 120, 0.12);
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.65rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--signature-gold);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(230, 195, 120, 0.12);
  background: rgba(5, 3, 27, 0.96);
}

.mobile-panel.open {
  display: block;
}

.menu-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-plane {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(5.5rem + var(--safe-top));
  padding-bottom: calc(2.5rem + var(--safe-bottom));
  overflow: hidden;
  background: var(--near-black);
}

.hero-plane::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 27, 0.35) 0%, rgba(5, 3, 27, 0.55) 42%, rgba(5, 3, 27, 0.92) 100%),
    url("splash.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-plane > * {
  position: relative;
  z-index: 1;
}

.phone-frame {
  width: min(100%, 280px);
  margin-inline: auto;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(230, 195, 120, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: var(--near-black);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-eyebrow .dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--signature-red);
}

.feature-rail {
  border-left: 2px solid rgba(185, 143, 73, 0.35);
  padding-left: 1.25rem;
}

.feature-rail h3 {
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.dark-band {
  background: linear-gradient(90deg, #05031b, #0b0641);
  color: var(--white);
}

.legal-prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--navy-ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p,
.legal-prose li {
  color: #3a4150;
  line-height: 1.7;
  font-weight: 400;
}

.legal-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.legal-prose a {
  color: var(--link-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--navy-ink);
}

.faq-btn i {
  color: var(--signature-red);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-btn i {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

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

.site-footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.78);
  padding-bottom: calc(2rem + var(--safe-bottom));
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--signature-gold);
}

.page-hero {
  padding-top: calc(7rem + var(--safe-top));
  padding-bottom: 3rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217, 31, 49, 0.18), transparent 45%),
    linear-gradient(160deg, #05031b 0%, #0a1f53 55%, #120d3a 100%);
  color: var(--white);
}

.focus-ring:focus-visible {
  outline: 2px solid var(--signature-gold);
  outline-offset: 3px;
}

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

.hero-rise > * {
  animation: brand-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-rise > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-rise > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-rise > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-rise > *:nth-child(5) {
  animation-delay: 0.32s;
}
