/**
 * Aivor — Premium launch landing (maintenance mode)
 * Accent: #7C4DFF · Glassmorphism · Dark SaaS
 */

:root {
  --launch-accent: #7C4DFF;
  --launch-accent-soft: rgba(124, 77, 255, 0.14);
  --launch-accent-glow: rgba(124, 77, 255, 0.45);
  --launch-accent-dim: #5b35cc;
  --launch-glass: rgba(12, 16, 28, 0.62);
  --launch-glass-border: rgba(255, 255, 255, 0.08);
  --launch-radius: 20px;
  --launch-radius-sm: 14px;
  --launch-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.launch-page {
  --accent: var(--launch-accent);
  --brand: var(--launch-accent);
  --brand-glow: var(--launch-accent-glow);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #030508;
  color: var(--text);
}

/* ── Background layers ── */
.launch-bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(124, 77, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 77, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 75%);
  animation: launchGridDrift 28s linear infinite;
  pointer-events: none;
}

@keyframes launchGridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(56px); }
}

.launch-bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -15%, rgba(124, 77, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 40%, rgba(99, 102, 241, 0.1), transparent 55%),
    radial-gradient(ellipse 35% 30% at 5% 75%, rgba(168, 85, 247, 0.08), transparent 50%);
}

.launch-cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

.launch-page:hover .launch-cursor-glow {
  opacity: 1;
}

#launch-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── Layout ── */
.launch-wrap {
  position: relative;
  z-index: 2;
  width: min(1320px, 96vw);
  margin: 0 auto;
  padding: 100px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ── Topbar ── */
.launch-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 clamp(16px, 2vw, 32px);
  background: rgba(3, 5, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.launch-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  height: 68px;
  gap: 20px;
}

.launch-topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.launch-topbar-brand img {
  border-radius: 10px;
}

.launch-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.launch-topbar-beta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: #bbf7d0;
  cursor: pointer;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.08);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.15s;
}

.launch-topbar-beta:hover {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.65);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.18);
}

.launch-topbar-beta:active {
  transform: scale(0.98);
}

.launch-topbar-ticket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--launch-accent), var(--launch-accent-dim));
  box-shadow: 0 6px 24px rgba(124, 77, 255, 0.35);
  transition: box-shadow 0.25s, transform 0.15s;
}

.launch-topbar-ticket:hover {
  box-shadow: 0 10px 32px rgba(124, 77, 255, 0.5);
}

.launch-topbar-ticket:active {
  transform: scale(0.98);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--launch-ease),
    transform 0.75s var(--launch-ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── Banner Aivor Shop ── */
.launch-shop-banner {
  width: 100%;
  margin-bottom: clamp(16px, 3vw, 24px);
}

.launch-shop-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 4vw, 28px) clamp(24px, 4vw, 36px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(88, 101, 242, 0.08) 45%, rgba(12, 16, 28, 0.55) 100%);
  border: 1px solid rgba(124, 77, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 56px rgba(0, 0, 0, 0.28),
    0 0 48px rgba(124, 77, 255, 0.05);
}

.launch-shop-banner-icon {
  flex: 0 0 auto;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(124, 77, 255, 0.2));
}

.launch-shop-banner-copy {
  flex: 1 1 280px;
  min-width: 0;
  text-align: left;
}

.launch-shop-banner-eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.launch-shop-banner-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.launch-shop-banner-lead {
  margin: 0 0 14px;
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  line-height: 1.6;
  color: #e2e8f0;
}

.launch-shop-banner-perks {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.launch-shop-banner-perks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.launch-shop-banner-perks li span:first-child {
  flex: 0 0 auto;
  line-height: 1.2;
}

.launch-shop-banner-perks code {
  padding: 1px 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.92em;
}

@media (max-width: 640px) {
  .launch-shop-banner-perks {
    grid-template-columns: 1fr;
  }
}

.launch-shop-banner-copy p {
  margin: 0 0 8px;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  line-height: 1.55;
  color: #cbd5e1;
}

.launch-shop-banner-copy a {
  color: #c4b5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.launch-shop-banner-copy code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.88em;
  color: #e2e8f0;
}

.launch-shop-banner-note {
  font-size: 0.88rem !important;
  color: #94a3b8 !important;
}

.launch-shop-banner-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .launch-shop-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .launch-shop-banner-copy {
    text-align: center;
  }

  .launch-shop-banner-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Countdown lansare ── */
.launch-countdown {
  width: 100%;
  margin-bottom: 8px;
}

.launch-countdown-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(24px, 4vw, 32px) clamp(28px, 5vw, 40px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(12, 16, 28, 0.55) 100%);
  border: 1px solid rgba(124, 77, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(124, 77, 255, 0.08);
}

.launch-countdown-copy {
  flex: 1 1 220px;
  min-width: 0;
  text-align: left;
}

.launch-countdown-eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
}

.launch-countdown-date {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.launch-countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 20px);
  flex: 0 1 auto;
}

.launch-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(64px, 12vw, 110px);
  padding: clamp(12px, 2vw, 18px) clamp(14px, 2.5vw, 24px);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.launch-countdown-unit--sub {
  min-width: clamp(52px, 10vw, 78px);
  padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 16px);
}

.launch-countdown-unit--sub .launch-countdown-value {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.launch-countdown-unit--sub .launch-countdown-label {
  font-size: 0.68rem;
}

.launch-countdown-sep--sub {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: -8px;
  opacity: 0.35;
}

.launch-countdown-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.2s var(--launch-ease);
}

.launch-countdown-value.is-tick {
  transform: scale(1.04);
}

.launch-countdown-label {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.launch-countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(124, 77, 255, 0.45);
  margin-top: -12px;
  user-select: none;
}

.launch-countdown-live {
  flex: 1 1 100%;
  margin: 0;
  padding-top: 4px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #86efac;
}

.launch-countdown.is-live .launch-countdown-timer {
  display: none;
}

.launch-countdown.is-live .launch-countdown-date {
  color: #bbf7d0;
}

@media (max-width: 640px) {
  .launch-countdown-inner {
    flex-direction: column;
    text-align: center;
  }

  .launch-countdown-copy {
    text-align: center;
  }

  .launch-countdown-timer {
    width: 100%;
    gap: clamp(6px, 1.5vw, 12px);
  }

  .launch-countdown-unit {
    flex: 1;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .launch-countdown-unit--sub {
    min-width: 0;
  }
}

/* ── Hero ── */
.launch-hero {
  text-align: center;
  padding: 0;
}

.launch-hero-shell {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px) 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.launch-hero-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(124, 77, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.launch-hero-shell > *:not(.launch-hero-glow) {
  position: relative;
  z-index: 1;
}

.launch-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(124, 77, 255, 0.25);
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.2);
  animation: launchLogoFloat 5s ease-in-out infinite;
}

@keyframes launchLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.launch-logo-wrap img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ddd6fe;
  background: rgba(124, 77, 255, 0.12);
  border: 1px solid rgba(124, 77, 255, 0.28);
  box-shadow: 0 0 24px rgba(124, 77, 255, 0.12);
}

.launch-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.launch-hero h1 .highlight {
  background: linear-gradient(135deg, #e9d5ff 0%, #7C4DFF 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.launch-hero-lead {
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: #8b9cb8;
}

.launch-hero-note {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

.launch-automod-callout {
  max-width: 780px;
  margin: 0 auto 44px;
  padding: 0;
  text-align: left;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(88, 101, 242, 0.06) 100%);
  border: 1px solid rgba(124, 77, 255, 0.28);
  box-shadow: 0 0 48px rgba(124, 77, 255, 0.12);
  overflow: hidden;
}

.launch-automod-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px 0;
}

.launch-automod-badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(124, 77, 255, 0.2);
  border: 1px solid rgba(124, 77, 255, 0.35);
}

.launch-automod-badge--soft {
  color: #93c5fd;
  background: rgba(88, 101, 242, 0.15);
  border-color: rgba(88, 101, 242, 0.3);
}

.launch-automod-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 24px;
}

.launch-automod-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: rgba(124, 77, 255, 0.18);
  border: 1px solid rgba(124, 77, 255, 0.25);
}

.launch-automod-callout strong {
  display: block;
  font-size: 1.05rem;
  color: #ede9fe;
  margin-bottom: 10px;
  line-height: 1.35;
}

.launch-automod-callout p {
  margin: 0 0 12px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #94a3b8;
}

.launch-automod-callout p:last-child {
  margin-bottom: 0;
}

.launch-automod-callout em {
  color: #c4b5fd;
  font-style: normal;
  font-weight: 600;
}

.launch-automod-highlight {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--launch-accent);
  color: #cbd5e1 !important;
  font-size: 0.88rem !important;
}

.launch-automod-strip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  padding: 28px 32px;
  text-align: left;
  border-radius: 20px;
  background: rgba(88, 101, 242, 0.06);
  border: 1px solid rgba(88, 101, 242, 0.2);
}

.launch-automod-strip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #86efac;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.launch-automod-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #e2e8f0;
}

.launch-automod-strip p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #94a3b8;
}

.launch-what-item--highlight {
  border-color: rgba(124, 77, 255, 0.25);
  background: linear-gradient(145deg, rgba(124, 77, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.launch-hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
  width: 100%;
  margin: 0 auto 40px;
  text-align: left;
  align-items: stretch;
}

.launch-pillar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.launch-pillar:hover {
  border-color: rgba(124, 77, 255, 0.22);
  background: rgba(124, 77, 255, 0.05);
  transform: translateY(-2px);
}

.launch-pillar-icon {
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 12px;
  background: rgba(124, 77, 255, 0.14);
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.launch-pillar > div {
  min-width: 0;
  flex: 1;
}

.launch-pillar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 4px;
  line-height: 1.35;
}

.launch-pillar > div > span {
  display: block;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
}

.launch-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}

.launch-hero-cta .launch-btn {
  width: auto;
  flex: 0 1 240px;
  min-width: min(240px, 100%);
}

/* ── Ce lansăm ── */
.launch-what {
  padding: clamp(40px, 6vw, 56px) clamp(32px, 5vw, 48px) !important;
}

.launch-what-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.launch-what-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.launch-what-lead {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.launch-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.launch-what-item {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.launch-what-item span {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 14px;
}

.launch-what-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.launch-what-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.launch-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.launch-subtitle strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.9;
}

/* ── Glass cards ── */
.launch-card {
  position: relative;
  padding: clamp(36px, 5vw, 52px);
  margin-bottom: 0;
  border-radius: var(--launch-radius);
  background: var(--launch-glass);
  border: 1px solid var(--launch-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--launch-ease), box-shadow 0.35s var(--launch-ease);
}

.launch-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(124, 77, 255, 0.08);
}

.launch-card-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.35), transparent 45%, rgba(124, 77, 255, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.launch-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.launch-card .card-desc {
  margin: 0 0 28px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 56ch;
}

/* ── Forms ── */
.launch-form {
  display: grid;
  gap: 22px;
}

.launch-form-row {
  display: grid;
  gap: 18px;
}

@media (min-width: 640px) {
  .launch-form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.launch-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.launch-field label .req {
  color: #f472b6;
}

.launch-field input,
.launch-field select,
.launch-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--launch-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.launch-field input:focus,
.launch-field select:focus,
.launch-field textarea:focus {
  outline: none;
  border-color: rgba(124, 77, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.18);
}

.launch-field textarea {
  min-height: 110px;
  resize: vertical;
}

.launch-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.launch-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.launch-form-section-label {
  margin: 20px 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #7c4dff);
}

.launch-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--launch-accent);
  flex-shrink: 0;
}

.launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border: none;
  border-radius: var(--launch-radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.3s, background 0.3s;
}

.launch-btn:active {
  transform: scale(0.985);
}

.launch-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--launch-accent), var(--launch-accent-dim));
  box-shadow: 0 8px 32px rgba(124, 77, 255, 0.35);
}

.launch-btn-primary:hover {
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.5);
}

.launch-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.launch-btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.launch-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(124, 77, 255, 0.12);
}

.launch-form-error {
  padding: 12px 16px;
  border-radius: var(--launch-radius-sm);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
  font-size: 0.9rem;
}

/* ── Beta perks ── */
.launch-perks {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.launch-perks li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--text-muted);
  line-height: 1.55;
}

.launch-perks li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--launch-accent);
  font-weight: 700;
}

/* ── Section titles ── */
.launch-section {
  margin-bottom: 0;
  padding-top: 8px;
}

.launch-section-title {
  text-align: center;
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* ── Feature grids ── */
.launch-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.launch-feature-card {
  padding: 18px 20px;
  border-radius: var(--launch-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.3s var(--launch-ease), border-color 0.3s, box-shadow 0.3s;
}

.launch-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 77, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 24px rgba(124, 77, 255, 0.08);
}

.launch-feature-card .feat-icon {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.launch-feature-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.launch-feature-card .feat-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.launch-feature-card .feat-badge--soon {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

/* ── AI section ── */
.launch-ai-card {
  text-align: center;
}

.launch-ai-card .card-desc {
  margin-left: auto;
  margin-right: auto;
}

.launch-ai-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.launch-ai-pill {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e9d5ff;
  background: rgba(124, 77, 255, 0.1);
  border: 1px solid rgba(124, 77, 255, 0.22);
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.launch-ai-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(124, 77, 255, 0.2);
}

/* ── Footer ── */
.launch-footer {
  position: relative;
  z-index: 2;
  padding: 40px 24px 48px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.launch-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.launch-footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.launch-footer-tagline {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.launch-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.launch-footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.launch-footer-links a:hover {
  color: #c4b5fd;
}

.launch-footer-copy {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── Modals ── */
.launch-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 5, 8, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--launch-ease), visibility 0.35s;
}

.launch-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.launch-modal {
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--launch-radius);
  background: rgba(10, 14, 24, 0.95);
  border: 1px solid var(--launch-glass-border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.4s var(--launch-ease);
}

.launch-modal-backdrop.is-open .launch-modal {
  transform: scale(1) translateY(0);
}

.launch-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.launch-modal-header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.launch-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.launch-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* ── Success overlay ── */
.launch-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.launch-success-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.launch-success-box {
  text-align: center;
  padding: 48px 40px;
  border-radius: var(--launch-radius);
  background: var(--launch-glass);
  border: 1px solid rgba(124, 77, 255, 0.25);
  box-shadow: 0 0 80px rgba(124, 77, 255, 0.2);
  transform: scale(0.85);
  transition: transform 0.5s var(--launch-ease);
}

.launch-success-overlay.is-open .launch-success-box {
  transform: scale(1);
}

.launch-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.4);
  animation: launchSuccessPop 0.6s var(--launch-ease) 0.15s both;
}

@keyframes launchSuccessPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.launch-success-box h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.launch-success-box p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36ch;
}

.launch-auth-hint {
  padding: 16px;
  margin-bottom: 18px;
  border-radius: var(--launch-radius-sm);
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.25);
  font-size: 0.88rem;
  color: #c7d2fe;
}

.launch-auth-hint a {
  color: #a5b4fc;
  font-weight: 600;
}

/* ── Hero stats ── */
.launch-hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.launch-stat {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
}

.launch-stat span {
  color: #e9d5ff;
  font-weight: 700;
  margin-right: 6px;
}

.launch-card-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
}

.launch-field .opt {
  font-weight: 400;
  color: var(--text-dim);
}

.launch-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ── Waitlist split layout ── */
.launch-waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.launch-waitlist-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.launch-waitlist-copy p {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.65;
}

.launch-waitlist-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-waitlist-benefits li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.launch-waitlist-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--launch-accent);
  font-weight: 700;
}

.launch-waitlist-form {
  padding: 32px;
  border-radius: var(--launch-radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Beta CTA ── */
.launch-beta-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.launch-beta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* ── Section heads ── */
.launch-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.launch-section-lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Module cards ── */
.launch-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.launch-module-card {
  position: relative;
  padding: 24px 24px 52px;
  border-radius: var(--launch-radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.32s var(--launch-ease), border-color 0.32s, box-shadow 0.32s;
}

.launch-module-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 77, 255, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 32px rgba(124, 77, 255, 0.08);
}

.launch-modules-grid--custom .launch-module-card {
  background: linear-gradient(145deg, rgba(124, 77, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.launch-module-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.launch-module-card h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 600;
}

.launch-module-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.launch-module-badge {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.launch-module-badge--live {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.launch-module-badge--custom {
  color: #c4b5fd;
  background: rgba(124, 77, 255, 0.14);
  border: 1px solid rgba(124, 77, 255, 0.32);
}

.launch-module-badge--soon {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.launch-soon-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.launch-soon-group {
  padding: 22px 22px 26px;
  border-radius: var(--launch-radius-sm, 18px);
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.14);
}

.launch-soon-group-head {
  margin-bottom: 18px;
  max-width: 46rem;
}

.launch-soon-group-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #fde68a;
}

.launch-soon-group-lead {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.launch-soon-group .launch-modules-grid--soon {
  gap: 14px;
}

.launch-soon-group .launch-module-card {
  background: rgba(0, 0, 0, 0.18);
}

/* ── Support CTA ── */
.launch-support-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.launch-support-cta-inner h2 {
  margin: 0 0 8px;
}

.launch-footer-contact a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.launch-footer-contact a:hover {
  color: #c4b5fd;
}

/* ── Hub ticket — modal centrat ── */
.launch-hub-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 16px;
  background: rgba(3, 5, 8, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--launch-ease), visibility 0.35s;
}

.launch-hub-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.launch-hub-panel {
  display: flex;
  flex-direction: column;
  width: min(1320px, 100%);
  height: min(94vh, 960px);
  max-height: none;
  margin: auto;
  background: #0c101a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(124, 77, 255, 0.08),
    0 32px 100px rgba(0, 0, 0, 0.55);
  transform: scale(0.98) translateY(8px);
  transition: transform 0.4s var(--launch-ease);
  overflow: hidden;
}

.launch-hub-backdrop.is-open .launch-hub-panel {
  transform: scale(1) translateY(0);
}

.launch-hub-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(12, 16, 26, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.launch-hub-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.launch-hub-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.launch-hub-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.launch-hub-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 36px 32px;
  overscroll-behavior: contain;
}

.launch-hub-body .support-hero {
  margin-bottom: 1.25rem;
}

.launch-hub-body .support-hero h1 {
  color: #f2f3f5;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 0.35rem;
}

.launch-hub-body .support-hero .lead {
  color: #949ba4;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: none;
}

.launch-hub-steps {
  margin-bottom: 1.25rem;
}

.launch-hub-steps .support-step {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
}

.launch-hub-categories {
  margin-top: 0.25rem;
}

.launch-hub-categories .category-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.launch-hub-categories .category-card {
  min-height: 128px;
  padding: 1.25rem 1.35rem;
}

.launch-hub-body .support-grid {
  display: grid;
  grid-template-columns: minmax(280px, 320px) 1fr;
  gap: 2rem;
  align-items: stretch;
}

.launch-hub-form-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  padding: 1.75rem 2rem 0 !important;
  overflow: hidden;
}

.launch-hub-form-panel .support-panel-title {
  flex-shrink: 0;
  margin-bottom: 1rem;
  color: #a78bfa;
  font-size: 0.68rem;
}

.launch-hub-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.launch-hub-form-fields {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  padding-bottom: 12px;
  gap: 18px;
}

.launch-hub-form-fields::-webkit-scrollbar {
  width: 5px;
}

.launch-hub-form-fields::-webkit-scrollbar-thumb {
  background: rgba(124, 77, 255, 0.35);
  border-radius: 99px;
}

.launch-hub-form-footer {
  flex-shrink: 0;
  display: flex;
  gap: 14px;
  padding: 18px 0 1.75rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(12, 16, 26, 0.95) 20%);
}

.launch-hub-form-footer .launch-btn {
  flex: 1;
  min-height: 48px;
  font-size: 0.95rem;
}

.launch-hub-form-footer .launch-btn-primary {
  flex: 1.4;
  box-shadow: 0 8px 28px rgba(124, 77, 255, 0.35);
}

.launch-hub-form-panel .launch-field label {
  color: #e2e8f0;
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.launch-hub-form-panel .launch-field input,
.launch-hub-form-panel .launch-field select,
.launch-hub-form-panel .launch-field textarea {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f2f3f5;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.launch-hub-form-panel .launch-field textarea {
  min-height: 88px;
  resize: vertical;
}

.launch-field-hint-block {
  margin: -6px 0 12px !important;
  font-size: 0.76rem !important;
  color: #64748b !important;
  line-height: 1.45;
}

.launch-hub-aside .support-aside-card {
  margin-bottom: 0.75rem;
  padding: 1.25rem 1.35rem;
}

.launch-hub-aside .support-aside-highlight {
  border-color: rgba(124, 77, 255, 0.25);
  background: rgba(124, 77, 255, 0.06);
}

@media (max-width: 1100px) {
  .launch-hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .launch-hub-body .support-grid {
    grid-template-columns: 1fr;
  }

  .launch-hub-aside {
    order: -1;
  }

  .launch-hub-form-panel {
    max-height: none;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .launch-hub-backdrop {
    padding: 0;
    align-items: stretch;
  }

  .launch-hub-panel {
    max-height: 100vh;
    border-radius: 0;
    height: 100%;
  }

  .launch-hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .launch-topbar-actions {
    gap: 8px;
  }

  .launch-topbar-beta {
    padding: 11px 14px;
    font-size: 0.85rem;
  }

  .launch-topbar-beta-icon {
    display: none;
  }

  .launch-topbar-ticket span:first-child {
    display: none;
  }

  .launch-topbar-ticket {
    padding: 11px 14px;
    font-size: 0.85rem;
  }

  .launch-hub-body {
    padding: 18px 16px 24px;
  }

  .launch-hub-form-footer {
    flex-direction: column-reverse;
  }

  .launch-hub-categories .category-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .launch-automod-callout {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .launch-automod-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .launch-automod-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .launch-waitlist-inner,
  .launch-beta-cta-inner {
    grid-template-columns: 1fr;
  }

  .launch-beta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .launch-beta-actions .launch-btn {
    flex: 1;
    min-width: 160px;
  }
}

.launch-hub-body .support-grid {
  margin-top: 0.5rem;
}

.launch-hub-aside .support-aside-card {
  margin-bottom: 0.75rem;
}

.launch-hub-aside .support-aside-card h3 {
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.launch-hub-aside .support-aside-card p,
.launch-hub-aside .support-aside-card li {
  font-size: 0.82rem;
  color: #949ba4;
}

.launch-hub-form-panel .support-panel-title {
  margin-bottom: 1.25rem;
  color: #c4b5fd;
}

@media (max-width: 640px) {
  .launch-hero-pillars {
    grid-template-columns: 1fr;
  }

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

  .launch-hero-cta .launch-btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .launch-wrap {
    padding-top: 88px;
    gap: 40px;
  }

  .launch-hero {
    padding: 0;
  }

  .launch-modules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .launch-hero-stats {
    flex-direction: column;
    align-items: center;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .launch-logo-wrap,
  .launch-bg-grid {
    animation: none;
  }

  .launch-cursor-glow {
    display: none;
  }
}
