:root {
  --bg: #f6f6f7;
  --surface: #ffffff;
  --ink: #111215;
  --muted: #5e626c;
  --line: #e4e6ea;
  --brand: #101114;
  --brand-soft: #f0f1f3;
  --success: #0f8a3e;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 60px rgba(10, 11, 15, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 5%, #ffffff 0%, var(--bg) 52%, #eff1f6 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  background: rgba(38, 98, 255, 0.1);
  top: -110px;
  left: -120px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: rgba(0, 0, 0, 0.08);
  bottom: -130px;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246, 246, 247, 0.76);
  border-bottom: 1px solid rgba(228, 230, 234, 0.8);
}

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

.brand img {
  width: 106px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.74rem 1.05rem;
  border: 1px solid transparent;
  transition: all 160ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 17, 20, 0.2);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.btn-ghost:hover {
  border-color: #c6cad2;
}

.hero {
  padding: 4.6rem 0 3.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.72rem;
  padding: 0.3rem 0.56rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.55rem);
  max-width: 14ch;
}

.hero-sub {
  margin-top: 1rem;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

.hero-metrics div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  background: #fff;
}

.hero-metrics strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.hero-metrics span {
  font-size: 0.81rem;
  color: var(--muted);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.05rem;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hero-card-top img {
  width: 22px;
  height: 22px;
}

.kpi-row {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kpi-row p {
  color: var(--muted);
  font-size: 0.78rem;
}

.kpi-row h3 {
  margin-top: 0.2rem;
  font-size: 1.28rem;
}

.pill {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 0.3rem 0.52rem;
  white-space: nowrap;
}

.pill.success {
  background: rgba(15, 138, 62, 0.14);
  color: var(--success);
}

.mini-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.mini-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.74rem 0;
  border-bottom: 1px dashed #ebedf1;
  font-size: 0.82rem;
}

.mini-list em {
  color: var(--muted);
  font-style: normal;
}

.mini-list strong {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
}

.section {
  padding: 4.4rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 58ch;
}

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

.card-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.feature-card h3 {
  font-size: 1.03rem;
}

.feature-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.steps {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
}

.steps span {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.steps h3 {
  margin-top: 0.5rem;
  font-size: 1.08rem;
}

.steps p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.pricing-wrap h2 {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.pricing-wrap p {
  color: var(--muted);
  margin-top: 0.9rem;
  max-width: 46ch;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.pricing-card .label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.pricing-card h3 {
  margin-top: 0.45rem;
  font-size: 2rem;
}

.pricing-card .sub {
  color: var(--muted);
  margin-top: 0.12rem;
  font-size: 0.88rem;
}

.pricing-card ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-card li + li {
  margin-top: 0.42rem;
}

.faq-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1.1rem;
}

.faq-grid h3 {
  font-size: 1rem;
}

.faq-grid p {
  margin-top: 0.52rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  padding-top: 2.6rem;
}

.cta-inner {
  border: 1px solid #daddE5;
  border-radius: var(--radius-lg);
  background: linear-gradient(142deg, #111215 0%, #2f323a 120%);
  color: #f8f8f9;
  text-align: center;
  padding: 2.2rem;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
}

.cta-inner p {
  margin: 0.7rem auto 1.2rem;
  color: #cdd2dd;
  max-width: 52ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 1.1rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-wrap img {
  width: 18px;
  height: 18px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .steps,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-metrics,
  .card-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .nav-cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }
}
