/* ==========================================================================
   Soaper Website - Luxurious Artisanal Design
   A premium, feature-rich marketing site for the #1 soap making app
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors - Clean, Professional, Calm */
  --color-cream: #F8FAFC;
  --color-cream-dark: #F1F5F9;
  --color-ivory: #FFFFFF;

  /* Primary - Muted Slate Blue */
  --color-primary: #3B5998;
  --color-primary-light: #4A6FB5;
  --color-primary-lighter: #6B8DD1;
  --color-primary-pale: #E8EEF7;

  /* Accent - Soft Teal */
  --color-accent: #5B9AA0;
  --color-accent-light: #A3CDD1;
  --color-accent-dark: #3D7A80;

  /* Neutrals */
  --color-text: #1A1A1A;
  --color-text-secondary: #5C5C5C;
  --color-text-muted: #8A8A8A;
  --color-border: #E8E4DE;
  --color-border-light: #F0ECE6;

  /* Status Colors */
  --color-success: #4A9B7F;
  --color-warning: #E9B44C;
  --color-error: #D64550;
  --color-info: #5B9AA0;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --max-width-content: 720px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(59, 89, 152, 0.06);
  --shadow-md: 0 4px 12px rgba(59, 89, 152, 0.1);
  --shadow-lg: 0 12px 32px rgba(59, 89, 152, 0.12);
  --shadow-xl: 0 24px 48px rgba(59, 89, 152, 0.15);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-slower: 600ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   Animated Background
   -------------------------------------------------------------------------- */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 89, 152, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(91, 154, 160, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 50% 60% at 70% 80%, rgba(59, 89, 152, 0.04) 0%, transparent 50%),
    var(--color-cream);
  pointer-events: none;
  z-index: -1;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* --------------------------------------------------------------------------
   Skip Link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: var(--text-sm);
}

.skip-link:focus {
  top: var(--space-4);
  color: white;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 89, 152, 0.08);
  transition: all var(--transition-base);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: white !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--color-primary-light);
  color: white !important;
  transform: translateY(-1px);
}

.nav-cta.disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
}

.nav-cta.disabled:hover {
  background: var(--color-text-muted);
  transform: none;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) var(--space-6) var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary-pale);
  color: var(--color-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-accent {
  color: var(--color-primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.platform-icons {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.platform-icons .divider {
  color: var(--color-text-muted);
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.15;
}

.hero-app-showcase {
  position: relative;
}

.hero-icon {
  width: 300px;
  height: 300px;
  border-radius: 64px;
  box-shadow: var(--shadow-xl);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary-pale) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  animation: bounce 2s infinite 1s;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 89, 152, 0.3);
}

.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 89, 152, 0.35);
}

.btn-primary:disabled {
  cursor: not-allowed;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% { left: 100%; }
}

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

.btn-ghost:hover {
  background: var(--color-primary);
  color: white;
}

.btn-cta {
  background: white;
  color: var(--color-primary);
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
  box-shadow: var(--shadow-lg);
}

.btn-cta:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--color-primary);
}

.btn-cta:disabled {
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
  padding: var(--space-20) 0;
  background: var(--color-ivory);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.stat-detail {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: var(--max-width-content);
  margin: 0 auto var(--space-16);
}

.section-header.light {
  color: white;
}

.section-header.light h2 {
  color: white;
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.8);
}

.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-4);
}

.section-header.light .section-tag {
  color: var(--color-accent-light);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-header h2 em {
  font-style: italic;
  color: var(--color-primary);
}

.section-header.light h2 em {
  color: var(--color-accent-light);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features-section {
  padding: var(--space-24) 0;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.feature-block.feature-right .feature-visual {
  order: -1;
}

.feature-content {
  max-width: 520px;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--color-primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.feature-content > p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Feature Visuals */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.calculation-preview {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--color-border);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.calc-row:last-child {
  border-bottom: none;
}

.calc-row.highlight {
  background: var(--color-primary-pale);
  margin: var(--space-4) calc(var(--space-4) * -1) calc(var(--space-4) * -1);
  padding: var(--space-4);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.calc-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.calc-value {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.oil-grid-preview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  max-width: 400px;
  justify-content: center;
}

.oil-chip {
  background: white;
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.oil-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.oil-chip:last-child {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.pdf-preview {
  perspective: 1000px;
}

.pdf-doc {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  width: 240px;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-base);
}

.pdf-doc:hover {
  transform: rotateY(0) rotateX(0);
}

.pdf-header {
  height: 24px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.pdf-line {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  margin-bottom: var(--space-2);
}

.pdf-line.w-80 { width: 80%; }
.pdf-line.w-70 { width: 70%; }
.pdf-line.w-60 { width: 60%; }
.pdf-line.w-50 { width: 50%; }
.pdf-line.w-90 { width: 90%; }

.pdf-spacer {
  height: var(--space-4);
}

/* --------------------------------------------------------------------------
   Blend Lab Section
   -------------------------------------------------------------------------- */
.blend-lab-section {
  position: relative;
  padding: var(--space-24) 0;
  background: var(--color-primary);
  overflow: hidden;
}

.blend-lab-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(74, 111, 181, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(91, 154, 160, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.blend-lab-section .container {
  position: relative;
  z-index: 1;
}

.metrics-showcase {
  margin-bottom: var(--space-16);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.metric-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.metric-card h5 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-2);
}

.metric-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Blend Lab Features */
.blend-lab-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.bl-feature {
  text-align: center;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bl-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.bl-feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.bl-feature h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-3);
}

.bl-feature p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Batch Section
   -------------------------------------------------------------------------- */
.batch-section {
  padding: var(--space-24) 0;
  background: var(--color-cream);
}

.batch-modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.batch-mode {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition-base);
}

.batch-mode:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mode-badge {
  position: absolute;
  top: calc(var(--space-6) * -1);
  left: var(--space-8);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.batch-mode.advanced .mode-badge {
  background: var(--color-accent-dark);
}

.batch-mode h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.mode-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.phase-list {
  margin-bottom: var(--space-6);
  counter-reset: none;
}

.phase-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

.phase-list li:last-child {
  border-bottom: none;
}

.phase-list li span {
  width: 24px;
  height: 24px;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  flex-shrink: 0;
}

.batch-mode.advanced .phase-list li span {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.mode-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mode-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.mode-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 600;
}

/* Shared Features */
.batch-shared-features {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.shared-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.shared-feature svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Inventory Section
   -------------------------------------------------------------------------- */
.inventory-section {
  padding: var(--space-24) 0;
  background: var(--color-ivory);
  border-top: 1px solid var(--color-border-light);
}

.inventory-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.inventory-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.inventory-text > p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.inventory-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.inventory-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.inventory-features li svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.inventory-features li div {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.inventory-features li strong {
  font-size: var(--text-base);
  color: var(--color-text);
}

.inventory-features li span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Inventory Visual */
.inventory-visual {
  display: flex;
  justify-content: center;
}

.inventory-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
  border: 1px solid var(--color-border);
}

.inv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
}

.inv-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
}

.inv-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.inv-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.inv-item:last-of-type {
  border-bottom: none;
}

.inv-name {
  font-size: var(--text-sm);
  color: var(--color-text);
}

.inv-qty {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.inv-qty.good {
  background: var(--color-primary-pale);
  color: var(--color-primary);
}

.inv-qty.low {
  background: #FEF3C7;
  color: #D97706;
}

.inv-qty.out {
  background: #FEE2E2;
  color: #DC2626;
}

.inv-alert {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: #FEF3C7;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: #D97706;
}

.inv-alert svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Sync Section
   -------------------------------------------------------------------------- */
.sync-section {
  padding: var(--space-16) 0;
  background: var(--color-cream);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.sync-content {
  text-align: center;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

.sync-icon {
  width: 64px;
  height: 64px;
  stroke: var(--color-primary);
  margin: 0 auto var(--space-5);
}

.sync-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.sync-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.sync-devices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sync-dot {
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Premium Section
   -------------------------------------------------------------------------- */
.premium-section {
  padding: var(--space-24) 0;
  background: var(--color-cream);
}

.premium-comparison {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.premium-tier {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--color-border);
  position: relative;
}

.premium-tier.premium {
  border-color: var(--color-primary);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}

.premium-badge {
  position: absolute;
  top: calc(var(--space-5) * -1);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.premium-tier h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  text-align: center;
}

.tier-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-6);
}

.tier-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.pricing-option {
  text-align: center;
}

.pricing-option .price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-primary);
}

.pricing-option .period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-option.highlighted {
  background: var(--color-primary-pale);
  padding: var(--space-4);
  border-radius: var(--radius-md);
}

.pricing-option .savings {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-success);
  margin-top: var(--space-1);
}

.pricing-divider {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.tier-features {
  margin-bottom: var(--space-6);
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li.included {
  color: var(--color-text);
}

.tier-features li.included::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 600;
}

.tier-features li.included.highlight {
  font-weight: 500;
}

.tier-features li.excluded {
  color: var(--color-text-muted);
}

.tier-features li.excluded::before {
  content: '—';
  color: var(--color-text-muted);
}

.trial-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.trial-note strong {
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.cta-content h2 span {
  font-style: italic;
  color: var(--color-accent-light);
}

.cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #1A1D23;
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-4);
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-4);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-column a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-platforms {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-trademark {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--space-2);
}

/* App Store Badge */
.app-store-badge {
  display: inline-block;
  transition: opacity var(--transition-fast);
}

.app-store-badge:hover {
  opacity: 0.85;
}

.app-store-badge img {
  display: block;
  height: 56px;
  width: auto;
}

.hero-cta .btn-ghost {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  border-width: 1.5px;
}

.hero-cta .app-store-badge img {
  height: 56px;
}

.cta-content .app-store-badge img {
  height: 60px;
}

/* --------------------------------------------------------------------------
   Legal Pages (preserved from original)
   -------------------------------------------------------------------------- */
.legal-page {
  padding: var(--space-32) 0 var(--space-24);
}

.legal-header {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.legal-meta {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.legal-content {
  line-height: 1.8;
  max-width: var(--max-width-content);
}

.legal-content h2 {
  font-family: var(--font-display);
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  font-size: var(--text-xl);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-6);
}

.legal-content ul,
.legal-content ol {
  padding-left: var(--space-8);
}

.legal-content li {
  margin-bottom: var(--space-2);
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

/* Info Boxes */
.warning-box {
  background: #FEF2F2;
  border: 2px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.warning-box h3 {
  color: var(--color-error);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.info-box {
  background: var(--color-primary-pale);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.info-box h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.summary-box {
  background: #ECFDF5;
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.summary-box h3 {
  color: var(--color-success);
  margin-bottom: var(--space-4);
}

/* Support Page */
.support-page {
  padding: var(--space-32) 0 var(--space-24);
  text-align: center;
}

.support-page h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.support-card {
  background: var(--color-ivory);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-12);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.support-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.support-email {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.support-email a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.support-email a:hover {
  color: var(--color-primary-light);
}

.support-response {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

/* Support Topics */
.support-topics {
  text-align: left;
  margin-bottom: var(--space-12);
}

.support-topics h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  text-align: center;
}

.support-topic {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  transition: all var(--transition-fast);
}

.support-topic:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.support-topic span:first-child {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.support-topic span:nth-child(2) {
  flex: 1;
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 500;
}

.support-topic a {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 500;
  white-space: nowrap;
}

.support-topic a:hover {
  color: var(--color-primary-light);
}

/* Text utilities */
.text-secondary {
  color: var(--color-text-secondary);
}

/* FAQ Section */
.faq-section {
  margin-top: var(--space-16);
  text-align: left;
}

.faq-section h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-8);
}

.faq-item {
  background: var(--color-cream-dark);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.faq-item:last-of-type {
  margin-bottom: 0;
}

.faq-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.faq-item p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

.faq-item p a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.faq-item p a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* FAQ Warning/Safety Box */
.faq-warning {
  background: #FEF2F2;
  border: 1px solid var(--color-error);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-top: var(--space-6);
}

.faq-warning h4 {
  color: var(--color-error);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.faq-warning p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

.faq-warning p a {
  color: var(--color-error);
  font-weight: 500;
  text-decoration: none;
}

.faq-warning p a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blend-lab-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .feature-block.feature-right .feature-visual {
    order: 0;
  }

  .feature-content {
    max-width: none;
  }

  .batch-modes {
    grid-template-columns: 1fr;
  }

  .inventory-content {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .premium-comparison {
    grid-template-columns: 1fr;
  }

  .premium-tier.premium {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-4);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding-top: var(--space-24);
  }

  .hero-visual {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat-item {
    padding: var(--space-4);
  }

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

  .blend-lab-features {
    grid-template-columns: 1fr;
  }

  .batch-shared-features {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  /* Support Page - Tablet */
  .support-page {
    padding: var(--space-24) 0 var(--space-16);
  }

  .support-card {
    padding: var(--space-8);
    margin-bottom: var(--space-8);
  }

  .support-topic {
    flex-wrap: wrap;
  }

  .support-topic a {
    width: 100%;
    margin-top: var(--space-2);
    padding-left: calc(var(--text-xl) + var(--space-4));
  }

  .faq-section {
    margin-top: var(--space-12);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .tier-pricing {
    flex-direction: column;
  }

  .pricing-divider {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  /* Support Page - Mobile */
  .support-page {
    padding: var(--space-20) 0 var(--space-12);
  }

  .support-page h1 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
  }

  .container-narrow {
    padding: 0 var(--space-4);
  }

  .support-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
  }

  .support-card h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
  }

  .support-email {
    font-size: var(--text-lg);
  }

  .support-topics {
    margin-bottom: var(--space-8);
  }

  .support-topics h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
  }

  .support-topic {
    padding: var(--space-4);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .support-topic span:first-child {
    font-size: var(--text-lg);
  }

  .support-topic a {
    padding-left: 0;
    margin-top: var(--space-1);
  }

  .faq-section {
    margin-top: var(--space-10);
  }

  .faq-section h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
  }

  .faq-item {
    padding: var(--space-5);
    margin-bottom: var(--space-3);
  }

  .faq-item h4 {
    font-size: var(--text-sm);
  }

  .faq-item p {
    font-size: var(--text-xs);
  }

  .faq-warning {
    padding: var(--space-5);
  }
}

/* --------------------------------------------------------------------------
   Animations on Scroll (Optional Enhancement)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .stat-item,
  .feature-block,
  .metric-card,
  .batch-mode,
  .inventory-features li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .stat-item[data-delay="0"] { animation-delay: 0s; }
  .stat-item[data-delay="1"] { animation-delay: 0.1s; }
  .stat-item[data-delay="2"] { animation-delay: 0.2s; }
  .stat-item[data-delay="3"] { animation-delay: 0.3s; }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .hero-scroll-hint,
  .bg-gradient,
  .cta-section,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: var(--space-8) 0;
  }
}
