:root {
  --bg: #f4f7fb;
  --bg-2: #eaf1fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --text: #0f1e35;
  --muted: #4a5a76;
  --line: #d6dfec;
  --primary: #0f6fff;
  --primary-strong: #0958d0;
  --accent: #0ea5a4;
  --accent-2: #ff8f1f;
  --shadow: 0 18px 60px rgba(16, 28, 56, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

body {
  min-height: 100vh;
  position: relative;
}

h1,
h2,
h3,
.brand span,
.eyebrow,
.btn {
  font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: #edf3ff;
  border: 1px solid #d7e2f6;
  border-radius: 6px;
  padding: 1px 6px;
  color: #0c2f6a;
}

.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.3;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -180px;
  left: -100px;
  background: #7cc7ff;
}

.orb-b {
  width: 420px;
  height: 420px;
  top: 140px;
  right: -160px;
  background: #91f7db;
}

.orb-c {
  width: 360px;
  height: 360px;
  bottom: -170px;
  left: 38%;
  background: #ffd18e;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 251, 0.82);
  border-bottom: 1px solid rgba(15, 30, 53, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.menu a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu a:hover {
  color: var(--text);
  border-color: #bfd4fa;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn.secondary:hover {
  background: var(--surface-2);
}

.btn.primary {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #f5f9ff;
  box-shadow: 0 10px 24px rgba(15, 111, 255, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

main {
  padding-bottom: 34px;
}

.hero {
  padding: 54px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 20px;
}

.glass {
  border: 1px solid rgba(18, 47, 90, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 252, 255, 0.92) 100%);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #bfccdf;
  background: #f3f8ff;
  color: #274779;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 7px 12px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  margin-top: 16px;
  font-size: clamp(33px, 5vw, 60px);
}

.lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
  max-width: 65ch;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.proof-item p {
  margin: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--accent), #39c6d7);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.14);
}

.live-card {
  padding: 26px;
}

.live-card h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 14px;
}

.stack-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.stack-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.stack-list li span:first-child {
  font-weight: 700;
}

.stack-list li span:last-child {
  color: var(--muted);
  text-align: right;
}

section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
  line-height: 1.55;
}

.cards-grid {
  display: grid;
  gap: 14px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface);
}

.card h3 {
  font-size: 21px;
}

.card p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inventory-card {
  padding: 20px;
}

.inventory-card h3 {
  font-size: 22px;
}

.inventory-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid #c7d7f1;
  background: #f6f9ff;
  color: #2c4774;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
}

.pricing-panel {
  padding: 24px;
  text-align: center;
}

.pricing-panel p {
  margin: 10px auto 0;
  max-width: 78ch;
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--surface);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq a {
  color: #0c58c8;
}

.cta-card {
  text-align: center;
  padding: 30px;
}

.cta-card p {
  color: var(--muted);
  margin: 10px auto 0;
  line-height: 1.55;
  max-width: 68ch;
}

.cta-center {
  justify-content: center;
}

.footer {
  padding: 24px 0 36px;
  color: var(--muted);
  border-top: 1px solid rgba(15, 30, 53, 0.1);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

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

.footer-links a:hover {
  color: var(--text);
}

.legal-page {
  padding: 50px 0 60px;
}

.legal-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
}

.legal-panel h1 {
  font-size: clamp(31px, 4vw, 45px);
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-panel h2 {
  margin-top: 24px;
  font-size: 22px;
}

.legal-panel ul {
  padding-left: 20px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.last-updated {
  font-size: 14px;
  color: #314a76;
}

@media (max-width: 1160px) {
  .hero-grid,
  .cards-3,
  .inventory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 16px 24px 22px;
    background: rgba(244, 247, 251, 0.98);
    border-bottom: 1px solid rgba(15, 30, 53, 0.08);
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }

  .actions .btn.secondary {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1220px, calc(100% - 28px));
  }

  .hero-card,
  .live-card,
  .card,
  .inventory-card,
  .pricing-panel,
  .cta-card,
  .legal-panel {
    padding: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  .stack-list li {
    flex-direction: column;
    gap: 2px;
  }

  .stack-list li span:last-child {
    text-align: left;
  }
}
