:root {
  /* Colors - Dreamly Obsidian Space Theme */
  --primary: #8B5CF6;
  --primary-hover: #A78BFA;
  --primary-rgb: 139, 92, 246;
  
  /* Space Backgrounds */
  --bg-space: #05050C;
  --bg-space-light: #0B0B1E;
  --bg-space-dark: #020206;
  
  /* Text Colors */
  --text-charcoal: #F3F4F6;
  --text-muted: #9CA3AF;
  --surface-white: #FFFFFF;
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Celestial Colors */
  --star-gold: #FDE047;
  --star-gold-strong: #F59E0B;
  --sky-top: #05050C;
  --sky-bottom: #0B0B1E;
  --sky-surface: #070712;
  --sky-text: #F3F4F6;
  --sky-text-muted: #9CA3AF;
  --sky-accent: #8B5CF6;

  /* Category colors adapted for dark mode glassmorphism */
  --category-home: rgba(139, 92, 246, 0.08);
  --category-home-accent: #C084FC;
  --category-transport: rgba(20, 184, 166, 0.08);
  --category-transport-accent: #2DD4BF;
  --category-travel: rgba(14, 165, 233, 0.08);
  --category-travel-accent: #38BDF8;
  --category-money: rgba(245, 158, 11, 0.08);
  --category-money-accent: #FBBF24;
  --category-health: rgba(16, 185, 129, 0.08);
  --category-health-accent: #34D399;
  --category-personal: rgba(168, 85, 247, 0.08);
  --category-personal-accent: #C084FC;

  /* Status Colors */
  --status-new: #9CA3AF;
  --status-new-bg: rgba(156, 163, 175, 0.15);
  --status-in-progress: #A78BFA;
  --status-in-progress-bg: rgba(167, 139, 250, 0.15);
  --status-achieved: #34D399;
  --status-achieved-bg: rgba(52, 211, 153, 0.15);

  /* General measurements */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --header-height: 84px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-space);
  color: var(--text-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
  outline: none;
}

button {
  color: inherit;
}

/* Skip Link */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--surface-white);
  transform: translateY(-150%);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--primary-hover);
  outline-offset: 3px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* Liquid Background Elements */
.liquid-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  mix-blend-mode: screen;
}

.blob-1 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0) 70%);
  width: 60vw;
  height: 60vw;
  top: -20vw;
  right: -10vw;
  animation: floatBlob1 25s infinite alternate ease-in-out;
}

.blob-2 {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 70%);
  width: 50vw;
  height: 50vw;
  bottom: 10vw;
  left: -15vw;
  animation: floatBlob2 20s infinite alternate ease-in-out;
}

.blob-3 {
  background: radial-gradient(circle, rgba(217, 70, 239, 0.18) 0%, rgba(217, 70, 239, 0) 70%);
  width: 45vw;
  height: 45vw;
  top: 40vh;
  right: 15vw;
  animation: floatBlob3 30s infinite alternate ease-in-out;
}

.blob-4 {
  background: radial-gradient(circle, rgba(253, 224, 71, 0.08) 0%, rgba(253, 224, 71, 0) 70%);
  width: 30vw;
  height: 30vw;
  top: 10vh;
  left: 20vw;
  animation: floatBlob1 18s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(8vw, 5vh) scale(1.1) rotate(120deg); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1.1) rotate(0deg); }
  100% { transform: translate(-5vw, -8vh) scale(0.9) rotate(-90deg); }
}

@keyframes floatBlob3 {
  0% { transform: translate(0, 0) scale(0.9) rotate(0deg); }
  100% { transform: translate(6vw, -4vh) scale(1.05) rotate(180deg); }
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--surface-white);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 70px auto;
  font-size: 1.15rem;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  color: var(--surface-white);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s ease-in-out;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--surface-white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.download-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--surface-white);
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.download-btn:hover {
  background: rgba(25, 25, 40, 0.85);
  border-color: var(--primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.download-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.download-btn .btn-text span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.65;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 24px 0;
}

header.scrolled {
  background-color: rgba(5, 5, 12, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--surface-white);
  letter-spacing: -0.5px;
}

.logo img,
.logo svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  animation: logoTwinkle 4s infinite ease-in-out;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--surface-white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

nav ul a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

nav ul a:hover, nav ul a.active {
  color: var(--primary-hover);
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 14px;
  font-size: 0.9rem;
}

nav ul a.btn-primary.active {
  color: var(--surface-white);
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  text-shadow: none;
}

/* Hero Section */
.hero-section {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.75) 70%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.hero-content h1 span {
  background: linear-gradient(135deg, #A855F7 0%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary-hover);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-mockup-wrapper {
  position: relative;
  max-width: 410px;
  width: 100%;
  animation: floatHero 6s infinite ease-in-out;
  z-index: 10;
}

.hero-mockup-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0) 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.hero-mockup img {
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
  border: 8px solid rgba(255, 255, 255, 0.05);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-proof span {
  padding: 8px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.hero-proof span:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  color: var(--surface-white);
}

/* Decorative stars in Hero */
.deco-star {
  position: absolute;
  color: var(--primary-hover);
  opacity: 0.4;
  animation: floatAnim 5s infinite ease-in-out;
}

.deco-star-1 { top: 5%; left: -8%; font-size: 28px; animation-delay: 0s; }
.deco-star-2 { bottom: 12%; right: -8%; font-size: 36px; animation-delay: 1.8s; color: var(--star-gold); }
.deco-star-3 { top: 35%; right: 40%; font-size: 20px; animation-delay: 0.9s; }

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 28px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.1);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--surface-white);
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Interactive Vision Board Preview */
.board-preview {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dream-preview-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}

.dream-preview-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.dream-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-pill {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-pill {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dream-preview-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--surface-white);
}

.dream-preview-progress {
  margin-top: auto;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.progress-track {
  height: 6px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, #A78BFA 100%);
  border-radius: 99px;
  transition: width 1s ease-in-out;
}

/* Category Colors in Glass Cards */
.dream-home { background-color: var(--category-home); border-color: rgba(139, 92, 246, 0.15); }
.dream-home .category-pill { background-color: rgba(139, 92, 246, 0.15); color: var(--category-home-accent); }
.dream-home:hover { border-color: var(--category-home-accent); box-shadow: 0 0 15px rgba(139, 92, 246, 0.15); }

.dream-travel { background-color: var(--category-travel); border-color: rgba(14, 165, 233, 0.15); }
.dream-travel .category-pill { background-color: rgba(14, 165, 233, 0.15); color: var(--category-travel-accent); }
.dream-travel:hover { border-color: var(--category-travel-accent); box-shadow: 0 0 15px rgba(14, 165, 233, 0.15); }

.dream-money { background-color: var(--category-money); border-color: rgba(245, 158, 11, 0.15); }
.dream-money .category-pill { background-color: rgba(245, 158, 11, 0.15); color: var(--category-money-accent); }
.dream-money:hover { border-color: var(--category-money-accent); box-shadow: 0 0 15px rgba(245, 158, 11, 0.15); }

.dream-health { background-color: var(--category-health); border-color: rgba(16, 185, 129, 0.15); }
.dream-health .category-pill { background-color: rgba(16, 185, 129, 0.15); color: var(--category-health-accent); }
.dream-health:hover { border-color: var(--category-health-accent); box-shadow: 0 0 15px rgba(16, 185, 129, 0.15); }

/* Status Badges */
.status-new { color: var(--status-new); background-color: var(--status-new-bg); }
.status-progress { color: var(--status-in-progress); background-color: var(--status-in-progress-bg); }
.status-done { color: var(--status-achieved); background-color: var(--status-achieved-bg); }

/* Guided Pact Section */
.pact-section {
  position: relative;
}

.pact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.pact-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pact-step-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  box-shadow: var(--glass-shadow);
}

.pact-step-item.active {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15), var(--glass-shadow);
  transform: translateX(8px);
}

.pact-step-item:hover:not(.active) {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateX(4px);
}

.pact-step-number {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
  transition: var(--transition);
}

.pact-step-item.active .pact-step-number {
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  color: var(--surface-white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.pact-step-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--surface-white);
}

.pact-step-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Dynamic Wizard Display */
.pact-display-container {
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.7) 0%, rgba(5, 5, 10, 0.9) 100%);
  color: var(--sky-text);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: calc(var(--header-height) + 40px);
  overflow: hidden;
}

.pact-display-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 60%);
  pointer-events: none;
}

.pact-display-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 28px;
  z-index: 1;
}

.pact-display-header span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-hover);
  font-weight: 700;
}

.pact-display-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.pact-display-content h3 {
  font-size: 1.85rem;
  margin-bottom: 16px;
  color: var(--surface-white);
  letter-spacing: -0.5px;
}

.pact-display-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pact-display-footer {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.pact-display-footer svg {
  width: 18px;
  height: 18px;
  color: var(--star-gold-strong);
  filter: drop-shadow(0 0 6px var(--star-gold-strong));
}

/* Sky Simulator Section */
.sky-simulator-section {
  position: relative;
}

.sky-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.sky-simulator-control {
  background: rgba(15, 15, 30, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}

.sky-simulator-control h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--surface-white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary-hover);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.form-group input[aria-invalid="true"] {
  border-color: #EF4444;
}

.input-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.form-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #F87171;
  font-size: 0.78rem;
  font-weight: 500;
}

.category-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.category-option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px;
  color: var(--sky-text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.category-option-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
}

.category-option-btn.selected {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--primary-hover);
  color: var(--surface-white);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.category-option-btn .emoji {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.sky-status {
  min-height: 20px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Canvas / Sky Display */
.sky-display-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  background-color: var(--sky-surface);
  border-radius: 32px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8), var(--shadow-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

#sky-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stars-interactive-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Constellation Interactive Elements */
.star-element {
  position: absolute;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  border: 0;
  background: transparent;
}

.star-element::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--star-gold);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.5;
  transition: var(--transition);
}

.star-element:hover::before {
  width: 32px;
  height: 32px;
  background-color: var(--star-gold-strong);
  opacity: 0.95;
  filter: blur(6px);
}

.star-element svg {
  width: 26px;
  height: 26px;
  color: var(--star-gold-strong);
  z-index: 2;
  transition: var(--transition);
  filter: drop-shadow(0 0 4px rgba(253, 224, 71, 0.5));
}

.star-element:hover svg {
  transform: scale(1.25);
  color: #fff;
  filter: drop-shadow(0 0 8px #fff);
}

.star-element.polar-star-sim {
  width: 72px;
  height: 72px;
}

.star-element.polar-star-sim::before {
  width: 36px;
  height: 36px;
  background-color: var(--star-gold-strong);
  filter: blur(8px);
  opacity: 0.75;
  animation: polarGlow 3s infinite alternate ease-in-out;
}

.star-element.polar-star-sim svg {
  width: 42px;
  height: 42px;
  color: var(--star-gold-strong);
  filter: drop-shadow(0 0 10px var(--star-gold-strong));
}

.star-element-emoji {
  position: absolute;
  font-size: 0.8rem;
  z-index: 3;
  display: none;
  background: #0f0f22;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.star-element:hover .star-element-emoji {
  display: flex;
}

/* Tooltip */
.star-tooltip {
  position: absolute;
  background: rgba(10, 10, 25, 0.95);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 10;
  display: none;
  transform: translate(-50%, -130%);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  white-space: nowrap;
}

.star-element:hover + .star-tooltip,
.star-element:focus-visible + .star-tooltip {
  display: block;
}

.instruction-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 5, 12, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--sky-text-muted);
  pointer-events: none;
  z-index: 3;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Pricing Section */
.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.05);
}

.pricing-card.featured:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, rgba(139, 92, 246, 0.01) 100%);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1), var(--glass-shadow);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

.pricing-card:not(.featured)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--glass-border), rgba(255, 255, 255, 0.15));
}

.pricing-badge {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-hover);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.price {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--surface-white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.price-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-charcoal);
}

.pricing-features li svg {
  color: var(--status-achieved);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.4));
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* Footer */
footer {
  background-color: var(--bg-space-dark);
  color: var(--text-muted);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.65rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.footer-brand h3 img,
.footer-brand h3 svg {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links ul a,
.footer-link-button {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links ul a:hover,
.footer-link-button:hover {
  color: var(--primary-hover);
  padding-left: 4px;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}

.qevuno-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.qevuno-badge .separator {
  color: rgba(255, 255, 255, 0.15);
}

.qevuno-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--surface-white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.qevuno-link:hover {
  opacity: 0.85;
  transform: translateY(-0.5px);
}

.qevuno-logo {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  display: inline-block;
}

.qevuno-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Dialogs / Modals */
.site-dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--text-charcoal);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.site-dialog::backdrop {
  background: rgba(3, 3, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dialog-card {
  position: relative;
  overflow-y: auto;
  padding: 48px;
  border: 1px solid var(--glass-border-hover);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20, 20, 35, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.dialog-card h2 {
  margin: 12px 0 20px;
  text-align: left;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}

.dialog-card p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.dialog-card a:not(.btn) {
  color: var(--primary-hover);
  font-weight: 600;
}

.dialog-kicker {
  color: var(--primary-hover);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: var(--transition);
}

.dialog-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--surface-white);
  transform: rotate(90deg);
}

/* Legal pages */
.legal-page header {
  position: fixed;
}

.legal-main {
  position: relative;
  z-index: 5;
}

.legal-hero {
  padding: 170px 0 72px;
}

.legal-hero-shell {
  max-width: 860px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

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

.legal-section {
  padding: 0 0 110px;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.legal-note {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
  box-shadow: var(--glass-shadow);
}

.legal-note strong {
  display: block;
  margin-bottom: 14px;
  color: var(--surface-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}

.legal-note p {
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.legal-note a,
.legal-copy a,
.footer-inline-links a {
  color: var(--primary-hover);
  font-weight: 700;
}

.legal-copy {
  padding: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20, 20, 35, 0.72) 0%, rgba(9, 9, 18, 0.86) 100%);
  box-shadow: var(--glass-shadow);
}

.legal-copy section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-copy h2,
.legal-copy h3 {
  text-align: left;
  -webkit-text-fill-color: currentColor;
  background: none;
}

.legal-copy h2 {
  margin-bottom: 16px;
  color: var(--surface-white);
  font-size: 1.45rem;
}

.legal-copy h3 {
  margin: 22px 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-copy p + p,
.legal-copy ul + p {
  margin-top: 16px;
}

.legal-copy ul {
  margin: 18px 0 0 20px;
}

.legal-copy li + li {
  margin-top: 10px;
}

.legal-footer-bottom {
  padding-top: 0;
  border-top: 0;
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Animations */
@keyframes polarGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; }
  100% { transform: translate(-50%, -50%) scale(1.18); opacity: 0.95; }
}

@keyframes logoTwinkle {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--primary)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 10px var(--primary-hover)); }
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
  .hero-grid { gap: 50px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .board-preview { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .legal-shell { grid-template-columns: 1fr; }
  .legal-note { position: static; }
}

@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
  header { padding: 18px 0; }
  
  :root { --header-height: 76px; }

  .nav-toggle { display: block; }

  header nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: block;
    padding: 20px;
    border: 1px solid var(--glass-border-hover);
    border-radius: 20px;
    background: rgba(10, 10, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  header nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  nav ul a {
    display: flex;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
  }
  
  nav ul a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-cta { margin-top: 8px; }

  .legal-page header nav {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .legal-page nav ul {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .legal-page nav ul a {
    padding: 10px 12px;
    background: transparent;
  }

  .legal-page nav ul li:not(:last-child) {
    display: none;
  }

  .legal-hero {
    padding: 130px 0 52px;
  }

  .legal-copy {
    padding: 32px 24px;
    border-radius: var(--radius-md);
  }

  .legal-footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .footer-inline-links {
    justify-content: center;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-mockup-wrapper {
    max-width: 360px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .download-badges {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .pact-display-container {
    min-height: 320px;
    padding: 36px;
    position: relative;
    top: auto;
  }

  .pact-step-text p { display: none; }

  .pact-steps-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pact-step-item {
    align-items: center;
    padding: 14px;
    gap: 12px;
  }
  
  .pact-step-item.active {
    transform: translateY(-2px);
  }
  
  .sky-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sky-display-wrapper {
    aspect-ratio: 1.2 / 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  h2 { font-size: 1.95rem; }
  .section-subtitle { margin-bottom: 50px; font-size: 1rem; }
  .hero-section { padding-top: 120px; padding-bottom: 60px; }
  .hero-mockup img { border-radius: 30px; }
  .features-grid { gap: 20px; }
  .feature-card { padding: 36px 28px; }
  .board-preview { grid-template-columns: 1fr; }
  .pact-step-text h4 { font-size: 0.92rem; }
  .pact-display-container { padding: 32px 24px; }
  .pact-display-header { align-items: flex-start; gap: 12px; flex-direction: column; }
  .pact-display-header span:last-child { text-align: left; }
  .sky-simulator-control { padding: 28px 20px; }
  .category-selection-grid { grid-template-columns: repeat(2, 1fr); }
  .sky-display-wrapper { aspect-ratio: 0.95 / 1; border-radius: 24px; }
  .instruction-overlay { width: calc(100% - 32px); justify-content: center; text-align: center; font-size: 0.72rem; }
  .pricing-card { padding: 48px 24px; }
  .price { font-size: 3.2rem; }
  .dialog-card { padding: 40px 24px; }
  .dialog-card h2 { font-size: 1.85rem; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
