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

:root {
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f0;
  --text-muted: #8a8a8a;
  --text-dim: #5c5c5c;
  --accent: #ffffff;
  --accent-green: #3d5248;
  --glow: rgba(255, 255, 255, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1120px;
  --section-gap: 6rem;
  --header-h: 68px;
  --page-gutter: 1.25rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(calc(100% - 2 * var(--page-gutter)), var(--max-width));
  margin-inline: auto;
}

.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;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.brand__name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-inline: auto;
}

.header__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--text);
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.mobile-nav__badge {
  display: none;
}

.mobile-nav__cta {
  display: none;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
}

.hero__intro {
  max-width: 38rem;
  margin-bottom: 4rem;
}

.hero__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.product-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 1.5rem 1.25rem;
  min-height: 280px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.product-card__img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.02);
}

.product-card__info {
  padding: 1.35rem 1.5rem 1.6rem;
  border-top: 1px solid var(--border);
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.product-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Waitlist */
.waitlist {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
}

.waitlist--center {
  margin-inline: auto;
  justify-content: center;
}

.waitlist input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist input::placeholder {
  color: var(--text-dim);
}

.waitlist input:focus {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.waitlist button {
  padding: 0.85rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.waitlist button:hover {
  opacity: 0.9;
}

.waitlist button:active {
  transform: scale(0.98);
}

.waitlist button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.waitlist button:focus-visible,
.waitlist input:focus-visible,
.header__nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.waitlist__note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.waitlist__note.success {
  color: #6ee7a0;
}

.waitlist__note.error {
  color: #f87171;
}

/* Tagline */
.tagline {
  padding: 3.5rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent);
}

.tagline blockquote {
  text-align: center;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.65;
}

/* Sections */
.section {
  padding: var(--section-gap) 0;
}

.section--dark {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__header {
  margin-bottom: 3.5rem;
  max-width: 36rem;
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section__desc {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 34rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.step__num {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.split__content > p,
.split__lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.split__lead {
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--glow);
}

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.progress-bar--sm {
  height: 3px;
}

.progress-bar--app {
  height: 5px;
  margin: 0.85rem 0 0.5rem;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), var(--accent));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 0 24px rgba(255, 255, 255, 0.2);
  animation: fill-pulse 3s ease-in-out infinite;
}

@keyframes fill-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.device-showcase {
  text-align: center;
}

.device-showcase__img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}

.device-showcase__caption {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* App section */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.app-section__intro h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.25rem;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.app-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.app-badge--muted {
  color: var(--text-dim);
  background: transparent;
}

.app-preview {
  display: flex;
  justify-content: center;
}

.app-preview__phone {
  width: 100%;
  max-width: 300px;
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.app-preview__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.app-preview__live {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ee7a0;
  padding: 0.2rem 0.5rem;
  background: rgba(110, 231, 160, 0.1);
  border-radius: 999px;
}

.app-preview__goal {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.app-preview__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.app-preview__amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.app-preview__amount small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.app-preview__pct {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.app-preview__list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.app-preview__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.app-preview__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.app-preview__list span {
  color: var(--text-dim);
}

.app-preview__list strong {
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Ecosystem strip */
.ecosystem {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ecosystem__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.ecosystem__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ecosystem__connector {
  display: flex;
  align-items: center;
  padding-top: 1.75rem;
}

.ecosystem__connector span {
  display: block;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Modes */
.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mode {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s;
}

.mode:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.mode h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.mode p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.incentive {
  padding: 1.5rem 2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.incentive p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.incentive strong {
  color: var(--text);
  font-weight: 600;
}

/* Visibility */
.visibility-options {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.visibility-option h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.visibility-option p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.visibility-visual {
  display: grid;
  gap: 1.25rem;
}

.visibility-panel {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s;
}

.visibility-panel:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.visibility-panel span:last-child {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.visibility-panel__tag {
  display: inline-block !important;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
  font-size: 0.6875rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
}

.visibility-panel--hidden span:last-child {
  color: var(--text-muted);
}

/* CTA */
.section--cta {
  padding: 7rem 0;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.03), transparent 60%);
}

.cta__logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta > p {
  color: var(--text-muted);
  max-width: 34rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer__copy,
.footer__note {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer__note a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.footer__note a:hover {
  border-bottom-color: var(--text-muted);
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .progress-bar__fill {
    animation: none;
  }

  .product-card:hover,
  .product-card:hover .product-card__img,
  .step:hover,
  .card:hover,
  .mode:hover {
    transform: none;
  }
}

/* Carousel (mobile) */
.carousel__dots {
  display: none;
}

@media (max-width: 900px) {
  .carousel {
    margin-inline: calc(-1 * var(--page-gutter));
    width: auto;
  }

  .carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--page-gutter);
    padding-bottom: 0.35rem;
  }

  .carousel__track::-webkit-scrollbar {
    display: none;
  }

  .carousel__track > * {
    flex: 0 0 86%;
    max-width: 340px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .carousel__track.hero__products > .product-card {
    flex: 0 0 88%;
    max-width: 360px;
  }

  .carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    padding-inline: var(--page-gutter);
  }

  .carousel__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }

  .carousel__dot.is-active {
    width: 1.25rem;
    background: var(--text);
  }

  .carousel__dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --section-gap: 5rem;
    --header-h: 60px;
  }

  .header {
    padding: 0.85rem 0;
  }

  .header__nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .header__inner > .badge {
    display: none;
  }

  .mobile-nav__badge {
    display: inline-flex;
    margin-bottom: 0.65rem;
  }

  .nav-toggle__bar {
    display: block;
    width: 1rem;
    height: 1.5px;
    margin-inline: auto;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    display: grid;
    gap: 0;
    padding: 0.35rem var(--page-gutter) 0.85rem;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(calc(-100% - 0.5rem));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav[hidden] {
    display: grid;
  }

  .mobile-nav a {
    padding: 0.85rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--text);
  }

  body.nav-open {
    overflow: hidden;
  }

  .split,
  .app-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3.5rem;
  }

  .hero__intro {
    margin-bottom: 2.5rem;
  }

  .split--reverse {
    direction: ltr;
  }

  .device-showcase {
    order: -1;
  }

  .waitlist,
  .waitlist--center {
    flex-direction: column;
    max-width: none;
    width: 100%;
  }

  .waitlist button {
    width: 100%;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .tagline {
    padding: 2.5rem 0;
  }

  .incentive {
    padding: 1.25rem 1.35rem;
  }

  .ecosystem {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .ecosystem__connector {
    display: none;
  }

  .app-preview {
    order: -1;
  }

  .app-preview__phone {
    max-width: min(100%, 280px);
  }

  .visibility-visual {
    margin-top: 0.5rem;
  }

  .section--cta {
    padding: 5rem 0;
  }

  .cta > p {
    margin-bottom: 1.5rem;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .shop {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .shop__header {
    margin-bottom: 2rem;
  }

  .shop-card__visual {
    min-height: 220px;
  }

  .checkout-result {
    align-items: flex-start;
    padding: calc(var(--header-h) + 2rem) 0 3rem;
  }

  .checkout-result__link {
    width: 100%;
    max-width: 20rem;
  }

  .unlock-form {
    flex-direction: column;
  }

  .unlock-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 4rem;
    --page-gutter: 0.75rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .product-card__visual {
    min-height: 200px;
  }

  .step,
  .card,
  .mode {
    padding: 1.35rem;
  }

  .section--cta {
    padding: 4rem 0;
  }

  .cta__logo {
    width: 56px;
    height: 56px;
  }

  .badge {
    font-size: 0.625rem;
    padding: 0.35rem 0.6rem;
    letter-spacing: 0.04em;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__logo {
    width: 32px;
    height: 32px;
  }

  .faq-item summary {
    font-size: 0.875rem;
    padding: 1rem 1.1rem;
  }

  .shop-buy {
    font-size: 0.875rem;
  }
}

/* Shop */
.shop-back {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.shop-back:hover {
  color: var(--text);
}

.shop {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.shop__header {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.shop__header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.shop__lead {
  color: var(--text-muted);
  line-height: 1.75;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.shop-card--featured {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.shop-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

.shop-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 1rem;
  min-height: 260px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.shop-card__img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.5rem 1.6rem;
  border-top: 1px solid var(--border);
}

.shop-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.shop-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.75rem;
}

.shop-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.shop-card__features {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.shop-card__features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.shop-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.shop-buy {
  margin-top: auto;
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, transform 0.15s;
}

.shop-buy:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.shop-buy--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.shop-buy--primary:hover {
  opacity: 0.92;
}

.shop-buy:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.shop-card__note {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  min-height: 1.25rem;
}

.shop-card__note.error {
  color: #f87171;
}

.shop__footer-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.checkout-result {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.checkout-result h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.checkout-result__text {
  color: var(--text-muted);
  max-width: 28rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.checkout-result__link {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* Launch page header — floating pill (Brick-inspired) */
.launch-page .header--launch {
  padding: 1.25rem 1.25rem 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

.launch-page .header--launch.header--scrolled .header__shell {
  background: rgba(18, 18, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header--launch .header__shell {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.launch-page .header--launch.header--scrolled .header__shell {
  background: rgba(18, 18, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
}

.header--launch .brand {
  color: #111;
}

.header--launch.header--scrolled .brand {
  color: var(--text);
}

.header--launch .header__nav a {
  color: #555;
}

.header--launch .header__nav a:hover {
  color: #111;
}

.header--launch.header--scrolled .header__nav a {
  color: var(--text-muted);
}

.header--launch.header--scrolled .header__nav a:hover {
  color: var(--text);
}

.header__cta {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s, background 0.2s;
}

.header--launch.header--scrolled .header__cta {
  background: var(--accent);
  color: var(--bg);
}

.header__cta:hover {
  opacity: 0.88;
}

/* Hero overlay (Brick-inspired) */
.launch-hero--overlay {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: 5rem 1.25rem 4rem;
  overflow: hidden;
}

.launch-hero__align {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin-inline: auto;
  padding-left: 1rem;
  padding-right: 0.65rem;
}

.launch-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.launch-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
}

.launch-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.55) 42%, rgba(8, 8, 8, 0.12) 68%, transparent 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.45) 0%, transparent 35%);
}

.launch-hero__content {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  text-align: left;
}

.launch-hero__card {
  display: contents;
}

.launch-hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.35rem;
  letter-spacing: 0.01em;
}

.launch-hero__stars {
  color: #f5b942;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.launch-hero__content h1 {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.15rem;
}

.launch-hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 26rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}

.btn--hero:hover {
  opacity: 0.95;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.btn--hero:active {
  transform: scale(0.98);
}

.launch-page .shop {
  padding-top: var(--section-gap);
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

/* Device intro + dashboard widget */
.launch-device-intro {
  padding: var(--section-gap) 0;
  border-bottom: 1px solid var(--border);
}

.launch-device-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.launch-device-intro__copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.launch-device-intro__copy p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.launch-dashboard {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.launch-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.launch-dashboard__live {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ee7a0;
  padding: 0.2rem 0.5rem;
  background: rgba(110, 231, 160, 0.12);
  border-radius: 999px;
}

.launch-dashboard__metric {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.launch-dashboard__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.launch-dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 80px;
  margin: 1.25rem 0 0.75rem;
}

.launch-dashboard__bar {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px 4px 0 0;
  transition: height 0.8s ease;
}

.launch-dashboard__bar--active {
  background: rgba(110, 231, 160, 0.55);
}

.launch-dashboard__note {
  font-size: 0.8125rem;
  color: #6ee7a0;
}

/* How it works — professional step cards */
.launch-how {
  border-top: 1px solid var(--border);
}

.launch-how__header {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.launch-how__header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.launch-how__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.launch-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  position: relative;
}

.launch-how__steps::before {
  content: "";
  position: absolute;
  top: 3.25rem;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 15%, rgba(255, 255, 255, 0.12) 85%, transparent);
  pointer-events: none;
}

.launch-how__step {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.launch-how__step:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}

.launch-how__step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.launch-how__step-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.launch-how__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.launch-how__step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.launch-how__step > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.launch-how__preview {
  margin-top: auto;
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.launch-how__preview-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}

.launch-how__preview-meta {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.launch-how__preview--device {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.launch-how__preview-chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.launch-how__led {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.launch-how__led-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(110, 231, 160, 0.7), rgba(110, 231, 160, 1));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(110, 231, 160, 0.35);
}

.launch-how__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.5rem;
}

.launch-how__cta-note {
  font-size: 0.8125rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* Differentiation compare */
.launch-compare {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.launch-compare__col {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.launch-compare__col--weak {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(255, 255, 255, 0.07);
}

.launch-compare__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.launch-compare__col--weak .launch-compare__tag {
  color: #a89090;
  border-color: rgba(248, 113, 113, 0.15);
  background: rgba(248, 113, 113, 0.06);
}

.launch-compare__col h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.launch-compare__intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.launch-compare__list {
  list-style: none;
  display: grid;
  gap: 0;
}

.launch-compare__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.launch-compare__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.launch-compare__item:first-child {
  padding-top: 0;
}

.launch-compare__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.18);
}

.launch-compare__item-body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.launch-compare__item-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.launch-compare__col--strong {
  border-color: rgba(255, 255, 255, 0.14);
}

.launch-compare__col--strong .launch-compare__tag {
  color: #6ee7a0;
  border-color: rgba(110, 231, 160, 0.2);
  background: rgba(110, 231, 160, 0.08);
}

/* Legacy list styles — Stackd strong column */
.launch-compare__col ul:not(.launch-compare__list) {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.launch-compare__col ul:not(.launch-compare__list) li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.launch-compare__col ul:not(.launch-compare__list) li strong {
  color: var(--text);
  font-weight: 600;
}

.launch-compare__lead {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.launch-compare__img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Goal scenarios grid */
.launch-goals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.launch-goal {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.25s;
}

.launch-goal:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.launch-goal h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.launch-goal__meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.launch-goal p:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* App section (Brick-style emphasis) */
.launch-app {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.launch-app__copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.launch-app__copy > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.launch-app__features {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.launch-app__features li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.launch-app__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.launch-app__visual {
  position: relative;
}

.launch-app__lifestyle {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.app-preview--float {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  width: min(52%, 220px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.ecosystem--launch {
  margin-top: 0;
}

/* Shop includes */
.launch-shop-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.launch-include {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.launch-include h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.launch-include p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Social proof */
.launch-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.launch-proof-stat {
  text-align: center;
}

.launch-proof-stat__value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.launch-proof-stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.launch-quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.launch-quote {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 0;
}

.launch-quote p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.launch-quote cite {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--text-dim);
  font-weight: 500;
}

/* More reasons */
.launch-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.launch-reason {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.launch-reason h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.launch-reason p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-list--center {
  margin-inline: auto;
}

.launch-cta__shop {
  margin-bottom: 2rem;
}

.launch-cta .waitlist {
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn--primary:hover {
  opacity: 0.92;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.launch-stats {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.launch-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.launch-stat {
  text-align: center;
}

.launch-stat__value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.launch-stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.diff-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.diff-card--muted {
  opacity: 0.75;
}

.diff-card--highlight {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.diff-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.diff-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.diff-card li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.diff-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
}

.diff-card--highlight li::before {
  background: var(--accent);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.launch-cta .cta h2 {
  margin-bottom: 0.75rem;
}

/* Footer unlock + passcode modal */
.footer__unlock {
  display: inline-flex;
  align-items: center;
  margin-left: 0.65rem;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.footer__unlock:hover,
.footer__unlock:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.unlock-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.unlock-modal[hidden] {
  display: none;
}

.unlock-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.unlock-modal__panel {
  position: relative;
  width: min(100%, 22rem);
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.unlock-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.unlock-modal__close:hover {
  color: var(--text);
}

.unlock-modal__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.unlock-form {
  display: flex;
  gap: 0.5rem;
}

.unlock-form input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
}

.unlock-form input:focus {
  border-color: rgba(255, 255, 255, 0.25);
}

.unlock-form button {
  padding: 0.85rem 1.1rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.unlock-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.unlock-modal__message {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  min-height: 1.25rem;
}

.unlock-modal__message.error {
  color: #f87171;
}

@media (max-width: 900px) {
  .launch-page .header--launch {
    padding-inline: var(--page-gutter);
  }

  .header--launch .header__shell {
    padding: 0.5rem 0.65rem 0.5rem 0.85rem;
  }

  .header--launch .header__nav {
    display: none;
  }

  .header--launch .nav-toggle {
    margin-left: auto;
    border-color: rgba(0, 0, 0, 0.12);
  }

  .header--launch .nav-toggle__bar {
    background: #111;
  }

  .header--launch.header--scrolled .nav-toggle {
    border-color: var(--border);
  }

  .header--launch.header--scrolled .nav-toggle__bar {
    background: var(--text);
  }

  .mobile-nav--launch {
    top: 4.75rem;
    left: var(--page-gutter);
    right: var(--page-gutter);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.35rem 1rem 0.85rem;
  }

  .header--launch .brand__name {
    font-size: 1rem;
  }

  .header--launch .header__inner > .header__cta {
    display: none;
  }

  .mobile-nav--launch .mobile-nav__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.875rem;
    background: var(--accent);
    color: var(--bg);
  }

  .mobile-nav--launch .mobile-nav__cta:hover {
    opacity: 0.92;
  }

  .launch-hero--overlay {
    min-height: min(100svh, 820px);
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 1.25rem) var(--page-gutter) 2rem;
  }

  .launch-hero__align {
    width: 100%;
    padding-inline: 0;
    display: flex;
    justify-content: center;
  }

  .launch-hero__bg {
    object-position: center center;
  }

  .launch-hero__scrim {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.35) 45%, rgba(8, 8, 8, 0.55) 100%);
  }

  .launch-hero__content {
    width: 100%;
    max-width: 22rem;
    text-align: center;
  }

  .launch-hero__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.75rem 1.35rem 1.5rem;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  }

  .launch-hero__content h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    text-align: center;
  }

  .launch-hero__sub {
    max-width: none;
    margin-bottom: 1.35rem;
    text-align: center;
  }

  .launch-hero__proof {
    justify-content: center;
    text-align: center;
    font-size: 0.6875rem;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1.15rem;
  }

  .launch-hero__cta.btn--hero {
    width: 100%;
    justify-content: center;
    margin-top: 0.15rem;
  }

  .launch-how__cta .btn--hero {
    width: 100%;
    justify-content: center;
  }

  .launch-device-intro {
    padding: var(--section-gap) 0;
  }

  .launch-device-intro__grid,
  .launch-compare,
  .launch-app {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .launch-device-intro__copy h2,
  .launch-app__copy h2 {
    font-size: 1.625rem;
  }

  .launch-how__header {
    margin-bottom: 2.5rem;
  }

  .launch-how__steps::before {
    display: none;
  }

  .launch-how__steps,
  .launch-shop-includes,
  .launch-proof-stats,
  .launch-reasons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .launch-how__step {
    padding: 1.5rem;
  }

  .launch-compare__col {
    padding: 1.5rem;
  }

  .launch-app__copy {
    order: -1;
  }

  .launch-quotes,
  .launch-goals {
    display: flex;
  }

  .carousel__track.launch-goals > .launch-goal {
    flex: 0 0 86%;
    max-width: 320px;
    height: auto;
    align-self: stretch;
  }

  .app-preview--float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 260px);
    margin: -2rem auto 0;
  }

  .launch-page .shop {
    padding-top: var(--section-gap);
  }

  .launch-cta__shop {
    display: flex;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    justify-content: center;
  }

  .launch-cta .waitlist {
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }

  .launch-how__cta-note {
    text-align: center;
    padding-inline: 0.5rem;
  }
}

@media (min-width: 521px) and (max-width: 900px) {
  .launch-reasons {
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-proof-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 520px) {
  .launch-reasons {
    grid-template-columns: 1fr;
  }

  .launch-proof-stat__value {
    font-size: 2rem;
  }

  .launch-how__cta-note,
  .launch-hero__proof {
    font-size: 0.6875rem;
  }
}

/* Admin page */
.admin-page {
  min-height: 100vh;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.admin-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.admin-header__logo {
  width: 28px;
  height: 28px;
}

.admin-header__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.admin-nav__link {
  padding: 0.45rem 0.85rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.admin-nav__link:hover,
.admin-nav__link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.admin-nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border);
}

.admin-nav__link--ghost {
  border-color: var(--border);
}

.admin-main {
  padding: 2rem 0 4rem;
}

.admin-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.admin-panel__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.admin-panel__sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.admin-btn {
  padding: 0.5rem 1rem;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.admin-btn:hover {
  opacity: 0.88;
}

.admin-btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.admin-btn--ghost:hover {
  color: var(--text);
  opacity: 1;
}

.admin-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(110, 231, 160, 0.1);
  border: 1px solid rgba(110, 231, 160, 0.25);
  border-radius: var(--radius-sm);
  color: #6ee7a0;
  font-size: 0.875rem;
}

.admin-alert--error {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.25);
  color: #f87171;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-metric {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.admin-metric__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.admin-metric__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.admin-metric__sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.admin-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.admin-card:first-child {
  grid-column: 1 / -1;
}

.admin-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.admin-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.admin-card__head .admin-card__title {
  margin-bottom: 0;
}

.admin-card__live {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ee7a0;
  padding: 0.2rem 0.5rem;
  background: rgba(110, 231, 160, 0.12);
  border-radius: 999px;
}

.admin-card__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.admin-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
}

.admin-chart__bar {
  flex: 1;
  height: var(--h, 8%);
  min-height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.admin-chart__bar--active {
  background: rgba(110, 231, 160, 0.55);
}

.admin-breakdown {
  list-style: none;
}

.admin-breakdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-breakdown__item:last-child {
  border-bottom: none;
}

.admin-breakdown__name {
  font-size: 0.875rem;
  color: var(--text);
}

.admin-breakdown__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: right;
}

.admin-breakdown__empty {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.admin-status-list {
  list-style: none;
}

.admin-status-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-status-list__item:last-child {
  border-bottom: none;
}

.admin-status-list__count {
  font-weight: 600;
  font-size: 0.9375rem;
}

.admin-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.admin-status--paid {
  color: #6ee7a0;
  background: rgba(110, 231, 160, 0.12);
}

.admin-status--pending {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
}

.admin-status--failed {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
}

.admin-status--refunded {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.08);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.admin-filter select,
.admin-search input {
  padding: 0.55rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
}

.admin-search {
  flex: 1;
  min-width: 200px;
}

.admin-search input {
  width: 100%;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem !important;
}

.admin-status-select {
  padding: 0.35rem 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.8125rem;
  cursor: pointer;
}

.admin-link {
  color: #6ee7a0;
  text-decoration: none;
  font-weight: 500;
}

.admin-link:hover {
  text-decoration: underline;
}

.admin-link--btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.admin-order-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-order-modal[hidden] {
  display: none;
}

.admin-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.admin-order-modal__panel {
  position: relative;
  width: min(100%, 32rem);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.admin-order-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.admin-order-modal__close:hover {
  color: var(--text);
}

.admin-order-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
}

.admin-order-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-order-details {
  display: grid;
  gap: 0;
}

.admin-order-details__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-order-details__row:last-child {
  border-bottom: none;
}

.admin-order-details__row dt {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.admin-order-details__row dd {
  font-size: 0.875rem;
  color: var(--text);
  word-break: break-word;
}

.admin-order-details__mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.admin-order-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 520px) {
  .admin-order-details__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 900px) {
  .admin-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
