:root {
  --bg-dark: #09111f;
  --bg-mid: #102645;
  --bg-light: #f7fbff;
  --ink: #101828;
  --muted: #5e6b82;
  --line: rgba(16, 24, 40, 0.08);
  --white-soft: rgba(255, 255, 255, 0.72);
  --blue: #0057d9;
  --cyan: #00c2a8;
  --orange: #ff7a4f;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at left top, rgba(255, 122, 79, 0.18), transparent 20%),
    radial-gradient(circle at 80% 8%, rgba(0, 194, 168, 0.14), transparent 24%),
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 52%, var(--bg-light) 52%, #ffffff 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header,
.hero,
.section,
.cta-strip {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-text {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav {
  display: inline-flex;
  gap: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 72px 0 24px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #bcd9ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(0, 87, 217, 0.08);
  color: var(--blue);
}

.eyebrow-dark {
  background: rgba(16, 24, 40, 0.08);
  color: var(--ink);
}

.hero h1,
.section h2,
.cta-strip h2,
.main-card h2,
.feature-card h3,
.benefit-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(235, 242, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 87, 217, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-card,
.dashboard-card,
.feature-card,
.benefit-panel article,
.cta-strip {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.stat-card span {
  color: rgba(235, 242, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.orb-one {
  top: 24px;
  right: 40px;
  width: 220px;
  height: 220px;
  background: rgba(0, 87, 217, 0.18);
}

.orb-two {
  bottom: 60px;
  left: 24px;
  width: 180px;
  height: 180px;
  background: rgba(255, 122, 79, 0.16);
}

.dashboard-card {
  position: absolute;
  background: var(--white-soft);
  backdrop-filter: blur(22px);
}

.main-card {
  top: 88px;
  right: 44px;
  left: 32px;
  padding: 30px;
}

.card-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-card h2 {
  font-size: 2rem;
}

.progress-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.progress-list div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.progress-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.progress-list i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--cyan));
}

.floating-card {
  padding: 18px 20px;
}

.top-card {
  top: 18px;
  right: 0;
}

.bottom-card {
  bottom: 56px;
  left: 0;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.section {
  padding-top: 84px;
}

.section-heading {
  max-width: 640px;
}

.section h2,
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.feature-grid,
.benefit-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card,
.benefit-panel article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.feature-card p,
.benefit-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-panel strong {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 84px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
}

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

  .hero,
  .feature-grid,
  .benefit-panel,
  .cta-strip,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at left top, rgba(255, 122, 79, 0.18), transparent 24%),
      linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 38%, var(--bg-light) 38%, #ffffff 100%);
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .main-card {
    top: 60px;
    right: 18px;
    left: 18px;
    padding: 24px;
  }

  .top-card {
    right: 8px;
  }

  .bottom-card {
    bottom: 12px;
    left: 8px;
  }
}
