:root {
  --deep: #102a3f;
  --navy: #173f5f;
  --blue: #5fa8d3;
  --teal: #1f9f76;
  --teal-soft: #e7f5f0;
  --amber: #b7791f;
  --amber-soft: #fff5df;
  --ink: #14283c;
  --slate: #526477;
  --muted: #7b8a98;
  --line: #d8e1e9;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --red: #c84646;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--deep);
  background: #fff;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 42, 63, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}
.nav-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .22);
}
.brand span {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c7d5df;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 7px;
  color: var(--deep);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(31, 159, 118, .16) 0, transparent 36%),
    linear-gradient(180deg, #102a3f 0%, #16364d 100%);
  border-bottom: 1px solid #e7edf2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 66px 0 auto;
  height: 690px;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 62px;
  padding-top: 92px;
  padding-bottom: 96px;
}
.hero-copy,
.hero-grid > *,
.security-grid > *,
.early-grid > *,
.contact-grid > *,
.split-copy > * { min-width: 0; }
.eyebrow {
  margin: 0 0 18px;
  color: #9be4c7;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.eyebrow.dark { color: var(--navy); }
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: #c6d7e3;
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .08s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: var(--deep); background: #fff; }
.button.primary:hover,
.button.primary:focus-visible { background: var(--teal-soft); }
.button.secondary {
  color: #e2edf5;
  border: 1px solid rgba(255, 255, 255, .36);
}
.button.secondary:hover,
.button.secondary:focus-visible {
  color: #fff;
  border-color: #fff;
}
.button.light { color: var(--deep); background: #fff; }
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: #bfd0dc;
  font-size: 12px;
  font-weight: 750;
}
.proof-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 159, 118, .14);
}

.product-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 36px 85px rgba(0, 9, 18, .38);
}
.preview-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--navy);
}
.preview-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.preview-brand img { width: 28px; height: 28px; border-radius: 7px; }
.preview-brand strong { font-size: 14px; }
.preview-brand span {
  color: #b8cbd8;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}
.preview-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}
.preview-actions span {
  color: #d5e3ee;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 5px;
}
.preview-actions b {
  color: var(--deep);
  background: #fff;
  padding: 7px 10px;
  border-radius: 5px;
}
.preview-status {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 15px;
  color: #496175;
  background: #edf5fb;
  border-bottom: 1px solid #d3e2ef;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .04em;
}
.preview-status span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.preview-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.preview-status small {
  margin-left: auto;
  color: #7d8c99;
  font-size: 8px;
  letter-spacing: .08em;
}
.preview-body {
  min-height: 390px;
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
}
.case-panel {
  padding: 18px 15px;
  background: #fbfcfd;
  border-right: 1px solid var(--line);
}
.micro-label {
  margin: 0 0 13px;
  padding-bottom: 8px;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}
.case-panel dl { margin: 0; }
.case-panel dl div { margin-bottom: 12px; }
.case-panel dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case-panel dd {
  margin: 3px 0 0;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid #cbd5de;
  font-size: 12px;
  font-weight: 750;
}
.case-tabs {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}
.case-tabs span {
  padding: 7px 8px;
  color: #6b7d8c;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
}
.case-tabs .active {
  color: #0e5a44;
  background: var(--teal-soft);
}
.chart-panel { min-width: 0; }
.time-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--navy);
  background: #edf3fa;
  border-bottom: 1px solid #ced9e5;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}
.time-row span {
  padding: 9px 8px;
  border-right: 1px solid #ced9e5;
}
.chart-grid {
  position: relative;
  height: 285px;
  overflow: hidden;
  background-image:
    linear-gradient(#dce4ec 1px, transparent 1px),
    linear-gradient(90deg, #dce4ec 1px, transparent 1px);
  background-size: 100% 34px, 20% 100%;
}
.chart-grid svg {
  position: absolute;
  inset: 15px 10px 8px;
  width: calc(100% - 20px);
  height: calc(100% - 23px);
}
.trace {
  position: absolute;
  left: 10px;
  padding: 2px 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .84);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}
.trace.green { top: 23px; color: var(--teal); }
.trace.navy { top: 96px; color: var(--navy); }
.trace.red { bottom: 25px; color: var(--red); }
.med-row {
  min-height: 40px;
  display: grid;
  grid-template-columns: 72px repeat(5, 1fr);
  align-items: center;
  border-top: 1px solid #cbd6e0;
  font-size: 9px;
}
.med-row strong {
  padding-left: 10px;
  color: var(--navy);
  font-family: var(--mono);
}
.med-row span,
.med-row i {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #dce4ec;
}
.med-row span {
  color: var(--navy);
  font-weight: 800;
}

.section { padding: 96px 0; }
.section.soft {
  background: var(--soft);
  border-top: 1px solid #e7edf2;
  border-bottom: 1px solid #e7edf2;
}
.intro-section { padding: 78px 0; }
.split-copy,
.security-grid,
.early-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: start;
}
.split-copy h2,
.section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}
.split-copy p,
.section-heading > p:last-child,
.section-copy,
.contact-grid p {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.62;
}
.split-copy div:last-child p:first-child { margin-top: 0; }
.section-heading { max-width: 780px; }
.suite-apps {
  background:
    radial-gradient(circle at 85% 18%, rgba(95, 168, 211, .16), transparent 28%),
    linear-gradient(180deg, #fff, #f7fafc);
}
.app-spotlight {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.suite-copy { min-width: 0; }
.suite-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}
.suite-copy p:last-child {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.62;
}
.app-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 42, 63, .10);
}
.featured-app {
  position: relative;
  overflow: hidden;
}
.featured-app::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}
.wchart-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.wchart-logo {
  width: min(330px, 100%);
  height: auto;
}
.wchart-lockup small {
  display: block;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.app-card > p {
  margin: 26px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.62;
}
.app-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.app-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(31, 159, 118, .24);
  border-radius: 999px;
  color: #0e5a44;
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 800;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.workflow-grid article,
.access-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 42, 63, .045);
}
.feature-number {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}
.workflow-grid h3,
.access-panel h3 {
  margin: 30px 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}
.workflow-grid p,
.access-panel li,
.trust-list span {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.58;
}
.trust-list {
  display: grid;
  gap: 12px;
}
.trust-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #fff;
}
.trust-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
}
.access-panel {
  background:
    linear-gradient(180deg, rgba(255, 245, 223, .78), rgba(255, 255, 255, .98));
}
.access-panel h3 { margin-top: 0; }
.access-panel ul {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.access-panel li {
  position: relative;
  padding-left: 24px;
}
.access-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
}

.contact-section {
  padding: 92px 0;
  color: #fff;
  background: var(--navy);
}
.contact-grid { align-items: center; }
.contact-grid p { color: #c6d7e3; }
.safety-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(16, 42, 63, .62);
}
.safety-card strong { font-size: 18px; }
.safety-card p {
  margin: 12px 0 22px;
  color: #c6d7e3;
  font-size: 14px;
  line-height: 1.58;
}

footer {
  padding: 28px 0;
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, .11);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.footer-brand span { font-size: 13px; }
.footer-inner p {
  margin: 0;
  max-width: 620px;
  color: #a7b9c7;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

a:focus-visible {
  outline: 3px solid #9be4c7;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 74px;
  }
  .hero-copy { max-width: 760px; }
  .product-preview { width: 100%; }
  .split-copy,
  .security-grid,
  .early-grid,
  .contact-grid,
  .app-spotlight {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: auto;
    max-width: calc(100vw - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }
  .nav-inner { gap: 12px; }
  .brand span { font-size: 13px; }
  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
  .hero-grid {
    display: block;
    max-width: calc(100vw - 28px);
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 28px);
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
  }
  .hero-lede { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .proof-list { display: grid; }
  .product-preview {
    width: 100%;
    max-width: calc(100vw - 28px);
    margin-top: 54px;
  }
  .preview-body {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .case-panel { display: none; }
  .preview-status { gap: 10px; }
  .preview-status span:nth-child(2) { display: none; }
  .preview-brand span { display: none; }
  .preview-actions b { padding: 7px 8px; }
  .chart-grid { height: 250px; }
  .section,
  .contact-section { padding: 74px 0; }
  .intro-section { padding: 64px 0; }
  .split-copy h2,
  .section h2,
  .suite-copy h2,
  .contact-section h2 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .workflow-grid { grid-template-columns: 1fr; }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner p { text-align: left; }
}

@media (max-width: 560px) {
  .nav-cta { display: none; }
  .preview-actions span { display: none; }
  .preview-brand strong { font-size: 13px; }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .preview-actions b { font-size: 10px; }
  .preview-status small { font-size: 7px; }
  .workflow-grid article,
  .access-panel,
  .app-card,
  .safety-card { padding: 22px; }
  .wchart-logo { width: min(280px, 100%); }
  .wchart-lockup small { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .button:hover { transform: none; }
}
