:root {
  --navy: #070b18;
  --navy-2: #0d1530;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7ff;
  --muted: #9aa6c8;
  --green: #22c55e;
  --gold: #e8c547;
  --violet: #7c5cff;
  --blue: #3b82f6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  background: rgba(7, 11, 24, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.04em; }
.brand small { display: block; font-size: 10px; letter-spacing: 0.18em; color: var(--muted); font-weight: 600; }
.mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: grid; place-items: center; color: #06210f; font-weight: 900;
}
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff;
  border: 0;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.tab:hover { transform: translateY(-1px); filter: brightness(1.08); }
.tab-login {
  background: linear-gradient(90deg, #c9a227, #f0d78c);
  color: #1a1403;
  box-shadow: 0 0 24px rgba(232, 197, 71, 0.38);
}
.tab-trial {
  background: linear-gradient(90deg, #15803d, #22c55e);
  color: #fff;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.35);
}
.tab-download {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.35);
}
.tab-lg { padding: 14px 22px; font-size: 15px; }
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  padding: 40px 0 56px; position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: -80px -20% auto;
  height: 420px; pointer-events: none;
  background: radial-gradient(ellipse at 20% 20%, rgba(34, 197, 94, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(124, 92, 255, 0.28), transparent 45%);
}
.kicker { color: var(--gold); letter-spacing: 0.16em; font-size: 11px; font-weight: 700; text-transform: uppercase; }
h1 { font-family: "Fraunces", Georgia, serif; font-size: clamp(28px, 4.4vw, 44px); line-height: 1.15; margin: 10px 0 14px; font-weight: 600; }
.lede { color: var(--muted); font-size: 16px; line-height: 1.55; max-width: 54ch; }
h2 { font-family: "Fraunces", serif; font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; line-height: 1.2; }
.how-grid { grid-template-columns: repeat(4, 1fr); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  border: 0; cursor: pointer; font-weight: 700;
  padding: 14px 22px; border-radius: 14px; font-size: 15px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  color: #fff; box-shadow: 0 10px 40px rgba(59, 130, 246, 0.35);
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.stats { display: flex; gap: 28px; margin-top: 36px; }
.stats b { display: block; font-size: 22px; font-family: "Fraunces", serif; }
.stats span { color: var(--muted); font-size: 12px; }
.glass {
  background: var(--glass); border: 1px solid var(--line); border-radius: 24px;
  padding: 22px; box-shadow: var(--shadow); backdrop-filter: blur(18px);
}
.metric-float { display: grid; gap: 12px; }
.metric { display: flex; justify-content: space-between; align-items: baseline; }
.metric strong { font-size: 22px; }
.bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; margin-top: 8px; }
.bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--gold)); width: 57%; }
.wave {
  height: 120px; width: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(124,92,255,.5), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(34,197,94,.4), transparent 42%);
  filter: blur(2px); border-radius: 20px; margin-bottom: 16px;
}
section { padding: 56px 0; }
h2 { font-family: "Fraunces", serif; font-size: 34px; margin: 0 0 12px; }
.sub { color: var(--muted); max-width: 60ch; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.vp h3 { font-size: 18px; margin: 0 0 8px; }
.process {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.process li { margin: 0; padding: 22px; }
.step {
  display: inline-block; font-family: "Fraunces", serif;
  color: var(--gold); font-size: 22px; letter-spacing: 0.04em; margin-bottom: 6px;
}
.card h3 { margin: 8px 0; font-size: 18px; }
.card p { color: var(--muted); font-size: 14px; margin: 0; }
.icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 18px;
  background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(124,92,255,.25));
}
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.price-card { padding: 28px; position: relative; }
.price-card.popular { border-color: rgba(232, 197, 71, 0.5); box-shadow: 0 0 0 1px rgba(232,197,71,.3), var(--shadow); }
.badge {
  position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 800;
  background: var(--gold); color: #1a1403; padding: 4px 8px; border-radius: 999px;
}
.price { font-size: 34px; font-family: "Fraunces", serif; margin: 8px 0; letter-spacing: -0.02em; color: #fff; }
.points { padding: 0; margin: 16px 0 24px; list-style: none; color: var(--muted); font-size: 14px; }
.points li { padding: 6px 0 6px 22px; position: relative; }
.points li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.trial-form { display: grid; gap: 10px; }
.trial-form input, .trial-form select {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(0,0,0,.25); color: #fff; font-size: 15px;
}
.msg { font-size: 14px; color: var(--gold); min-height: 1.2em; }
.msg.err { color: #fca5a5; }
.footer {
  border-top: 1px solid var(--line); padding: 28px 0 48px; color: var(--muted); font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.trust { display: flex; gap: 24px; margin-top: 20px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-links a { font-weight: 700; color: #dbe4ff; }
@media (max-width: 900px) {
  .hero, .grid3, .pricing, .how-grid, .vp-grid, .process { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; gap: 10px; }
  .nav-links { display: none; }
  .nav-actions { width: 100%; justify-content: flex-start; }
  .tab { padding: 10px 14px; }
  h1 { font-size: 28px; }
}
