/* Rem-first layout (root 16px = 1rem). env() kept for safe-area only. */
:root {
  color-scheme: dark;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-soft: rgba(255, 255, 255, 0.45);
  --text-on-accent: #e6f4ff;
  /* Theme-2 accent system */
  --color-accent: #0a84d6;
  --color-accent-rgb: 10, 132, 214;
  --color-accent-2: #2d9fd6;
  --color-accent-2-rgb: 45, 159, 214;
  --color-accent-dim: rgba(10, 132, 214, 0.3);
  --color-accent-2-dim: rgba(45, 159, 214, 0.2);
  --surface-page: #000000;
  --surface-panel: rgba(0, 0, 0, 0.9);
  --surface-card: rgba(0, 0, 0, 0.5);
  --surface-card-strong: rgba(0, 0, 0, 0.6);
  --border-soft: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.22);
  --shadow-elevated: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.32);
  --shadow-floating: 0 1.5rem 3.75rem rgba(0, 0, 0, 0.55);
  --carousel-arrow-gap: 1.15rem;
  --footer-reserve: 5rem;
  --content-max: 75rem;
  /* Carousel frame max width — desktop overrides in min-width media */
  --carousel-max-w: 52rem;
}

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

html {
  font-size: 100%;
  height: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100svh;
  overflow-x: clip;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-primary);
  background: var(--surface-page);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 2.5rem;
  padding: 0 1rem;
  background: rgba(4, 10, 20, 0.55);
  backdrop-filter: blur(0.75rem);
  border-bottom: 0.0625rem solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.header-platform-note {
  display: block;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  color: var(--color-accent-2);
  opacity: 1;
  letter-spacing: 0.018em;
  text-wrap: balance;
  text-align: center;
  transform: translateY(0.1rem);
}

.hero {
  position: relative;
  min-height: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1.25rem, 2rem) 0
    calc(var(--footer-reserve) + clamp(0.5rem, 0.75rem, 1rem));
  overflow-x: clip;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 50% at 50% 85%, rgba(8, 40, 72, 0.35) 0%, rgba(4, 20, 40, 0.18) 35%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(6, 32, 60, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 32, 60, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, #050a12 0%, #000000 70%, #000000 100%);
}

.background-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      rgba(10, 132, 214, 0.03) 0.0625rem,
      transparent 0.0625rem
    ),
    linear-gradient(
      90deg,
      rgba(10, 132, 214, 0.03) 0.0625rem,
      transparent 0.0625rem
    ),
    radial-gradient(circle at 50% 42%, rgba(10, 132, 214, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-size: 3rem 3rem, 3rem 3rem, auto, auto;
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(var(--content-max), calc(100% - 2rem));
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: max(1rem, env(safe-area-inset-left, 0rem))
    max(1rem, env(safe-area-inset-right, 0rem));
  padding-block: 0;
  gap: clamp(2rem, 3.25rem, 4.5rem);
}

.content > * {
  width: min(100%, 60rem);
}

.hero-lead,
.waitlist-actions {
  width: min(100%, 40rem);
  margin-inline: auto;
}

.hero-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  gap: clamp(1.2rem, 1.55rem, 1.9rem);
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 4.6rem, 6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.032em;
  padding-bottom: 0;
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.16em;
  text-shadow:
    0 0.125rem 0 rgba(255, 255, 255, 0.2),
    0 0.875rem 2.25rem rgba(25, 75, 130, 0.42);
}

@media (min-width: 50rem) {
  .hero-title {
    flex-wrap: nowrap;
  }
}

.hero-title-main,
.hero-title-accent {
  display: inline-block;
}

.hero-title-main {
  color: #ffffff;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.hero-title-accent {
  color: var(--color-accent-2);
  background: linear-gradient(95deg, #ffffff 0%, #e6f4ff 20%, #2d9fd6 40%, #0a84d6 60%, #0868b8 80%, #4fbbe8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.08em;
  text-shadow:
    0 0.0625rem 0 rgba(255, 255, 255, 0.16),
    0 0 1.75rem rgba(45, 159, 214, 0.32);
}

.hero-subtext {
  margin: 0 auto;
  max-width: 33rem;
  background: none !important;
  background-image: none !important;
  -webkit-text-fill-color: currentColor;
  color: var(--text-secondary);
  line-height: 1.58;
  font-size: 0.9rem;
  text-shadow: none;
  box-shadow: none;
  filter: none;
}

.hero-subtext strong {
  font-weight: 700;
  color: var(--color-accent-2);
  text-shadow: 0 0 0.9rem rgba(var(--color-accent-2-rgb), 0.35);
}

.carousel {
  margin-top: 0;
  width: 100%;
  max-width: min(var(--carousel-max-w), 100%);
  outline: none;
  overflow: visible;
}

.carousel .disclaimer {
  margin-top: 0.9rem;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.carousel-viewport {
  grid-column: 1;
  grid-row: 1;
  container-name: carousel-port;
  container-type: inline-size;
  position: relative;
  box-sizing: border-box;
  --carousel-inset-top: 0.85rem;
  --carousel-inset-x: 0.75rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 0.0625rem solid rgba(var(--color-accent-2-rgb), 0.6);
  background: var(--surface-card);
  box-shadow: var(--shadow-elevated);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-slide {
  margin: 0;
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports (width: 1cqi) {
  .carousel-slide {
    flex: 0 0 100cqi;
  }
}

.carousel-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-zoom-img {
  cursor: zoom-in;
}

@media (max-width: 34.375rem) {
  .carousel-zoom-img {
    cursor: default;
  }
}

.carousel-zoom-img:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem var(--color-accent-dim);
  border-radius: 0.25rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  box-sizing: border-box;
  width: 100%;
  min-height: 100svh;
  --lb-gutter: clamp(1rem, 1.5rem, 2.5rem);
  --lb-vpad: calc(
    max(var(--lb-gutter), env(safe-area-inset-top, 0rem)) +
      max(var(--lb-gutter), env(safe-area-inset-bottom, 0rem))
  );
  --lb-hpad: calc(
    max(var(--lb-gutter), env(safe-area-inset-left, 0rem)) +
      max(var(--lb-gutter), env(safe-area-inset-right, 0rem))
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(var(--lb-gutter), env(safe-area-inset-top, 0rem))
    max(var(--lb-gutter), env(safe-area-inset-right, 0rem))
    max(var(--lb-gutter), env(safe-area-inset-bottom, 0rem))
    max(var(--lb-gutter), env(safe-area-inset-left, 0rem));
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(0.625rem);
  cursor: pointer;
}

.lightbox-card {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  box-sizing: border-box;
  width: min(
    calc(100vw - var(--lb-hpad)),
    calc((100svh - var(--lb-vpad)) * 16 / 9)
  );
  max-width: calc(100vw - var(--lb-hpad));
  max-height: calc(100svh - var(--lb-vpad));
  aspect-ratio: 16 / 9;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 0.0625rem solid var(--border-strong);
  background: var(--surface-panel);
  box-shadow:
    var(--shadow-floating),
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.15);
}

.lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  display: grid;
  place-items: center;
  font: inherit;
  color: var(--color-accent-2);
  background: var(--surface-card);
  border: 0.0625rem solid var(--border-strong);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: var(--surface-card-strong);
}

.lightbox-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(10, 132, 214, 0.3);
}

.lightbox-close-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -0.08em;
}

.lightbox-img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
  margin: 0;
}

body.lightbox-open {
  overflow: hidden;
}

/* Desktop page lock clips fixed overlays unless root can escape while modal open */
@media (min-width: 34.4375rem) {
  html.lightbox-open {
    overflow: visible;
    max-height: none;
    height: auto;
    min-height: 100svh;
  }
}

.carousel-arrow {
  font: inherit;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  flex-shrink: 0;
  color: var(--text-on-accent);
  background: var(--surface-card);
  border: 0.0625rem solid var(--border-strong);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.carousel-arrow[data-carousel-prev] {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  margin-left: calc(-1 * (2.25rem + var(--carousel-arrow-gap)));
  z-index: 2;
}

.carousel-arrow[data-carousel-next] {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  margin-right: calc(-1 * (2.25rem + var(--carousel-arrow-gap)));
  z-index: 2;
}

.carousel-arrow:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: var(--surface-card-strong);
  color: var(--text-on-accent);
}

.carousel-arrow:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(10, 132, 214, 0.3);
}

.carousel-arrow-icon {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -0.06em;
}

.carousel-dots-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: var(--carousel-inset-top) var(--carousel-inset-x) 1.15rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.55s ease;
  background: linear-gradient(
    to top,
    rgba(8, 40, 72, 0.4) 0%,
    transparent 100%
  );
  border-radius: 0 0 0.6875rem 0.6875rem;
}

.carousel.is-dots-idle .carousel-dots-overlay {
  opacity: 0;
}

.carousel.is-dots-idle .carousel-dots {
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  pointer-events: auto;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.carousel-dot.is-active {
  background: #ffffff;
  transform: scale(1.12);
}

.carousel-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.125rem var(--color-accent-dim);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-dots-overlay {
    transition: opacity 0.2s ease;
  }
}

.waitlist-actions {
  width: 100%;
  max-width: min(calc(45rem * 5 / 6), 100%);
  margin-top: 0;
}

.waitlist-message {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.waitlist-message.is-success {
  color: #10b981;
}

.waitlist-message.is-error {
  color: #ef4444;
}

.waitlist-message.is-info {
  color: rgba(255, 255, 255, 0.65);
}

.waitlist-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.waitlist-form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.waitlist-key-note {
  flex: 1 1 100%;
  margin: 0;
  max-width: 26rem;
  margin-inline: auto;
  padding-top: 0.15rem;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
  color: var(--text-secondary);
}

.waitlist-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  font: inherit;
  line-height: 0;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  color: var(--text-on-accent);
}

.waitlist-discord:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  color: var(--text-muted);
  background: var(--surface-card);
  border: 0.0625rem solid var(--border-soft);
  box-shadow: none;
}

.waitlist-discord:disabled:hover {
  transform: none;
  background: var(--surface-card);
  border-color: var(--border-soft);
}

/* Icy surface shared by Request access + Discord (when enabled) */
.waitlist-form button[type="submit"],
.waitlist-discord:not(:disabled) {
  border: 0.0625rem solid rgba(var(--color-accent-rgb), 0.5);
  background: linear-gradient(
    165deg,
    rgba(10, 132, 214, 0.25) 0%,
    rgba(5, 30, 50, 0.8) 48%,
    rgba(0, 10, 20, 0.9) 100%
  );
  box-shadow:
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.1),
    0 0.35rem 0.9rem rgba(0, 0, 0, 0.45);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.waitlist-form button[type="submit"]:not(:disabled):hover,
.waitlist-discord:not(:disabled):hover {
  transform: translateY(-0.0625rem);
  border-color: rgba(var(--color-accent-2-rgb), 0.75);
  background: linear-gradient(
    165deg,
    rgba(10, 132, 214, 0.35) 0%,
    rgba(8, 40, 60, 0.85) 50%,
    rgba(2, 15, 25, 0.95) 100%
  );
  box-shadow:
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.15),
    0 0.45rem 1.05rem rgba(0, 0, 0, 0.5);
}

.waitlist-form button[type="submit"]:not(:disabled):focus-visible,
.waitlist-discord:not(:disabled):focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow:
    0 0 0 0.1875rem var(--color-accent-dim),
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.1);
}

.waitlist-discord img {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  opacity: 0.95;
}

.waitlist-form input {
  width: min(100%, 17.5rem);
  border: 0.0625rem solid var(--border-soft);
  border-radius: 999px;
  background: var(--surface-card);
  padding: 0.68rem 0.95rem;
  color: var(--text-primary);
  outline: none;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.1875rem var(--color-accent-dim);
}

.waitlist-form button[type="submit"] {
  border-radius: 999px;
  padding: 0.66rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.018em;
  color: var(--text-on-accent);
  cursor: pointer;
}

.waitlist-form button[type="submit"]:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
  border-color: var(--border-soft);
  background: var(--surface-card);
  box-shadow: none;
}

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

/* Desktop: .content centered in the area above the fixed footer (no faux header band). */
@media (min-width: 34.4375rem) {
  :root {
    /* Vertical space occupied by fixed `.site-header` — keep in sync if header padding/text changes */
    --header-slot: 3rem;
    --carousel-max-w: 46rem;
  }

  html {
    height: 100svh;
    max-height: 100svh;
    overflow-x: visible;
    overflow-y: hidden;
  }

  body {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow-x: visible;
    overflow-y: hidden;
  }

  .hero {
    box-sizing: border-box;
    /* Fill the viewport so gradient isn’t short of the footer; padding clears the fixed bar */
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow-x: visible;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-top: max(
      calc(var(--header-slot) + 0.5rem),
      env(safe-area-inset-top, 0rem)
    );
    padding-bottom: max(
      calc(clamp(0.72rem, 0.88rem, 1.2rem) + 1rem),
      env(safe-area-inset-bottom, 0rem)
    );
  }

  .lightbox {
    --lb-gutter: clamp(2.1rem, 3.25rem, 4.75rem);
  }

  .content {
    flex: 0 1 auto;
    align-self: stretch;
    width: 100%;
    max-width: min(var(--content-max), calc(100% - 1rem));
    margin-block: auto;
    margin-inline: auto;
    max-height: none;
    min-height: 0;
    overflow-x: visible;
    overflow-y: visible;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    justify-items: center;
    gap: clamp(1.75rem, 2.7rem, 3.85rem);
    padding-inline: max(1rem, env(safe-area-inset-left, 0rem))
      max(1rem, env(safe-area-inset-right, 0rem));
  }

  .hero-lead {
    gap: 0.35rem;
  }

  .hero-subtext {
    font-size: 0.97rem;
    line-height: 1.46;
  }

  .carousel {
    align-self: stretch;
    width: 100%;
    max-width: min(var(--carousel-max-w), 100%);
    height: auto;
    min-height: 0;
    min-width: 0;
    margin-top: 0;
  }

  .carousel-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .carousel-viewport {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    align-self: center;
    justify-self: center;
  }

  .waitlist-actions {
    margin-top: 0;
  }
}

/* ——— Mobile (narrow screens): rem-only spacing + overlay arrows ——— */
@media (max-width: 34.375rem) {
  :root {
    --content-max: 100%;
  }

  html {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body {
    overflow-y: auto;
    min-height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .site-header {
    padding: 0.55rem 0.75rem max(0.65rem, env(safe-area-inset-top, 0rem));
  }

  .hero {
    box-sizing: border-box;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    max-height: none;
    padding-top: max(calc(2.5rem + 1rem), env(safe-area-inset-top, 0rem));
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0rem));
    overflow-x: clip;
    overflow-y: visible;
  }

  .content {
    flex: 0 1 auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-block: 0;
    margin-inline: auto;
    max-height: none;
    min-height: 0;
    padding-inline: max(1.15rem, env(safe-area-inset-left, 0rem))
      max(1.15rem, env(safe-area-inset-right, 0rem));
    padding-block: 1.1rem 0.35rem;
    gap: clamp(1.7rem, 2.35rem, 3.05rem);
  }

  .disclaimer {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .hero-lead {
    gap: 1rem;
  }

  .hero-title {
    font-size: clamp(2.75rem, 3.1rem, 3.8rem);
    line-height: 1.14;
    max-width: min(100%, 22rem);
    padding-inline: 0.15rem;
    column-gap: 0.12em;
  }

  .hero-subtext {
    margin-top: 0;
    max-width: 18rem;
    font-size: 0.95rem;
    line-height: 1.42;
    padding-inline: 0.2rem;
  }

  .carousel-dots-overlay {
    padding-bottom: 0.55rem;
  }

  .carousel {
    width: 100%;
    max-width: 100%;
  }

  .carousel-shell {
    display: block;
    position: relative;
    width: 100%;
  }

  .carousel-viewport {
    width: 100%;
    max-height: clamp(12rem, 16.5rem, 17.5rem);
    margin-inline: 0;
    touch-action: pan-y;
  }

  .carousel-arrow[data-carousel-prev],
  .carousel-arrow[data-carousel-next] {
    display: none !important;
  }

  .waitlist-actions {
    width: 100%;
    max-width: calc(100% * 5 / 6);
    margin-top: 0;
  }

  .waitlist-message {
    padding-inline: 0.35rem;
    font-size: 0.78rem;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .waitlist-form input {
    width: 100%;
    text-align: center;
  }

  .waitlist-form-actions {
    width: 100%;
    max-width: none;
    justify-content: stretch;
    gap: 0.5rem;
  }

  .waitlist-form-actions button[type="submit"] {
    flex: 1;
    min-width: 0;
  }

  .waitlist-key-note {
    font-size: 0.72rem;
    padding-top: 0.1rem;
    max-width: 18rem;
  }

  .waitlist-discord {
    flex-shrink: 0;
  }
}

@media (max-width: 23.75rem) {
  .hero-title {
    font-size: clamp(2.4rem, 2.65rem, 3.3rem);
  }

  .carousel-viewport {
    max-height: clamp(11rem, 14.5rem, 15.5rem);
  }
}
