:root {
  --bg: #eef2f7;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-alt: rgba(240, 246, 255, 0.9);
  --ink: #16243a;
  --ink-soft: #4a5b76;
  --brand: #0a54d8;
  --brand-dark: #0b3fa1;
  --line: rgba(255, 255, 255, 0.72);
  --shadow: 0 22px 56px rgba(18, 34, 76, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #f7f9fd 0%, #eff3f9 100%);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Sora", "Outfit", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

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

.shape {
  position: absolute;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 47, 102, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 47, 102, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 10%, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2) 65%, transparent 100%);
}

.glow {
  position: absolute;
  filter: blur(26px);
  opacity: 0.5;
  border-radius: 999px;
}

.glow-one {
  width: 460px;
  height: 220px;
  right: -80px;
  top: 18%;
  background: linear-gradient(120deg, rgba(26, 89, 201, 0.24), rgba(38, 130, 255, 0.08));
}

.glow-two {
  width: 420px;
  height: 220px;
  left: -120px;
  top: 55%;
  background: linear-gradient(120deg, rgba(44, 130, 226, 0.14), rgba(22, 76, 166, 0.04));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(246, 249, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(14, 63, 161, 0.25);
}

.brand span {
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 500;
}

.site-nav a {
  color: #294465;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  padding: 7rem 0 4rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(12, 47, 126, 0.92), rgba(14, 78, 183, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  box-shadow: 0 24px 58px rgba(12, 38, 97, 0.24);
  padding-left: clamp(1.3rem, 4vw, 2.5rem);
  padding-right: clamp(1.3rem, 4vw, 2.5rem);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4e6788;
}

.hero .eyebrow {
  color: rgba(225, 239, 255, 0.9);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  max-width: 16ch;
  color: #fff;
}

.hero-copy {
  margin-top: 1rem;
  max-width: 62ch;
  font-size: 1.08rem;
  color: rgba(229, 239, 255, 0.92);
}

.hero-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tags span {
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(238, 245, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, #14a5ff, #0a59e3);
  color: #fff;
  padding: 0.75rem 1.15rem;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, #0f86d0, #0b4bc3);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.44);
}

.btn-small {
  padding: 0.5rem 0.85rem;
}

.hero-metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-metrics article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.hero-metrics h3 {
  font-size: 1.75rem;
  color: #fff;
}

.hero-metrics p {
  color: rgba(235, 244, 255, 0.9);
}

.section {
  padding: 4.4rem 0;
}

.section-head {
  margin-bottom: 1.7rem;
  max-width: 80ch;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

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

.card {
  border-radius: 20px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 255, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(224, 236, 255, 0.6), rgba(236, 244, 253, 0.92));
  border-top: 1px solid rgba(190, 213, 255, 0.65);
  border-bottom: 1px solid rgba(190, 213, 255, 0.65);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7px);
}

.steps span {
  font-family: "Sora", sans-serif;
  color: var(--brand);
  font-weight: 700;
}

.pricing-panel,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.price-chip {
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(150deg, #0a3fad, #0f70c7);
}

.price-chip p,
.price-chip h3,
.price-chip span {
  color: #f3f7ff;
}

.price-chip h3 {
  font-size: 2.2rem;
}

.price-chip span {
  font-size: 0.95rem;
  font-family: "Outfit", sans-serif;
}

.price-base {
  opacity: 0.9;
}

.price-meta {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  opacity: 0.9;
}

.cta-panel {
  text-align: center;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.site-footer {
  border-top: 1px solid rgba(186, 205, 232, 0.6);
  padding: 1.1rem 0 2rem;
}

.site-footer a {
  color: #2c4e86;
  font-weight: 600;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.legal-page .section {
  padding-top: 5.4rem;
}

.legal-panel {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.legal-panel h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-panel h2 {
  margin-top: 1.6rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.legal-panel h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

.legal-panel p,
.legal-panel li {
  color: #344966;
}

.legal-panel p {
  margin-top: 0.72rem;
}

.legal-panel ul {
  margin: 0.6rem 0 0.3rem;
  padding-left: 1.15rem;
}

.legal-panel li {
  margin: 0.32rem 0;
}

.legal-meta {
  color: #2b4f84;
}

.legal-nav {
  display: flex;
}

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

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 74px;
    right: 4vw;
    left: 4vw;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(247, 250, 255, 0.95);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .split,
  .pricing-panel,
  .feature-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.8rem;
    border-radius: 24px;
  }
}
