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

:root {
  --bg: #050b0f;
  --bg-soft: #0b141a;
  --card: #0e1b22;
  --border: rgba(148, 163, 184, 0.14);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #14b8a6;
  --accent-strong: #2dd4bf;
  --accent-warm: #fbbf24;
  --shadow: 0 20px 50px rgba(2, 8, 23, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.bg-orbs {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.28), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(5, 11, 15, 0.94), rgba(5, 11, 15, 0.98));
  z-index: -2;
}

.hero {
  padding: 32px 6vw 80px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
}

.brand-main {
  font-weight: 600;
  font-size: 20px;
}

.brand-accent {
  font-weight: 800;
  color: var(--accent);
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--accent);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  color: #041018;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn.primary:hover::before {
  left: 100%;
}

.btn.outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: rgba(20, 184, 166, 0.05);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(15, 23, 42, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.7rem);
  line-height: 1.15;
  margin: 18px 0;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-strong);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.highlight {
  color: var(--accent-strong);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 13px;
}

.hero-proof strong {
  display: block;
  font-size: 14px;
  color: #f8fafc;
}

.hero-proof span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.glass-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.4);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.mini-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.mini-card h4 {
  font-size: 13px;
  color: var(--muted);
}

.value {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0;
}

.tag {
  font-size: 12px;
  color: var(--muted);
}

.tag.up {
  color: var(--accent-strong);
}

.tag.warn {
  color: var(--accent-warm);
}

.floating-badge {
  position: absolute;
  right: -20px;
  top: 24px;
  background: var(--accent);
  color: #041018;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.floating-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

.section {
  padding: 72px 6vw;
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.pricing {
  position: relative;
}

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

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.18), rgba(14, 27, 34, 0.9));
  border-color: rgba(45, 212, 191, 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(20, 184, 166, 0.25);
  position: relative;
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent), #3b82f6, var(--accent));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

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

.plan-name {
  font-size: 18px;
  font-weight: 800;
}

.plan-tag {
  font-size: 12px;
  color: #041018;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;
}

.plan-price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.plan-alt {
  font-size: 13px;
  color: var(--muted);
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.plan-list li::before {
  content: '•';
  color: var(--accent-strong);
  margin-right: 8px;
}

.plan-note {
  font-size: 12px;
  color: var(--accent-warm);
}

.compare-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
}

.compare-row.head {
  background: rgba(20, 184, 166, 0.18);
  font-weight: 700;
}

.compare-row span:nth-child(n+2) {
  text-align: center;
  font-weight: 700;
}

.compare-row:last-child {
  border-bottom: none;
}

.cta-box {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-grid h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.faq-grid p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .compare-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .compare-row span:nth-child(n+2) {
    text-align: left;
  }

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section {
  padding: 70px 6vw;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.trust {
  padding-top: 0;
}

.trust-bar {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: rgba(15, 23, 42, 0.65);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.trust-bar strong {
  display: block;
  font-size: 16px;
}

.trust-bar span {
  color: var(--muted);
  font-size: 13px;
}

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

.feature-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card ul {
  margin-top: 12px;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.feature-card li::before {
  content: '•';
  color: var(--accent-strong);
  margin-right: 6px;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.5);
}

.highlight-card {
  border: 1px solid rgba(20, 184, 166, 0.6);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.showcase-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.showcase-panel {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.showcase-panel .line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.showcase-panel .bar {
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0;
}

.showcase-panel .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
}

.showcase-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.showcase-list strong {
  display: block;
}

.showcase-list span {
  color: var(--muted);
  font-size: 13px;
}

.payment-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.payment-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.cta {
  padding: 60px 6vw 90px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(56, 189, 248, 0.2));
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(20, 184, 166, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-grid h4 {
  margin-bottom: 10px;
}

.faq-grid p {
  color: var(--muted);
  font-size: 14px;
}

.feature-card,
.showcase-panel,
.payment-card,
.trust-bar,
.cta-box,
.faq-grid > div {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  color: var(--muted);
}

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

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

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .floating-badge {
    display: none;
  }
}
