:root {
  --background: #000000;
  --foreground: #ffffff;
  --muted: rgba(255, 255, 255, 0.5);
  --muted-strong: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --surface: rgba(255, 255, 255, 0.05);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-deep: #111111;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --font-sans: "Geist", Arial, Helvetica, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;
  --container: 72rem;
  --container-wide: 78rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

::selection {
  background: #ffffff;
  color: #000000;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

.landing-body,
.legal-body {
  min-height: 100vh;
}

.page-root {
  position: relative;
  overflow-x: hidden;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: 100px 100px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
}

.hero-section,
.section-shell,
.legal-root {
  position: relative;
  z-index: 1;
}

.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 1.5rem 2rem;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 1rem 2.5rem;
}

.site-nav-pill {
  width: 100%;
  max-width: 56rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.375rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-left: 0.5rem;
  flex-shrink: 0;
  line-height: 0;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand-wordmark {
  display: block;
  width: 72px;
  height: 24px;
  object-fit: cover;
  object-position: center;
}

.site-nav-center {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-link-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open .nav-link-trigger,
.nav-link-trigger:hover,
.nav-link-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: 18rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -8px, 0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.nav-panel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1rem;
}

.nav-item.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-panel-card {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  background: #111111;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: background-color 0.15s ease;
}

.nav-panel-card:hover,
.nav-panel-card:focus-visible {
  background: #181818;
  outline: none;
}

.nav-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.nav-panel-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.nav-panel-icon svg,
.icon-inline svg,
.faq-icon svg,
.scroll-indicator svg,
.footer-social svg {
  width: 1em;
  height: 1em;
}

.nav-panel-copy {
  min-width: 0;
  flex: 1;
}

.nav-panel-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.nav-panel-description {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.4);
}

.nav-soon-badge {
  flex-shrink: 0;
  align-self: center;
  padding: 0.125rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-panel-divider {
  height: 1px;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.nav-panel-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
}

.nav-panel-points li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.nav-panel-points li span,
.feature-list li span {
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ffffff;
  animation: pulse 2s infinite;
}

.hero-title {
  margin: 0;
  padding: 0 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  padding: 0 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  font-weight: 200;
  line-height: 1.6;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image-area {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero Carousel ──────────────────────────── */
.hero-carousel {
  position: relative;
  width: min(calc(100% - 3rem), var(--container));
  margin-top: 2rem;
  padding-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}

.carousel-inner {
  position: relative;
  width: 100%;
  /* Height is clamped to maintain 3:2 image ratio across all screen widths.
     38vw ≈ active-card-width × (2/3), capped at 460px and never below 200px.
     max-height: 55vh guards against tall portrait viewports (tablets). */
  height: clamp(200px, 38vw, 460px);
  max-height: 55vh;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: auto;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transform-origin: center center;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  cursor: pointer;
}

.carousel-slide.is-active {
  transform: translateX(-50%) scale(1);
  z-index: 3;
  opacity: 1;
  cursor: default;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.carousel-slide.is-prev {
  transform: translateX(calc(-50% - 62%)) scale(0.8);
  z-index: 2;
  opacity: 0.5;
}

.carousel-slide.is-next {
  transform: translateX(calc(-50% + 62%)) scale(0.8);
  z-index: 2;
  opacity: 0.5;
}

.carousel-img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  border-radius: 0 0 1rem 1rem;
}

.carousel-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.carousel-caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.carousel-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.carousel-dot.is-active {
  width: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.cta-pill {
  position: relative;
  display: inline-block;
  padding: 1px;
  border-radius: 999px;
}

.cta-pill-small {
  flex-shrink: 0;
}

.cta-pill-small .cta-core {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.cta-pill-large .cta-core {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.cta-glow,
.cta-border,
.cta-sheen {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.cta-glow {
  background: linear-gradient(90deg, #9ca3af, #ffffff, #6b7280);
  opacity: 0.3;
  filter: blur(6px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.cta-glow-spin {
  animation: spinGlow 8s linear infinite;
}

.cta-border {
  background: linear-gradient(90deg, #6b7280, #ffffff, #4b5563);
  opacity: 0.5;
}

.cta-core {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.cta-copy {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-sheen {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-200%) skewX(-12deg);
  transition: transform 0.8s ease;
}

.cta-pill:hover .cta-glow,
.cta-pill:focus-visible .cta-glow {
  opacity: 0.7;
  filter: blur(12px);
}

.cta-pill:hover .cta-core,
.cta-pill:focus-visible .cta-core {
  background: #171717;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.cta-pill:hover .cta-sheen,
.cta-pill:focus-visible .cta-sheen {
  transform: translateX(200%) skewX(-12deg);
}

.secondary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.secondary-pill:hover,
.secondary-pill:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  outline: none;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.2);
  animation: chevronFloat 2s ease-in-out infinite;
}

.section-shell {
  width: 100%;
  overflow: hidden;
  scroll-margin-top: 6rem;
}

.section-inner {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
  padding: 4rem 0;
}

.section-inner-wide {
  width: min(calc(100% - 3rem), var(--container-wide));
}

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

.section-heading h2,
.roadmap-header h2,
.faq-header h2,
.footer-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.roadmap-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.section-heading h2 span,
.faq-header h2 span {
  color: rgba(255, 255, 255, 0.4);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  position: relative;
}

.feature-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease;
}

.feature-card-body {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px);
  transition: transform 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
}

.feature-accent {
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 2rem;
  padding-left: 2.75rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.5s ease, background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

.feature-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.feature-content h3 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feature-content p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1.7;
  transition: color 0.5s ease;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.625rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.5s ease;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.feature-badge {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card-media .feature-card-glow {
  display: none;
}

.feature-card-media .feature-card-body {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transform: none !important;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.feature-card-media:hover .feature-card-body {
  background: transparent;
}

.feature-media-img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

.feature-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  border-radius: 0 0 1rem 1rem;
}

.feature-media-caption h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.feature-media-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.feature-card:hover .feature-card-glow {
  opacity: 1;
}

.feature-card:hover .feature-card-body {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow);
}

.feature-card:hover .feature-accent {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.feature-card:hover .feature-content p,
.feature-card:hover .feature-list li,
.feature-card:hover .feature-link {
  color: rgba(255, 255, 255, 0.65);
}

.feature-link:hover,
.feature-link:focus-visible {
  color: rgba(255, 255, 255, 0.85);
  outline: none;
}

/* ── Roadmap ────────────────────────────────── */
.roadmap-section {
  background: linear-gradient(to bottom, #050505, #000000);
}

.roadmap-header {
  max-width: 42rem;
  margin-bottom: 0;
  padding-bottom: 8rem;
}

.roadmap-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.roadmap-header p {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  font-weight: 200;
  line-height: 1.6;
  text-wrap: balance;
}

/* Horizontal scrollable track */
.rm-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Bleed past section-inner right edge to hint at more content */
  margin-right: calc((100vw - min(calc(100% + 3rem), var(--container))) / -2);
  padding-right: 3rem;
  padding-bottom: 2rem;
}

.rm-track::-webkit-scrollbar {
  display: none;
}

.rm-item {
  min-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Top row: large quarter label + badge */
.rm-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.rm-quarter {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.rm-item.is-soon .rm-quarter {
  color: rgba(255, 255, 255, 0.2);
}

.rm-item.is-active .rm-quarter {
  color: #ffffff;
}

.rm-item.is-active .rm-title {
  color: #ffffff;
}

.rm-item.is-active .rm-points li {
  color: rgba(255, 255, 255, 0.5);
}

.rm-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  white-space: nowrap;
}

.rm-status-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  white-space: nowrap;
}

.rm-status-badge.is-done {
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.rm-status-badge.is-active {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

/* Node: dot + connecting line */
.rm-node {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}

.rm-dot {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  position: relative;
  z-index: 1;
}

.rm-dot.is-done {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

@keyframes rm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); }
}

.rm-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
  animation: rm-pulse 2s ease-in-out infinite;
}

.rm-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
  margin-left: 0.625rem;
}

.rm-item.is-done .rm-line {
  background: rgba(255, 255, 255, 0.2);
}

.rm-item:last-child .rm-line {
  display: none;
}

/* Body: title + bullets */
.rm-body {
  padding-right: 2.5rem;
}

.rm-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.rm-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.rm-item.is-soon .rm-title {
  color: rgba(255, 255, 255, 0.35);
}

.rm-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rm-points li {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1rem;
  position: relative;
}

.rm-points li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
}

.rm-item.is-soon .rm-points li {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .rm-track {
    margin-right: -1.5rem;
    padding-right: 1.5rem;
  }

  .rm-item {
    min-width: 280px;
  }
}

.faq-layout {
  display: grid;
  gap: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: transparent;
  border: 0;
  color: #ffffff;
  text-align: left;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: #d4d4d4;
  outline: none;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.36s var(--ease-out), opacity 0.36s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-cta {
  padding-bottom: 4rem;
  margin-bottom: 1rem;
}

.footer-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-ambient::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  filter: blur(150px);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3rem), 48rem);
  margin: 0 auto;
  padding: 5rem 0 0;
  text-align: center;
}

.footer-label {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-title {
  font-size: clamp(2rem, 8vw, 5rem);
}

.footer-description {
  max-width: 24rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  line-height: 1.6;
}

.footer-primary {
  margin-top: 2.5rem;
}

.carousel-cta {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.carousel-cta:hover,
.carousel-cta:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  outline: none;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.discord-button:hover,
.discord-button:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  outline: none;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.footer-social a {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: rgba(255, 255, 255, 0.6);
  outline: none;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.75rem;
}

.footer-links a {
  color: inherit;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.legal-root {
  min-height: 100vh;
  padding: 4rem 1rem;
}

.legal-container {
  width: min(calc(100% - 1rem), 48rem);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  color: #d4d4d4;
}

.legal-header {
  margin-bottom: 2.5rem;
}

.legal-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.legal-subtitle {
  margin: 0.35rem 0 0;
  color: #a3a3a3;
  font-size: 0.95rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
  color: #737373;
  font-size: 0.95rem;
}

.legal-meta div {
  display: flex;
  gap: 0.35rem;
}

.legal-meta dt {
  color: #a3a3a3;
  font-weight: 600;
}

.legal-content {
  display: grid;
  gap: 2rem;
  color: #d4d4d4;
}

.legal-section h2,
.legal-section h3 {
  color: #ffffff;
  font-weight: 600;
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
}

.legal-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
}

.legal-section p,
.legal-section ul {
  margin: 0.75rem 0 0;
  line-height: 1.75;
}

.legal-section ul {
  padding-left: 1.25rem;
}

.legal-alert {
  padding: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  color: #fde68a;
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-strong {
  font-weight: 600;
}

.legal-content a,
.legal-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.legal-content a:hover,
.legal-content a:focus-visible,
.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: #60a5fa;
  outline: none;
}

.legal-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer a {
  color: #a3a3a3;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@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;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-section {
    justify-content: space-around;
  }

  .hero-carousel {
    flex: none;
  }
}

@media (min-width: 768px) {
  .site-nav-center {
    display: flex;
  }

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

  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 3rem;
  }

  .faq-header {
    position: relative;
    align-self: start;
  }

  .faq-header h2 {
    position: sticky;
    top: 8rem;
  }
}


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

  .hero-section {
    height: 100svh;
    min-height: 560px;
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }

  .hero-image-area {
    aspect-ratio: 4 / 3;
    margin-top: 2rem;
  }

  .hero-section {
    justify-content: space-around;
  }

  .hero-carousel {
    flex: none;
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .carousel-slide.is-prev {
    transform: translateX(calc(-50% - 55%)) scale(0.8);
  }

  .carousel-slide.is-next {
    transform: translateX(calc(-50% + 55%)) scale(0.8);
  }

  .carousel-caption {
    padding: 1.25rem 1rem 0.875rem;
  }

  .carousel-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .carousel-caption p {
    display: none;
  }

  .carousel-badge {
    top: 0.625rem;
    right: 0.625rem;
    font-size: 0.6rem;
    padding: 0.1rem 0.45rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }


  .section-inner,
  .footer-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-inner {
    width: min(calc(100% - 2rem), var(--container));
  }

  .feature-media-caption {
    padding: 1.25rem 1rem 1rem;
  }

  .roadmap-copy {
    padding-bottom: 2.5rem;
  }

  .faq-answer p {
    font-size: 0.9375rem;
  }

  .faq-question {
    padding: 1rem 0;
  }

  .footer-description {
    font-size: 0.9375rem;
  }

  .scroll-indicator {
    display: none;
  }

  .legal-root {
    padding-top: 2rem;
  }
}

@media (max-width: 374px) {
  .hero-title {
    font-size: 2rem;
  }

  .site-nav {
    padding: 0.625rem 0.75rem;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes chevronFloat {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@keyframes spinGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}