:root {
  --bg: #041f1f;
  --bg-elevated: #062828;
  --surface: rgba(13, 58, 58, 0.45);
  --glass: rgba(45, 212, 191, 0.06);
  --border: rgba(45, 212, 191, 0.2);
  --text: #e6fffa;
  --muted: #7eb8b0;
  --accent: #2dd4bf;
  --accent-2: #5eead4;
  --gradient: linear-gradient(135deg, #0d9488, #2dd4bf);
  --radius: 20px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(4, 31, 31, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand em { font-style: normal; color: var(--accent); }
.nav { display: flex; gap: 1.75rem; margin-left: auto; }
.nav a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--accent); }
.menu-btn {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: 14px; background: var(--glass); backdrop-filter: blur(12px); cursor: pointer; margin-left: auto;
}
.menu-btn span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--text); border-radius: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.6rem; border-radius: 14px; font-weight: 600; font-size: 0.95rem;
  background: var(--gradient); color: #041f1f; border: none;
  box-shadow: 0 12px 32px rgba(45, 212, 191, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(45, 212, 191, 0.45); }
.btn--outline {
  background: var(--glass); backdrop-filter: blur(12px);
  color: var(--text); border: 1px solid var(--border); box-shadow: none;
}
.btn--outline:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn--small { padding: 0.6rem 1.15rem; font-size: 0.875rem; }
.btn--light { background: var(--accent); color: #041f1f; box-shadow: var(--shadow); }

.hero { position: relative; padding: 9rem 0 5rem; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% 0 auto;
  height: 75%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 0%, rgba(45, 212, 191, 0.22), transparent),
    radial-gradient(ellipse 40% 35% at 15% 50%, rgba(13, 148, 136, 0.15), transparent);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem; align-items: center;
}
.pill {
  display: inline-block; padding: 0.4rem 0.9rem; margin-bottom: 1.25rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: var(--glass); border: 1px solid var(--border);
  border-radius: 999px; backdrop-filter: blur(12px);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 700; line-height: 1.1; margin: 0 0 1.25rem; letter-spacing: -0.03em;
}
.hero__lead { font-size: 1.1rem; color: var(--muted); max-width: 32rem; margin: 0 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__panel { position: relative; min-height: 360px; }
.hero__ring {
  position: absolute; inset: 8%; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--glass); backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.metric-card {
  position: absolute; padding: 1.25rem 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.metric-card--alt { bottom: 15%; right: 0; }
.metric-card:first-child { top: 12%; left: 0; }
.metric-card__label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.35rem; }
.metric-card strong { font-size: 2rem; color: var(--accent); font-weight: 700; }

.stats { padding: 0 0 4rem; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat {
  padding: 1.75rem 1.25rem; text-align: center;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(16px);
  transition: border-color 0.25s, transform 0.25s;
}
.stat:hover { border-color: var(--accent); transform: translateY(-2px); }
.stat strong { display: block; font-size: 1.75rem; color: var(--accent); margin-bottom: 0.25rem; }
.stat span { font-size: 0.85rem; color: var(--muted); }

.section { padding: 5rem 0; }
.section-label {
  display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.02em;
}
.section-intro { max-width: 560px; margin-bottom: 2.5rem; }
.section-intro p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.section-intro--center { text-align: center; margin-inline: auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.split__body p { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.check-list li { padding-left: 1.75rem; position: relative; font-weight: 500; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 8px; height: 8px; border-radius: 4px; background: var(--accent);
}

.about {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.card-grid { display: grid; gap: 1.25rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  padding: 1.75rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(20px);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px); border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 20px 48px rgba(45, 212, 191, 0.12);
}
.feature-card__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(45, 212, 191, 0.12); border: 1px solid var(--border);
  border-radius: 14px; color: var(--accent); margin-bottom: 1.25rem;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.feature-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.timeline li {
  padding: 1.75rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(20px);
}
.timeline__step {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 1rem;
  padding: 0.25rem 0.6rem; background: rgba(45, 212, 191, 0.1); border-radius: 8px;
}
.timeline h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.timeline p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.benefits { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%); }
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.benefits__copy p { color: var(--muted); margin: 0; }
.benefits__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.benefits__list li {
  padding: 1.25rem 1.5rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(16px);
}
.benefits__list strong { display: block; margin-bottom: 0.25rem; }
.benefits__list span { font-size: 0.9rem; color: var(--muted); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; }
.chip-row span {
  padding: 0.55rem 1.15rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
  background: var(--glass); border: 1px solid var(--border); backdrop-filter: blur(12px);
}

.platform-bar {
  text-align: center; padding: 2.5rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(20px);
}
.platform-bar p { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.95rem; }

.insight-card {
  padding: 1.75rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(20px);
  border-top: 2px solid var(--accent);
}
.insight-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.insight-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.cta-band { padding: 5rem 0; }
.cta-band__inner {
  text-align: center; padding: 4rem 2rem; border-radius: calc(var(--radius) + 4px);
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  box-shadow: 0 0 80px rgba(45, 212, 191, 0.08);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; margin: 0 0 0.75rem; }
.cta-band p { color: var(--muted); max-width: 28rem; margin: 0 auto 1.75rem; }

.site-footer { padding: 2rem 0; border-top: 1px solid var(--border); }
.site-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.site-footer p { margin: 0; font-size: 0.85rem; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.12s; }

@media (max-width: 960px) {
  .hero__grid, .split, .benefits__grid { grid-template-columns: 1fr; }
  .hero__panel { min-height: 280px; order: -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3, .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav, .site-header .btn--small { display: none; }
  .menu-btn { display: block; }
  .site-header.is-open .nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 1.25rem; right: 1.25rem;
    padding: 1rem; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); backdrop-filter: blur(20px); margin-left: 0;
  }
  .card-grid--3, .timeline, .stats__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
}
