/* ===================================== */
/* 1. CSS VARIABLES & DESIGN TOKENS */
/* Minimalist Zen Design for ADHD Focus */
/* ===================================== */

:root {
  /* Color Palette - Warm Analog Aesthetic (ADHD-Optimized) */
    --primary: #5F9EA0;           /* Cadet Blue - calming, balanced, focused */
    --primary-light: #81B4B6;     /* Lighter teal for hover/interactions */
    --primary-dark: #3F6B6C;      /* Deep ocean blue for depth and headers */
    --primary-subtle: #EDF4F5;    /* Mist blue background - reduces eye strain */


  --accent: #C97A5F;            /* Soft terracotta - warm, inviting */
  --accent-light: #E09980;      /* Lighter terracotta */
  --accent-dark: #A86148;       /* Darker terracotta */
  --accent-subtle: #F5E8E3;     /* Very light terracotta */

  --secondary: #4A5F7A;         /* Deep blue - trust, calm */
  --secondary-light: #6B8099;   /* Lighter blue */
  --secondary-dark: #344152;    /* Darker blue */

  --background: #F5F3EF;        /* Warm cream - not stark white */
  --background-pure: #FFFDFB;   /* Off-white with warmth */
  --card-bg: #FFFDFB;           /* Card backgrounds */
  --paper: #FAF8F4;             /* Paper texture color */

  --text-primary: #2D3436;      /* Almost black but warmer */
  --text-secondary: #636E72;    /* Medium warm gray */
  --text-muted: #95A5A6;        /* Light warm gray */

  --success: #7A9671;           /* Sage green */
  --warning: #C97A5F;           /* Terracotta */
  --border: #E0DDD8;            /* Warm border */
  --shadow: rgba(45, 52, 54, 0.08); /* Warm shadow */
  --focus-ring: #7A9671;        /* Sage green focus */

  /* Typography - Inter (Modern, ADHD-friendly) + Poppins (Headlines) */
  --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; /* Modern, friendly headlines */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; /* Clean, readable body */

  --font-xs: 0.875rem;     /* 14px */
  --font-sm: 1rem;         /* 16px */
  --font-base: 1.125rem;   /* 18px - larger for ADHD readability */
  --font-lg: 1.25rem;      /* 20px */
  --font-xl: 1.5rem;       /* 24px */
  --font-2xl: 2rem;        /* 32px */
  --font-3xl: 2.5rem;      /* 40px */
  --font-4xl: 3rem;        /* 48px */
  --font-5xl: 3.5rem;      /* 56px */
  --font-6xl: 4.5rem;      /* 72px - bigger for impact */

  /* Spacing Scale - Compact and intentional */
  --space-xs: 0.5rem;      /* 8px */
  --space-sm: 1rem;        /* 16px */
  --space-md: 1.5rem;      /* 24px */
  --space-lg: 2rem;        /* 32px */
  --space-xl: 3rem;        /* 48px */
  --space-2xl: 4rem;       /* 64px */
  --space-3xl: 6rem;       /* 96px */
  --space-4xl: 8rem;       /* 128px */

  /* Transitions - Subtle and calm */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows - Paper-like, tactile feel */
  --shadow-paper-sm: 0 2px 4px rgba(91, 117, 83, 0.08), 0 1px 2px rgba(91, 117, 83, 0.04);
  --shadow-paper-md: 0 4px 8px rgba(91, 117, 83, 0.12), 0 2px 4px rgba(91, 117, 83, 0.06);
  --shadow-paper-lg: 0 8px 16px rgba(91, 117, 83, 0.14), 0 4px 8px rgba(91, 117, 83, 0.08);
  --shadow-paper-xl: 0 12px 24px rgba(91, 117, 83, 0.16), 0 6px 12px rgba(91, 117, 83, 0.10);

  /* Button press shadows */
  --shadow-raised: 0 4px 8px rgba(91, 117, 83, 0.15), 0 2px 4px rgba(91, 117, 83, 0.08), inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  --shadow-pressed: 0 1px 2px rgba(91, 117, 83, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.15);

  /* Border Radius - Soft and rounded */
  --radius-sm: 0.75rem;    /* 12px */
  --radius-md: 1rem;       /* 16px */
  --radius-lg: 1.5rem;     /* 24px */
  --radius-xl: 2rem;       /* 32px */
  --radius-2xl: 3rem;      /* 48px */
  --radius-full: 9999px;
}

/* ===================================== */
/* 2. RESET & BASE STYLES */
/* ===================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-base);
  line-height: 1.9; /* Extra generous for ADHD */
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle grain texture - analog warmth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
}

body > * {
  position: relative;
  z-index: 2;
}

/* Headers use rounded, friendly font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

/* ===================================== */
/* 3. LAYOUT UTILITIES */
/* ===================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section:nth-child(even) {
  background: var(--background-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: var(--font-3xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================== */
/* 4. COMPONENT STYLES */
/* ===================================== */

/* Buttons - Tactile, pressable, paper-like */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: var(--font-base);
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy easing */
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transform-style: preserve-3d;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-raised);
  border-color: var(--accent-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px) scale(1.02); /* Bounce up and grow */
  box-shadow: 0 6px 12px rgba(201, 122, 95, 0.3), 0 3px 6px rgba(201, 122, 95, 0.15);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98); /* Press down */
  box-shadow: var(--shadow-pressed);
}

/* Tactile glow effect on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: radial-gradient(circle, rgba(201, 122, 95, 0.3) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: -1;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: var(--paper);
  color: var(--text-primary);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-paper-sm);
}

.btn-secondary:hover {
  background: var(--background-pure);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-paper-md);
}

/* Cards - Paper/Sticky Note Aesthetic */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-paper-md);
  transition: all var(--transition-base);
  border: 1.5px solid var(--border);
  position: relative;
  transform: rotate(0deg); /* Allows for slight rotation */
}

/* Subtle paper texture on cards */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-md);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px) rotate(0.5deg); /* Slight lift and tilt */
  box-shadow: var(--shadow-paper-lg);
  border-color: var(--primary-light);
}

/* Sticky note variations */
.card.sticky-note {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%); /* Warm yellow */
  border-color: #F4E4B8;
}

.card.sticky-note-green {
  background: linear-gradient(135deg, var(--primary-subtle) 0%, #E8EDE7 100%);
  border-color: var(--primary-light);
}

.card.sticky-note-peach {
  background: linear-gradient(135deg, var(--accent-subtle) 0%, #F5E8E3 100%);
  border-color: var(--accent-light);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: var(--font-base);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  transition: all var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 127, 215, 0.08);
}

/* Form Messages */
.form-message {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
}

.form-message.success {
  background: rgba(16, 185, 129, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===================================== */
/* 5. NAVIGATION */
/* ===================================== */

.nav {
  position: sticky;
  top: 0;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.nav-links {
  display: none;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

/* ===================================== */
/* 6. HERO SECTION */
/* ===================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--background);
  padding: var(--space-3xl) 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--background-subtle);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 500;
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-light);
}

.hero-title {
  font-size: var(--font-4xl);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================== */
/* 7. HERO DEMO ANIMATION */
/* ===================================== */

/* Demo Container */
.hero-demo {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-light);
}

/* Input Field at Top */
.demo-input-container {
  position: relative;
  margin-bottom: var(--space-md);
}

.demo-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: var(--font-base);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--background);
  min-height: 60px;
  transition: all var(--transition-base);
}

.demo-input.typing {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 127, 215, 0.06);
}

.demo-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--primary);
  margin-left: 2px;
  animation: blink 1s infinite;
}

/* Processing Badge */
.processing-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--background-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  margin: var(--space-sm) auto;
  width: fit-content;
  opacity: 0;
  transform: scale(0.95);
  transition: all var(--transition-base);
}

.processing-badge.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--primary);
}

.processing-badge-icon {
  font-size: var(--font-lg);
  animation: sparkle 1.5s infinite;
}

.processing-badge-text {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--primary);
}

/* Connection Lines SVG Container */
.connection-lines {
  position: relative;
  width: 100%;
  height: 200px;
  margin: var(--space-md) 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.connection-lines.active {
  opacity: 1;
}

.connection-svg {
  width: 100%;
  height: 100%;
}

.connection-line {
  stroke: var(--primary);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease-out;
  opacity: 0.7;
}

.connection-line.main-line {
  transition: stroke-dashoffset 0.4s ease-out;
}

.connection-line.branch-line {
  transition: stroke-dashoffset 0.6s ease-out;
}

.split-node,
.end-node {
  fill: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.split-node.visible,
.end-node.visible {
  opacity: 0.8;
}

/* Output Cards Grid */
.output-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.output-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-slow);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.output-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.output-card.calendar { border-color: var(--success); }
.output-card.action-plan { border-color: var(--info); }
.output-card.reminder { border-color: var(--warning); }

.output-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.output-card-icon {
  font-size: var(--font-xl);
}

.output-card-title {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-primary);
}

.output-card-content {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: 1.6;
}

.output-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.output-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: var(--font-xs);
}

/* ===================================== */
/* 8. PROBLEM SECTION */
/* ===================================== */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.problem-card {
  text-align: center;
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.problem-title {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.problem-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================== */
/* 9. SOLUTION SECTION */
/* ===================================== */

.solution-steps {
  display: grid;
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.solution-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.solution-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.solution-step-title {
  font-size: var(--font-2xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.solution-step-description {
  color: var(--text-secondary);
  font-size: var(--font-lg);
  line-height: 1.7;
}

.solution-step-visual {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--font-sm);
  border: 2px dashed var(--border-medium);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================== */
/* 10. FEATURES SECTION */
/* ===================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--background-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid var(--border-light);
}

.feature-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================== */
/* 11. SMART CONFIGURATION SECTION */
/* ===================================== */

.config-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.config-card {
  position: relative;
  overflow: hidden;
}

.config-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  opacity: 0.6;
}

.config-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.config-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.config-description {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.config-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.config-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm);
  background: var(--background);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.config-item:hover {
  background: var(--background-subtle);
}

.config-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--font-sm);
  flex-shrink: 0;
}

.config-value {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  text-align: right;
}

.config-example-box {
  background: var(--background-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.config-example-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.config-example-icon {
  font-size: var(--font-2xl);
}

.config-example-title {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.config-example-text {
  font-size: var(--font-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: var(--space-sm) 0;
}

.config-example-text strong {
  color: var(--primary);
  font-weight: 600;
}

.config-arrow {
  font-size: var(--font-3xl);
  color: var(--primary);
  margin: var(--space-md) 0;
  opacity: 0.6;
}

/* ===================================== */
/* 12. DIFFERENTIATORS SECTION */
/* ===================================== */

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.diff-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.diff-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.diff-content {
  flex: 1;
}

.diff-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.diff-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================== */
/* 13. BLOG SECTION - ADHD INSIGHTS */
/* ===================================== */

.blog-section {
  background: var(--background-pure) !important;
}

.blog-section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.blog-section-subtitle {
  font-size: var(--font-base);
  color: var(--text-secondary);
  margin: var(--space-sm) auto 0;
  max-width: 600px;
  line-height: 1.6;
}

.blog-zen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.blog-zen-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Paper texture */
.blog-zen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.blog-zen-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-paper-lg);
  border-color: var(--primary);
}

.blog-zen-card-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.blog-zen-date {
  font-size: var(--font-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-subtle);
  border-radius: var(--radius-full);
  width: fit-content;
}

.blog-zen-title {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-display);
}

.blog-zen-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
}

.blog-zen-link:hover {
  color: var(--primary);
}

.blog-zen-excerpt {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-zen-card-footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.blog-zen-read-more {
  font-size: var(--font-sm);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-fast);
}

.blog-zen-read-more:hover {
  color: var(--accent-dark);
  gap: var(--space-sm);
}

.blog-zen-arrow {
  transition: transform var(--transition-fast);
}

.blog-zen-read-more:hover .blog-zen-arrow {
  transform: translateX(4px);
}

/* Placeholder when no posts */
.blog-zen-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--primary-subtle);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
}

.blog-zen-placeholder-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.blog-zen-placeholder-text {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-family: var(--font-display);
}

.blog-zen-placeholder-subtext {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.blog-zen-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ===================================== */
/* 14. WAITLIST SECTION */
/* ===================================== */

.waitlist-section {
  background: var(--primary);
  color: white;
  text-align: center;
}

.waitlist-title {
  font-size: var(--font-3xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white;
  letter-spacing: -0.02em;
}

.waitlist-subtitle {
  font-size: var(--font-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.waitlist-input {
  flex: 1;
  min-width: 250px;
}

.waitlist-btn {
  background: white;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

.waitlist-btn:hover {
  background: var(--background-subtle);
}

.waitlist-benefits {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.waitlist-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-sm);
  opacity: 0.9;
}

/* ===================================== */
/* 14. FOOTER */
/* ===================================== */

.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.footer-logo {
  font-size: var(--font-xl);
  font-weight: 700;
  color: white;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: var(--font-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--font-sm);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: var(--font-sm);
}

/* ===================================== */
/* 15. ANIMATIONS & KEYFRAMES */
/* ===================================== */

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

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

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

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

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

@keyframes sparkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ===================================== */
/* 16. RESPONSIVE DESIGN */
/* ===================================== */

/* Tablet: 768px+ */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-content {
    text-align: left;
  }

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

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .connection-lines {
    height: 180px;
  }

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

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

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

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

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

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--font-5xl);
    letter-spacing: -0.03em;
  }

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

  .solution-step {
    grid-template-columns: 1fr 1fr;
  }

  .solution-step:nth-child(even) .solution-step-content {
    order: 2;
  }

  .solution-step:nth-child(even) .solution-step-visual {
    order: 1;
  }

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

/* ===================================== */
/* 17. ACCESSIBILITY */
/* ===================================== */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
.btn:focus,
.form-input:focus,
.nav-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


/* ===================================== */
/* ZEN MINIMALIST DESIGN SYSTEM */
/* Massive White Space & ADHD-Focused */
/* ===================================== */

/* Containers */
.container-zen {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-zen-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ZEN NAVIGATION - Warm Paper Aesthetic */
.zen-nav {
  padding: var(--space-lg) 0;
  background: var(--paper);
  border-bottom: 1.5px solid var(--border);
  box-shadow: var(--shadow-paper-sm);
}

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

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

.nav-zen-logo {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-fast);
}

.nav-zen-logo-image {
  width: 28px;
  height: 28px;
  transition: transform var(--transition-fast);
}

.nav-zen-logo:hover .nav-zen-logo-image {
  transform: translateY(-2px);
}

.nav-zen-link {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy! */
  font-family: var(--font-display);
  font-weight: 500;
}

.nav-zen-link:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-paper-sm);
}

.nav-zen-link.nav-zen-cta {
  background-color: var(--accent);
  color: white;
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
}

.nav-zen-link.nav-zen-cta:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

/* ZEN HERO SECTION - Warm Gradient */
.hero-zen {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--background-pure) 0%, var(--primary-subtle) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric accent - warm sage green */
.hero-zen::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 117, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-zen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  min-height: 70vh;
}

.hero-zen-text {
  position: relative;
  z-index: 1;
}

.hero-zen-animation {
  position: relative;
  z-index: 1;
}

.hero-zen-title {
  font-size: var(--font-4xl);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 var(--space-md) 0;
  position: relative;
}

/* Subtle accent line */
.hero-zen-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-top: var(--space-md);
  border-radius: 2px;
}

.hero-zen-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
}

.hero-zen-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.hero-zen-note {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin: var(--space-sm) 0 0 0;
  line-height: 1.6;
}

/* ===================================== */
/* BUTTON STYLES - ZEN THEME */
/* ===================================== */

.btn-zen-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-base);
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent-dark);
  box-shadow: var(--shadow-raised);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-align: center;
}

.btn-zen-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(201, 122, 95, 0.3), 0 3px 6px rgba(201, 122, 95, 0.15);
}

.btn-zen-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-pressed);
}

.btn-zen-secondary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-base);
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  border-radius: var(--radius-full);
  background: var(--paper);
  color: var(--text-primary);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-paper-sm);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-align: center;
}

.btn-zen-secondary:hover {
  background: var(--background-pure);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-paper-md);
}

/* ========================================= */
/* DROPPLY VISUAL ANIMATION - Complete Story */
/* Shows: Focus → Distraction → Capture → Organize → Back to Focus */
/* ========================================= */

.dropply-visual-animation {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 650px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-paper-lg);
  overflow: hidden;
}

/* ZEN WAITLIST */
.waitlist-zen-title {
  font-size: var(--font-3xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.02em;
}

.waitlist-zen-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  margin: 0 0 var(--space-xl) 0;
}

.waitlist-zen-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 400px;
  margin: 0 auto;
  align-items: stretch;
}

.waitlist-zen-input {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-base);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy! */
  box-shadow: var(--shadow-paper-sm);
}

.waitlist-zen-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 122, 95, 0.1), var(--shadow-paper-sm);
  transform: translateY(-1px);
}

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

.form-zen-message {
  margin-top: var(--space-sm);
  font-size: var(--font-sm);
  display: none;
}

/* ZEN FOOTER - Warm Paper */
.footer-zen {
  padding: var(--space-xl) 0;
  border-top: 1.5px solid var(--border);
  background: var(--paper);
}

.footer-zen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer-zen-brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-zen-logo-image {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.footer-zen-text {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

.footer-zen-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-zen-link {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-family: var(--font-display);
}

.footer-zen-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.footer-zen-separator {
  color: var(--text-muted);
  user-select: none;
}

/* ===================================== */
/* GENERAL SECTION STYLES */
/* ===================================== */

.section-zen {
  padding: var(--space-4xl) 0;
  background: var(--background);
}

.section-zen-title {
  font-size: var(--font-3xl);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.section-zen-subtitle {
  font-size: var(--font-base);
  color: var(--text-secondary);
  text-align: center;
  margin: 0 auto var(--space-2xl);
  max-width: 600px;
  line-height: 1.6;
}

.section-zen-final {
  padding: var(--space-4xl) 0;
  background: var(--primary-subtle);
  text-align: center;
}

/* ===================================== */
/* PROBLEM/AGITATE SECTION */
/* ===================================== */

.problem-section {
  background: var(--background-pure) !important;
}

.problem-zen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
  text-align: left;
}

.problem-zen-card {
  padding: var(--space-lg);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
}

/* Paper texture */
.problem-zen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.problem-zen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-paper-md);
  border-color: var(--accent);
}

.problem-zen-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.problem-zen-title {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-family: var(--font-display);
}

.problem-zen-description {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* ===================================== */
/* FEATURES SECTION */
/* ===================================== */

.features-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--primary-subtle) 100%) !important;
}

.features-zen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-zen-card {
  padding: var(--space-xl);
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-md);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Paper texture */
.feature-zen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* Subtle gradient accent on hover */
.feature-zen-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 300ms ease;
}

.feature-zen-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-paper-xl);
  border-color: var(--primary-light);
}

.feature-zen-card:hover::after {
  opacity: 1;
}

/* Highlight cards for core features */
.feature-zen-card.feature-highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--card-bg) 100%);
}

.feature-zen-card.feature-highlight:hover {
  border-color: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(95, 158, 160, 0.2), 0 6px 12px rgba(95, 158, 160, 0.1);
}

.feature-zen-icon {
  font-size: 3rem;
  margin: 0 auto var(--space-md);
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-zen-card:hover .feature-zen-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-zen-title {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.feature-zen-description {
  font-size: var(--font-base);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===================================== */
/* HOW IT WORKS / STEPS SECTION */
/* ===================================== */

.steps-zen {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
}

.step-zen {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
}

/* Paper texture */
.step-zen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.step-zen:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-paper-md);
  border-color: var(--accent);
}

.step-zen-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
  z-index: 1;
}

.step-zen-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-zen-title {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs) 0;
  font-family: var(--font-display);
}

.step-zen-description {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* ===================================== */
/* TESTIMONIALS SECTION */
/* ===================================== */

.testimonials-section {
  background: var(--accent-subtle) !important;
}

.testimonials-subtitle {
  text-align: center;
  font-size: var(--font-base);
  color: var(--text-secondary);
  margin: calc(var(--space-md) * -1) auto var(--space-xl);
  max-width: 600px;
}

.testimonials-zen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-zen-card {
  padding: var(--space-xl);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Paper texture */
.testimonial-zen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.testimonial-zen-card:hover {
  transform: translateY(-4px) rotate(0.3deg);
  box-shadow: var(--shadow-paper-md);
  border-color: var(--accent);
}

.testimonial-rating {
  font-size: var(--font-base);
  color: var(--accent);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: var(--font-base);
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-paper-sm);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.testimonial-role {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

/* ===================================== */
/* FAQ SECTION */
/* ===================================== */

.faq-section {
  background: var(--primary-subtle) !important;
}

.faq-zen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
  text-align: left;
}

.faq-zen-item {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 200ms ease;
  cursor: pointer;
  box-shadow: var(--shadow-paper-sm);
  position: relative;
}

/* Paper texture */
.faq-zen-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-md);
  pointer-events: none;
}

.faq-zen-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-paper-md);
}

.faq-zen-item[open] {
  border-color: var(--primary);
  background: var(--primary-subtle);
}

.faq-zen-question {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.faq-zen-question::after {
  content: '+';
  font-size: var(--font-xl);
  color: var(--primary);
  font-weight: 400;
  transition: transform 200ms ease;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-zen-item[open] .faq-zen-question::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-zen-question::-webkit-details-marker {
  display: none;
}

.faq-zen-answer {
  padding-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.faq-zen-answer p {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 767px) {
  .dropply-concept-animation {
    max-width: 100%;
    min-height: 500px;
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .brain-focus-box {
    padding: var(--space-md);
  }

  .brain-icon {
    font-size: 2.5rem;
  }

  .focus-box-content {
    font-size: var(--font-sm);
  }

  .thought-popup {
    font-size: 0.65rem;
    padding: 0.375rem 0.625rem;
  }

  .arrow-icon {
    font-size: 2rem;
  }

  .dump-text {
    font-size: 0.75rem;
  }

  .dropply-name {
    font-size: var(--font-base);
  }

  .activity-text {
    font-size: 0.75rem;
  }

  .result-text {
    font-size: var(--font-xs);
  }
}

/* RESPONSIVE - TABLET */
@media (min-width: 768px) {
  .hero-zen-title {
    font-size: var(--font-5xl);
  }

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

  .waitlist-zen-form {
    flex-direction: row;
    max-width: 500px;
  }

  .waitlist-zen-input {
    flex: 1;
  }

  .footer-zen-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .blog-zen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

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

/* RESPONSIVE - DESKTOP */
@media (min-width: 1024px) {
  .container-zen {
    max-width: 800px;
  }

  /* Side-by-side hero layout */
  .hero-zen-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 80vh;
  }

  .hero-zen-title {
    font-size: var(--font-6xl);
  }

  .hero-zen-title::after {
    margin-top: var(--space-lg);
  }

  .features-zen-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }

  .blog-zen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
  }

  .blog-zen-card {
    min-height: 360px;
  }

  .dropply-concept-animation {
    max-width: 500px;
  }

  .steps-zen {
    max-width: 800px;
  }

  .problem-zen-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
  }

  .faq-zen-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
  }

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

/* ACCESSIBILITY - REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .dropply-concept-animation *,
  .dropply-concept-animation *::before,
  .dropply-concept-animation *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Show all elements immediately for reduced motion users */
  .brain-focus-box,
  .thought-popup,
  .dump-arrow,
  .dropply-inbox,
  .activity-item,
  .result-message {
    opacity: 1 !important;
    transform: none !important;
  }

  .brain-stress-indicator::after {
    width: 50% !important;
  }
}

/* ===================================== */
/* PRICING SECTION - LIFETIME DEAL */
/* ===================================== */

.pricing-zen-title {
  font-size: var(--font-3xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.02em;
}

.pricing-zen-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  margin: 0 0 var(--space-2xl) 0;
}

/* Pricing Card */
.pricing-card-zen {
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-paper-lg);
  text-align: center;
  position: relative;
}

/* Paper texture */
.pricing-card-zen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.pricing-badge-zen {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-paper-sm);
}

.pricing-amount-zen {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.pricing-currency-zen {
  font-size: var(--font-2xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-xs);
}

.pricing-price-zen {
  font-size: var(--font-6xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-display);
}

.pricing-description-zen {
  font-size: var(--font-base);
  color: var(--text-secondary);
  margin: 0 0 var(--space-xl) 0;
}

/* Features List */
.pricing-features-zen {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.pricing-feature-zen {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
}

.pricing-feature-icon-zen {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-sm);
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: var(--shadow-paper-sm);
}

.pricing-feature-text-zen {
  font-size: var(--font-sm);
  color: var(--text-primary);
  font-weight: 500;
}

/* Large CTA Button */
.btn-zen-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-lg);
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-md);
}

.pricing-note-zen {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin: 0;
}

/* Platform Status Grid */
.platform-status-zen {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
}

.platform-item-zen {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-sm);
  min-height: 72px;
}

.platform-item-zen:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-paper-md);
}

.platform-available-zen {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--paper) 100%);
}

.platform-icon-zen {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--text-primary);
  stroke-width: 1.5;
}

.platform-available-zen .platform-icon-zen {
  color: var(--primary);
}

.platform-content-zen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: var(--space-sm);
  min-width: 0; /* Important for text truncation */
}

.platform-name-zen {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

.platform-status-badge-zen {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  white-space: nowrap;
}

.platform-live-zen {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-paper-sm);
}

.platform-soon-zen {
  background: var(--background);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Responsive Pricing Section */
@media (max-width: 480px) {
  .platform-item-zen {
    padding: var(--space-md);
    min-height: 64px;
  }

  .platform-icon-zen {
    width: 24px;
    height: 24px;
  }

  .platform-name-zen {
    font-size: var(--font-sm);
  }

  .platform-status-badge-zen {
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .platform-status-zen {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .platform-status-zen {
    /*grid-template-columns: repeat(4, 1fr);*/
  }

  .pricing-zen-title {
    font-size: var(--font-4xl);
  }
}
