@font-face {
  font-family: "Noto Sans SC Local";
  src: url("assets/fonts/noto-sans-sc-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SC Local";
  src: url("assets/fonts/noto-sans-sc-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SC Local";
  src: url("assets/fonts/noto-sans-sc-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Local";
  src: url("assets/fonts/ibm-plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tabler Icons";
  src: url("assets/fonts/tabler-icons.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

.ti {
  font-family: "Tabler Icons" !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ti-circle-filled::before { content: "\f671"; }
.ti-file-search::before { content: "\ed5d"; }
.ti-bulb::before { content: "\ea51"; }
.ti-send::before { content: "\eb1e"; }
.ti-target-arrow::before { content: "\f51a"; }
.ti-search::before { content: "\eb1c"; }
.ti-message-forward::before { content: "\f28f"; }
.ti-chart-line::before { content: "\ea5c"; }

:root {
  --ink: #111725;
  --ink-soft: #68707e;
  --navy: #081b2b;
  --white: #ffffff;
  --surface: #fbfcff;
  --accent-soft: #fff8dc;
  --accent: #fed33d;
  --accent-dark: #b47b00;
  --mint: #29caa0;
  --violet: #8564ef;
  --blue: #3a8cff;
  --gold: #ffb845;
  --line: #e8ebf1;
  --shell: 1320px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Noto Sans SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

main {
  overflow-x: clip;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.mobile-only {
  display: none;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid rgba(254, 211, 61, .5);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(17, 23, 37, .07);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 12px 35px rgba(21, 31, 54, .08);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: 174px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 174px;
  height: auto;
  filter: brightness(0) saturate(100%);
}

.header-brand img {
  filter: none;
}

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

.main-nav a {
  color: #4c5361;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-demo {
  min-height: 38px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}

.header-demo:hover {
  background: #f0c329;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding-top: var(--header-height);
  background: #fff;
}

.hero-art {
  position: absolute;
  inset: var(--header-height) 0 0;
}

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

.hero-flow {
  position: absolute;
  z-index: 1;
  inset: var(--header-height) 0 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-route-ball {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform, opacity;
}

.route-ball-gold {
  filter: drop-shadow(0 0 8px rgba(255, 183, 32, .62));
}

.route-ball-coral {
  filter: drop-shadow(0 0 8px rgba(255, 133, 116, .58));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 710px;
  place-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 1050px;
  padding: 40px 0 72px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 22px;
  color: var(--mint);
  font-family: "IBM Plex Sans Local", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.17;
}

.hero h1 em {
  color: var(--accent-dark);
  font-style: normal;
}

.hero-lead {
  margin-bottom: 34px;
  color: #656d7b;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(180, 123, 0, .18);
}

.button-primary:hover {
  background: #f0c329;
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(8, 27, 43, .16);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.text-link {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.text-link::after {
  margin-left: 9px;
  content: "→";
}

.editorial-section {
  padding: 138px 0;
  background: #fff;
}

.workflow-section {
  padding-top: 82px;
}

.split-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 54px;
}

.split-layout-reverse {
  grid-template-columns: 1.12fr .88fr;
}

.section-copy {
  position: relative;
  z-index: 1;
}

.section-copy h2,
.deployment-section h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.22;
}

.section-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-facts span,
.deployment-facts span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #59616f;
  font-size: 13px;
}

.section-material {
  display: block;
  margin: 0;
}

.section-material img {
  width: 100%;
  height: auto;
}

.material-journey {
  margin-right: -70px;
}

.material-boundary {
  margin-left: -70px;
}

.workflow-list {
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  gap: 14px;
}

.workflow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.workflow-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 123, 0, .15);
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 19px;
}

.workflow-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.outcome-section {
  padding: 140px 0 156px;
  text-align: center;
}

.outcome-section h2 {
  margin-bottom: 72px;
  font-size: clamp(42px, 4vw, 60px);
  letter-spacing: -.045em;
  line-height: 1.25;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.outcome-grid article {
  min-height: 310px;
  padding: 38px 36px;
  border: 1px solid rgba(17, 23, 37, .04);
  border-radius: 22px;
}

.outcome-accent { background: var(--accent-soft); }
.outcome-mint { background: #effcf8; }
.outcome-violet { background: #f4f1ff; }

.outcome-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
  line-height: 1;
}

.outcome-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.outcome-grid h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.outcome-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.deployment-section {
  padding: 126px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.deployment-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.deployment-copy > p {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.deployment-material {
  display: block;
  margin: -54px -70px -54px 0;
}

.deployment-material img {
  width: 100%;
  height: auto;
}

.deployment-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta {
  padding: 92px 0;
  background-color: var(--accent);
  background-image: url("assets/final-cta-texture.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--ink);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 48px;
}

.final-cta h2 {
  grid-column: 1;
  margin-bottom: 6px;
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: -.04em;
}

.final-cta-inner > span {
  grid-column: 1;
  color: rgba(17, 23, 37, .72);
  font-size: 14px;
}

.final-cta .button {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.site-footer {
  padding: 68px 0 48px;
  background: var(--navy);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.footer-brand img {
  filter: none;
}

.footer-inner nav {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.footer-inner > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.footer-support {
  text-align: right;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 43, .62);
  backdrop-filter: blur(10px);
}

.demo-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 48px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(8, 27, 43, .24);
}

.demo-dialog h2 {
  margin-bottom: 12px;
  font-size: 38px;
  line-height: 1.25;
}

.demo-dialog > div > p:not(.section-kicker) {
  color: var(--ink-soft);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: #7d8490;
  cursor: pointer;
}

.demo-form {
  display: grid;
  margin-top: 28px;
  gap: 18px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #dfe3ea;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(254, 211, 61, .24);
}

.form-success {
  padding: 36px 0 10px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .shell {
    width: min(var(--shell), calc(100% - 56px));
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .main-nav {
    gap: 22px;
  }

  .split-layout,
  .split-layout-reverse {
    gap: 24px;
  }

  .material-journey,
  .material-boundary {
    margin-inline: -20px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-demo {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 640px;
  }

  .split-layout,
  .split-layout-reverse,
  .deployment-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    order: 1;
  }

  .section-material {
    order: 2;
    margin: 18px 0 0;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid article {
    min-height: 230px;
  }

  .outcome-icon {
    margin-bottom: 36px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr auto;
  }

  .final-cta h2,
  .final-cta-inner > span {
    grid-column: 1;
  }

  .final-cta .button {
    grid-row: 1 / span 2;
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: calc(100% - 40px);
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .mobile-only {
    display: initial;
  }

  .hero {
    min-height: 632px;
  }

  .hero-inner {
    min-height: 564px;
  }

  .hero-copy {
    padding: 46px 0 34px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
    letter-spacing: .13em;
    white-space: nowrap;
  }

  .hero h1 {
    margin-bottom: 21px;
    font-size: 38px;
    letter-spacing: -.045em;
    line-height: 1.2;
  }

  .hero-lead {
    max-width: 310px;
    margin: 0 auto 26px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: min(100%, 260px);
    min-height: 50px;
  }

  .hero-actions .text-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .editorial-section,
  .outcome-section,
  .deployment-section {
    padding: 76px 0;
  }

  .workflow-section {
    padding-top: 68px;
  }

  .split-layout,
  .split-layout-reverse,
  .deployment-layout {
    gap: 0;
  }

  .section-copy h2,
  .deployment-section h2,
  .outcome-section h2 {
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: -.04em;
    line-height: 1.28;
  }

  .section-lead,
  .deployment-copy > p {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.9;
  }

  .inline-facts,
  .deployment-facts {
    gap: 8px;
  }

  .inline-facts span,
  .deployment-facts span {
    padding: 7px 12px;
    font-size: 12px;
  }

  .section-material {
    margin: 30px 0 -8px;
  }

  .workflow-list {
    margin-top: 28px;
  }

  .workflow-list li {
    grid-template-columns: 42px 1fr;
    padding: 16px 0;
    gap: 12px;
  }

  .workflow-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 18px;
  }

  .workflow-list strong {
    font-size: 16px;
  }

  .workflow-list p {
    font-size: 13px;
    line-height: 1.7;
  }

  .outcome-section {
    padding: 76px 0 88px;
  }

  .outcome-section h2 {
    margin-bottom: 38px;
    font-size: 32px;
    line-height: 1.32;
  }

  .outcome-grid {
    gap: 14px;
  }

  .outcome-grid article {
    display: grid;
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    padding: 25px 22px;
    border-radius: 18px;
    column-gap: 18px;
  }

  .outcome-icon {
    width: 52px;
    height: 52px;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .outcome-grid h3 {
    margin: 1px 0 7px;
    font-size: 21px;
    line-height: 1.35;
  }

  .outcome-grid p {
    font-size: 14px;
    line-height: 1.75;
  }

  .deployment-section {
    padding: 74px 0 80px;
  }

  .deployment-material {
    width: calc(100% + 24px);
    margin: 30px -12px -12px;
  }

  .final-cta-inner {
    display: block;
  }

  .final-cta {
    padding: 64px 0;
    background-position: 46% center;
  }

  .final-cta h2 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.28;
  }

  .final-cta-inner > span {
    display: block;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
  }

  .final-cta .button {
    width: 100%;
    min-height: 50px;
  }

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

  .footer-inner nav {
    padding: 18px 0;
    border-block: 1px solid rgba(255, 255, 255, .1);
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .site-footer {
    padding: 48px 0 34px;
  }

  .footer-inner > p {
    margin: 0;
    line-height: 1.7;
  }

  .footer-support {
    text-align: left;
  }

  .modal {
    padding: 12px;
    place-items: end center;
  }

  .demo-dialog {
    max-height: calc(100dvh - 24px);
    padding: 44px 20px 24px;
    border-radius: 22px 22px 14px 14px;
  }

  .demo-dialog h2 {
    font-size: 30px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  .demo-form {
    margin-top: 22px;
    gap: 14px;
  }

  .demo-form input,
  .demo-form textarea {
    min-height: 48px;
    padding: 12px 13px;
  }

  .demo-form .button {
    width: 100%;
  }
}

@media (max-width: 374px) {
  .shell {
    width: calc(100% - 32px);
  }

  .brand,
  .brand img {
    width: 138px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .section-copy h2,
  .deployment-section h2 {
    font-size: 31px;
  }

  .outcome-section h2,
  .final-cta h2 {
    font-size: 29px;
  }
}

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