:root {
  --primary: #4962ad;
  --primary-dark: #314786;
  --primary-soft: #eef2ff;
  --ink: #0f172a;
  --muted: #64748b;
  --soft-muted: #94a3b8;
  --line: #e2e8f0;
  --panel: #ffffff;
  --canvas: #f8fafc;
  --premium: #c7a35a;
  --premium-soft: #fff7df;
  --success: #16a34a;
  --shadow-sm: 0 14px 34px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius-lg: 30px;
  --radius-xl: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(73, 98, 173, 0.11), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(199, 163, 90, 0.13), transparent 28%),
    var(--canvas);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand-logo {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-large {
  min-height: 52px;
  padding: 0 24px;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #263c7a);
  box-shadow: 0 18px 34px rgba(73, 98, 173, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 46px rgba(73, 98, 173, 0.33);
}

.button-secondary,
.button-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(73, 98, 173, 0.42);
  background: #ffffff;
}

.button-light {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.button-outline-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  padding: 94px 0 78px;
}

.section-glow::before {
  position: absolute;
  inset: 4% -12% auto auto;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(73, 98, 173, 0.19), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(73, 98, 173, 0.2);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(238, 242, 255, 0.9);
  font-size: 13px;
  font-weight: 850;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.hero h1 {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero-description {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 630px;
}

.trust-row div {
  padding: 14px 15px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
}

.trust-row strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.trust-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 9% 8% auto auto;
  z-index: 0;
  width: 80%;
  height: 80%;
  border-radius: 44px;
  content: "";
  background: linear-gradient(135deg, rgba(73, 98, 173, 0.23), rgba(199, 163, 90, 0.2));
  filter: blur(38px);
}

.browser-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.92);
}

.browser-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.browser-topbar span:nth-child(1) {
  background: #fca5a5;
}

.browser-topbar span:nth-child(2) {
  background: #fde68a;
}

.browser-topbar span:nth-child(3) {
  background: #86efac;
}

.browser-topbar p {
  margin: 0 0 0 10px;
  color: var(--soft-muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-preview {
  padding: 22px;
}

.preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mini-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.preview-header h2 {
  margin: 6px 0 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.status-pill {
  padding: 8px 11px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  font-size: 12px;
  font-weight: 850;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.timeline-preview {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.timeline-item {
  display: flex;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.timeline-item.active {
  border-color: rgba(73, 98, 173, 0.28);
  background: linear-gradient(135deg, #ffffff, var(--primary-soft));
}

.timeline-icon,
.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  font-size: 14px;
}

.timeline-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading span,
.cta-card span {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.cta-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading p,
.cta-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.benefit-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 26px;
}

.feature-card.elevated {
  border-color: rgba(73, 98, 173, 0.26);
  background:
    radial-gradient(circle at top right, rgba(73, 98, 173, 0.12), transparent 34%),
    #ffffff;
}

.feature-card h3,
.benefit-card strong,
.workflow-list h3 {
  margin: 18px 0 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.feature-card p,
.benefit-card p,
.workflow-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(238, 242, 255, 0.48)),
    transparent;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.workflow-list article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 900;
}

.workflow-list h3 {
  margin-top: 2px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  padding: 22px;
}

.benefit-card strong {
  display: block;
  margin: 0;
}

.cta-section {
  padding: 82px 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  overflow: hidden;
  position: relative;
  padding: 54px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(199, 163, 90, 0.32), transparent 32%),
    linear-gradient(135deg, #4962ad, #1f2d56 78%);
  box-shadow: var(--shadow-md);
}

.cta-card span {
  color: rgba(255, 255, 255, 0.76);
}

.cta-card p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 42px 0 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 28px;
}

.footer-logo {
  width: 154px;
  height: auto;
}

.site-footer p {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(226, 232, 240, 0.86);
  color: var(--soft-muted);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

  .feature-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    position: static;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .brand-logo {
    width: 162px;
  }

  .nav-actions,
  .hero-actions,
  .cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding: 54px 0 46px;
  }

  .hero h1 {
    font-size: clamp(40px, 15vw, 58px);
  }

  .hero-description {
    font-size: 16px;
  }

  .trust-row,
  .metric-grid,
  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .browser-card {
    border-radius: 26px;
  }

  .dashboard-preview {
    padding: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: left;
  }

  .cta-section {
    padding: 54px 0;
  }

  .cta-card {
    padding: 32px 22px;
    border-radius: 28px;
  }

  .footer-grid,
  .footer-bottom,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}