/* speekto.me Premium Minimalist Design System */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-canvas: #ffffee;          /* Warm Cream */
  --bg-card: #fffdf9;            /* Near White */
  --bg-dark: #034f46;            /* Deep Forest Green */
  --color-text-dark: #1a1a1a;    /* Dark Charcoal */
  --color-text-light: #ffffee;
  --color-btn-primary: #f0d7ff;  /* Pastel Lavender */
  --color-btn-secondary: #ffffee;
  --color-btn-accent: #d1fae5;   /* Pastel Mint */
  --border-thickness: 2px;
  --border-color: #1a1a1a;
  --border-flat: var(--border-thickness) solid var(--border-color);
  
  --radius-card: 40px;
  --radius-btn: 12px;
  --radius-pill: 24px;
}

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

body {
  background-color: var(--bg-canvas);
  color: var(--color-text-dark);
  font-family: 'Figtree', 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography Hierarchy */
h1, h2, h3, h4, .nav-logo {
  font-family: 'Figtree', sans-serif;
  color: var(--color-text-dark);
}

h1 {
  font-size: 92px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2.5px;
}

h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.7);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-flat);
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.25s ease;
}

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.8px;
}

.logo-dot {
  color: var(--bg-dark);
  font-size: 28px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-item a {
  color: rgba(26, 26, 26, 0.6);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-item a:hover, .nav-item.active a {
  color: var(--color-text-dark);
}

/* Dynamic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: var(--border-flat);
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.15s ease;
  user-select: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--color-btn-primary);
  color: var(--color-text-dark);
}

.btn-primary:hover {
  background-color: #e5bfff; /* Slightly darker lavender on hover */
}

.btn-secondary {
  background-color: var(--color-btn-secondary);
  color: var(--color-text-dark);
}

.btn-secondary:hover {
  background-color: #f7f7e6;
}

.btn-accent {
  background-color: var(--color-btn-accent);
  color: var(--color-text-dark);
}

.btn-accent:hover {
  background-color: #bbf7d0;
}

/* Page Layout Section */
.hero {
  min-height: 100vh;
  padding: 160px 6% 80px 6%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* OS Availability Badges */
.os-badge-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.os-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(26, 26, 26, 0.4);
}

.os-badges {
  display: flex;
  gap: 8px;
}

.os-badge {
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  color: rgba(26, 26, 26, 0.7);
}

/* Interactive Soundwave Visualization (Minimalist Outline) */
.hero-visualizer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}

.wave-container {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: var(--border-flat);
  background: var(--bg-card);
  border-radius: 50%;
}

.wave-center {
  width: 80px;
  height: 80px;
  background: var(--color-btn-primary);
  border: var(--border-flat);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.wave-center:hover {
  transform: scale(1.05);
}

.wave-bars {
  position: absolute;
  width: 70%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.wave-bar {
  width: 3px;
  height: 15px;
  background: var(--color-text-dark);
  border-radius: 1px;
  animation: staticWave 1.4s infinite ease-in-out alternate;
}

@keyframes staticWave {
  0% { transform: scaleY(0.7); }
  100% { transform: scaleY(2.2); }
}

/* Feature Showcase Grid Section */
.features-grid-section {
  padding: 100px 6%;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.grid-card {
  background: var(--bg-card);
  border: var(--border-flat);
  border-radius: var(--radius-card);
  padding: 48px;
  text-align: left;
  transition: border-color 0.15s ease;
}

.grid-card:hover {
  border-color: rgba(26, 26, 26, 0.4);
}

.card-num {
  font-size: 64px;
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 24px;
}

.grid-card h3 {
  margin-bottom: 12px;
}

.grid-card p {
  font-size: 15px;
}

/* Testimonial Quote Grid */
.testimonials-section {
  padding: 80px 6%;
  max-width: 1240px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: var(--border-flat);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 30px;
}

.testimonial-card p {
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content Page templates (About, Privacy, Terms) */
.editorial-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 6% 100px 6%;
  min-height: 80vh;
}

.editorial-container h1 {
  font-size: 64px;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.editorial-container h2 {
  font-size: 32px;
  margin: 48px 0 16px 0;
  letter-spacing: -0.8px;
}

.editorial-container p {
  font-size: 16.5px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.editorial-container ul {
  list-style: square;
  padding-left: 24px;
  margin-bottom: 24px;
  color: rgba(26, 26, 26, 0.7);
}

.editorial-container li {
  margin-bottom: 8px;
}

/* Pricing Page Overhauls */
.pricing-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 160px 6% 100px 6%;
  text-align: center;
  min-height: 80vh;
}

.pricing-wrapper h1 {
  margin-bottom: 16px;
}

.pricing-wrapper .subtitle {
  font-size: 18px;
  margin-bottom: 60px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.flat-pricing-card {
  background: var(--bg-card);
  border: var(--border-flat);
  border-radius: var(--radius-card);
  padding: 60px 48px;
  width: 440px;
  text-align: left;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--color-btn-accent);
  border: var(--border-flat);
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.flat-pricing-card h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.price-title-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 36px;
}

.currency {
  font-size: 32px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  margin-right: 4px;
}

.amount {
  font-size: 80px;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.period {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.5);
  margin-left: 8px;
}

.plan-features-header {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 48px;
}

.pricing-features-list li {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features-list li::before {
  content: '→';
  color: var(--color-text-dark);
  font-weight: bold;
}

.btn-pricing-cta {
  width: 100%;
  padding: 16px;
}

/* Deep Forest Green Bottom CTA & Footer */
.cta-banner {
  background-color: var(--bg-dark);
  color: var(--color-text-light);
  border-top: var(--border-flat);
  border-bottom: var(--border-flat);
  padding: 120px 6%;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-text-light);
  font-size: 64px;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.cta-banner p {
  color: rgba(255, 255, 238, 0.7);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background-color: var(--color-btn-secondary);
  border-color: var(--color-text-light);
  color: var(--color-text-dark);
}

.cta-banner .btn:hover {
  background-color: #f2f2e1;
}

/* Footer Section */
.footer {
  background: var(--bg-canvas);
  padding: 60px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.5);
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-nav a {
  color: rgba(26, 26, 26, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--color-text-dark);
}

.synaptican-link {
  color: var(--color-text-dark);
  text-decoration: underline;
  font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  h1 { font-size: 60px; letter-spacing: -1.5px; }
  h2 { font-size: 36px; }
  
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .os-badge-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .flat-pricing-card {
    width: 100%;
    max-width: 440px;
  }
  
  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* Sleek Desktop Client Mockup (WISPR style) */
.client-mockup {
  background: var(--bg-card);
  border: var(--border-flat);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.mockup-header {
  background: #f7f7e6;
  border-bottom: var(--border-flat);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  background: var(--color-text-dark);
  border-radius: 50%;
  opacity: 0.3;
}

.mockup-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(26,26,26,0.5);
}

.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed rgba(26,26,26,0.1);
  padding-bottom: 16px;
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-btn-primary);
  border: var(--border-flat);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mockup-profile-text h4 {
  font-size: 15px;
  font-weight: 600;
}

.mockup-profile-text p {
  font-size: 12px;
  color: rgba(26,26,26,0.5);
}

.mockup-card {
  background: var(--bg-canvas);
  border: var(--border-flat);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-card-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-dark);
  margin-bottom: 4px;
}

.mockup-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}

.badge-active {
  background: var(--color-btn-accent);
  border: 1px solid var(--color-text-dark);
  padding: 1px 8px;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

.mockup-progress-bg {
  width: 100%;
  height: 5px;
  background: rgba(26,26,26,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.mockup-progress-fill {
  height: 100%;
  background: var(--color-text-dark);
  border-radius: 3px;
}

/* Comparison Table Styling */
.comparison-section {
  padding: 100px 6%;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: var(--bg-card);
  border: var(--border-flat);
  border-radius: 24px;
  overflow: hidden;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.comparison-table th {
  background: #f7f7e6;
  font-weight: 600;
  font-size: 15px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td {
  font-size: 14.5px;
}

.text-highlight-green {
  color: #0f766e;
  font-weight: 600;
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 100px 6%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(26,26,26,0.1);
  padding: 24px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.faq-answer {
  font-size: 15px;
  color: rgba(26,26,26,0.7);
  line-height: 1.6;
}

