:root {
  color-scheme: light;
  --ink: #14233a;
  --muted: #5f6c80;
  --line: #d7e0ea;
  --page: #f4f7fb;
  --panel: #ffffff;
  --nav: #15233c;
  --accent: #2d67be;
  --accent-strong: #1757a6;
  --teal: #1d8a86;
  --gold: #c9871f;
  --shadow: 0 18px 42px rgba(17, 31, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

.shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(21, 35, 60, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.4rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a,
.link-button {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.97rem;
}

.link-button {
  padding: 10px 0;
}

.hero {
  position: relative;
  min-height: min(92vh, 980px);
  overflow: hidden;
  background: #0f1829;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 17, 30, 0.88) 0%, rgba(15, 27, 48, 0.76) 38%, rgba(17, 51, 83, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 11, 21, 0.12) 0%, rgba(5, 11, 21, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 112px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.workflow-copy h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-note {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

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

.primary-button,
.secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
}

.primary-button {
  background: #ffffff;
  color: var(--ink);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.value-band,
.workflow-band,
.final-cta {
  background: #ffffff;
}

.value-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 28px 0;
}

.stat-value {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.stat-copy {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

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

.section-heading h2,
.workflow-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
}

.section-heading p,
.workflow-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-line {
  margin-top: 12px;
}

.contact-line a {
  color: var(--accent-strong);
}

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

.feature-tile,
.plan-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-tile h3,
.plan-name {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.feature-tile p,
.plan-tile li {
  margin: 0;
  color: var(--muted);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.flow-list {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.flow-list li + li {
  margin-top: 14px;
}

.workflow-shot {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.workflow-shot img {
  width: 100%;
}

.plan-price {
  margin: 0 0 18px;
  font-size: 2rem;
  font-weight: 800;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-tile ul {
  margin: 0;
  padding-left: 18px;
}

.plan-tile li + li {
  margin-top: 10px;
}

.featured-plan {
  border-color: rgba(45, 103, 190, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
}

.final-cta {
  border-top: 1px solid var(--line);
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding: 92px 0;
}

.final-actions .demo-button {
  min-height: 58px;
  padding: 0 24px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid rgba(23, 87, 166, 0.28);
  box-shadow: 0 16px 34px rgba(23, 87, 166, 0.24);
}

.final-actions .secondary-button {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

@media (max-width: 1080px) {
  .stat-grid,
  .feature-grid,
  .plan-grid,
  .workflow-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 28px, 1180px);
  }

  .nav-row {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 14px 0;
    gap: 12px;
  }

  .site-nav {
    justify-content: start;
    gap: 16px;
  }

  .hero-content {
    min-height: 82vh;
    padding: 132px 0 84px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section,
  .final-cta-inner {
    padding: 68px 0;
  }
}
