/* ═══════════════════════════════════════════════════════════════
   Niyojan — Brand Website Styles
   Font: Sora | Colors: Teal #00695C family
   ═══════════════════════════════════════════════════════════════ */

:root {
  --brand: #00695C;
  --brand-light: #00897B;
  --brand-dark: #004D40;
  --brand-50: #E0F2F1;
  --brand-100: #B2DFDB;
  --surface: #FAFBFC;
  --surface-warm: #FFFBF5;
  --text-primary: #1A2332;
  --text-secondary: #5C6976;
  --text-muted: #8A95A3;
  --border: #E3EAF0;
  --border-light: #F0F3F7;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ─────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--brand);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 24px 20px;
  gap: 16px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--white) 0%, var(--brand-50) 50%, var(--white) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--brand);
}

.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 60%; }

/* Split hero layout */
.hero-split {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-text .hero-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 105, 92, 0.15);
}

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

.hero-text .hero-subtitle {
  margin: 0 0 36px;
}

.hero-demo {
  flex-shrink: 0;
}

/* Phone frame mockup */
.phone-frame {
  width: 280px;
  height: 520px;
  background: var(--text-primary);
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 105, 92, 0.1);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--text-primary);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

/* Demo slides inside phone — recommendation screens */
.demo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 36px 16px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  overflow-y: auto;
}

.demo-slide.demo-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.demo-screen-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.demo-screen-header span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.demo-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-pill.replace { background: #FFEBEE; color: #C62828; }
.demo-pill.watch { background: #FFF8E1; color: #F57F17; }
.demo-pill.overlap { background: #E8EAF6; color: #283593; }
.demo-pill.ter { background: #FFF3E0; color: #E65100; }
.demo-pill.amc { background: #FCE4EC; color: #AD1457; }
.demo-pill.risk { background: #F3E5F5; color: #6A1B9A; }
.demo-pill.explore { background: #E0F2F1; color: #00695C; }

.demo-fund-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.demo-reason {
  font-size: 10px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.demo-metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.demo-m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  padding: 5px 8px;
  background: var(--surface);
  border-radius: 6px;
}

.demo-m span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.demo-m span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.demo-m .good { color: #2E7D32; }
.demo-m .bad { color: #C62828; }
.demo-m .warn { color: #F57F17; }

.demo-alts-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.demo-alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  padding: 6px 8px;
  background: var(--brand-50);
  border-radius: 6px;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.demo-alt .good {
  color: #2E7D32;
  font-weight: 600;
  font-size: 9px;
}

.demo-insight {
  font-size: 10px;
  line-height: 1.4;
  color: var(--brand);
  background: var(--brand-50);
  border-radius: 6px;
  padding: 8px 10px;
  font-weight: 500;
}

.demo-overlap-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.demo-overlap-bar span {
  font-size: 10px;
  font-weight: 600;
  color: #283593;
  white-space: nowrap;
}

.demo-ob-bg {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.demo-ob-fill {
  height: 100%;
  background: #283593;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  .hero-text .hero-cta {
    justify-content: center;
  }
  .hero-text .hero-subtitle {
    margin: 0 auto 36px;
  }
  .phone-frame {
    width: 240px;
    height: 440px;
  }
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 105, 92, 0.25);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 20px rgba(0, 105, 92, 0.35);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  background: var(--brand-50);
}

/* ── Sections ────────────────────────────────────────────────── */

.section {
  padding: 100px 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 48px;
  max-width: 800px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* ── Problem section ─────────────────────────────────────────── */

.section-problem {
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.problem-card:hover {
  border-color: var(--brand-100);
  box-shadow: 0 4px 24px rgba(0, 105, 92, 0.06);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── Features carousel ───────────────────────────────────────── */

.section-features {
  background: var(--white);
  padding: 80px 0;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 200%; /* 2 slides */
}

.carousel-slide {
  width: 50%; /* each slide = half of track = 100% of carousel */
  flex-shrink: 0;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  min-width: 0;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-width: 0;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--brand-100);
  box-shadow: 0 4px 24px rgba(0, 105, 92, 0.06);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--brand);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; }
}

/* ── How it works ────────────────────────────────────────────── */

.section-how {
  background: var(--brand-dark);
  color: var(--white);
}

.section-how .section-eyebrow {
  color: var(--brand-100);
}

.section-how .section-title {
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background 0.25s;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.step-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── Philosophy ──────────────────────────────────────────────── */

.section-philosophy {
  background: var(--surface-warm);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.philosophy-item {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
}

.philosophy-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.philosophy-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.philosophy-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* ── Data sources ────────────────────────────────────────────── */

.section-data {
  background: var(--white);
}

.data-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.data-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
}

.data-item:last-child {
  border-bottom: none;
}

.data-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 160px;
  flex-shrink: 0;
}

.data-source {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .data-item {
    flex-direction: column;
    gap: 4px;
  }
  .data-label { min-width: auto; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */

.section-faq {
  background: var(--surface);
}

.faq-list {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { color: var(--brand); }

.faq-item p {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Footer ──────────────────────────────────────────────────── */

.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-left {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.footer-right {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-left { max-width: 100%; }
  .footer-right { gap: 32px; flex-wrap: wrap; }
}

/* ── Animations ──────────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: var(--brand-100);
  color: var(--brand-dark);
}

/* ── Legal pages ─────────────────────────────────────────────── */

.legal-page {
  padding-top: 140px;
}

.legal-content {
  max-width: 720px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-content li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--brand);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

/* ═══════════════════════════════════════════════════════════════
   Mobile-first responsive overrides
   ═══════════════════════════════════════════════════════════════ */

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

  /* Hero */
  .hero { padding: 110px 0 60px; }
  .hero-split { gap: 36px; }
  .hero-text .hero-logo-img { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 16px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2px; margin-bottom: 14px; }
  .hero-title { font-size: 28px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 14px; line-height: 1.6; margin-bottom: 24px !important; }
  .hero-cta { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 13px; }
  .hero-note { font-size: 11px; margin-top: 20px; }
  .phone-frame { width: 220px; height: 400px; border-radius: 28px; padding: 10px; }
  .phone-notch { width: 80px; height: 20px; top: 10px; }
  .phone-screen { border-radius: 20px; }
  .demo-slide { padding: 30px 12px 12px; }
  .demo-fund-name { font-size: 12px; }
  .demo-reason { font-size: 9px; }
  .demo-m { font-size: 9px; padding: 4px 6px; }
  .demo-alt { font-size: 9px; padding: 5px 6px; }
  .demo-insight { font-size: 9px; padding: 6px 8px; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
  .section-title { font-size: 22px; margin-bottom: 28px; white-space: normal; }

  /* Problem */
  .problem-card { padding: 20px; }
  .problem-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .problem-card h3 { font-size: 15px; margin-bottom: 6px; }
  .problem-card p { font-size: 13px; }

  /* Features */
  .section-features { padding: 60px 0; }
  .feature-card { padding: 16px; }
  .feature-icon { width: 32px; height: 32px; margin-bottom: 10px; }
  .feature-card h3 { font-size: 14px; margin-bottom: 4px; }
  .feature-card p { font-size: 11px; -webkit-line-clamp: 3; line-clamp: 3; }
  .carousel-controls { margin-top: 24px; gap: 14px; }
  .carousel-btn { width: 36px; height: 36px; }

  /* How it works */
  .step-card { padding: 24px 20px; }
  .step-num { width: 34px; height: 34px; font-size: 14px; margin-bottom: 14px; }
  .step-card h3 { font-size: 15px; }
  .step-card p { font-size: 13px; }

  /* Philosophy */
  .philosophy-item { padding: 20px; }
  .philosophy-icon { width: 36px; height: 36px; margin-bottom: 12px; }
  .philosophy-item h3 { font-size: 15px; }
  .philosophy-item p { font-size: 13px; }

  /* Data */
  .data-label { font-size: 13px; }
  .data-source { font-size: 13px; }

  /* FAQ */
  .faq-item summary { font-size: 14px; padding: 16px 0; }
  .faq-item p { font-size: 13px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-right { gap: 24px; }
  .footer-col h4 { font-size: 11px; }
  .footer-col a { font-size: 13px; }
  .footer-bottom { margin-top: 32px; padding: 20px 0; }
  .footer-disclaimer { font-size: 11px; }
}

/* Tablet tweaks */
@media (min-width: 481px) and (max-width: 768px) {
  .hero { padding: 130px 0 80px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .section { padding: 80px 0; }
  .section-title { white-space: normal; font-size: 28px; }
  .problem-card { padding: 24px; }
  .feature-card { padding: 18px; }
}

/* Section title wrap on all mobile */
@media (max-width: 768px) {
  .section-title { white-space: normal; }
  .section-how .section-title { white-space: normal; }
}
