@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --brand-teal: #00cfc8;
  --brand-orange: #e66439;
  --brand-gold: #dbc078;
  --brand-dark: #0a0f1a;
  --brand-coral: #ec8766;
  --brand-deep: #d2481a;
  --brand-blue: #2a6bff;
  --bg: #0b1120;
  --bg-2: #111827;
  --panel: #1a2332;
  --muted: #94a3b8;
  --text: #f1f5f9;
  --accent: var(--brand-teal);
  --accent-2: var(--brand-coral);
  --success: #34d399;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

.landing-body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 12px;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
  box-shadow: 0 4px 16px rgba(0, 207, 200, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 6px 20px rgba(0, 207, 200, 0.35);
}

.btn.secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--muted);
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

.btn.ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO (Centered, no images)
   ═══════════════════════════════════════════════════════════════════════════ */

.hero--centered {
  text-align: center;
  padding: 64px 20px 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.hero--centered::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 207, 200, 0.12) 0%,
    rgba(42, 107, 255, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 12px;
}

.hero--centered h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.hero-badge::before {
  content: '✓';
  color: var(--success);
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.section {
  padding: 56px 0;
}

.section-header {
  margin-bottom: 36px;
}

.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  margin: 6px 0 12px;
  line-height: 1.2;
}

.section-lead {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VALUE PROPOSITION (Problem + Solution in one row)
   ═══════════════════════════════════════════════════════════════════════════ */

.value-prop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(230, 100, 57, 0.03), rgba(0, 207, 200, 0.03));
}

.value-prop__problem,
.value-prop__solution {
  padding: 0;
}

.value-prop__problem h2,
.value-prop__solution h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 8px 0 16px;
  line-height: 1.25;
}

.value-prop__stat {
  font-size: 14px;
  color: var(--brand-coral);
  margin: 0 0 20px;
  padding: 10px 14px;
  background: rgba(230, 100, 57, 0.08);
  border: 1px solid rgba(230, 100, 57, 0.2);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.problem-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(230, 100, 57, 0.12);
  color: var(--brand-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}

.problem-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.solution-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.solution-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon--teal {
  background: rgba(0, 207, 200, 0.12);
  color: var(--brand-teal);
}

.solution-icon--coral {
  background: rgba(236, 135, 102, 0.12);
  color: var(--brand-coral);
}

.solution-icon--gold {
  background: rgba(219, 192, 120, 0.12);
  color: var(--brand-gold);
}

.solution-icon--blue {
  background: rgba(42, 107, 255, 0.12);
  color: var(--brand-blue);
}

.solution-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.solution-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES (Full-width blocks with image + text)
   ═══════════════════════════════════════════════════════════════════════════ */

.features {
  background: linear-gradient(180deg, transparent, rgba(0, 207, 200, 0.03), transparent);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.25s ease;
}

.feature-block:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.feature-block--reverse {
  grid-template-columns: 1fr 1.1fr;
}

.feature-block--reverse .feature-block__img-wrap {
  order: 2;
}

.feature-block--reverse .feature-block__text {
  order: 1;
}

.feature-block__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-block__img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.feature-block__text {
  padding: 8px 0;
}

.feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 207, 200, 0.1);
  border: 1px solid rgba(0, 207, 200, 0.2);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.feature-block__text h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
}

.feature-block__text p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */

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

.testimonial-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
  margin: 3px 0 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-section {
  padding-bottom: 32px;
}

.cta-box {
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 207, 200, 0.08), rgba(42, 107, 255, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.cta-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: 400px;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.landing-footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}

.footer-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero--centered {
    padding: 60px 16px 48px;
  }

  .value-prop {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-block--reverse .feature-block__img-wrap,
  .feature-block--reverse .feature-block__text {
    order: unset;
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta-content p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .landing-wrapper {
    padding: 12px 16px 36px;
  }

  .landing-nav {
    padding: 8px 12px;
    position: static;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero--centered {
    padding: 40px 8px 36px;
  }

  .hero--centered h1 {
    font-size: 28px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 40px 0;
  }

  .feature-block {
    padding: 16px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .landing-footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
