@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f3f7fb;
  --panel: rgba(255, 255, 255, 0.95);
  --border: #dfe6ef;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --sidebar: #071224;
  --success: #16a34a;
  --warning: #f59e0b;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.05);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 18%),
    linear-gradient(180deg, #eff5fb 0%, #f8fafc 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, 0.82);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
}

.header-inner {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 220px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav > a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.site-nav > a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}

.btn-lg {
  padding: 16px 22px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.hero {
  padding: 56px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.hero-text {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #334155;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  flex: 0 0 auto;
}

.hero-card {
  background: linear-gradient(135deg, #071224 0%, #0d1d39 100%);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.mini-window {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
  color: white;
}

.mini-window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mini-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mini-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
}

.mini-stat small {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-weight: 700;
}

.mini-stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.mini-stat span {
  color: #dbe7ff;
  font-size: 13px;
}

.mini-ticket {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
}

.mini-ticket strong {
  display: block;
  margin-bottom: 6px;
}

.mini-ticket p {
  margin: 0 0 10px;
  color: #dbe7ff;
  font-size: 14px;
}

.mini-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.badge.info {
  background: rgba(59, 130, 246, 0.22);
  color: #dbeafe;
}

.badge.warn {
  background: rgba(245, 158, 11, 0.24);
  color: #fef3c7;
}

.badge.success {
  background: rgba(34, 197, 94, 0.22);
  color: #dcfce7;
}

.section {
  padding: 34px 0;
}

.section-alt {
  background: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(223, 230, 239, 0.85);
  border-bottom: 1px solid rgba(223, 230, 239, 0.85);
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.value-card,
.price-card,
.cta-box {
  background: var(--panel);
  border: 1px solid rgba(223, 230, 239, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.body-text {
  color: var(--muted);
  line-height: 1.8;
}

.list-clean {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.8;
  font-weight: 700;
}

.value-card {
  padding: 24px;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.value-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 24px;
  text-align: center;
}

.price-card small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 52px;
  letter-spacing: -0.05em;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-3px);
}

.center-actions {
  text-align: center;
  margin-top: 22px;
}

.cta-section {
  padding-bottom: 56px;
}

.cta-box {
  padding: 34px;
  text-align: center;
  background: linear-gradient(135deg, #0d1d39 0%, #10264c 100%);
  color: white;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 0 auto 20px;
  max-width: 820px;
  color: #dbe7ff;
  line-height: 1.75;
}

.site-footer {
  border-top: 1px solid rgba(223, 230, 239, 0.9);
  background: rgba(255,255,255,0.72);
}

.footer-inner {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1220px) {
  .hero-grid,
  .feature-grid,
  .split-grid,
  .pricing-preview,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-head h2,
  .cta-box h2 {
    font-size: 36px;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .site-nav {
    width: 100%;
  }
}