:root {
  --bg: #f4f6fb;
  --bg-soft: #eef1f7;
  --panel: rgba(255, 255, 255, 0.85);
  --panel-strong: rgba(255, 255, 255, 0.95);
  --text: #1c2433;
  --muted: #5f6b7c;
  --accent: #14b88b;
  --accent-strong: #0e8f6d;
  --warning: #f2a94b;
  --danger: #ee5e5e;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: 0.01em;
}

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

.bg-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.22;
  z-index: 0;
}

.orb-1 {
  background: radial-gradient(circle, #d7f6ee 0%, rgba(215, 246, 238, 0) 70%);
  top: -160px;
  left: -80px;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(20, 184, 139, 0.12);
  color: var(--accent);
}

.brand-icon svg {
  width: 18px;
  height: 18px;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(20, 184, 139, 0.22);
}

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

.btn.ghost {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

main {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding-top: 10px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text);
}

.hero-metrics span {
  font-size: 0.85rem;
}

.hero-preview {
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.preview-header {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.chip.live {
  background: rgba(20, 184, 139, 0.18);
  color: var(--accent);
}

.chip.ghost {
  background: rgba(15, 23, 42, 0.08);
  color: var(--muted);
}

.preview-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.preview-row p {
  color: var(--text);
  margin-bottom: 4px;
}

.preview-row small {
  color: var(--muted);
}

.status {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 139, 0.18);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.status.paused {
  background: rgba(15, 23, 42, 0.08);
  color: var(--muted);
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px dashed rgba(15, 23, 42, 0.16);
}

.preview-footer strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}

.trust {
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.trust p {
  color: var(--text);
  font-weight: 600;
}

.trust-logos {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.7s ease both;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.workflow-steps {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.step span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(20, 184, 139, 0.18);
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.price-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
}

.price-card.highlight {
  border: 2px solid rgba(20, 184, 139, 0.35);
  box-shadow: 0 30px 60px rgba(20, 184, 139, 0.2);
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(20, 184, 139, 0.18);
  color: var(--accent-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  color: var(--text);
  font-weight: 600;
}

.price small {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card li {
  padding-left: 18px;
  position: relative;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.cta {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 139, 0.18),
    rgba(15, 23, 42, 0.06)
  );
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 8px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .trust {
    flex-direction: column;
    text-align: center;
  }

  .cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 20px;
  }

  main {
    padding-top: 48px;
    gap: 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .price-card.highlight {
    transform: none;
  }
}
