@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --bg: #05060a;
  --bg-soft: rgba(12, 16, 26, 0.86);
  --bg-glass: rgba(12, 16, 26, 0.72);
  --text: #f6f7fb;
  --text-muted: rgba(246, 247, 251, 0.64);
  --accent: #f6b6d6;
  --accent-2: #7dc2ff;
  --accent-3: #fce3ef;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "Playfair Display", serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #05060a;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0 0 0.8rem;
}


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

main {
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.landing-main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.marketing-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, rgba(246, 182, 214, 0.22), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(191, 234, 212, 0.2), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(252, 227, 239, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(251, 247, 246, 0.96));
}

.marketing-shell::before,
.marketing-shell::after,
.marketing-content::before {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
  animation: floatOrb 16s ease-in-out infinite;
}

.marketing-shell::before {
  width: 280px;
  height: 280px;
  top: 8%;
  left: -60px;
  background: radial-gradient(circle, rgba(246, 182, 214, 0.42), rgba(246, 182, 214, 0));
}

.marketing-shell::after {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 28%;
  background: radial-gradient(circle, rgba(191, 234, 212, 0.38), rgba(191, 234, 212, 0));
  animation-delay: -6s;
}

.marketing-content::before {
  width: 220px;
  height: 220px;
  right: 18%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(252, 227, 239, 0.34), rgba(252, 227, 239, 0));
  animation-delay: -11s;
}

.marketing-shell-dark {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 92, 178, 0.18), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(93, 170, 255, 0.18), transparent 24%),
    radial-gradient(circle at 76% 78%, rgba(142, 255, 214, 0.12), transparent 28%),
    linear-gradient(180deg, #05060a 0%, #0b0d13 48%, #0f121b 100%);
}

.marketing-content {
  position: relative;
  z-index: 1;
}

.marketing-content h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
}

.ambient-dots {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 11, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.site-header-dark {
  background: rgba(9, 11, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header-dark .logo a,
.site-header-dark .nav-link,
.site-header-dark .footer-links,
.site-header-dark .footer-note {
  color: rgba(246, 246, 252, 0.82);
}

.site-header-dark .btn-ghost {
  color: rgba(246, 246, 252, 0.82);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hidden-mobile {
  display: inline-flex;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(246, 182, 214, 0.95), rgba(191, 234, 212, 0.95));
  color: #1d1b20;
  box-shadow: var(--shadow);
  background-clip: padding-box;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
}

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

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

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.section-header h1,
.section-heading h1 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.04;
  margin: 0 0 0.8rem;
}

.section-header .section-label,
.section-heading .section-label {
  display: inline-flex;
  margin-bottom: 0.35rem;
}

.section-header .lead,
.section-header .section-lead,
.section-heading .lead,
.section-heading .section-lead {
  font-size: 1.12rem;
  max-width: none;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.glass-panel {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.step-card {
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0 2rem;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.meta-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.72;
  filter: blur(16px) saturate(135%);
  mix-blend-mode: screen;
  animation:
    floatOrb 18s ease-in-out infinite,
    heroHueShift 24s linear infinite;
}

.hero-visual::before {
  width: 200px;
  height: 200px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 30%),
    conic-gradient(
      from 180deg,
      rgba(255, 112, 194, 0.7),
      rgba(122, 196, 255, 0.64),
      rgba(148, 255, 219, 0.52),
      rgba(255, 112, 194, 0.7)
    );
  top: -30px;
  left: -10px;
}

.hero-visual::after {
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 32%),
    conic-gradient(
      from 40deg,
      rgba(125, 194, 255, 0.62),
      rgba(255, 150, 219, 0.58),
      rgba(173, 255, 207, 0.54),
      rgba(125, 194, 255, 0.62)
    );
  bottom: -40px;
  right: 0;
  animation-delay: -6s, -3s;
}

.spec-sheet {
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.spec-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.spec-chip {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

.spec-rows {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-footer {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.selection-showcase {
  padding-top: 1.5rem;
}

.selection-grid {
  display: grid;
  gap: 1.2rem;
}

.selection-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.selection-thumb {
  width: 140px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(246, 182, 214, 0.5), rgba(191, 234, 212, 0.5));
}

.selection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.selection-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.selection-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.selection-step {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.principles-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.principle-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(12, 16, 26, 0.68);
  box-shadow: var(--shadow);
}

.principle-number {
  font-family: var(--font-display);
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.process-list {
  display: grid;
  gap: 1.4rem;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}

.process-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-muted);
}

.process-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.process-desc {
  color: var(--text-muted);
}

.compare-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.compare-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(12, 16, 26, 0.68);
}

.compare-panel.featured {
  border-color: rgba(246, 182, 214, 0.42);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(255, 160, 210, 0.14), rgba(125, 194, 255, 0.14));
}

.compare-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
}

.compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.compare-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.export-grid {
  display: grid;
  gap: 1.2rem;
}

.export-item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  align-items: center;
}

.export-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.export-desc {
  color: var(--text-muted);
}

.export-badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

.feature-band {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(12, 16, 26, 0.68);
  display: grid;
  gap: 1.5rem;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  color: var(--text-muted);
}

.feature-item {
  padding-left: 1rem;
  position: relative;
}

.feature-item::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.feature-actions {
  display: grid;
  gap: 0.5rem;
}

.feature-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-item {
  padding: 1rem 0 1rem 1rem;
  border-left: 1px solid var(--border);
}

.quote-text {
  margin: 0 0 1rem;
  color: var(--text);
}

.quote-author {
  font-weight: 600;
}

.quote-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.final-band {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 160, 210, 0.14), rgba(125, 194, 255, 0.14));
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.landing-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.landing-footer-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer-dark .footer-brand,
.landing-footer-dark .footer-links a {
  color: rgba(246, 246, 252, 0.88);
}

.landing-footer-dark .footer-note,
.landing-footer-dark .footer-links {
  color: rgba(246, 246, 252, 0.6);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

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

.footer-links {
  display: grid;
  gap: 0.4rem;
  color: var(--text-muted);
}

.footer-social {
  padding-top: 1.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.app-header {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 11, 18, 0.72);
  backdrop-filter: blur(18px);
}

.app-main {
  padding: 2rem 0;
  color: var(--text);
}

.stepper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.step-dot {
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(29, 27, 32, 0.12);
}

.step-dot.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.step-dot.completed {
  background: rgba(29, 27, 32, 0.35);
}

.step-header h2 {
  margin: 0 0 0.5rem;
}

.options-grid {
  display: grid;
  gap: 1rem;
}

.options-grid[data-cols="4"] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.options-grid[data-cols="2"] {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.option-card {
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.option-card.selected {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(246, 182, 214, 0.44);
  background: linear-gradient(135deg, rgba(255, 160, 210, 0.14), rgba(125, 194, 255, 0.14));
}

.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  display: block;
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.palette-preview {
  display: flex;
  height: 120px;
}

.color-tool-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.harmony-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.harmony-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.harmony-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.generated-palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
}

.gen-swatch {
  border-radius: var(--radius-md);
  padding: 0.75rem;
  color: #05060a;
  font-size: 0.8rem;
}

.code-block {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  white-space: pre-wrap;
}

.app-footer {
  position: sticky;
  bottom: 0;
  background: rgba(9, 11, 18, 0.82);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

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

.waitlist-teaser {
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

.waitlist-teaser-compact {
  padding: 1.5rem;
}

.waitlist-teaser-copy,
.waitlist-teaser-note {
  color: var(--text-muted);
}

.waitlist-teaser-list {
  display: grid;
  gap: 0.85rem;
}

.waitlist-teaser-bullet {
  padding-left: 1rem;
  position: relative;
  color: var(--text-muted);
}

.waitlist-teaser-bullet::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246, 182, 214, 0.9), rgba(191, 234, 212, 0.9));
}

.waitlist-teaser-actions {
  display: grid;
  gap: 0.75rem;
}

.dashboard-waitlist-status {
  background: linear-gradient(135deg, rgba(8, 13, 27, 0.96), rgba(22, 28, 42, 0.94));
  color: rgba(247, 248, 252, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-waitlist-status p {
  color: rgba(247, 248, 252, 0.72);
}

.page-shell {
  min-height: calc(100vh - 160px);
  padding: 2rem 0 3rem;
}

.page-shell-dark {
  color: rgba(247, 248, 252, 0.92);
}

.marketing-shell-dark .glass-panel,
.page-shell-dark .glass-panel {
  background: rgba(12, 16, 26, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.marketing-shell-dark .lead,
.marketing-shell-dark .section-lead,
.marketing-shell-dark .section-label,
.marketing-shell-dark .nav-link,
.marketing-shell-dark .footer-note,
.marketing-shell-dark .footer-links,
.marketing-shell-dark .waitlist-teaser-copy,
.marketing-shell-dark .waitlist-teaser-note,
.marketing-shell-dark .feature-note {
  color: rgba(247, 248, 252, 0.62);
}

.marketing-shell-dark .badge,
.marketing-shell-dark .meta-pill,
.marketing-shell-dark .spec-chip,
.marketing-shell-dark .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 248, 252, 0.92);
}

.marketing-shell-dark .feature-band,
.marketing-shell-dark .compare-panel,
.marketing-shell-dark .principle-card {
  background: rgba(12, 16, 26, 0.68);
  border-color: rgba(255, 255, 255, 0.08);
}

.marketing-shell-dark .btn-primary {
  color: #12141d;
}

.auth-shell,
.waitlist-page,
.legal-page {
  padding: 2rem 0 3rem;
}

.waitlist-hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.auth-shell {
  display: grid;
  gap: 2rem;
}

.auth-hero-copy {
  display: grid;
  gap: 1rem;
}

.auth-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.04;
  margin: 0;
}

.auth-hero-copy .section-label {
  display: inline-flex;
}

.auth-hero-copy h1,
.auth-hero-copy .auth-lead {
  width: 100%;
  max-width: none;
}

.auth-hero-copy .auth-lead {
  font-size: 1.12rem;
}

.auth-detail-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.auth-list-column {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.auth-copy-panel,
.auth-form-panel,
.waitlist-form-panel,
.legal-panel {
  padding: 2rem;
}

.auth-form-panel,
.waitlist-form-panel {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(9, 12, 20, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.waitlist-form-panel {
  position: sticky;
  top: 6rem;
}

.auth-lead {
  max-width: 44rem;
}

.auth-list,
.auth-proof-grid,
.plan-grid,
.detail-grid,
.legal-promise-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.auth-list {
  margin-top: 0;
  gap: 1.15rem;
}

.auth-list-item,
.auth-proof-card,
.detail-card,
.plan-card {
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.auth-list-item {
  line-height: 1.68;
}

.auth-proof-grid,
.detail-grid,
.legal-promise-grid,
.faq-grid,
.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.auth-proof-grid {
  gap: 1.15rem;
}

.auth-form-copy,
.auth-disclaimer,
.waitlist-form-copy,
.waitlist-form-footnote,
.waitlist-success-copy,
.waitlist-story p,
.detail-card p,
.plan-list,
.legal-panel p,
.legal-panel li {
  color: rgba(247, 248, 252, 0.74);
}

.auth-submit {
  width: 100%;
  justify-content: center;
}

.auth-consent-check {
  margin-top: 0.95rem;
}

.auth-secondary-links,
.waitlist-success-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.consent-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: rgba(247, 248, 252, 0.76);
  font-size: 0.95rem;
}

.consent-check input {
  margin-top: 0.2rem;
}

.consent-check a,
.cookie-banner a {
  text-decoration: underline;
}

.waitlist-hero {
  padding-top: 1rem;
}

.waitlist-copy h1,
.auth-copy-panel h1 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.04;
}

.waitlist-price-highlight {
  color: #ffa0d2;
}

.waitlist-lead {
  max-width: 46rem;
}

.waitlist-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.waitlist-story {
  display: grid;
  gap: 0.85rem;
}

.waitlist-form {
  display: grid;
  gap: 1.05rem;
}

.waitlist-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 248, 252, 0.94);
}

.waitlist-input::placeholder {
  color: rgba(247, 248, 252, 0.4);
}

.waitlist-field-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(247, 248, 252, 0.54);
  margin-bottom: 0.85rem;
}

.waitlist-interest-block {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.interest-chip {
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 248, 252, 0.84);
  cursor: pointer;
}

.interest-chip.active {
  background: linear-gradient(135deg, rgba(255, 160, 210, 0.32), rgba(125, 194, 255, 0.26));
  border-color: rgba(255, 160, 210, 0.38);
}

.waitlist-section {
  padding: 2rem 0;
}

.waitlist-section-emphasis {
  padding: 2.25rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(125, 194, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.plan-topline strong {
  font-size: 1.35rem;
}

.plan-caption {
  margin: 0 0 1rem;
  color: rgba(247, 248, 252, 0.6);
}

.plan-list {
  display: grid;
  gap: 0.75rem;
}

.plan-bullet {
  position: relative;
  padding-left: 1rem;
}

.plan-bullet::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #7dc2ff;
}

.waitlist-success p {
  color: rgba(247, 248, 252, 0.76);
}

.steps-grid .glass-panel,
.plan-card,
.detail-card {
  height: 100%;
}

.plan-card {
  padding: 1.35rem 1.35rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(10, 14, 24, 0.7);
}

.detail-card {
  padding: 1.25rem 1.25rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 24, 0.64);
}

.detail-card h3,
.plan-card h3 {
  margin-bottom: 0.55rem;
}

.legal-panel h2 {
  margin-top: 2rem;
}

.legal-panel ul {
  padding-left: 1.2rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: min(420px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 17, 0.92);
  color: rgba(247, 248, 252, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.cookie-banner-copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(247, 248, 252, 0.72);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.auth-gate-card {
  padding: 1.75rem;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 26, 0.72);
  box-shadow: var(--shadow);
}

.auth-gate-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 248, 252, 0.84);
}

.auth-gate-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.auth-gate-copy,
.auth-gate-footnote {
  color: rgba(247, 248, 252, 0.68);
}

.auth-gate-copy {
  margin-bottom: 1.5rem;
}

.auth-gate-footnote {
  margin-top: 1rem;
  font-size: 0.78rem;
}

.auth-gate-list {
  max-width: 20rem;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  text-align: left;
  color: rgba(247, 248, 252, 0.8);
}

.auth-gate-list-item {
  display: flex;
  gap: 0.5rem;
}

.auth-gate-list-item-emphasis {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 248, 252, 0.64);
}

.shared-vibe-shell {
  padding: 1rem 0 3rem;
}

.shared-vibe-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.shared-vibe-header {
  margin-bottom: 2rem;
}

.shared-vibe-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 0.5rem;
}

.shared-vibe-meta,
.shared-vibe-subtitle,
.shared-vibe-action-note,
.shared-vibe-selection-label {
  color: rgba(247, 248, 252, 0.62);
}

.shared-vibe-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}

.shared-vibe-palette {
  display: flex;
  gap: 0.5rem;
  height: 6rem;
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.shared-vibe-swatch {
  flex: 1;
}

.shared-vibe-panel {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.shared-vibe-selection-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.shared-vibe-selection-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.shared-vibe-selection-value {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shared-vibe-copy {
  margin-top: 1rem;
}

.shared-vibe-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 2rem 0;
}

.shared-vibe-waitlist {
  margin-top: 2rem;
}

.shared-vibe-actions {
  text-align: center;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes heroHueShift {
  0% {
    filter: blur(16px) saturate(135%) hue-rotate(0deg);
  }
  100% {
    filter: blur(16px) saturate(135%) hue-rotate(360deg);
  }
}

@media (max-width: 900px) {
  .selection-item {
    grid-template-columns: 120px 1fr;
  }
  .selection-step {
    grid-column: 1 / -1;
  }
  .auth-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-cta .hidden-mobile {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    align-items: stretch;
  }
  .hero {
    padding: 3rem 0 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-step {
    grid-template-columns: 1fr;
  }
  .auth-copy-panel,
  .auth-form-panel,
  .waitlist-form-panel,
  .legal-panel {
    padding: 1.5rem;
  }
  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }
}
