:root {
  --ink-900: #0b1220;
  --ink-800: #111827;
  --ink-700: #1f2937;
  --ink-500: #475569;
  --ink-300: #cbd5f5;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --surface-dark: #0f172a;
  --accent: #0ea5a4;
  --accent-2: #f59e0b;
  --accent-3: #0ea5e9;
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.16);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body.marketing-body {
  font-family: "Manrope", "Segoe UI", "Noto Sans", sans-serif;
  color: var(--ink-900);
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 164, 0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(245, 158, 11, 0.12), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 40%, #ffffff 100%);
}

body.marketing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Manrope", "Segoe UI", serif;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.marketing-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5a4, #0ea5e9);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: var(--ink-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-500);
}

.nav-links a {
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink-900);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-btn,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: var(--ink-900);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.ghost-link {
  color: var(--ink-700);
}

.ghost-link:hover {
  color: var(--ink-900);
}

.marketing-main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 164, 0.12);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.8rem);
  line-height: 1.05;
}

.hero-text {
  color: var(--ink-500);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.secondary-btn {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--ink-900);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  font-size: 20px;
  display: block;
}

.hero-panel {
  background: var(--surface);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-panel .panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.3);
}

.hero-panel .panel-row:last-child {
  border-bottom: none;
}

.hero-panel .panel-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--ink-700);
  font-weight: 600;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--ink-500);
}

.section-title {
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 620px;
  color: var(--ink-500);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-md);
  min-height: 200px;
}

.feature-card h3 {
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--ink-500);
  margin: 0;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.split-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--ink-500);
}

.split-list li {
  display: flex;
  gap: 10px;
}

.split-list span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 7px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.step-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.step-card .step-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.price-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-md);
}

.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(14, 165, 164, 0.18);
}

.price-card h3 {
  margin-bottom: 8px;
}

.price-tag {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  color: var(--ink-500);
}

.cta-band {
  margin-top: 56px;
  background: linear-gradient(120deg, #0f172a, #111827);
  color: #ffffff;
  border-radius: 28px;
  padding: 32px;
  display: grid;
  gap: 16px;
}

.cta-band .primary-btn {
  background: #ffffff;
  color: #111827;
}

.marketing-footer {
  background: var(--surface-dark);
  color: #e2e8f0;
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  font-size: 14px;
}

.footer-links a {
  color: #cbd5f5;
  display: block;
  margin-bottom: 6px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-cta p {
  color: #cbd5f5;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 32px;
  padding: 18px 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
