:root {
  --ink: #0e1116;
  --mist: #5b6472;
  --soft: #8a93a3;
  --cloud: #ffffff;
  --sky: #edf2f7;
  --horizon: #b8d4f1;
  --edge: #e3e8ee;
  --edge-soft: #eef2f6;
  --blue: #2e7def;
  --green: #2bc48a;
  --orange: #ff7a3d;
  --navy: #111827;
  --shadow: 0 1px 1px rgba(14, 17, 22, 0.04), 0 24px 48px -28px rgba(14, 17, 22, 0.24);
  --container: 1180px;
}

*,
*::before,
*::after {
  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;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.95) 0 16%, transparent 34%),
    radial-gradient(circle at 82% 4%, rgba(255, 255, 255, 0.78) 0 13%, transparent 31%),
    linear-gradient(180deg, var(--horizon) 0%, var(--sky) 34%, #f7f9fc 100%);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(46, 125, 239, 0.42);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: var(--ink);
  color: var(--cloud);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.35;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(237, 242, 247, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 232, 238, 0.72);
}

.nav-shell {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--edge);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}

.brand::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, var(--blue), var(--green), var(--orange), var(--blue));
  box-shadow: inset 0 0 0 8px var(--cloud);
}

.brand-mark {
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--mist);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);
  background: #f3f6fa;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

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

.button-primary:hover {
  background: #1a1f28;
}

.button-secondary {
  color: var(--ink);
  background: var(--cloud);
  border-color: var(--edge);
}

.button-secondary:hover {
  background: #f5f7fa;
}

.button-light {
  color: var(--ink);
  background: var(--cloud);
  border-color: rgba(255, 255, 255, 0.32);
}

.nav-toggle {
  display: none;
}

.hero {
  padding: 92px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--mist);
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #374151;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--mist);
  font-size: 13px;
}

.product-preview {
  position: relative;
  padding: 16px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: auto 28px 26px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(46, 125, 239, 0.14);
  pointer-events: none;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 4px 14px;
  color: var(--mist);
  font-size: 13px;
}

.preview-topline strong {
  color: var(--ink);
}

.product-preview img {
  width: 100%;
  border: 1px solid var(--edge-soft);
  border-radius: 8px;
  background: var(--cloud);
}

.workflow-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.workflow-stack div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--cloud);
}

.workflow-stack strong,
.workflow-stack span {
  display: block;
}

.workflow-stack strong {
  font-size: 14px;
}

.workflow-stack span {
  margin-top: 4px;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.4;
}

.proof-strip {
  padding: 18px 0 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-grid div {
  min-height: 120px;
  padding: 22px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
}

.proof-grid span {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  margin: 0;
}

.section-heading p:not(.eyebrow),
.journey-layout > .section-heading p:not(.eyebrow),
.integration-grid p,
.demo-panel p {
  color: var(--mist);
  font-size: 17px;
}

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

.card,
.product-card {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--cloud);
  box-shadow: var(--shadow);
}

.card {
  min-height: 300px;
  padding: 28px;
}

.card-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.card-icon.blue {
  background: linear-gradient(135deg, var(--blue), #9fc8ff);
}

.card-icon.green {
  background: linear-gradient(135deg, var(--green), #b5f4d8);
}

.card-icon.orange {
  background: linear-gradient(135deg, var(--orange), #ffd1bb);
}

.card p,
.product-card li {
  color: var(--mist);
}

.card a,
.product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.products-section {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(227, 232, 238, 0.72);
  border-bottom: 1px solid rgba(227, 232, 238, 0.72);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.split-heading > div {
  max-width: 690px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  min-height: 360px;
  padding: 24px;
}

.product-card > p {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.product-card h3 {
  min-height: 80px;
}

.product-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cloud);
  font-size: 13px;
  font-weight: 800;
}

.timeline p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--mist);
}

.integrations-section {
  padding: 84px 0;
}

.integration-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--cloud);
  box-shadow: var(--shadow);
}

.integration-grid .button {
  margin-top: 22px;
}

.integration-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.integration-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: #f8fafc;
  font-weight: 800;
  line-height: 1.2;
}

.case-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: var(--cloud);
  color: var(--mist);
  font-weight: 800;
}

.demo-section {
  padding-top: 42px;
}

.demo-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cloud);
}

.demo-panel .eyebrow,
.demo-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 380px;
}

.demo-actions span {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: right;
}

.footer {
  padding: 54px 0;
  background: #07090d;
  color: var(--cloud);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.footer-logo {
  width: 128px;
  height: auto;
  margin-bottom: 18px;
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.owner-cta {
  display: grid;
  gap: 14px;
  justify-items: start;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--edge);
    border-radius: 999px;
    background: var(--cloud);
  }

  .nav-toggle-line,
  .nav-toggle-line::before,
  .nav-toggle-line::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .nav-toggle-line {
    position: relative;
  }

  .nav-toggle-line::before,
  .nav-toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-line::before {
    top: -6px;
  }

  .nav-toggle-line::after {
    top: 6px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-open .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 108px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--edge);
    border-radius: 8px;
    background: var(--cloud);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links a {
    display: block;
    padding: 14px 16px;
    color: var(--ink);
    background: #f6f8fb;
  }

  .hero-grid,
  .journey-layout,
  .integration-grid,
  .demo-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-grid {
    gap: 36px;
  }

  .product-preview {
    max-width: 720px;
  }

  .proof-grid,
  .pressure-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .demo-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .demo-actions span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .concept-bar {
    font-size: 12px;
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    min-height: 56px;
    padding-left: 14px;
  }

  .brand {
    font-size: 21px;
  }

  .brand::before {
    width: 26px;
    height: 26px;
    box-shadow: inset 0 0 0 7px var(--cloud);
  }

  .hero,
  .section {
    padding: 54px 0;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 31px;
    line-height: 1.14;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .product-preview {
    padding: 10px;
  }

  .workflow-stack,
  .proof-grid,
  .pressure-grid,
  .product-grid,
  .integration-list {
    grid-template-columns: 1fr;
  }

  .preview-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .proof-grid div,
  .card,
  .product-card,
  .integration-grid,
  .demo-panel {
    padding: 22px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card h3 {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline span {
    justify-content: flex-start;
    width: max-content;
    padding: 0 14px;
  }

  .timeline p {
    grid-column: auto;
    margin-top: 0;
  }

  .case-row span,
  .integration-list span {
    width: 100%;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
