@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --panel: #eaf1ff;
  --text: #0f1f3d;
  --muted: #54627a;
  --primary: #2a7bff;
  --primary-strong: #1c5edb;
  --accent: #fdbb2d;
  --line: #d7e3f4;
  --shadow: 0 12px 30px rgba(26, 65, 143, 0.12);
}

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

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.atmosphere {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(42, 123, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(253, 187, 45, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(42, 123, 255, 0.06), rgba(255, 255, 255, 0));
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(42, 123, 255, 0.08);
}

.pill {
  border: 1px solid var(--line);
  color: var(--text);
  background: linear-gradient(120deg, rgba(42, 123, 255, 0.12), rgba(30, 94, 219, 0.12));
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 28px 0 12px;
}

.hero-text h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  margin: 10px 0 12px;
}

.hero-visual {
  align-self: center;
  justify-self: end;
  width: min(500px, 80vw);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-text .lede {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn {
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 32px rgba(30, 94, 219, 0.25);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

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

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.chip {
  padding: 8px 12px;
  background: #eaf1ff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  background: var(--panel) url('images/pattern.svg') center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.green { background: #2af598; }
.dot.amber { background: #fdbb2d; }
.dot.blue { background: #4fd1ff; }

.card-body {
  display: grid;
  gap: 14px;
}

.stat {
  background: #f5f8ff;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 14px;
}

.stat h3 {
  margin: 6px 0 4px;
  font-size: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: #05172a;
  font-weight: 700;
}

.badge.good { background: #2af598; }
.badge.neutral { background: #fdbb2d; }
.badge.info { background: #7dd3fc; }

.sparkline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  align-items: end;
  height: 64px;
}

.sparkline span {
  display: block;
  background: linear-gradient(180deg, #4fd1ff, #0a72ff);
  border-radius: 8px 8px 4px 4px;
}

.progress {
  width: 100%;
  height: 8px;
  background: #eaf1ff;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #0ee1aa, #4fd1ff);
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
}

.mini-row strong {
  display: block;
  color: var(--text);
}

.section {
  padding: 48px 0 16px;
}

.section-head {
  margin-bottom: 22px;
}

.section h2 {
  margin: 6px 0 8px;
  font-size: clamp(26px, 3vw, 36px);
}

.eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3ff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.lede {
  color: var(--muted);
  max-width: 620px;
}

.grid {
  display: grid;
  gap: 14px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.feature h3 {
  margin: 8px 0 6px;
}

.feature p {
  color: var(--muted);
  margin-bottom: 10px;
}

.feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.feature li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}

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

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(42, 123, 255, 0.12);
  font-size: 20px;
}

.ribbon {
  background: linear-gradient(145deg, rgba(42, 123, 255, 0.08), rgba(253, 187, 45, 0.08));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.step {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f5f8ff;
}

.step-no {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.metric {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f5f8ff;
}

.metric h3 {
  margin: 4px 0 8px;
  font-size: 32px;
}

.resources {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.resource {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.resource-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pill-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(42, 123, 255, 0.12);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.pill-tag.subtle {
  background: #eef3ff;
  color: var(--muted);
}

.resource p {
  color: var(--muted);
  margin: 0;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.resource-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-list li::before {
  content: '•';
  color: var(--primary);
}

.resource-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.resource .btn {
  padding: 10px 14px;
}

.resource.secondary {
  background: linear-gradient(135deg, rgba(42, 123, 255, 0.06), rgba(255, 255, 255, 0.1));
}

.chip.muted {
  background: #eef3ff;
  color: var(--muted);
  border-color: var(--line);
}

.cta {
  padding: 54px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(42, 123, 255, 0.1), rgba(30, 94, 219, 0.08));
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 123, 255, 0.15);
}

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

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  gap: 12px;
}

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

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

.section,
.hero-card,
.feature,
.metric,
.step {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

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

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

  .cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  header {
    padding: 16px 0;
  }

  .nav {
    padding: 10px 14px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
