:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #eef2f5;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #5f6b7a;
  --accent: #22c55e;
  --accent-2: #16a34a;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --panel-bg: #0f1a14;
  --panel-text: #f8fafc;
  --panel-muted: #a7b0bd;
  --panel-border: rgba(34, 197, 94, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #eef2f5 60%, #e9edf2 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
}

body::before {
  background: rgba(34, 197, 94, 0.18);
  top: -160px;
  right: -120px;
}

body::after {
  background: rgba(15, 23, 42, 0.08);
  bottom: -220px;
  left: -160px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.logo img {
  height: 52px;
  width: 152px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

button {
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

button:active {
  transform: translateY(1px);
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06210f;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.25);
}

.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.ghost {
  background: transparent;
  color: var(--muted);
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 16px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #0b3d1f;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
}

.stat-grid strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
}

.hero-panel {
  background: var(--panel-bg);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid var(--panel-border);
  color: var(--panel-text);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.panel-header p {
  color: var(--panel-muted);
  font-size: 0.9rem;
}

.panel-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
  color: #b5f5cc;
  font-size: 0.8rem;
}

.panel-list {
  display: grid;
  gap: 16px;
}

.panel-item {
  display: flex;
  gap: 12px;
}

.panel-item p {
  color: var(--panel-muted);
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.panel-footer {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--panel-muted);
}

.panel-footer strong {
  display: block;
  color: var(--panel-text);
  margin-top: 4px;
}

.label {
  font-size: 0.85rem;
}

.logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.logos p {
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 700;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--surface-2);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.feature-card p {
  color: var(--muted);
  margin-top: 12px;
}

.ai-highlight {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.ai-highlight img {
  width: min(180px, 100%);
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.2));
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.step {
  font-size: 0.8rem;
  color: var(--accent-2);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.use-case-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.use-case {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.use-case strong {
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
  position: relative;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card.highlight {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.3);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--accent);
  color: #06210f;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

details {
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

details summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  margin-top: 10px;
}

.cta {
  padding: 60px 0 100px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.05));
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(34, 197, 94, 0.24);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--surface-2);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.hero-copy,
.hero-panel,
.features-grid .feature-card,
.pricing-grid .price-card {
  animation: fade-up 0.7s ease both;
}

.hero-panel {
  animation-delay: 0.15s;
}

.features-grid .feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.features-grid .feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.pricing-grid .price-card:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-panel {
    padding: 22px;
  }

  .cta-card {
    padding: 28px;
  }
}
