:root {
  --rh-green: #00c805;
  --rh-green-deep: #008f11;
  --lime: #b7ff3c;
  --ink: #06130b;
  --ink-2: #0d2014;
  --panel: #f3fff5;
  --paper: #fbfffb;
  --line: rgba(6, 19, 11, 0.14);
  --muted: #5a6b5f;
  --white: #ffffff;
  --cyan: #7ee8d8;
  --shadow: 0 24px 80px rgba(1, 46, 14, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 255, 251, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.site-header.is-scrolled .brand img {
  border-color: rgba(0, 200, 5, 0.45);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.82;
}

.main-nav a:hover {
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action {
  padding: 0 18px;
  color: var(--ink);
  background: var(--rh-green);
}

.button {
  padding: 0 22px;
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--rh-green);
  box-shadow: 0 12px 34px rgba(0, 200, 5, 0.35);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 5vw, 72px) 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(0, 200, 5, 0.34), transparent 30%),
    radial-gradient(circle at 62% 80%, rgba(126, 232, 216, 0.18), transparent 32%),
    linear-gradient(135deg, #06130b 0%, #0a1d12 48%, #020704 100%);
}

.hero-robot,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-robot {
  z-index: -2;
  width: min(74vw, 980px);
  height: auto;
  inset: auto -3vw 7svh auto;
  filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.4));
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 19, 11, 0.92) 0%, rgba(6, 19, 11, 0.7) 43%, rgba(6, 19, 11, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 19, 11, 0.82) 0%, rgba(6, 19, 11, 0.04) 58%);
}

.hero-content {
  width: min(680px, 100%);
  padding-bottom: clamp(42px, 10vh, 106px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rh-green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.8rem, 13vw, 11rem);
  line-height: 0.84;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(6, 19, 11, 0.42);
}

.hero-stats dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 800;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.13), rgba(126, 232, 216, 0.08)),
    var(--panel);
}

.intro {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 7vw, 90px);
  align-items: end;
}

.intro h2,
.section-heading h2,
.mint-copy h2,
.faq h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.intro p:last-child,
.mint-copy p,
.roadmap p,
.faq p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.collection,
.roadmap {
  padding: clamp(64px, 10vw, 116px) 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.nft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nft-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(6, 19, 11, 0.08);
}

.nft-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.nft-card:hover img {
  transform: scale(1.045);
}

.nft-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.mint {
  padding: clamp(64px, 9vw, 110px) 0;
  border-block: 1px solid var(--line);
}

.mint-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.mint-copy p {
  max-width: 650px;
  margin: 22px 0 0;
}

.mint-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 5, 0.26);
  border-radius: 8px;
  background: rgba(6, 19, 11, 0.13);
  box-shadow: var(--shadow);
}

.mint-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--white);
}

.mint-panel span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.mint-panel strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.mint-panel .button {
  margin: 14px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.roadmap-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.roadmap-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.faq {
  padding: clamp(64px, 9vw, 104px) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 88px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

summary {
  cursor: pointer;
  padding: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  width: min(1160px, calc(100% - 36px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--rh-green);
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-robot {
    width: min(116vw, 760px);
    opacity: 0.82;
    inset: auto -30vw 14svh auto;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero-stats,
  .intro-grid,
  .mint-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(4.2rem, 22vw, 6.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .nft-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 26px 0;
  }
}

.waitlist-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 200, 5, 0.18), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(126, 232, 216, 0.14), transparent 30%),
    var(--paper);
}

.waitlist-hero {
  min-height: 100vh;
  padding: 132px 0 72px;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.waitlist-copy {
  position: sticky;
  top: 124px;
}

.waitlist-copy h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.3rem, 8vw, 7.2rem);
  line-height: 0.88;
}

.waitlist-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.waitlist-preview {
  display: grid;
  grid-template-columns: 84px repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(100%, 520px);
  margin-top: 34px;
  border: 1px solid rgba(0, 200, 5, 0.24);
  border-radius: 8px;
  background: rgba(6, 19, 11, 0.14);
  box-shadow: var(--shadow);
}

.waitlist-preview img {
  width: 84px;
  height: 84px;
  object-fit: cover;
}

.waitlist-preview div {
  display: grid;
  align-content: center;
  padding: 14px;
  background: var(--white);
}

.waitlist-preview span,
.form-section label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.waitlist-preview strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.form-section {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(6, 19, 11, 0.08);
  backdrop-filter: blur(18px);
}

.form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.form-section h2 {
  margin: 0;
  font-size: 1.55rem;
}

.form-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.x-button {
  color: var(--white);
  background: var(--ink);
}

input[type="text"],
input[type="url"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(6, 19, 11, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

input[type="text"]:focus,
input[type="url"]:focus {
  outline: 3px solid rgba(0, 200, 5, 0.24);
  border-color: var(--rh-green);
}

.task-list {
  display: grid;
  gap: 10px;
}

.task-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(6, 19, 11, 0.12);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  text-transform: none;
}

.task-list input {
  width: 20px;
  height: 20px;
  accent-color: var(--rh-green);
  flex: 0 0 auto;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--rh-green-deep);
  font-weight: 800;
}

.form-message.is-error {
  color: #b42318;
}

@media (max-width: 880px) {
  .waitlist-layout {
    grid-template-columns: 1fr;
  }

  .waitlist-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .waitlist-hero {
    padding-top: 112px;
  }

  .waitlist-preview {
    grid-template-columns: 72px 1fr;
  }

  .waitlist-preview img {
    width: 72px;
    height: 72px;
  }
}

.x-button.is-connected {
  color: var(--ink);
  background: var(--rh-green);
}

.connect-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.connect-status.is-error {
  color: #b42318;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--ink);
  background: var(--rh-green);
  border-color: var(--rh-green);
}

.task-link {
  color: var(--rh-green-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Interaction polish */
@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0, 200, 5, 0);
  }

  50% {
    box-shadow: 0 0 34px rgba(0, 200, 5, 0.24);
  }
}

main {
  animation: page-rise 700ms ease both;
}

.button,
.header-action,
.nft-card,
.roadmap-grid article,
details,
.form-section,
.task-list label,
.social-icon,
.task-link {
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.button.primary,
.header-action {
  position: relative;
  overflow: hidden;
}

.button.primary::after,
.header-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button.primary:hover::after,
.header-action:hover::after {
  transform: translateX(120%);
}

.nft-card:hover,
.roadmap-grid article:hover,
.form-section:hover {
  border-color: rgba(0, 200, 5, 0.38);
  box-shadow: 0 22px 60px rgba(6, 19, 11, 0.14);
  transform: translateY(-4px);
}

.roadmap-grid article:hover span,
.form-section:hover .form-step {
  animation: soft-pulse 1.4s ease infinite;
}

details:hover,
details[open] {
  border-color: rgba(0, 200, 5, 0.32);
  box-shadow: 0 14px 34px rgba(6, 19, 11, 0.08);
}

summary:hover {
  color: var(--rh-green-deep);
}

.task-list label:hover {
  border-color: rgba(0, 200, 5, 0.32);
  background: #f7fff8;
  transform: translateX(4px);
}

.task-link:hover {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(0, 200, 5, 0.34);
}

.social-icon:hover {
  color: var(--rh-green);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 200, 5, 0.72);
  box-shadow:
    0 0 0 4px rgba(0, 200, 5, 0.1),
    0 0 28px rgba(0, 200, 5, 0.52);
  transform: translateY(-2px) scale(1.04);
}

.social-icon:active,
.button:active,
.header-action:active {
  transform: translateY(0) scale(0.98);
}

input[type="text"],
input[type="url"] {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input[type="text"]:focus,
input[type="url"]:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 200, 5, 0.1);
}

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

.task-list input[type="checkbox"] {
  cursor: not-allowed;
}

.task-list label span,
.task-list .task-link {
  cursor: pointer;
}

/* Mobile refinement pass */
@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(251, 255, 251, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-color: rgba(0, 200, 5, 0.42);
  }

  .brand span {
    max-width: none;
    white-space: normal;
  }

  .header-action {
    min-width: 112px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
    padding: 40px 14px 20px;
    align-items: start;
  }

  .hero-robot {
    position: relative;
    z-index: -1;
    width: min(112%, 520px);
    margin: 0 auto -16px;
    inset: auto;
    opacity: 0.9;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 19, 11, 0.92) 0%, rgba(6, 19, 11, 0.42) 52%, rgba(6, 19, 11, 0.16) 100%),
      linear-gradient(90deg, rgba(6, 19, 11, 0.72), rgba(6, 19, 11, 0.18));
  }

  .hero-content {
    order: 2;
    padding-bottom: 22px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5.8rem);
    line-height: 0.9;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    order: 3;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
  }

  .hero-stats dt {
    margin: 0;
  }

  .intro,
  .collection,
  .mint,
  .roadmap,
  .faq {
    padding: 48px 0;
  }

  .intro h2,
  .section-heading h2,
  .mint-copy h2,
  .faq h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1;
  }

  .intro-grid,
  .mint-layout,
  .faq-layout {
    gap: 20px;
  }

  .nft-grid,
  .roadmap-grid {
    gap: 12px;
  }

  .roadmap-grid article {
    min-height: auto;
  }

  .mint-panel div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-inner {
    min-height: 88px;
  }

  .waitlist-hero {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .waitlist-layout {
    gap: 24px;
  }

  .waitlist-copy h1 {
    font-size: clamp(2.9rem, 14vw, 5rem);
    line-height: 0.94;
  }

  .waitlist-preview {
    grid-template-columns: 72px 1fr 1fr;
    margin-top: 22px;
  }

  .waitlist-preview img {
    width: 72px;
    height: 72px;
  }

  .waitlist-preview div {
    min-width: 0;
    padding: 12px;
  }

  .waitlist-preview strong {
    font-size: 1.08rem;
    overflow-wrap: anywhere;
  }

  .form-section {
    padding: 16px;
  }

  .task-list label {
    align-items: flex-start;
    min-height: 54px;
  }

  input[type="text"],
  input[type="url"] {
    min-width: 0;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-width: auto;
    padding-inline: 10px;
  }

  .waitlist-preview {
    grid-template-columns: 64px 1fr;
  }

  .waitlist-preview img {
    width: 64px;
    height: 64px;
  }

  .waitlist-preview div:last-child {
    grid-column: 1 / -1;
  }
}
