/* ── Stemeta Global Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --dark:       #1a1b33;
  --dark-mid:   #1a1b33;
  --dark-deep:  #2d3757;
  --orange:     #f97316;
  --orange-lt:  #ffedd5;
  --purple:     #7c3aed;
  --purple-lt:  #ede9fe;
  --gem:        #a855f7;
  --green:      #22c55e;
  --gold:       #f59e0b;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --bg:         #fafaf9;
  --white:      #ffffff;
  --card-shadow: 0 2px 20px rgba(0,0,0,0.07);
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }

/* ── Layout ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,27,51,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; color: #fff;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--gem));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 16px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--orange); color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 20px; font-size: 14px; font-weight: 700;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(26,27,51,0.99);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
  padding: 10px 20px 18px;
}
.nav-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a.active { color: #fff; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav .nav-download { display: none !important; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-menu.open { display: block; }
  .nav-inner { padding: 0 18px; gap: 16px; }
  .nav-logo img { max-width: 190px; height: auto !important; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: var(--radius-sm);
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  transition: all 0.2s; cursor: pointer;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 30px rgba(249,115,22,0.35);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(249,115,22,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 17px 36px; font-size: 17px; }

/* ── Labels / Eyebrows ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow-purple { color: var(--purple); }

/* ── Section header ── */
.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px; color: var(--muted);
  max-width: 560px; line-height: 1.6;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 32px;
}

/* ── Progress bar ── */
.progress-track {
  width: 100%; background: #f3f4f6;
  border-radius: 999px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--orange);
  border-radius: 999px; transition: width 0.6s ease;
}

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.badge-orange { background: var(--orange-lt); color: var(--orange); }
.badge-purple { background: var(--purple-lt); color: var(--purple); }
.badge-dark {
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Ticker ── */
.ticker-bar {
  background: var(--dark-mid);
  padding: 13px 0;
  overflow: hidden;
  display: flex; align-items: center; gap: 0;
}
.ticker-inner {
  display: flex; align-items: center; gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px; font-size: 13px; color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.ticker-item strong { color: var(--orange); }
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Utility ── */
.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--gem));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark-section {
  background: linear-gradient(160deg, var(--dark-mid) 0%, var(--dark-deep) 50%, var(--dark) 100%);
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.6s ease both; }
.fade-up-2 { animation: fade-up 0.6s 0.15s ease both; }
.fade-up-3 { animation: fade-up 0.6s 0.3s ease both; }

/* ── Score card animation ── */
@keyframes count-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}
