:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #667085;
  --paper: #fbfbf8;
  --panel: #ffffff;
  --line: #d9dfdf;
  --navy: #163a68;
  --blue: #2368a2;
  --orange: #ff5a12;
  --mint: #1f9d8a;
  --gold: #c9932a;
  --shadow: 0 20px 50px rgba(20, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px 28px;
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(217, 223, 223, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 750;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344054;
  font-size: 0.95rem;
}

.site-nav a {
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: #eef3f1;
  border-bottom: 1px solid var(--line);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(251, 251, 248, 0.96) 0%, rgba(251, 251, 248, 0.86) 42%, rgba(251, 251, 248, 0.28) 100%);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 26%;
  background: linear-gradient(180deg, rgba(251, 251, 248, 0), var(--paper));
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 48%;
  filter: saturate(1.08);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 4.75rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.4rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: #344054;
  font-size: 1.25rem;
}

.hero-actions,
.download-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 90, 18, 0.23);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 32, 51, 0.12);
  color: var(--navy);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 64px 0 0;
}

.hero-facts div,
.feature-card,
.price-card,
.ai-list article,
.link-card {
  border: 1px solid rgba(217, 223, 223, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.06);
}

.hero-facts div {
  padding: 18px;
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  margin-bottom: 6px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.product-strip {
  padding: 36px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.workflow-grid,
.split-section,
.pricing-layout,
.support-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.workflow-grid {
  align-items: center;
}

.workflow-grid h2 {
  margin: 0;
  font-size: 1.7rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.workflow-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f4;
  color: #344054;
  font-weight: 750;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

.feature-card {
  min-height: 190px;
  padding: 22px;
}

.feature-card p,
.ai-list p,
.price-card p,
.link-card span,
.download-panel p {
  color: var(--muted);
}

.ai-section {
  background: #edf6f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ai-list {
  display: grid;
  gap: 14px;
}

.ai-list article {
  padding: 22px;
}

.status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status.live {
  background: rgba(31, 157, 138, 0.12);
  color: #0b6b5d;
}

.status.planned {
  background: rgba(201, 147, 42, 0.14);
  color: #7f5a12;
}

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

.price-card {
  padding: 22px;
  min-height: 210px;
}

.price-card.featured {
  border-color: rgba(255, 90, 18, 0.45);
  box-shadow: var(--shadow);
}

.price {
  margin-bottom: 12px;
  color: var(--navy) !important;
  font-size: 1.7rem;
  font-weight: 850;
}

.download-section {
  padding: 56px 0;
  background: var(--navy);
  color: #fff;
}

.download-panel {
  justify-content: space-between;
  gap: 24px;
}

.download-panel h2 {
  margin-bottom: 8px;
}

.download-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.support-grid {
  grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 20px;
}

.link-card strong {
  color: var(--navy);
}

.site-footer {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.legal-page {
  padding: 72px 0 92px;
}

.legal-content {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-content h1 {
  font-size: 3rem;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: #475467;
}

.legal-content a {
  color: var(--blue);
  font-weight: 750;
}

.updated {
  color: var(--muted);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-facts,
  .feature-grid,
  .pricing-grid,
  .workflow-grid,
  .split-section,
  .pricing-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    grid-template-columns: repeat(5, minmax(104px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .support-grid .section-heading {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .site-nav.always-visible {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-bottom: 0;
  }

  .compact-header .site-nav.always-visible {
    position: static;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .compact-header .site-nav.always-visible a {
    padding: 0;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-backdrop::before {
    background: linear-gradient(180deg, rgba(251, 251, 248, 0.96) 0%, rgba(251, 251, 248, 0.88) 54%, rgba(251, 251, 248, 0.44) 100%);
  }

  .hero-backdrop img {
    object-position: 58% 50%;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .legal-content {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    padding: 58px 0 44px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

  .section {
    padding: 64px 0;
  }

  .hero-facts {
    margin-top: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 28px;
  }

  .legal-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions,
  .download-panel {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .compact-header .site-nav.always-visible {
    display: none;
  }
}
