/* ============================================
   Type Shifter Landing Page Styles
   Used by: public/index.html
   ============================================ */

/* OpenDyslexic font for the Dyslexic demo tab (same CDN the app uses) */
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/npm/open-dyslexic@1.0.3/woff/OpenDyslexic-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/npm/open-dyslexic@1.0.3/woff/OpenDyslexic-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #00ff00;
  --primary-dim: #00cc00;
  --secondary: #c084fc;
  --accent-cyan: #22d3ee;
  --accent-pink: #f472b6;
  --accent-orange: #fb923c;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --border: rgba(255,255,255,0.1);
  --gradient-main: linear-gradient(135deg, #22d3ee 0%, #c084fc 50%, #f472b6 100%);
  --gradient-button: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-app-btn {
  background: var(--bg-card);
  color: var(--accent-cyan) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid var(--accent-cyan);
  transition: all 0.2s;
}

.nav-app-btn:hover {
  background: var(--accent-cyan);
  color: #000 !important;
}

.nav-cta {
  background: var(--gradient-button);
  color: #000 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.08);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-button);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 255, 0, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
}

.hero-visual {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

/* Demo card sitting in the hero gets a deep shadow to feel like a hero asset */
.hero-visual .bionic-demo {
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.hero-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gradient-main);
  color: #000;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  animation: bounce 2s ease-in-out infinite;
}

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

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(192, 132, 252, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-icon.cyan { background: rgba(34, 211, 238, 0.15); }
.feature-icon.purple { background: rgba(192, 132, 252, 0.15); }
.feature-icon.pink { background: rgba(244, 114, 182, 0.15); }
.feature-icon.green { background: rgba(0, 255, 0, 0.15); }
.feature-icon.orange { background: rgba(251, 146, 60, 0.15); }
.feature-icon.blue { background: rgba(96, 165, 250, 0.15); }

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* 3-in-1 Pillars Section */
.pillars {
  padding: 6rem 2rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.4;
}

.pillars-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillars-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-read:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.12);
}

.pillar-format:hover {
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(192, 132, 252, 0.12);
}

.pillar-listen:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 20px 60px rgba(251, 146, 60, 0.12);
}

.pillar-export:hover {
  border-color: var(--accent-pink);
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.12);
}

.pillar-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pillar-read .pillar-badge { color: var(--accent-cyan); }
.pillar-format .pillar-badge { color: var(--secondary); }
.pillar-listen .pillar-badge { color: var(--accent-orange); }
.pillar-export .pillar-badge { color: var(--accent-pink); }

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
}

.pillar-read .pillar-icon {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.pillar-format .pillar-icon {
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.25);
}

.pillar-listen .pillar-icon {
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.25);
}

.pillar-export .pillar-icon {
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar-tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pillar-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}

.pillar-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.pillar-read .pillar-list li::before { color: var(--accent-cyan); }
.pillar-format .pillar-list li::before { color: var(--secondary); }
.pillar-listen .pillar-list li::before { color: var(--accent-orange); }
.pillar-export .pillar-list li::before { color: var(--accent-pink); }

/* Bionic Reading Section */
.bionic-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.bionic-container {
  max-width: 760px;
  margin: 0 auto;
}

.bionic-container .bionic-benefits {
  max-width: 640px;
  margin: 0 auto;
}

.bionic-container .bionic-benefits h2 {
  text-align: center;
}

.bionic-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.bionic-demo-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  border: none;
  line-height: 1;
}

.demo-tab.active {
  background: var(--secondary);
  color: #000;
}

.demo-tab:not(.active) {
  background: var(--bg-card-hover);
  color: var(--text-secondary);
}

.demo-tab:not(.active):hover {
  background: rgba(192, 132, 252, 0.15);
  color: var(--text-primary);
}

/* Demo view switching */
.demo-view {
  display: none;
}

.demo-view.active {
  display: block;
}

.demo-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

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

/* Standard Text view: plain, unenhanced reading */
.demo-text--standard {
  color: var(--text-secondary);
}

/* Dyslexic view: OpenDyslexic font with reading-friendly spacing */
.demo-text--dyslexic {
  font-family: 'OpenDyslexic', 'Inter', sans-serif;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  word-spacing: 0.08em;
  line-height: 1.9;
}

/* Format view: magazine-style preview to demonstrate Format Mode */
.demo-text--format {
  font-size: 1rem;
  line-height: 1.6;
}

.demo-format-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 0.75rem;
}

.demo-format-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.demo-format-byline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.demo-format-body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-secondary);
  line-height: 1.75;
}

.demo-format-dropcap {
  float: left;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 0.9;
  padding: 0.25rem 0.5rem 0 0;
  color: var(--accent-pink);
}

.bionic-benefits h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bionic-benefits h2 span {
  color: var(--secondary);
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 255, 0, 0.15);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-list li strong {
  color: var(--text-primary);
}

.benefit-list li span {
  color: var(--text-secondary);
}

/* Templates Section */
.templates {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.templates-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.template-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.template-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.template-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.template-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.template-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-button);
}

.pricing-badge {
  display: inline-block;
  background: var(--gradient-main);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-amount span {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.pricing-period {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.pricing-cta {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
}

.pricing-guarantee {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
}

.faq-answer p {
  padding: 0 1.5rem 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p:first-child {
  padding-top: 0;
}

.faq-answer p:last-child {
  padding-bottom: 1.5rem;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
}

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

.faq-answer strong {
  color: var(--text-primary);
}

/* CTA Section */
.cta {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 255, 0, 0.05) 100%);
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    margin: 0 auto 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

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

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

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

@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .pillars {
    padding: 4rem 1rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pillar-card {
    padding: 1.75rem 1.5rem;
  }

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

  .pricing-card {
    padding: 2rem;
  }

  .pricing-amount {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.25rem;
  }

  .nav-links.active a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
  }

  .nav-links.active a:last-child {
    border-bottom: none;
  }
}
