:root {
  --ink: #17191d;
  --muted: #687385;
  --line: #e2e6ec;
  --blue: #1e66e8;
  --blue-dark: #1552ba;
  --cyan: #2c8aff;
  --mint: #edf7ff;
  --soft-blue: #f1f6ff;
  --paper: #ffffff;
  --green: #1f9d73;
  --warm: #f7b955;
  --amber: #f3a424;
  --danger: #ec695f;
  --shadow: 0 16px 42px rgba(31, 63, 105, 0.1);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f7fa;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(30, 102, 232, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 9px 13px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.page-shell {
  overflow-x: clip;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 214px;
}

.brand img {
  display: block;
  width: 204px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #53627c;
  font-size: 14px;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 26px 0;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-item:focus-within .nav-link {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-item:focus-within .nav-link::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--blue);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-flyout {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 25;
  width: min(720px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(31, 63, 105, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-item:hover .nav-flyout,
.nav-item:focus-within .nav-flyout {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-flyout::before {
  position: absolute;
  top: -8px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 1px solid #dce6f3;
  border-left: 1px solid #dce6f3;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.flyout-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 26px;
}

.flyout-intro b,
.flyout-links b {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.flyout-intro strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.flyout-intro p {
  margin-bottom: 0;
  color: #5f6e85;
  font-size: 13px;
  line-height: 1.75;
}

.flyout-links {
  display: grid;
  gap: 8px;
}

.flyout-links a {
  display: grid;
  gap: 4px;
  padding: 9px 0;
  border-top: 1px solid #e8eef7;
}

.flyout-links a:first-of-type {
  border-top: 0;
}

.flyout-links strong {
  color: var(--ink);
  font-size: 14px;
}

.flyout-links span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.flyout-links a:hover strong {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.text-action {
  color: #53627c;
  font-size: 14px;
}

.text-action:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(22, 102, 234, 0.22);
}

.button-primary:hover {
  background: #0d57d2;
  box-shadow: 0 14px 28px rgba(22, 102, 234, 0.28);
}

.button-ghost {
  color: var(--blue);
  border-color: #c6d7f1;
  background: #fff;
}

.button-ghost:hover {
  border-color: var(--blue);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 72px 0 62px;
  background: #fbfdff;
}

.hero::before {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow-mark {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--cyan);
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 32px 0 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7d8aa1;
  font-size: 12px;
}

.hero-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23b889;
  box-shadow: 0 0 0 4px rgba(35, 184, 137, 0.13);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8dde5;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: none;
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 0 16px;
  border-bottom: 1px solid #e6edf7;
  color: #74839d;
  background: #f9fafc;
  font-size: 12px;
}

.visual-topbar-left,
.visual-topbar-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8d7eb;
}

.window-dots i:first-child {
  background: #4ec8c1;
}

.window-dots i:nth-child(2) {
  background: #f5bd60;
}

.window-dots i:last-child {
  background: #ed7970;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid #dcece5;
  border-radius: 999px;
  color: #198565;
  background: #f2fcf6;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27b27a;
}

.visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  background: #f8fbff;
}

.hero-write-concept {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 345px;
  padding: 28px 24px 24px;
  background:
    linear-gradient(90deg, rgba(220, 232, 248, 0.72) 1px, transparent 1px),
    linear-gradient(180deg, rgba(220, 232, 248, 0.72) 1px, transparent 1px),
    #f8fbff;
  background-size: 32px 32px;
}

.hero-concept-card,
.hero-concept-engine,
.hero-concept-node {
  border: 1px solid #d7e4f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(37, 78, 137, 0.08);
}

.hero-concept-card {
  min-width: 0;
  padding: 18px;
}

.hero-concept-label {
  display: block;
  margin-bottom: 10px;
  color: #c77418;
  font-size: 12px;
  font-weight: 900;
}

.hero-concept-card h3,
.hero-concept-output h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.hero-concept-lines {
  display: grid;
  gap: 0;
}

.hero-concept-lines span,
.hero-concept-output span {
  position: relative;
  display: block;
  padding: 10px 0 10px 20px;
  border-top: 1px solid #e7eef8;
  color: #4f5f78;
  font-size: 13px;
  line-height: 1.45;
}

.hero-concept-lines span:first-child {
  border-top: 0;
}

.hero-concept-lines span::before,
.hero-concept-output span::before,
.hero-concept-node strong::before {
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #df7f16;
  content: "";
}

.hero-concept-engine {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 14px;
  color: #c77418;
  background: #fff7ea;
  text-align: center;
}

.hero-concept-engine::before,
.hero-concept-engine::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #efd7b7;
  content: "";
}

.hero-concept-engine::before {
  left: -18px;
}

.hero-concept-engine::after {
  right: -18px;
}

.hero-engine-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: #df7f16;
  font-size: 22px;
  font-weight: 900;
}

.hero-concept-engine strong {
  font-size: 15px;
}

.hero-concept-engine span:last-child {
  color: #6a5b48;
  font-size: 12px;
  line-height: 1.5;
}

.hero-concept-output {
  min-width: 0;
}

.hero-concept-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-concept-node {
  min-width: 0;
  padding: 13px 14px;
}

.hero-concept-node strong {
  position: relative;
  display: block;
  margin-bottom: 6px;
  padding-left: 18px;
  color: #c77418;
  font-size: 13px;
}

.hero-concept-node strong::before {
  top: 6px;
}

.hero-concept-node span {
  color: #5b6b85;
  font-size: 12px;
  line-height: 1.55;
}

.float-label {
  position: absolute;
  right: 18px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #d3e1f4;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(19, 69, 140, 0.15);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.float-label svg {
  color: var(--blue);
}

.trust-strip {
  padding: 22px 0;
  border-top: 1px solid #e1e9f4;
  border-bottom: 1px solid #e1e9f4;
  background: rgba(255, 255, 255, 0.62);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.trust-icon {
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  color: var(--blue);
  background: var(--soft-blue);
}

.trust-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.trust-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: #7b8799;
  font-size: 12px;
  line-height: 1.7;
}

.section {
  padding: 108px 0;
  scroll-margin-top: 92px;
}

.answer-section {
  padding: 84px 0 94px;
  background: #fff;
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.answer-copy h2 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.answer-lead {
  max-width: 660px;
  margin-bottom: 22px;
  color: #4f5f78;
  font-size: 17px;
}

.answer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.answer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #dce7f6;
  border-radius: 999px;
  color: #315478;
  background: #f7fbff;
  font-size: 12px;
  font-weight: 700;
}

.answer-panel {
  overflow: hidden;
  border: 1px solid #d9e4f3;
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 18px 46px rgba(31, 63, 105, 0.08);
}

.answer-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid #e5edf8;
}

.answer-row:last-child {
  border-bottom: 0;
}

.answer-row dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.answer-row dd {
  margin: 0;
  color: #4f5f78;
  font-size: 14px;
}

.answer-row a {
  color: var(--blue);
  font-weight: 800;
}

.answer-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.answer-outcomes article {
  padding: 18px 18px 19px;
  border: 1px solid #dde7f4;
  border-radius: 8px;
  background: #fff;
}

.answer-outcomes b {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 12px;
}

.answer-outcomes strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.answer-outcomes p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.section-heading h2 {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.section-heading p {
  max-width: 410px;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 15px;
}

.feature-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: 34px;
  align-items: stretch;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feature-tab {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 19px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #66748e;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.feature-tab:hover,
.feature-tab.active {
  border-color: #c9daf2;
  background: #fff;
  box-shadow: 0 12px 26px rgba(37, 77, 135, 0.07);
  transform: translateX(3px);
}

.feature-tab.active {
  color: var(--ink);
}

.feature-tab-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 12px;
  font-weight: 800;
}

.feature-tab strong {
  display: block;
  margin-bottom: 0;
  font-size: 15px;
}

.feature-tab span {
  display: block;
  color: inherit;
  font-size: 12px;
}

.feature-panel {
  overflow: hidden;
  border: 1px solid #d7e3f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(37, 78, 137, 0.09);
}

.feature-panel-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.82fr);
  gap: 20px 28px;
  padding: 24px 26px 22px;
  border-bottom: 1px solid #e7eef8;
}

.feature-panel-copy h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.feature-panel-copy p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-panel-points {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-panel-points li {
  position: relative;
  padding-left: 18px;
  color: #53627c;
  font-size: 13px;
}

.feature-panel-points li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.feature-kicker {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 6px 10px;
  border: 1px solid #dcecf6;
  border-radius: 999px;
  color: var(--blue);
  background: #f5fbff;
  font-size: 12px;
  font-weight: 800;
}

.feature-image-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(226, 236, 249, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(226, 236, 249, 0.5) 1px, transparent 1px),
    #f8fbff;
  background-size: 34px 34px;
}

.feature-concept {
  --concept-accent: var(--blue);
  --concept-soft: #eff6ff;
  --concept-line: #d7e6f7;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 430px;
  padding: 28px;
  color: var(--ink);
}

.feature-concept.is-clickable {
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-concept.is-clickable:hover {
  transform: translateY(-2px);
}

.feature-concept.is-clickable:focus-visible {
  outline: 3px solid rgba(30, 102, 232, 0.28);
  outline-offset: 4px;
}

.feature-concept::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(205, 221, 241, 0.72);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.feature-concept-interpret {
  --concept-accent: #1e66e8;
  --concept-soft: #edf5ff;
  --concept-line: #cfe2fb;
}

.feature-concept-score {
  --concept-accent: #0f8d68;
  --concept-soft: #eefaf5;
  --concept-line: #cdebe1;
}

.feature-concept-write {
  --concept-accent: #c77418;
  --concept-soft: #fff6e8;
  --concept-line: #f1ddb9;
}

.feature-concept-risk {
  --concept-accent: #d94a45;
  --concept-soft: #fff1f0;
  --concept-line: #f0cecc;
}

.feature-concept-knowledge {
  --concept-accent: #326ccf;
  --concept-soft: #eef6ff;
  --concept-line: #cfe0f4;
}

.feature-concept-tender-parse {
  --concept-accent: #1e66e8;
  --concept-soft: #edf5ff;
  --concept-line: #cfe2fb;
}

.feature-concept-precise-search {
  --concept-accent: #0f8d68;
  --concept-soft: #eefaf5;
  --concept-line: #cdebe1;
}

.feature-concept-bid-writing {
  --concept-accent: #a9661d;
  --concept-soft: #fff6e8;
  --concept-line: #f1ddb9;
}

.feature-concept-format-config {
  --concept-accent: #6656c8;
  --concept-soft: #f3f0ff;
  --concept-line: #ddd7fb;
}

.feature-concept-full-review {
  --concept-accent: #c9414a;
  --concept-soft: #fff1f2;
  --concept-line: #f2d1d5;
}

.concept-header,
.concept-flow,
.concept-nodes {
  position: relative;
  z-index: 1;
}

.concept-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.concept-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--concept-line);
  border-radius: 999px;
  color: var(--concept-accent);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.concept-chip-muted {
  color: #5b6b85;
  background: rgba(255, 255, 255, 0.64);
}

.concept-chip i {
  position: relative;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
}

.concept-chip i::before,
.concept-line-item i::before,
.concept-output-item i::before,
.concept-node i::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.concept-flow {
  display: grid;
  grid-template-columns: minmax(168px, 0.95fr) minmax(112px, 0.55fr) minmax(210px, 1.05fr);
  gap: 18px;
  align-items: center;
}

.concept-column,
.concept-engine,
.concept-output {
  min-width: 0;
}

.concept-label {
  display: block;
  margin-bottom: 9px;
  color: var(--concept-accent);
  font-size: 12px;
  font-weight: 800;
}

.concept-document,
.concept-output {
  border: 1px solid var(--concept-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(34, 67, 112, 0.08);
}

.concept-document {
  padding: 17px;
}

.concept-document strong,
.concept-output strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}

.concept-line-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  padding: 9px 0;
  border-top: 1px solid #ebf1f8;
  color: #53627c;
  font-size: 12px;
  line-height: 1.55;
}

.concept-line-item:first-of-type {
  border-top: 0;
}

.concept-line-item i {
  position: relative;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: var(--concept-accent);
}

.concept-engine {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1px solid var(--concept-line);
  border-radius: 8px;
  color: var(--concept-accent);
  background: var(--concept-soft);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.concept-engine::before,
.concept-engine::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--concept-line);
  content: "";
}

.concept-engine::before {
  left: -18px;
}

.concept-engine::after {
  right: -18px;
}

.concept-engine-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--concept-accent);
}

.concept-engine-icon i {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.concept-engine-icon i::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.concept-engine strong {
  font-size: 14px;
}

.concept-engine span:last-child {
  color: #5a6a83;
  font-size: 12px;
  line-height: 1.45;
}

.concept-output {
  padding: 18px;
}

.concept-output-list {
  display: grid;
  gap: 9px;
}

.concept-output-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #e4edf8;
  border-radius: 6px;
  background: #f9fcff;
  color: #43536c;
  font-size: 12px;
  font-weight: 700;
}

.concept-output-item i {
  position: relative;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: var(--concept-accent);
  flex: 0 0 auto;
}

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

.concept-node {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--concept-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.concept-node span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: var(--concept-accent);
  font-size: 13px;
  font-weight: 800;
}

.concept-node i {
  position: relative;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
}

.concept-node p {
  margin: 0;
  color: #5b6b85;
  font-size: 12px;
  line-height: 1.55;
}

.case-section {
  padding-bottom: 92px;
}

.scenario-methods {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #dbe6f4;
}

.scenario-cases {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.scenario-methods-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 14px;
}

.scenario-methods-head span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.scenario-methods-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.resource-grid {
  display: grid;
  gap: 14px;
}

.resource-grid-cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 112px;
  padding: 20px 42px 20px 20px;
  border: 1px solid #dbe6f4;
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.resource-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #b7c7dd;
  border-right: 2px solid #b7c7dd;
  content: "";
  transform: rotate(45deg);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.resource-card:hover {
  border-color: #b9d0ef;
  box-shadow: 0 14px 30px rgba(37, 78, 137, 0.08);
  transform: translateY(-2px);
}

.resource-card:hover::after {
  border-color: var(--blue);
  transform: translate(2px, -2px) rotate(45deg);
}

.resource-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.42;
}

.resource-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.faq-section {
  padding-top: 104px;
  background: #f7f8fa;
}

.faq-list {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid #dbe3ee;
  counter-reset: faq;
}

.faq-list .faq-item {
  counter-increment: faq;
  border: 0;
  border-bottom: 1px solid #dbe3ee;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-list .faq-item[open] {
  box-shadow: none;
}

.faq-list .faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.faq-list .faq-question::-webkit-details-marker {
  display: none;
}

.faq-list .faq-question::before {
  display: none;
}

.faq-list .faq-question::after {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
  font-size: 22px;
  font-weight: 700;
  content: "+";
}

.faq-list .faq-item[open] .faq-question::after {
  content: "-";
}

.faq-list .faq-answer {
  max-width: 900px;
  margin: -6px 54px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-list .faq-answer a {
  color: var(--blue);
  font-weight: 800;
}

.media-section {
  background: #fff;
}

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

.media-card,
.media-empty {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d7e3f2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(36, 72, 126, 0.05);
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 0;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.media-card-image {
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, #eef4fb 0%, #e4edf8 100%);
  aspect-ratio: 16 / 10;
}

.media-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.media-card-image--empty {
  display: grid;
  place-items: center;
}

.media-card-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #2f6fed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.media-card:hover .media-card-image img {
  transform: scale(1.03);
}

.media-card:hover {
  border-color: #b9d0ef;
  box-shadow: 0 14px 28px rgba(37, 78, 137, 0.1);
  transform: translateY(-2px);
}

.media-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  padding: 14px 16px 16px;
  min-height: 128px;
}

.media-card strong,
.media-empty strong {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #122033;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-card span,
.media-empty span {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-meta {
  display: block;
  margin: 0;
  align-self: end;
  color: #98a2b3;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-empty {
  display: grid;
  gap: 9px;
  grid-column: 1 / -1;
  padding: 20px;
}

.media-section .recognition-grid {
  margin-top: 28px;
}

.partner-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f6f9ff 72%, #e9f1ff 100%);
}

.partner-heading {
  margin-bottom: 34px;
}

.partner-heading .concept-marker {
  margin-bottom: 14px;
}

.partner-heading h2 {
  margin-bottom: 10px;
  color: #111820;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.16;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo-card {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(29, 29, 31, 0.045);
  aspect-ratio: 269 / 109;
}

.partner-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 720px) {
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-logo-card {
    padding: 8px;
  }
}

.recognition-section {
  padding: clamp(76px, 8vw, 112px) 0 clamp(82px, 8.5vw, 118px);
  background: #f3f6fa;
}

.recognition-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.recognition-kicker {
  display: block;
  margin-bottom: 8px;
  color: #31415b;
  font-size: 13px;
  font-weight: 900;
}

.recognition-heading h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #111820;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
}

.recognition-heading p {
  margin: 0;
  color: #53627c;
  font-size: 15px;
  line-height: 1.7;
}

.recognition-link {
  flex: 0 0 auto;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

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

.recognition-card {
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
}

.recognition-card figure {
  display: grid;
  place-items: center;
  min-height: 234px;
  margin: 0;
  padding: 18px 18px 16px;
  border-bottom: 1px solid #dbe3ee;
  background: #f7f9fc;
}

.recognition-card img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
}

.recognition-card-copy {
  padding: 24px 26px 28px;
}

.recognition-card h3 {
  margin-bottom: 10px;
  color: #111820;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.recognition-card p {
  margin: 0;
  color: #52617a;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .recognition-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
  }

  .recognition-link {
    margin-bottom: 0;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .recognition-section {
    padding: 56px 0 68px;
  }

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

  .recognition-heading h2 {
    font-size: 28px;
  }

  .recognition-card-copy {
    padding: 20px;
  }

}

.final-cta {
  position: relative;
  padding: 78px 0;
  color: var(--ink);
  background: #edf4ff;
}

.final-cta::after {
  display: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner h2 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.cta-inner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.cta-inner .button {
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(30, 102, 232, 0.2);
}

.footer {
  padding: 27px 0;
  color: #70809a;
  background: #fff;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
}

.footer-brand img {
  width: 106px;
  height: auto;
}

.footer-link {
  color: var(--blue);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .hero-visual {
    max-width: 760px;
  }

  .hero-write-concept {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-concept-engine::before,
  .hero-concept-engine::after {
    display: none;
  }

  .feature-stage,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .answer-outcomes {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-image-stage,
  .feature-concept {
    min-height: 430px;
  }

  .resource-grid-cases,
  .resource-grid-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 600px);
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    min-width: 168px;
  }

  .brand img {
    width: 168px;
  }

  .nav-links,
  .nav-actions .text-action {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-actions .button {
    min-height: 37px;
    padding: 0 12px;
    font-size: 12px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav.mobile-open {
    position: relative;
  }

  .nav.mobile-open .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 16px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 251, 255, 0.98);
    box-shadow: 0 14px 22px rgba(20, 53, 109, 0.08);
  }

  .nav.mobile-open .nav-item {
    width: 100%;
  }

  .nav.mobile-open .nav-link {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #eaf0f8;
  }

  .nav.mobile-open .nav-link::after {
    display: none;
  }

  .nav-flyout {
    display: none;
  }

  .hero {
    padding: 55px 0 55px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-write-concept {
    padding: 22px 18px;
  }

  .hero-concept-bottom {
    grid-template-columns: 1fr;
  }

  .hero-concept-card,
  .hero-concept-engine,
  .hero-concept-node {
    box-shadow: none;
  }

  .float-label {
    position: static;
    width: fit-content;
    margin-top: 12px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .trust-item strong {
    font-size: 15px;
  }

  .section {
    padding: 75px 0;
    scroll-margin-top: 78px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    margin-bottom: 15px;
  }

  .answer-section {
    padding: 70px 0;
  }

  .answer-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .answer-outcomes {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-panel-copy {
    grid-template-columns: 1fr;
  }

  .feature-kicker {
    margin-top: 0;
  }

  .feature-image-stage,
  .feature-concept {
    min-height: 280px;
  }

  .feature-concept {
    gap: 14px;
    padding: 18px;
  }

  .concept-header,
  .concept-flow {
    align-items: stretch;
  }

  .concept-header {
    display: grid;
    justify-content: stretch;
  }

  .concept-flow,
  .concept-nodes {
    grid-template-columns: 1fr;
  }

  .concept-flow {
    gap: 12px;
  }

  .concept-document,
  .concept-output {
    padding: 14px;
  }

  .concept-document strong,
  .concept-output strong {
    margin-bottom: 9px;
    font-size: 15px;
  }

  .concept-line-item {
    padding: 7px 0;
  }

  .concept-engine {
    padding: 15px 12px;
  }

  .concept-engine-icon {
    width: 36px;
    height: 36px;
  }

  .concept-node {
    padding: 12px;
  }

  .concept-engine::before,
  .concept-engine::after {
    display: none;
  }

  .scenario-methods-head {
    display: block;
  }

  .scenario-methods-head span {
    display: block;
    margin-bottom: 8px;
  }

  .resource-grid-cases,
  .resource-grid-methods {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: auto;
    padding: 18px 40px 18px 18px;
  }

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

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list .faq-question {
    min-height: 66px;
    font-size: 15px;
  }

  .faq-list .faq-answer {
    margin-right: 34px;
  }

  .cta-inner {
    display: block;
  }

  .cta-inner .button {
    margin-top: 25px;
  }

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

}

/* data-factors inspired refresh */
:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.1);
  --blue: #0057ff;
  --blue-dark: #0047d6;
  --cyan: #14b8c7;
  --mint: #e8fff5;
  --soft-blue: #eef5ff;
  --paper: #ffffff;
  --green: #11a36d;
  --warm: #f4b447;
  --amber: #df8d22;
  --danger: #e2544a;
  --shadow: 0 26px 70px rgba(29, 29, 31, 0.1);
  --radius: 8px;
}

body.marketing-page {
  color: var(--ink);
  background: #fbfbfd;
  line-height: 1.6;
}

.container {
  width: min(1240px, calc(100% - 64px));
}

.topbar {
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  min-height: 58px;
}

.brand {
  min-width: 214px;
}

.brand img {
  width: 214px;
}

.nav-links {
  gap: 32px;
  color: #4b5563;
  font-size: 13px;
}

.nav-link {
  padding: 20px 0;
}

.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.active,
.nav-item:focus-within .nav-link {
  color: var(--ink);
}

.nav-flyout {
  top: 58px;
  border-color: rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(29, 29, 31, 0.12);
}

.button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-actions .button-primary {
  min-height: 40px;
  color: #fff;
  background: #1d1d1f;
  box-shadow: none;
}

.nav-actions .button-primary:hover {
  background: #000;
  box-shadow: none;
}

.hero-actions .button-primary,
.cta-inner .button {
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 87, 255, 0.22);
}

.hero-actions .button-primary:hover,
.cta-inner .button:hover {
  background: var(--blue-dark);
  box-shadow: 0 20px 38px rgba(0, 87, 255, 0.26);
}

.button-ghost {
  color: var(--blue);
  border-color: rgba(0, 87, 255, 0.32);
  background: rgba(255, 255, 255, 0.68);
}

.hero {
  min-height: calc(100svh - 58px);
  padding: 84px 0 98px;
  background:
    linear-gradient(128deg, rgba(183, 253, 219, 0.8) 0%, rgba(212, 243, 255, 0.74) 48%, rgba(246, 242, 255, 0.9) 100%),
    linear-gradient(180deg, #f1fff8 0%, #fbfbfd 86%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.82fr);
  gap: 78px;
  min-height: min(680px, calc(100svh - 190px));
  align-items: center;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow-mark {
  width: 24px;
  background: var(--blue);
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
}

.hero-title-blue,
.hero-title-main {
  display: block;
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-title-blue {
  color: var(--blue);
  font-size: clamp(38px, 4.5vw, 64px);
}

.hero-title-main {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(46px, 5.4vw, 76px);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 0;
  color: #5f6775;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  margin: 34px 0 28px;
}

.hero-note {
  display: inline-flex;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  color: #555d6b;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 560px);
}

.visual-frame {
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 88px rgba(29, 29, 31, 0.14);
}

.visual-topbar {
  min-height: 48px;
  border-bottom-color: rgba(29, 29, 31, 0.08);
  color: var(--blue);
  background: rgba(251, 251, 253, 0.78);
  font-weight: 800;
}

.status-pill {
  border-color: rgba(0, 87, 255, 0.22);
  color: var(--blue);
  background: rgba(238, 245, 255, 0.9);
  font-weight: 800;
}

.status-pill i {
  background: #8bb7ff;
}

.hero-write-concept {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-height: 356px;
  padding: 28px;
  background: #f7fafc;
  background-image: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.hero-doc-panel {
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(29, 29, 31, 0.08);
}

.hero-doc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  color: #697386;
  font-size: 12px;
}

.hero-doc-body {
  padding: 24px 20px 30px;
}

.hero-doc-body h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.hero-doc-body p {
  max-width: 360px;
  margin-bottom: 18px;
  color: #5f6775;
  font-size: 13px;
}

.hero-doc-body > span {
  display: block;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: #dfeaff;
}

.hero-doc-body > span:nth-of-type(2) {
  width: 88%;
}

.hero-doc-body > span:nth-of-type(3) {
  width: 72%;
}

.hero-doc-body > span.short {
  width: 46%;
  background: #e9eef8;
}

.hero-concept-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-concept-node {
  border-color: rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.hero-concept-node strong {
  color: var(--ink);
}

.hero-concept-node strong::before {
  background: var(--blue);
}

.float-label {
  right: 24px;
  bottom: -18px;
  border-color: rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(29, 29, 31, 0.13);
}

.trust-strip {
  padding: 64px 0 54px;
  border-color: rgba(29, 29, 31, 0.08);
  background: #fbfbfd;
}

.trust-grid {
  gap: 28px;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.trust-icon {
  display: none;
}

.trust-item strong {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.trust-item span {
  margin-top: 8px;
  color: #777b84;
  font-size: 14px;
}

.trust-note {
  max-width: 720px;
  margin-top: 28px;
  text-align: center;
}

.section {
  padding: 104px 0;
  background: #fbfbfd;
}

.answer-section,
.media-section {
  background: #fff;
}

.section-heading {
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.answer-copy h2,
.cta-inner h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p,
.answer-lead,
.cta-inner p {
  color: #6e6e73;
  line-height: 1.75;
}

.answer-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
}

.answer-tags span,
.feature-kicker {
  border-color: rgba(0, 87, 255, 0.16);
  color: var(--blue);
  background: #f4f8ff;
}

.answer-panel {
  border-color: rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(29, 29, 31, 0.08);
}

.answer-row {
  border-bottom-color: rgba(29, 29, 31, 0.07);
}

.answer-row dt {
  color: var(--blue);
}

.answer-outcomes article,
.resource-card,
.media-card,
.media-empty {
  border-color: rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(29, 29, 31, 0.05);
}

.answer-outcomes article:hover,
.resource-card:hover,
.media-card:hover {
  border-color: rgba(0, 87, 255, 0.22);
  box-shadow: 0 22px 48px rgba(29, 29, 31, 0.08);
}

#capabilities {
  background: #f5f5f7;
}

.feature-stage {
  grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
  gap: 30px;
}

.feature-tabs {
  position: sticky;
  top: 84px;
  align-self: start;
  padding: 8px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(29, 29, 31, 0.06);
  backdrop-filter: blur(14px);
}

.feature-tab {
  grid-template-columns: 34px 1fr;
  padding: 16px 14px;
  border-radius: 8px;
}

.feature-tab:hover,
.feature-tab.active {
  border-color: rgba(0, 87, 255, 0.16);
  background: #fff;
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.06);
  transform: none;
}

.feature-tab-number {
  border-radius: 999px;
  color: #fff;
  background: #1d1d1f;
}

.feature-tab .feature-tab-number {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.feature-tab.active .feature-tab-number {
  background: var(--blue);
}

.feature-panel {
  border-color: rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(29, 29, 31, 0.08);
}

.feature-panel-copy {
  border-bottom-color: rgba(29, 29, 31, 0.07);
}

.feature-panel-copy h3 {
  font-size: 24px;
}

.feature-image-stage {
  background:
    linear-gradient(135deg, rgba(235, 255, 246, 0.86), rgba(239, 246, 255, 0.94) 52%, #fff);
}

.feature-concept::before {
  display: none;
}

.concept-chip,
.concept-document,
.concept-engine,
.concept-output,
.concept-node {
  border-radius: 8px;
}

.concept-document,
.concept-output,
.concept-node {
  border-color: rgba(29, 29, 31, 0.08);
  box-shadow: 0 14px 34px rgba(29, 29, 31, 0.06);
}

.concept-output-item {
  border-color: rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  background: #fbfbfd;
}

.case-section {
  background: #fbfbfd;
}

.scenario-methods {
  margin-top: 34px;
  padding-top: 34px;
  border-top-color: rgba(29, 29, 31, 0.08);
}

.scenario-cases {
  margin-top: 0;
  padding-top: 0;
}

.scenario-methods-head {
  margin-bottom: 18px;
}

.scenario-methods-head span {
  color: var(--blue);
}

.resource-grid {
  gap: 16px;
}

.resource-card {
  min-height: 178px;
  padding: 26px 54px 26px 24px;
}

.resource-card::before {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.resource-card::after {
  top: 26px;
  right: 24px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 87, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 44%, var(--blue) 45%, var(--blue) 55%, transparent 56%),
    linear-gradient(135deg, transparent 44%, var(--blue) 45%, var(--blue) 55%, transparent 56%);
  background-position: 7px 4px, 7px 10px;
  background-repeat: no-repeat;
  background-size: 7px 7px;
  transform: none;
}

.resource-card:hover::after {
  border-color: rgba(0, 87, 255, 0.42);
  transform: translateX(2px);
}

.resource-card strong {
  font-size: 18px;
}

.resource-card span {
  max-width: 260px;
  color: #6e6e73;
}

.faq-section {
  background: #f5f5f7;
}

.faq-list {
  border-top-color: rgba(29, 29, 31, 0.1);
}

.faq-list .faq-item {
  border-bottom-color: rgba(29, 29, 31, 0.1);
}

.faq-list .faq-question {
  min-height: 82px;
  font-size: 18px;
}

.faq-list .faq-question::after {
  color: var(--ink);
}

.faq-list .faq-answer {
  color: #6e6e73;
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card,
.media-empty {
  min-height: 168px;
  padding: 24px;
}

.media-card b,
.media-empty b {
  color: var(--blue);
}

.final-cta {
  padding: 88px 0;
  background:
    linear-gradient(120deg, rgba(219, 255, 240, 0.86), rgba(237, 246, 255, 0.9) 55%, rgba(249, 246, 255, 0.96));
}

.footer {
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  background: #fbfbfd;
}

.footer-brand img {
  width: 132px;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 44px, 760px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .answer-grid,
  .feature-stage {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
    min-height: auto;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 620px);
  }

  .feature-tabs {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 600px);
  }

  .topbar {
    background: rgba(251, 251, 253, 0.9);
  }

  .nav {
    min-height: 62px;
  }

  .brand {
    min-width: 172px;
  }

  .brand img {
    width: 172px;
  }

  .nav.mobile-open .nav-links {
    top: 62px;
    background: rgba(251, 251, 253, 0.98);
  }

  .hero {
    padding: 58px 0 74px;
  }

  h1 {
    margin-bottom: 20px;
  }

  .hero-title-blue {
    font-size: 31px;
  }

  .hero-title-main {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    height: auto;
    padding: 9px 12px;
    line-height: 1.55;
  }

  .hero-write-concept {
    min-height: auto;
    padding: 20px;
  }

  .hero-doc-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
  }

  .hero-concept-bottom,
  .trust-grid,
  .feature-tabs,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 48px 0 42px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .answer-copy h2,
  .cta-inner h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .feature-panel-copy {
    padding: 22px 20px 20px;
  }

  .feature-concept {
    padding: 18px;
  }

  .resource-card {
    min-height: auto;
    padding: 22px 48px 22px 20px;
  }

  .faq-list .faq-question {
    min-height: 72px;
    font-size: 16px;
  }

}

/* typography and seamless section flow */
body.marketing-page {
  color: #202124;
  background:
    linear-gradient(
      180deg,
      #edfff7 0%,
      #eefbff 18%,
      #fbfbfd 38%,
      #f7f9fc 58%,
      #ffffff 78%,
      #f3fbff 100%
    );
  font-size: 16px;
  letter-spacing: 0;
}

main {
  background:
    linear-gradient(
      180deg,
      rgba(183, 253, 219, 0.3) 0%,
      rgba(228, 247, 255, 0.48) 18%,
      rgba(251, 251, 253, 0.96) 38%,
      rgba(247, 249, 252, 0.94) 60%,
      rgba(255, 255, 255, 0.98) 80%,
      rgba(238, 249, 255, 0.9) 100%
    );
}

.topbar {
  border-bottom-color: rgba(29, 29, 31, 0.045);
}

.hero,
.trust-strip,
.section,
.answer-section,
#capabilities,
.case-section,
.faq-section,
.media-section,
.final-cta {
  background: transparent;
}

.hero {
  padding: 78px 0 70px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(251, 251, 253, 0), rgba(251, 251, 253, 0.76));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

h1 {
  text-wrap: balance;
}

.section-heading h2,
.answer-copy h2,
.cta-inner h2 {
  text-wrap: pretty;
}

.hero-title-blue {
  font-size: clamp(36px, 4.1vw, 60px);
  line-height: 1.04;
}

.hero-title-main {
  font-size: clamp(42px, 4.9vw, 68px);
  line-height: 1.06;
}

.hero-copy {
  max-width: 620px;
  color: #5f6673;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin: 30px 0 24px;
}

.trust-strip {
  margin-top: -8px;
  padding: 46px 0 38px;
  border-top: 0;
  border-bottom: 0;
}

.trust-item strong {
  font-size: clamp(30px, 3.6vw, 48px);
}

.trust-note {
  margin-top: 22px;
}

.section {
  padding: 84px 0;
}

.answer-section {
  padding-top: 74px;
}

#capabilities {
  padding-top: 92px;
}

.case-section {
  padding-bottom: 84px;
}

.faq-section {
  padding-top: 86px;
}

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

.section-heading h2,
.answer-copy h2,
.cta-inner h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
}

.section-heading h2 {
  max-width: 880px;
}

.section-heading p {
  max-width: 300px;
}

.section-heading p,
.answer-lead,
.cta-inner p,
.resource-card span,
.media-card span,
.media-empty span,
.faq-list .faq-answer {
  color: #626a76;
  font-size: 14px;
  line-height: 1.72;
}

.answer-outcomes {
  margin-top: 24px;
}

.answer-panel,
.feature-tabs,
.feature-panel,
.answer-outcomes article,
.resource-card,
.media-card,
.media-empty {
  border-color: rgba(29, 29, 31, 0.07);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(29, 29, 31, 0.055);
  backdrop-filter: blur(12px);
}

.answer-outcomes article:hover,
.resource-card:hover,
.media-card:hover {
  box-shadow: 0 22px 48px rgba(29, 29, 31, 0.075);
}

.feature-stage {
  gap: 28px;
}

.feature-tab {
  padding: 15px 14px;
}

.feature-panel-copy {
  padding: 22px 24px 20px;
}

.feature-panel-copy h3 {
  font-size: 22px;
}

.feature-panel-copy p,
.feature-panel-points li {
  font-size: 13px;
  line-height: 1.65;
}

.feature-image-stage {
  background:
    linear-gradient(135deg, rgba(235, 255, 246, 0.74), rgba(239, 246, 255, 0.78) 52%, rgba(255, 255, 255, 0.74));
}

.scenario-methods {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 0;
}

.scenario-methods + .scenario-methods {
  margin-top: 40px;
}

.scenario-methods-head {
  margin-bottom: 16px;
}

.resource-card {
  min-height: 156px;
  padding: 23px 52px 23px 24px;
}

.resource-card strong {
  font-size: 17px;
  line-height: 1.42;
}

.faq-list {
  border-top-color: rgba(29, 29, 31, 0.07);
}

.faq-list .faq-item {
  border-bottom-color: rgba(29, 29, 31, 0.07);
}

.faq-list .faq-question {
  min-height: 76px;
  font-size: 17px;
}

.media-card,
.media-empty {
  min-height: 148px;
}

.final-cta {
  padding: 76px 0 84px;
}

.footer {
  border-top-color: rgba(29, 29, 31, 0.055);
  background: rgba(251, 251, 253, 0.72);
}

@media (max-width: 720px) {
  .hero {
    padding: 52px 0 56px;
  }

  .hero-title-blue {
    font-size: 30px;
  }

  .hero-title-main {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 15.5px;
    line-height: 1.74;
  }

  .trust-strip {
    padding: 38px 0 34px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .answer-copy h2,
  .cta-inner h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .feature-panel-copy {
    padding: 20px 18px 18px;
  }

  .resource-card {
    min-height: auto;
    padding: 20px 46px 20px 20px;
  }
}

/* compact metric transition */
.hero {
  min-height: auto;
  padding-bottom: 62px;
}

.hero-grid {
  min-height: min(560px, calc(100svh - 240px));
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  padding: 26px 0 46px;
}

.trust-strip::before {
  position: absolute;
  inset: -72px 0 auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 250, 255, 0.7));
  content: "";
  pointer-events: none;
}

.trust-grid,
.trust-note {
  position: relative;
  z-index: 1;
}

.trust-grid {
  align-items: end;
  gap: 16px;
}

.trust-item {
  min-height: 104px;
  align-content: center;
  padding: 0 12px;
}

.trust-item > .trust-icon {
  display: none !important;
}

.trust-item strong {
  font-size: clamp(32px, 3.8vw, 50px);
}

.trust-item span {
  margin-top: 10px;
  color: #6a7280;
  font-size: 13px;
}

.trust-note {
  margin-top: 4px;
  color: #7b8492;
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 48px;
  }

  .hero-grid {
    min-height: auto;
  }

  .trust-strip {
    margin-top: -10px;
    padding: 22px 0 34px;
  }

  .trust-grid {
    gap: 6px;
  }

  .trust-item {
    min-height: 82px;
  }

  .trust-item strong {
    font-size: 32px;
  }
}

/* senior polish: readable type scale and calmer interactions */
body.marketing-page {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* large text tuning */
.hero-title-blue {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.06;
}

.hero-title-main {
  font-size: clamp(38px, 4.35vw, 60px);
  line-height: 1.08;
}

.section-heading h2,
.answer-copy h2,
.cta-inner h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.16;
}

.trust-item strong {
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.04;
}

.feature-panel-copy h3 {
  font-size: 21px;
}

.resource-card strong,
.media-card strong,
.media-empty strong {
  font-size: 16px;
}

.faq-list .faq-question {
  font-size: 16px;
}

p,
li,
dd,
.resource-card span,
.media-card span,
.media-empty span {
  font-weight: 400;
}

.topbar {
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.topbar.nav-scrolled {
  border-bottom-color: rgba(29, 29, 31, 0.08);
  background: rgba(251, 251, 253, 0.9);
  box-shadow: 0 12px 34px rgba(29, 29, 31, 0.06);
}

.nav-link,
.text-action {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-link:hover,
.text-action:hover {
  opacity: 0.82;
}

.button {
  transform: translateZ(0);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    background 190ms ease,
    border-color 190ms ease;
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button i,
.resource-card::after,
.media-card::after {
  transition: transform 190ms ease;
}

.button:hover i {
  transform: translateX(2px);
}

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

.hero-doc-panel,
.concept-document,
.concept-output,
.concept-engine,
.concept-node,
.answer-panel,
.answer-outcomes article,
.resource-card,
.media-card,
.media-empty {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.visual-frame:hover .hero-doc-panel,
.feature-panel:hover,
.answer-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(29, 29, 31, 0.09);
}

.hero-doc-body > span {
  position: relative;
  overflow: hidden;
}

.hero-doc-body > span::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  content: "";
  transform: translateX(-110%);
  animation: doc-line-sheen 3.6s ease-in-out infinite;
}

.hero-doc-body > span:nth-of-type(2)::after {
  animation-delay: 240ms;
}

.hero-doc-body > span:nth-of-type(3)::after {
  animation-delay: 460ms;
}

.hero-doc-body > span.short::after {
  animation-delay: 680ms;
}

@keyframes doc-line-sheen {
  0%,
  48% {
    transform: translateX(-110%);
  }
  72%,
  100% {
    transform: translateX(110%);
  }
}

.feature-tab {
  position: relative;
  overflow: hidden;
}

.feature-tab::after {
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.feature-tab.active::after {
  opacity: 1;
  transform: scaleY(1);
}

.feature-concept {
  animation: feature-soft-enter 260ms ease both;
}

@keyframes feature-soft-enter {
  from {
    opacity: 0.72;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resource-card:hover,
.media-card:hover,
.answer-outcomes article:hover {
  transform: translateY(-4px);
}

.resource-card:focus-visible,
.media-card:focus-visible,
.feature-tab:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(0, 87, 255, 0.22);
  outline-offset: 4px;
}

.concept-node:hover,
.concept-output-item:hover {
  border-color: rgba(0, 87, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.faq-list .faq-question {
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.faq-list .faq-item[open] .faq-question,
.faq-list .faq-question:hover {
  color: var(--blue);
}

.faq-list .faq-answer {
  animation: faq-answer-in 180ms ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

  .motion-ready .reveal-target {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  body.marketing-page {
    font-size: 15px;
  }

  .hero-title-blue {
    font-size: 28px;
    line-height: 1.08;
  }

  .hero-title-main {
    font-size: 32px;
    line-height: 1.12;
  }

  .section-heading h2,
  .answer-copy h2,
  .cta-inner h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .trust-item strong {
    font-size: 28px;
  }

  .faq-list .faq-question {
    font-size: 15px;
  }

  .button {
    min-height: 46px;
    font-size: 14px;
  }

  .nav-actions .button-primary {
    min-height: 40px;
  }

  .feature-tab::after {
    inset: 12px auto 12px 0;
  }

  .feature-panel-copy p,
  .feature-panel-points li,
  .resource-card span,
  .faq-list .faq-answer {
    font-size: 13.5px;
  }
}

/* final hero-to-metrics blend */
body.marketing-page {
  background:
    radial-gradient(circle at 16% 6%, rgba(196, 255, 230, 0.82), rgba(196, 255, 230, 0) 34vw),
    radial-gradient(circle at 84% 2%, rgba(211, 240, 255, 0.92), rgba(211, 240, 255, 0) 36vw),
    linear-gradient(180deg, #f0fff8 0%, #eefbff 30%, #f8fbfd 58%, #ffffff 100%);
}

main {
  background:
    linear-gradient(
      180deg,
      rgba(240, 255, 248, 0.92) 0%,
      rgba(238, 251, 255, 0.86) 18%,
      rgba(244, 251, 253, 0.72) 36%,
      rgba(251, 251, 253, 0.94) 62%,
      rgba(255, 255, 255, 0.98) 100%
    );
}

.hero::after,
.trust-strip::before {
  display: none;
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 62px);
  padding: clamp(54px, 6vw, 78px) 0;
  background: transparent;
}

.hero-grid {
  min-height: auto;
}

.trust-strip {
  z-index: 1;
  margin-top: 0;
  padding: 4px 0 clamp(54px, 6vw, 78px);
  border: 0;
  background: transparent;
}

.trust-grid {
  position: relative;
  padding: clamp(10px, 1.6vw, 18px) clamp(10px, 1.8vw, 22px) 0;
  border-top: 0;
}

.trust-grid::before {
  display: none;
}

.trust-item {
  min-height: 92px;
  padding: 0 8px;
}

.trust-note {
  margin-top: 0;
}

/* full sticky nav tracking */
html {
  scroll-padding-top: 78px;
}

.topbar {
  z-index: 60;
  border-bottom: 1px solid rgba(29, 29, 31, 0.055);
  background: rgba(251, 251, 253, 0.78);
  box-shadow: 0 8px 28px rgba(29, 29, 31, 0.035);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.topbar.nav-scrolled {
  border-bottom-color: rgba(29, 29, 31, 0.09);
  background: rgba(251, 251, 253, 0.92);
  box-shadow: 0 14px 36px rgba(29, 29, 31, 0.07);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
}

.nav {
  min-height: 62px;
}

.brand {
  min-width: 220px;
}

.brand img {
  width: 220px;
  mix-blend-mode: multiply;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  color: #111315;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.72);
}

.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;
}

.eyebrow.concept-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 36px;
  margin-bottom: 22px;
  color: var(--marker-accent, var(--blue));
}

.eyebrow.concept-marker::before {
  display: none;
}

.concept-rail {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, currentColor, color-mix(in srgb, currentColor 20%, #ffffff));
}

.concept-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, currentColor 30%, #ffffff);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    color-mix(in srgb, currentColor 8%, #ffffff);
  box-shadow: 0 10px 22px var(--marker-glow, rgba(0, 87, 255, 0.11));
}

.concept-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.35;
}

.concept-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.concept-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.concept-dots i:nth-child(2) {
  opacity: 0.5;
}

.concept-dots i:nth-child(3) {
  opacity: 0.22;
}

.concept-marker-answer {
  --marker-accent: #0057ff;
  --marker-glow: rgba(0, 87, 255, 0.12);
}

.concept-marker-capability {
  --marker-accent: #0f8d68;
  --marker-glow: rgba(15, 141, 104, 0.12);
}

.concept-marker-resource {
  --marker-accent: #7b61ff;
  --marker-glow: rgba(123, 97, 255, 0.12);
}

.concept-marker-faq {
  --marker-accent: #14b8c7;
  --marker-glow: rgba(20, 184, 199, 0.12);
}

.concept-marker-media {
  --marker-accent: #df8d22;
  --marker-glow: rgba(223, 141, 34, 0.12);
}

.concept-marker-recognition {
  --marker-accent: #df8d22;
  --marker-glow: rgba(223, 141, 34, 0.12);
}

.nav-links {
  color: rgba(29, 29, 31, 0.72);
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.78);
}

.text-action {
  color: rgba(29, 29, 31, 0.72);
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.78);
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.hero-title-blue {
  display: block;
  color: var(--blue);
  font-size: clamp(31px, 3.1vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title-main {
  display: block;
  max-width: 760px;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 0 0 14px;
  color: #596372;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: 0;
}

.hero-lead span {
  white-space: nowrap;
}

.hero-copy {
  max-width: 680px;
  color: #727b89;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.nav-actions .button-primary {
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.12);
}

.nav.mobile-open .nav-links {
  pointer-events: auto;
  background: rgba(251, 251, 253, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 18px 42px rgba(29, 29, 31, 0.08);
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 76px 0 54px;
  }

  .trust-strip {
    margin-top: 0;
    padding: 0 0 42px;
  }

  .trust-grid {
    padding-top: 14px;
  }

  .nav {
    min-height: 70px;
  }

  .brand {
    min-width: 178px;
  }

  .brand img {
    width: 178px;
  }

  .brand-text {
    font-size: 25px;
  }

  h1 {
    margin-bottom: 16px;
  }

  .hero-title-blue {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-title-main {
    margin-top: 6px;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-lead {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.78;
  }
}

/* resource card concept visuals */
.resource-card {
  align-content: space-between;
  gap: 18px;
}

.resource-card > .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;
}

.resource-concept {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  width: min(100%, 250px);
  min-height: 64px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 87, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 248, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 88% 18%, rgba(0, 188, 212, 0.14), rgba(0, 188, 212, 0) 44%);
}

.resource-concept::before,
.resource-concept::after {
  position: absolute;
  right: 14px;
  left: 66px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 87, 255, 0.28), rgba(0, 87, 255, 0));
  content: "";
}

.resource-concept::before {
  top: 22px;
}

.resource-concept::after {
  bottom: 22px;
}

.resource-concept i {
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 87, 255, 0.22);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(0, 87, 255, 0.08);
}

.resource-concept:not(.method-concept) span {
  display: block;
  height: 7px;
  max-width: none;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.15);
  line-height: 1;
}

.resource-concept:not(.method-concept) span:nth-of-type(1) {
  width: 86%;
}

.resource-concept:not(.method-concept) span:nth-of-type(2) {
  width: 68%;
}

.resource-concept:not(.method-concept) span:nth-of-type(3) {
  width: 48%;
}

.resource-concept-info span {
  background: rgba(0, 120, 255, 0.16);
}

.resource-concept-engineering {
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.92), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 90% 16%, rgba(36, 137, 255, 0.13), rgba(36, 137, 255, 0) 42%);
}

.resource-concept-goods span {
  background: rgba(24, 184, 128, 0.18);
}

.resource-concept-service span {
  background: rgba(88, 112, 255, 0.15);
}

.resource-concept-score span,
.resource-concept-review span {
  background: rgba(0, 87, 255, 0.18);
}

.resource-concept-knowledge span {
  background: rgba(35, 184, 137, 0.18);
}

#capabilities .section-heading h2 {
  max-width: 760px;
  color: #20242b;
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 680;
  line-height: 1.24;
}

.resource-concept.method-concept {
  display: block;
  grid-template-columns: none;
  width: min(100%, 282px);
  height: 76px;
  min-height: 76px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 251, 255, 0.95), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 86% 18%, rgba(0, 87, 255, 0.12), rgba(0, 87, 255, 0) 42%);
}

.resource-concept.method-concept::before,
.resource-concept.method-concept::after {
  display: none;
}

.resource-concept.method-concept .method-icon,
.resource-concept.method-concept .method-shape {
  position: absolute;
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.resource-concept.method-concept .method-icon {
  top: 21px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(0, 87, 255, 0.08);
}

.resource-concept.method-concept .method-icon i,
.resource-concept.method-concept .method-icon svg {
  width: 18px;
  height: 18px;
  border: 0;
  color: currentColor;
  background: transparent;
  box-shadow: none;
}

.resource-concept.method-concept .method-shape {
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.16);
}

.method-concept-select .shape-a,
.method-concept-select .shape-b,
.method-concept-select .shape-c {
  left: 70px;
  height: 4px;
  background: rgba(0, 87, 255, 0.18);
}

.method-concept-select .shape-a {
  top: 17px;
  width: 152px;
}

.method-concept-select .shape-b {
  top: 36px;
  width: 126px;
}

.method-concept-select .shape-c {
  top: 55px;
  width: 168px;
}

.method-concept-select .shape-d,
.method-concept-select .shape-e {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  background: var(--blue);
  box-shadow: 0 6px 14px rgba(0, 87, 255, 0.18);
}

.method-concept-select .shape-d {
  top: 13px;
  left: 134px;
}

.method-concept-select .shape-e {
  top: 32px;
  left: 196px;
}

.method-concept-read {
  background:
    linear-gradient(135deg, rgba(242, 250, 255, 0.96), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 84% 18%, rgba(0, 188, 212, 0.14), rgba(0, 188, 212, 0) 44%);
}

.method-concept-read .shape-a {
  top: 12px;
  left: 66px;
  width: 48px;
  height: 52px;
  border: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
}

.method-concept-read .shape-a::after {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(0, 87, 255, 0.18);
  border-bottom: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: 0 7px 0 5px;
  background: #eef6ff;
  content: "";
}

.method-concept-read .shape-b,
.method-concept-read .shape-c {
  left: 78px;
  height: 4px;
  background: rgba(0, 87, 255, 0.17);
}

.method-concept-read .shape-b {
  top: 33px;
  width: 25px;
}

.method-concept-read .shape-c {
  top: 44px;
  width: 19px;
}

.method-concept-read .shape-d {
  top: 18px;
  left: 152px;
  width: 30px;
  height: 30px;
  border: 4px solid rgba(0, 87, 255, 0.5);
  background: transparent;
}

.method-concept-read .shape-e {
  top: 46px;
  left: 178px;
  width: 24px;
  height: 4px;
  background: rgba(0, 87, 255, 0.5);
  transform: rotate(45deg);
  transform-origin: left center;
}

.method-concept-score .shape-a {
  top: 16px;
  left: 70px;
  width: 2px;
  height: 45px;
  background: rgba(0, 87, 255, 0.18);
}

.method-concept-score .shape-b,
.method-concept-score .shape-c,
.method-concept-score .shape-d {
  left: 64px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  background: var(--blue);
  box-shadow: 0 5px 12px rgba(0, 87, 255, 0.14);
}

.method-concept-score .shape-b {
  top: 12px;
}

.method-concept-score .shape-c {
  top: 31px;
}

.method-concept-score .shape-d {
  top: 50px;
}

.method-concept-score .shape-b::after,
.method-concept-score .shape-c::after,
.method-concept-score .shape-d::after {
  position: absolute;
  top: 5px;
  left: 24px;
  width: 116px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.15);
  content: "";
}

.method-concept-score .shape-c::after {
  width: 92px;
}

.method-concept-score .shape-d::after {
  width: 132px;
}

.method-concept-score .shape-e {
  top: 22px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(35, 184, 137, 0.28);
  border-radius: 8px;
  background: rgba(235, 255, 247, 0.82);
}

.method-concept-write .shape-a {
  top: 12px;
  left: 64px;
  width: 126px;
  height: 52px;
  border: 1px solid rgba(0, 87, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
}

.method-concept-write .shape-a::before,
.method-concept-write .shape-a::after {
  position: absolute;
  left: 15px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.14);
  content: "";
}

.method-concept-write .shape-a::before {
  top: 16px;
  width: 72px;
}

.method-concept-write .shape-a::after {
  top: 29px;
  width: 92px;
}

.method-concept-write .shape-b {
  top: 53px;
  left: 80px;
  width: 54px;
  height: 4px;
  background: rgba(35, 184, 137, 0.18);
}

.method-concept-write .shape-c {
  top: 43px;
  left: 152px;
  width: 58px;
  height: 6px;
  border-radius: 4px;
  background: var(--blue);
  transform: rotate(-30deg);
  box-shadow: 0 8px 18px rgba(0, 87, 255, 0.16);
}

.method-concept-write .shape-d {
  top: 35px;
  left: 198px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #23b889;
  transform: rotate(-30deg);
}

.method-concept-write .shape-e {
  top: 19px;
  right: 20px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: 8px;
  background: rgba(244, 248, 255, 0.88);
}

.method-concept-review .shape-a,
.method-concept-review .shape-b,
.method-concept-review .shape-c {
  left: 72px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.1);
}

.method-concept-review .shape-a {
  top: 14px;
  width: 152px;
}

.method-concept-review .shape-b {
  top: 33px;
  width: 130px;
}

.method-concept-review .shape-c {
  top: 52px;
  width: 96px;
}

.method-concept-review .shape-a::before,
.method-concept-review .shape-b::before,
.method-concept-review .shape-c::before {
  position: absolute;
  top: 3px;
  left: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #23b889;
  content: "";
}

.method-concept-review .shape-b::before {
  background: #f5a623;
}

.method-concept-review .shape-d {
  top: 15px;
  right: 22px;
  width: 18px;
  height: 18px;
  border: 2px solid #23b889;
  background: transparent;
}

.method-concept-review .shape-d::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #23b889;
  border-left: 2px solid #23b889;
  content: "";
  transform: rotate(-45deg);
}

.method-concept-review .shape-e {
  right: 24px;
  bottom: 15px;
  width: 28px;
  height: 8px;
  background: rgba(245, 166, 35, 0.22);
}

.method-concept-knowledge {
  background:
    linear-gradient(135deg, rgba(242, 255, 249, 0.94), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 88% 18%, rgba(35, 184, 137, 0.16), rgba(35, 184, 137, 0) 44%);
}

.method-concept-knowledge .method-icon {
  color: #148a67;
}

.method-concept-knowledge .shape-a {
  top: 18px;
  left: 66px;
  width: 54px;
  height: 34px;
  border: 1px solid rgba(35, 184, 137, 0.26);
  border-radius: 50% / 18%;
  background: rgba(235, 255, 247, 0.86);
}

.method-concept-knowledge .shape-a::before,
.method-concept-knowledge .shape-a::after {
  position: absolute;
  right: -1px;
  left: -1px;
  height: 13px;
  border: 1px solid rgba(35, 184, 137, 0.26);
  border-radius: 50%;
  background: rgba(248, 255, 252, 0.94);
  content: "";
}

.method-concept-knowledge .shape-a::before {
  top: -7px;
}

.method-concept-knowledge .shape-a::after {
  bottom: -7px;
}

.method-concept-knowledge .shape-b,
.method-concept-knowledge .shape-c,
.method-concept-knowledge .shape-d {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  background: #23b889;
  box-shadow: 0 6px 14px rgba(35, 184, 137, 0.16);
}

.method-concept-knowledge .shape-b {
  top: 17px;
  left: 156px;
}

.method-concept-knowledge .shape-c {
  top: 18px;
  left: 211px;
}

.method-concept-knowledge .shape-d {
  top: 50px;
  left: 184px;
}

.method-concept-knowledge .shape-e {
  top: 36px;
  left: 121px;
  width: 96px;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(35, 184, 137, 0.3), rgba(0, 87, 255, 0.16));
}

@media (max-width: 720px) {
  .resource-card {
    min-height: 142px;
  }

  .resource-concept {
    width: 100%;
    margin-top: 8px;
  }

  #capabilities .section-heading h2 {
    font-size: 27px;
    line-height: 1.26;
  }
}

/* GEO / SEO / UX expert pass: shorter path, calmer hierarchy, continuous sections */
body.marketing-page {
  background:
    radial-gradient(circle at 18% 5%, rgba(40, 199, 148, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(0, 87, 255, 0.08), transparent 30rem),
    linear-gradient(180deg, #f1fff8 0%, #f8fbff 28%, #fbfbfd 68%, #ffffff 100%);
}

.hero,
.trust-strip,
.section,
.answer-section,
#capabilities,
.case-section,
.faq-section,
.media-section {
  background: transparent;
}

.hero {
  min-height: calc(100svh - 58px);
  padding: 84px 0 98px;
}

.hero-grid {
  min-height: min(680px, calc(100svh - 190px));
  gap: 78px;
}

h1 {
  font-weight: 900;
}

.hero-title-blue {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
}

.hero-title-main {
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 900;
}

.hero-copy {
  max-width: 660px;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  margin: 34px 0 28px;
}

.visual-frame,
.answer-panel,
.feature-panel,
.feature-tabs,
.resource-card,
.media-card,
.media-empty,
.answer-outcomes article {
  box-shadow: 0 16px 42px rgba(29, 29, 31, 0.055);
}

.trust-strip {
  padding: 34px 0 28px;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
}

.trust-grid {
  padding-top: 0;
}

.trust-item {
  min-height: 78px;
}

.trust-item strong {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 840;
}

.trust-note {
  margin-top: 10px;
  font-size: 12px;
}

.section {
  padding: clamp(70px, 7vw, 92px) 0;
}

.section + .section,
.answer-section + #capabilities,
#capabilities + .case-section,
.case-section + .faq-section,
.faq-section + .media-section {
  padding-top: clamp(52px, 6vw, 76px);
}

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

.section-heading h2,
.answer-copy h2,
.cta-inner h2 {
  font-size: clamp(29px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.14;
}

#capabilities .section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 760;
}

.feature-stage {
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1.5fr);
}

.feature-tab {
  padding: 14px 13px;
}

.feature-image-stage,
.feature-concept {
  min-height: 380px;
}

.feature-concept {
  padding: 24px;
}

.resource-grid-cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid-methods {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.resource-card {
  min-height: 148px;
  padding: 22px 44px 20px 20px;
}

.resource-grid-methods .resource-card {
  min-height: 132px;
}

.resource-concept {
  transform: scale(0.92);
  transform-origin: left bottom;
}

.resource-grid-methods .resource-concept {
  display: none;
}

.faq-section {
  padding-top: clamp(58px, 6vw, 78px);
}

.faq-list .faq-question {
  min-height: 68px;
  font-size: 16px;
}

.media-section {
  padding-top: clamp(52px, 6vw, 72px);
}

.final-cta {
  padding: 64px 0;
  background:
    linear-gradient(120deg, rgba(219, 255, 240, 0.72), rgba(237, 246, 255, 0.78) 55%, rgba(249, 246, 255, 0.88));
}

@media (min-width: 981px) {
  .hero {
    min-height: calc(100svh - 58px);
    display: block;
  }

  .hero-visual {
    width: min(100%, 560px);
  }

  .visual-frame {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .resource-grid-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 84px;
  }

  .feature-stage {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-tabs {
    width: 100%;
  }

  .resource-grid-cases,
  .resource-grid-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-grid-methods .resource-concept {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 58px 0 74px;
  }

  .hero-title-blue {
    font-size: 31px;
  }

  .hero-title-main {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-item {
    min-height: 66px;
  }

  .trust-item strong {
    font-size: 24px;
  }

  .trust-item span {
    margin-top: 5px;
    font-size: 12px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .answer-copy h2,
  .cta-inner h2,
  #capabilities .section-heading h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .feature-image-stage,
  .feature-concept {
    min-height: auto;
  }

  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-concept {
    gap: 12px;
    padding: 16px;
  }

  .concept-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .concept-document,
  .concept-output {
    padding: 12px;
  }

  .concept-engine {
    padding: 13px 12px;
  }

  .concept-engine::before,
  .concept-engine::after,
  .concept-nodes {
    display: none;
  }

  .resource-grid-cases,
  .resource-grid-methods {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .resource-card,
  .resource-grid-methods .resource-card {
    min-height: 76px;
    padding: 17px 46px 16px 18px;
  }

  .resource-card::before {
    width: 34px;
    height: 3px;
  }

  .resource-concept {
    display: none;
  }

  .scenario-methods {
    margin-top: 22px;
    padding-top: 22px;
  }

  .scenario-methods-head {
    display: block;
    margin-bottom: 12px;
  }

  .scenario-methods-head p {
    margin-top: 4px;
  }

  .faq-list .faq-question {
    min-height: 60px;
  }

  .final-cta {
    padding: 50px 0;
  }
}

/* first-screen rollback */
.hero {
  display: block;
  min-height: calc(100svh - 58px);
  padding: 84px 0 98px;
  background:
    linear-gradient(128deg, rgba(183, 253, 219, 0.8) 0%, rgba(212, 243, 255, 0.74) 48%, rgba(246, 242, 255, 0.9) 100%),
    linear-gradient(180deg, #f1fff8 0%, #fbfbfd 86%);
}

.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.82fr);
  gap: 78px;
  min-height: min(680px, calc(100svh - 190px));
  align-items: center;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-title-blue {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
}

.hero-title-main {
  max-width: 780px;
  margin-top: 8px;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 1.08;
}

.hero-lead {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.68;
}

.hero-copy {
  max-width: 660px;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  margin: 34px 0 28px;
}

.hero-note {
  display: inline-flex;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  color: #555d6b;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 76px 0 54px;
  }

  .hero-title-blue {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-title-main {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.78;
  }
}

/* softer hero-to-metrics transition */
.trust-strip {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
  padding: 54px 0 72px;
  border: 0;
  background:
    linear-gradient(
      180deg,
      rgba(247, 252, 255, 0) 0%,
      rgba(239, 251, 255, 0.66) 22%,
      rgba(242, 250, 253, 0.88) 70%,
      rgba(248, 251, 253, 0) 100%
    );
}

.trust-strip::before,
.trust-strip::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.trust-strip::before {
  display: block;
  top: -130px;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(246, 242, 255, 0), rgba(231, 248, 255, 0.72) 72%, rgba(239, 251, 255, 0));
}

.trust-strip::after {
  bottom: -112px;
  height: 190px;
  background:
    linear-gradient(180deg, rgba(242, 250, 253, 0.86), rgba(251, 251, 253, 0));
}

.trust-grid,
.trust-note {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .trust-strip {
    margin-top: -1px;
    padding: 34px 0 52px;
  }

  .trust-strip::before {
    top: -88px;
    height: 150px;
  }

  .trust-strip::after {
    bottom: -72px;
    height: 130px;
  }
}

/* feature tabs: reference open-list style */
.feature-stage {
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1.52fr);
  gap: 46px;
}

.feature-tabs {
  position: sticky;
  top: 86px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.feature-tab {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  min-height: 62px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #516783;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none;
}

.feature-tab::after {
  display: none;
}

.feature-tab:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: none;
  transform: none;
}

.feature-tab.active {
  min-height: 82px;
  border-color: rgba(0, 87, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(29, 29, 31, 0.055);
  color: #111315;
  transform: none;
}

.feature-tab-number,
.feature-tab .feature-tab-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #4f6790;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.feature-tab.active .feature-tab-number {
  color: #111315;
  background: #f4f8ff;
}

.feature-tab strong {
  margin-bottom: 0;
  color: #526985;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

.feature-tab > span:last-child > span {
  color: #405775;
  font-size: 13px;
  line-height: 1.45;
}

.feature-tab.active strong,
.feature-tab.active > span:last-child > span {
  color: #111315;
}

.feature-tab.active > span:last-child > span {
  font-weight: 700;
}

.feature-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}

.feature-image-stage,
.feature-concept {
  min-height: 100%;
  height: 100%;
}

.feature-concept.is-screenshot {
  display: block;
  min-height: auto;
  padding: 0;
  background: #050607;
}

.feature-concept.is-screenshot::before {
  display: none;
}

.feature-screenshot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #050607;
}

.feature-concept.is-screenshot.is-clickable:hover {
  transform: none;
}

@media (max-width: 980px) {
  .feature-stage {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-tabs {
    position: static;
    top: auto;
    gap: 12px;
    padding: 0;
  }
}

@media (max-width: 720px) {
  .feature-tab {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    padding: 10px 12px;
  }

  .feature-tab.active {
    min-height: 72px;
  }

  .feature-tab-number,
  .feature-tab .feature-tab-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .feature-tab strong {
    font-size: 15px;
  }

  .feature-tab > span:last-child > span {
    font-size: 12px;
  }
}

/* resource cards: remove decorative blue bars */
.resource-card::before {
  display: none;
  content: none;
}

.resource-card::after {
  display: none;
  content: none;
}

.resource-card,
.resource-grid-methods .resource-card {
  padding-right: 24px;
}

.resource-grid-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid-cases .resource-card {
  min-height: 168px;
}

.resource-grid-methods .resource-card {
  min-height: 116px;
}

.resource-card > .resource-card-copy {
  max-width: none;
  margin-top: -4px;
  color: #66758d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.resource-grid-methods .resource-card > .resource-card-copy {
  max-width: 360px;
}

@media (max-width: 1180px) {
  .resource-grid-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 720px) {
  .resource-grid-methods {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .resource-grid-methods .resource-card {
    min-height: 96px;
    padding-right: 18px;
  }

  .resource-grid-cases .resource-card {
    min-height: 108px;
  }

  .resource-card > .resource-card-copy {
    font-size: 12.5px;
  }
}

/* homepage hero typography and layout polish */
.hero {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 58px);
  padding: 118px 0 128px;
}

.hero-grid {
  grid-template-columns: minmax(0, 600px) minmax(360px, 430px);
  justify-content: space-between;
  gap: clamp(56px, 5.5vw, 96px);
  min-height: auto;
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.hero-content {
  width: min(100%, 600px);
}

.hero .eyebrow.concept-marker {
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 20px;
}

.hero-title-blue {
  margin-left: 2px;
  font-size: 48px;
  line-height: 1.06;
}

.hero-title-main {
  max-width: 640px;
  margin-top: 7px;
  font-size: 56px;
  line-height: 1.06;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 10px;
  color: #5b6674;
  font-size: 18px;
  line-height: 1.66;
}

.hero-copy {
  max-width: 590px;
  color: #596575;
  font-size: 15px;
  line-height: 1.72;
}

.hero-actions {
  margin: 28px 0 22px;
}

.hero-visual {
  width: min(100%, 430px);
}

.visual-frame {
  box-shadow: 0 26px 68px rgba(29, 29, 31, 0.11);
}

.hero-write-concept {
  min-height: 300px;
  padding: 24px;
}

.topbar {
  border-bottom-color: rgba(29, 29, 31, 0.035);
  background: rgba(251, 251, 253, 0.58);
  box-shadow: none;
}

.topbar.nav-scrolled {
  border-bottom-color: rgba(29, 29, 31, 0.085);
  background: rgba(251, 251, 253, 0.9);
}

.nav.container {
  width: min(100% - 88px, 1810px);
}

.brand {
  min-width: 178px;
}

.brand .brand-image {
  display: block;
  width: 136px;
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.footer-brand .brand-image {
  width: 118px;
}

.nav-links {
  gap: 28px;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 48px;
    width: min(100% - 64px, 1240px);
  }

  .hero-title-blue {
    font-size: 44px;
  }

  .hero-title-main {
    font-size: 52px;
  }

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

@media (max-width: 980px) {
  .nav.container {
    width: min(100% - 40px, 760px);
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 80px 0 62px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 44px, 760px);
  }

  .hero-visual {
    width: min(100%, 560px);
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .nav.container {
    width: min(100% - 32px, 600px);
  }

  .hero {
    padding: 72px 0 52px;
  }

  .hero .eyebrow.concept-marker {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero-title-blue {
    margin-left: 1px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-title-main {
    margin-top: 6px;
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.76;
  }

  .hero-actions {
    margin: 28px 0 22px;
  }
}

.concept-marker-plan {
  --marker-accent: #0f8d68;
  --marker-glow: rgba(15, 141, 104, 0.12);
}

.product-plans-section {
  position: relative;
  padding-top: clamp(58px, 6vw, 78px);
}

#capabilities + .product-plans-section,
.product-plans-section + .case-section {
  padding-top: clamp(52px, 6vw, 76px);
}

.product-plan-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.product-plan-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0;
  min-height: 100%;
  padding: 24px 24px 22px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    color-mix(in srgb, var(--plan-accent, var(--blue)) 4%, #ffffff);
  box-shadow: 0 18px 48px rgba(29, 29, 31, 0.06);
  scroll-margin-top: 92px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--plan-accent, var(--blue));
  content: "";
}

.product-plan-card.is-active {
  border-color: color-mix(in srgb, var(--plan-accent, var(--blue)) 28%, rgba(29, 29, 31, 0.08));
  box-shadow: 0 24px 64px rgba(29, 29, 31, 0.09);
}

.product-plan-copy {
  display: grid;
  align-content: start;
  min-width: 0;
}

.product-plan-copy h3 {
  margin-bottom: 6px;
  color: #111315;
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 860;
  line-height: 1.08;
}

.product-plan-copy h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.product-plan-copy h3 a:hover,
.product-plan-copy h3 a:focus-visible {
  color: var(--plan-accent, var(--blue));
}

.product-plan-subtitle {
  min-height: 44px;
  margin: 0 0 18px;
  color: #4e5d70;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.46;
}

.product-plan-fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-bottom: 0;
  padding: 12px;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.product-plan-fit b {
  color: var(--plan-accent, var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.product-plan-fit p {
  margin: 0;
  color: #596575;
  font-size: 13px;
  line-height: 1.66;
}

.product-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.product-plan-actions .button {
  min-height: 42px;
  padding-inline: 18px;
}

.product-plan-actions .button-ghost {
  background: #fff;
}

.product-plan-visual {
  order: -1;
  align-self: start;
  min-width: 0;
  margin: -24px -24px 0;
}

.product-plan-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(135deg, rgba(244, 248, 255, 0.94), rgba(255, 255, 255, 0.88)),
    color-mix(in srgb, var(--plan-accent, var(--blue)) 6%, #ffffff);
}

.product-plan-shot::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.88));
  content: "";
  pointer-events: none;
}

.product-plan-concept-shot::after {
  display: none;
}

.product-plan-clear-shot {
  display: grid;
  gap: 8px;
  padding: 15px 22px;
  background:
    linear-gradient(110deg, rgba(255, 252, 246, 0.95), rgba(245, 249, 255, 0.94) 62%, rgba(238, 247, 255, 0.86)),
    #fff;
}

.product-plan-clear-shot.is-enterprise {
  background:
    linear-gradient(110deg, rgba(255, 252, 246, 0.95), rgba(245, 249, 255, 0.95) 58%, rgba(238, 244, 255, 0.9)),
    #fff;
}

.clear-shot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.clear-shot-head strong {
  min-width: 0;
  color: #111315;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.clear-shot-head span {
  flex: 0 0 auto;
  color: var(--plan-accent, var(--blue));
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.clear-flow-list {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.clear-flow-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 87, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(29, 29, 31, 0.035);
}

.clear-flow-row b {
  color: #111315;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.clear-flow-row span {
  min-width: 0;
  color: #536174;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.product-plan-architecture-shot {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(244, 248, 255, 0.9)),
    #fff;
}

.product-plan-architecture-shot::after {
  display: none;
}

.architecture-shot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  color: #637085;
  font-size: 12px;
  font-weight: 900;
}

.architecture-shot-head strong {
  color: #111315;
  font-size: 14px;
}

.architecture-shot-head span:last-child {
  color: var(--plan-accent, var(--amber));
}

.architecture-shot-layer {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid rgba(223, 141, 34, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.architecture-shot-layer b {
  color: #111315;
  font-size: 12px;
  line-height: 1.2;
}

.architecture-shot-layer span {
  overflow: hidden;
  color: #5f6b7d;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-plan-card .product-plan-copy {
  padding-top: 2px;
}

.plan-screen {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 225px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.plan-screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  color: #657084;
  background: #fbfbfd;
  font-size: 12px;
  font-weight: 800;
}

.plan-screen-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.plan-screen-status {
  display: none;
  color: var(--plan-accent, var(--blue));
}

.plan-screen-body {
  min-height: 181px;
  padding: 14px 16px 16px;
  overflow: visible;
  background: #f7fafc;
}

.plan-preview-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.plan-preview-flow span,
.plan-preview-pill {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--plan-accent, var(--blue)) 18%, #ffffff);
  border-radius: 8px;
  color: color-mix(in srgb, var(--plan-accent, var(--blue)) 88%, #111315);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
}

.plan-preview-doc,
.plan-preview-panel,
.plan-preview-layer {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
}

.plan-preview-doc {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.plan-preview-doc h4,
.plan-preview-panel h4 {
  margin: 0;
  color: #111315;
  font-size: 16px;
  line-height: 1.3;
}

.plan-preview-doc p {
  margin: 0;
  color: #5b6879;
  font-size: 12px;
  line-height: 1.58;
}

.plan-preview-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.plan-preview-checks span {
  padding: 8px;
  border-radius: 7px;
  color: #245f48;
  background: #effaf5;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.plan-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.plan-preview-metric {
  padding: 12px 10px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
}

.plan-preview-metric b {
  display: block;
  color: #111315;
  font-size: 24px;
  line-height: 1;
}

.plan-preview-metric span {
  display: block;
  margin-top: 6px;
  color: #637085;
  font-size: 12px;
  line-height: 1.3;
}

.plan-preview-board {
  display: grid;
  gap: 8px;
}

.plan-preview-panel {
  display: grid;
  gap: 9px;
  padding: 13px;
}

.plan-preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding-top: 9px;
  border-top: 1px solid rgba(29, 29, 31, 0.07);
  color: #556276;
  font-size: 12px;
  line-height: 1.35;
}

.plan-preview-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.plan-preview-row b {
  color: var(--plan-accent, var(--blue));
  font-size: 12px;
}

.plan-preview-architecture {
  display: grid;
  gap: 8px;
}

.plan-preview-layer {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
}

.plan-preview-layer b {
  color: #111315;
  font-size: 12px;
  line-height: 1.3;
}

.plan-preview-layer span {
  color: #5f6b7d;
  font-size: 12px;
  line-height: 1.35;
}

.personal-editor {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.editor-sidebar {
  padding: 16px 12px;
  border-right: 1px solid rgba(29, 29, 31, 0.08);
  background: #fff;
}

.editor-sidebar b,
.dashboard-sidebar b {
  display: block;
  margin-bottom: 12px;
  color: #111315;
  font-size: 13px;
  line-height: 1.35;
}

.editor-sidebar span,
.dashboard-sidebar span {
  display: block;
  margin-top: 9px;
  color: #5d6878;
  font-size: 12px;
  line-height: 1.45;
}

.editor-page {
  padding: 20px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.editor-toolbar span,
.arch-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(0, 87, 255, 0.14);
  border-radius: 999px;
  color: #0057ff;
  background: #f4f8ff;
  font-size: 12px;
  font-weight: 800;
}

.editor-document {
  padding: 22px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
}

.editor-document h4,
.dashboard-main h4,
.arch-diagram h4 {
  margin: 0 0 10px;
  color: #111315;
  font-size: 17px;
  line-height: 1.35;
}

.editor-document p {
  margin: 0 0 13px;
  color: #4f5c6c;
  font-size: 13px;
  line-height: 1.72;
}

.editor-media-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 16px 0;
}

.editor-image-block {
  display: grid;
  place-items: center;
  min-height: 88px;
  border: 1px solid rgba(15, 141, 104, 0.2);
  border-radius: 8px;
  color: #0f7d5e;
  background:
    linear-gradient(135deg, rgba(232, 255, 245, 0.92), rgba(244, 248, 255, 0.94));
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.editor-check-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.editor-check-list span {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #31523f;
  background: #effaf5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.enterprise-dashboard {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.dashboard-sidebar {
  padding: 16px 12px;
  border-right: 1px solid rgba(29, 29, 31, 0.08);
  background: #fff;
}

.dashboard-main {
  padding: 16px;
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-metric {
  padding: 12px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
}

.dashboard-metric b {
  display: block;
  color: #111315;
  font-size: 22px;
  line-height: 1;
}

.dashboard-metric span {
  display: block;
  margin-top: 7px;
  color: #6a7484;
  font-size: 12px;
  line-height: 1.35;
}

.dashboard-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.dashboard-panel {
  padding: 14px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
}

.dashboard-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #111315;
  font-size: 14px;
}

.task-row,
.audit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.07);
  color: #4f5c6c;
  font-size: 12px;
  line-height: 1.4;
}

.task-row:first-of-type,
.audit-row:first-of-type {
  border-top: 0;
}

.task-row b,
.audit-row b {
  color: var(--plan-accent, var(--blue));
  font-size: 12px;
}

.private-architecture {
  padding: 16px;
}

.arch-diagram {
  display: grid;
  gap: 12px;
}

.arch-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: stretch;
}

.arch-label {
  display: grid;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  color: #111315;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

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

.arch-node {
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(0, 87, 255, 0.13);
  border-radius: 8px;
  background: #fff;
}

.arch-node strong {
  display: block;
  margin-bottom: 6px;
  color: #111315;
  font-size: 13px;
  line-height: 1.3;
}

.arch-node span {
  display: block;
  color: #5d6878;
  font-size: 12px;
  line-height: 1.45;
}

.arch-row:nth-child(3) .arch-node {
  border-color: rgba(15, 141, 104, 0.18);
  background: #f8fffb;
}

.arch-row:nth-child(4) .arch-node {
  border-color: rgba(223, 141, 34, 0.18);
  background: #fffaf1;
}

.product-modal {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #111315;
  background: #fff;
  box-shadow: 0 34px 90px rgba(29, 29, 31, 0.22);
}

.product-modal::backdrop {
  background: rgba(17, 19, 21, 0.42);
  backdrop-filter: blur(7px);
}

.product-modal-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.product-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.product-modal-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.product-modal-head p {
  margin: 8px 0 0;
  color: #657084;
  font-size: 14px;
  line-height: 1.7;
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 6px;
  color: #3f4652;
  background: #fff;
  cursor: pointer;
}

.product-modal-info {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #f7fafc;
}

.product-modal-info span {
  color: #4f5c6c;
  font-size: 14px;
  line-height: 1.6;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1180px) {
  .product-plan-stack {
    gap: 14px;
  }

  .product-plan-card {
    padding: 20px;
  }

  .product-plan-visual {
    margin: -20px -20px 0;
  }

  .arch-nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-plan-stack {
    grid-template-columns: 1fr;
  }

  .product-plan-card {
    grid-template-columns: 1fr;
    min-height: auto;
    scroll-margin-top: 92px;
  }

  .product-plan-visual {
    max-width: 760px;
  }

  .plan-screen-body {
    min-height: 226px;
  }
}

@media (max-width: 720px) {
  .product-plans-section {
    padding-top: 64px;
  }

  .product-plan-card {
    padding: 20px;
  }

  .product-plan-fit {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .product-plan-copy h3 {
    font-size: 28px;
  }

  .product-plan-actions .button {
    width: 100%;
  }

  .product-plan-clear-shot {
    aspect-ratio: auto;
    min-height: 228px;
    padding: 16px;
  }

  .clear-shot-head {
    align-items: flex-start;
  }

  .clear-flow-row {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 36px;
    padding: 0 10px;
  }

  .plan-screen-topbar {
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 10px 13px;
  }

  .plan-screen-body {
    height: auto;
    min-height: auto;
  }

  .personal-editor,
  .enterprise-dashboard,
  .dashboard-board,
  .arch-row {
    grid-template-columns: 1fr;
  }

  .editor-sidebar,
  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  }

  .editor-media-row,
  .dashboard-summary,
  .arch-nodes {
    grid-template-columns: 1fr;
  }

  .private-architecture {
    padding: 16px;
  }

  .product-modal-card {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .product-plan-clear-shot {
    min-height: 268px;
  }

  .clear-shot-head {
    display: grid;
    gap: 3px;
    justify-content: stretch;
  }

  .clear-shot-head span {
    justify-self: start;
  }

  .clear-flow-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 7px 10px;
  }
}

.home-upload-mode {
  background: #eaf9fd;
}

.home-upload-mode .topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0;
  background: #c9f4ff;
  box-shadow: none;
  backdrop-filter: none;
}

.home-upload-mode .topbar.nav-scrolled {
  border-bottom: 0;
  background: rgba(201, 244, 255, 0.94);
  box-shadow: 0 10px 26px rgba(42, 117, 142, 0.08);
}

.home-upload-mode .nav.container {
  width: min(1216px, calc(100% - 48px));
  min-height: 54px;
  padding: 0;
}

.home-upload-mode .brand {
  min-width: 132px;
}

.home-upload-mode .brand img {
  width: 132px;
  height: auto;
}

.home-upload-mode .nav-links {
  display: none !important;
}

.home-upload-mode .nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.home-console-link,
.home-enterprise-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.home-console-link {
  border: 1px solid rgba(0, 87, 255, 0.4);
  color: #0057ff;
  background: rgba(255, 255, 255, 0.24);
}

.home-enterprise-link {
  color: #fff;
  background: #111820;
}

.home-new-badge {
  position: absolute;
  top: -12px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  padding: 0 5px;
  border-radius: 6px;
  color: #fff;
  background: #ff4d5f;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.home-upload-mode .menu-button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dff7ff;
  box-shadow: inset 0 0 0 1px rgba(0, 87, 255, 0.18);
}

.home-upload-mode .menu-button svg {
  display: none;
}

.home-avatar {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f9d0a3 0 23%, transparent 24%),
    radial-gradient(circle at 50% 83%, #1d76ff 0 31%, transparent 32%),
    #ffffff;
}

.home-avatar::before {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 10px;
  height: 5px;
  border-radius: 8px 8px 2px 2px;
  background: #10202c;
  content: "";
}

.home-upload-hero {
  position: relative;
  display: block;
  align-items: initial;
  min-height: calc(100svh - 54px);
  padding: 132px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #c9f4ff 0%, #dff8ff 52%, #fbfcfd 100%);
}

.home-upload-hero .container {
  width: min(1216px, calc(100% - 48px));
}

.home-upload-wrap {
  display: grid;
  justify-items: center;
  gap: 44px;
}

.home-upload-title {
  margin: 0;
  color: #111820;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.home-upload-title span {
  color: #0abed4;
}

.home-tool-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(104px, 1fr));
  width: min(676px, 100%);
  min-height: 44px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.home-tool-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  color: #111820;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.home-tool-tabs a.is-active {
  color: #fff;
  background: #111820;
}

.home-upload-panel {
  display: grid;
  place-items: center;
  width: min(1210px, 100%);
  min-height: 402px;
  padding: 46px;
  border: 1px dashed rgba(122, 169, 188, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
}

.home-upload-content {
  display: grid;
  justify-items: center;
  gap: 22px;
  color: #1f2b37;
  text-align: center;
}

.home-file-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.home-file-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 68px;
  border-radius: 13px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.1);
}

.home-file-icon::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 0 13px 0 9px;
  background: rgba(255, 255, 255, 0.64);
  content: "";
}

.home-file-icon.is-word {
  background: linear-gradient(180deg, #18b8ff, #126ee9);
}

.home-file-icon.is-ppt {
  background: linear-gradient(180deg, #ff7c27, #ff4322);
}

.home-upload-primary {
  margin: 8px 0 0;
  color: #1d2630;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.home-upload-primary a {
  color: #0a76ff;
  font-weight: 700;
  text-decoration: none;
}

.home-upload-note {
  margin: 0;
  color: #74818f;
  font-size: 13px;
  line-height: 1.55;
}

.home-upload-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 144px;
  min-height: 40px;
  border: 1px solid rgba(86, 101, 115, 0.48);
  border-radius: 7px;
  color: #9aa4ad;
  background: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  font-weight: 500;
  cursor: not-allowed;
}

.home-upload-next i {
  width: 15px;
  height: 15px;
}

.home-chat {
  position: fixed;
  right: 12px;
  bottom: 10px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.home-chat-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  color: #4a5562;
  background: #fff;
  box-shadow: 0 3px 12px rgba(31, 42, 55, 0.16);
  font-size: 12px;
  font-weight: 600;
}

.home-chat-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #5a8dff;
}

.home-chat-button {
  display: grid;
  place-items: center;
  width: 38px;
  min-height: 78px;
  border-radius: 6px;
  color: #fff;
  background: #ec3d45;
  box-shadow: 0 8px 22px rgba(236, 61, 69, 0.28);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .home-upload-mode .nav.container,
  .home-upload-hero .container {
    width: min(100% - 32px, 760px);
  }

  .home-upload-hero {
    min-height: auto;
    padding: 84px 0 56px;
  }

  .home-upload-title {
    font-size: 42px;
  }

  .home-tool-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 18px;
  }

  .home-tool-tabs a {
    border-radius: 14px;
  }

  .home-upload-panel {
    min-height: 360px;
    padding: 34px 24px;
  }
}

@media (max-width: 720px) {
  .home-upload-mode .nav.container,
  .home-upload-hero .container {
    width: min(100% - 24px, 560px);
  }

  .home-upload-mode .brand {
    min-width: 116px;
  }

  .home-upload-mode .brand img {
    width: 116px;
  }

  .home-upload-mode .nav-actions {
    gap: 8px;
  }

  .home-console-link,
  .home-enterprise-link {
    min-height: 28px;
    padding: 0 9px;
    font-size: 12px;
  }

  .home-upload-hero {
    padding: 64px 0 52px;
  }

  .home-upload-wrap {
    gap: 28px;
  }

  .home-upload-title {
    font-size: 34px;
  }

  .home-tool-tabs {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 18px;
  }

  .home-upload-panel {
    min-height: 330px;
    padding: 28px 18px;
  }

  .home-file-icons {
    gap: 28px;
  }

  .home-upload-primary {
    font-size: 16px;
  }

  .home-chat {
    right: 8px;
    bottom: 8px;
  }

  .home-chat-bubble {
    display: none;
  }
}

@media (max-width: 420px) {
  .home-upload-mode .nav-actions {
    gap: 6px;
  }

  .home-console-link,
  .home-enterprise-link {
    padding: 0 8px;
  }

  .home-new-badge {
    right: -8px;
  }

  .home-upload-title {
    font-size: 30px;
  }

  .home-upload-panel {
    min-height: 300px;
  }
}

.home-upload-mode {
  overflow-x: hidden;
  background: #effcff;
}

.home-upload-mode .footer {
  display: none !important;
}

.home-upload-mode .trust-strip {
  display: none !important;
}

.home-upload-mode #overview {
  display: none !important;
}

.home-upload-mode #faq {
  display: none !important;
}

.home-upload-mode .resource-methods-home {
  display: none !important;
}

.home-upload-mode .final-cta {
  display: none !important;
}

.home-upload-mode .topbar {
  height: 60px;
  background: #c9f4ff;
}

.home-upload-mode .topbar.nav-scrolled {
  background: rgba(201, 244, 255, 0.96);
  box-shadow: 0 10px 28px rgba(25, 98, 126, 0.1);
}

.home-upload-mode .nav.container,
.home-upload-hero .container,
.home-enterprise-section .container,
.home-footer .container {
  width: min(1352px, calc(100% - 48px));
  max-width: none;
}

.home-upload-mode .nav.container {
  min-height: 60px;
}

.home-upload-mode .brand {
  min-width: 142px;
}

.home-upload-mode .brand img {
  width: 142px;
}

.home-upload-mode .nav-actions {
  gap: 12px;
}

.home-upload-mode .nav-links {
  display: flex !important;
  align-items: center;
  gap: 22px;
  margin-left: 34px;
  color: rgba(17, 24, 32, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-shadow: none;
}

.home-upload-mode .nav-link {
  padding: 22px 0;
  color: inherit;
}

.home-upload-mode .nav-link::after {
  bottom: 14px;
  background: #111820;
}

.home-upload-mode .nav-link:hover,
.home-upload-mode .nav-link.active,
.home-upload-mode .nav-item:focus-within .nav-link {
  color: #111820;
}

.home-upload-mode .nav-flyout {
  top: 58px;
}

.home-upload-mode #overview,
.home-upload-mode #capabilities,
.home-upload-mode #product-plans,
.home-upload-mode #resources,
.home-upload-mode #faq,
.home-upload-mode #media {
  scroll-margin-top: 82px;
}

.home-top-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.home-top-link svg {
  width: 15px;
  height: 15px;
}

.home-free-link {
  min-width: 144px;
  color: #fff;
  background: #f64954;
  box-shadow: 0 8px 18px rgba(246, 73, 84, 0.24);
}

.home-enterprise-link,
.home-login-link {
  min-width: 73px;
  color: #fff;
  background: #111820;
}

.home-login-link {
  min-width: 78px;
}

.home-new-badge {
  top: -13px;
  right: -16px;
  min-height: 16px;
  border-radius: 5px;
  background: #ff4d5f;
  font-size: 10px;
}

.home-upload-mode .menu-button {
  display: none;
}

.home-upload-hero {
  min-height: calc(100svh - 60px);
  padding: 86px 0 64px;
  background: linear-gradient(180deg, #c9f4ff 0%, #dcf8ff 58%, #fbfdff 100%);
}

.home-upload-wrap {
  gap: 0;
}

.home-upload-title {
  color: #121922;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.home-upload-title span {
  margin-left: 8px;
  color: #0bb7d1;
}

.home-tool-tabs {
  grid-template-columns: repeat(5, 142px);
  justify-content: center;
  width: 750px;
  min-height: 48px;
  margin-top: 70px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(74, 138, 162, 0.08);
}

.home-tool-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  color: #111820;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.home-tool-tabs button.is-active {
  color: #fff;
  background: #111820;
}

.home-upload-panel,
.home-bid-search-panel {
  position: relative;
  width: min(1340px, 100%);
  min-height: 506px;
  margin-top: 0;
  padding: 60px 18px 70px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 48px rgba(74, 138, 162, 0.08);
}

.home-upload-panel::before {
  position: absolute;
  inset: 60px 18px 70px;
  border: 1px dashed rgba(106, 158, 181, 0.5);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.home-upload-panel.is-dragging::before {
  border-color: #0a76ff;
  background: rgba(10, 118, 255, 0.04);
}

.home-upload-content {
  position: relative;
  z-index: 1;
  min-height: 374px;
  align-content: center;
  gap: 18px;
}

.home-file-icons {
  gap: 46px;
}

.home-file-icon {
  width: 108px;
  height: 108px;
  border-radius: 18px;
  align-content: end;
  padding-bottom: 18px;
  font-size: 42px;
  box-shadow: 0 18px 36px rgba(17, 24, 32, 0.14);
}

.home-file-icon::before {
  position: absolute;
  top: 16px;
  left: 20px;
  right: 20px;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.44), 0 36px 0 rgba(255, 255, 255, 0.32);
  content: "";
}

.home-file-icon::after {
  width: 31px;
  height: 31px;
  border-radius: 0 18px 0 13px;
}

.home-upload-primary {
  margin-top: 0;
  color: #1d2630;
  font-size: 18px;
  font-weight: 500;
}

.home-upload-link {
  border: 0;
  padding: 0;
  color: #0a76ff;
  background: transparent;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.home-upload-note,
.home-tool-options {
  color: #798797;
  font-size: 13px;
  line-height: 1.62;
}

.home-tool-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.home-tool-options span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #4c5968;
  background: rgba(255, 255, 255, 0.72);
}

.home-file-list {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 4px;
}

.home-file-list.has-files {
  display: flex;
}

.home-selected-file {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  width: 128px;
  height: 128px;
  padding: 14px 10px 12px;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(31, 42, 55, 0.08);
}

.home-selected-file b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 50px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #18b8ff, #126ee9);
  font-size: 16px;
  line-height: 1;
}

.home-selected-file span {
  display: -webkit-box;
  overflow: hidden;
  max-width: 100%;
  color: #303a45;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-remove-file {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  color: #7b8794;
  background: #eef3f8;
  cursor: pointer;
}

.home-remove-file svg {
  width: 14px;
  height: 14px;
}

.home-upload-next {
  width: 160px;
  min-height: 44px;
  margin-top: 40px;
  border: 1px solid rgba(87, 99, 112, 0.46);
  border-radius: 6px;
  color: #9aa4ad;
  background: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  font-weight: 500;
}

.home-upload-next.is-active {
  border-color: #111820;
  color: #fff;
  background: #111820;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 24, 32, 0.18);
}

.home-toast {
  position: fixed;
  left: 50%;
  top: 76px;
  z-index: 180;
  transform: translate(-50%, -12px);
  opacity: 0;
  pointer-events: none;
  min-width: 240px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 24, 32, 0.92);
  box-shadow: 0 14px 34px rgba(17, 24, 32, 0.22);
  font-size: 14px;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.home-bid-search-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 58px 72px 60px;
}

.home-bid-search-panel[hidden],
.home-upload-panel[hidden] {
  display: none;
}

.home-keywords {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.home-keywords button,
.home-bid-types button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #364252;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.home-keywords button {
  min-height: 34px;
  padding: 0 16px;
  box-shadow: 0 8px 18px rgba(31, 42, 55, 0.06);
}

.home-bid-search-form {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.home-bid-search-form input {
  height: 46px;
  border: 1px solid rgba(83, 114, 137, 0.18);
  border-radius: 7px;
  padding: 0 16px;
  color: #111820;
  background: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.home-bid-search-form button {
  height: 46px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #111820;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  cursor: pointer;
}

.home-bid-types {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.home-bid-types strong {
  color: #111820;
  font-size: 15px;
}

.home-bid-type-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-bid-types button {
  min-height: 32px;
  padding: 0 13px;
}

.home-bid-types button.is-active {
  color: #fff;
  background: #111820;
}

.home-enterprise-section {
  min-height: 554px;
  padding: 44px 0 64px;
  background: #f7fbff;
}

.home-enterprise-grid {
  display: grid;
  grid-template-columns: minmax(0, 591px) minmax(0, 706px);
  align-items: start;
  justify-content: space-between;
  gap: 72px;
}

.home-enterprise-card,
.home-demo-form {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 64, 98, 0.1);
}

.home-enterprise-card {
  min-height: 528px;
  padding: 54px 56px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 121, 255, 0.1), rgba(14, 196, 214, 0.06)),
    #fff;
}

.home-enterprise-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0064e5;
  background: rgba(0, 100, 229, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.home-enterprise-card h2 {
  margin: 26px 0 26px;
  color: #111820;
  font-size: 38px;
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: 0;
}

.home-enterprise-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-enterprise-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  color: #314153;
  font-size: 15px;
  font-weight: 700;
}

.home-enterprise-features i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #0bb7d1;
}

.home-enterprise-features svg {
  width: 13px;
  height: 13px;
}

.home-demo-form {
  min-height: 545px;
  padding: 40px 46px 34px;
}

.home-demo-form h2 {
  margin: 0 0 28px;
  color: #111820;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: 0;
}

.home-form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.home-form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1f2b37;
  font-size: 14px;
  font-weight: 760;
}

.home-form-label em {
  color: #f04b54;
  font-style: normal;
}

.home-counter {
  color: #8b96a5;
  font-size: 12px;
  font-weight: 500;
}

.home-form-field input {
  height: 46px;
  border: 1px solid #e1e7ee;
  border-radius: 6px;
  padding: 0 14px;
  color: #111820;
  background: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.home-form-field input:focus {
  border-color: #0a76ff;
  box-shadow: 0 0 0 3px rgba(10, 118, 255, 0.1);
}

.home-form-submit {
  width: 100%;
  height: 46px;
  margin-top: 8px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #111820;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.home-form-tip {
  margin: 18px 0 0;
  color: #858f9d;
  font-size: 12px;
  line-height: 1.7;
}

.home-footer {
  padding: 70px 0 14px;
  background: #10161c;
  color: #d9e2ec;
}

.home-footer .container {
  width: min(1292px, calc(100% - 48px));
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 235px 86px 92px 252px 456px;
  align-items: start;
  gap: 54px;
}

.home-footer-brand img {
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1);
}

.home-footer-brand p {
  margin: 30px 0 0;
  max-width: 230px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.home-footer-col {
  display: grid;
  align-content: start;
  gap: 18px;
}

.home-footer-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.home-footer-col a,
.home-footer-col span {
  color: #9dafc2;
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
}

.home-footer-col a:hover {
  color: #fff;
}

.home-footer-inline-links {
  display: grid;
  grid-template-columns: 74px max-content;
  align-items: baseline;
  column-gap: 54px;
  white-space: nowrap;
}

.home-footer-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
}

.home-contact-list {
  display: flex;
  gap: 18px;
}

.home-qr-card {
  display: grid;
  justify-items: start;
  gap: 8px;
  width: 96px;
}

.home-qr-card b {
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.home-qr-card img {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 6px;
  background: #fff;
}

.home-phone-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px !important;
  line-height: 1;
  white-space: nowrap;
}

.home-phone-pill i {
  width: 12px;
  height: 12px;
  color: #2e8cff;
}

.home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 96px;
  padding-top: 0;
  border-top: 0;
  color: #9faab8;
  font-size: 12px;
}

.home-footer-bottom span:last-child {
  color: #1477ff;
}

.home-upload-mode .topbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

.home-footer {
  box-sizing: border-box;
  height: 499px;
  min-height: 499px;
  background: #0d1217;
}

.home-footer-grid {
  grid-template-columns: 241px 63px 74px 256px 456px;
  gap: 54px;
}

.home-footer-bottom {
  margin-top: 108px;
}

.home-phone-pill svg {
  width: 12px;
  height: 12px;
  color: #2e8cff;
  stroke-width: 2;
}

.home-footer-col h3,
.home-footer-col a,
.home-qr-card b,
.home-phone-pill {
  white-space: nowrap;
}

.home-chat {
  display: none !important;
}

.home-chat-questions {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.home-chat-bubble {
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  color: #3f4b59;
  font-size: 12px;
  font-weight: 600;
}

.home-chat-dot {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #79a7ff, #2b71ff);
}

.home-chat-button {
  width: 44px;
  min-height: 98px;
  border-radius: 6px 0 0 6px;
  background: #ec3d45;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .home-upload-mode .nav-links {
    display: none !important;
  }

  .home-upload-mode .menu-button {
    display: inline-grid;
    flex: 0 0 auto;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.62);
    border-radius: 8px;
  }

  .home-upload-mode .menu-button svg {
    display: block;
    width: 18px;
    height: 18px;
    color: #111820;
  }

  .home-upload-mode .menu-button .home-avatar {
    display: none;
  }

  .home-upload-mode .nav.mobile-open .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 130;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 8px 18px 16px;
    border-radius: 0 0 14px 14px;
    background: rgba(246, 253, 255, 0.98);
    box-shadow: 0 18px 42px rgba(29, 31, 45, 0.12);
  }

  .home-upload-mode .nav.mobile-open .nav-link {
    width: 100%;
    padding: 13px 0;
  }

  .home-upload-mode .nav.mobile-open .nav-link::after,
  .home-upload-mode .nav.mobile-open .nav-flyout {
    display: none;
  }

  .home-tool-tabs {
    width: min(750px, 100%);
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .home-tool-tabs button {
    width: 100%;
  }

  .home-upload-panel,
  .home-bid-search-panel {
    width: 100%;
  }

  .home-enterprise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-enterprise-card,
  .home-demo-form {
    min-height: auto;
  }

  .home-footer {
    height: auto;
    min-height: 0;
  }

  .home-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-footer-qr-col {
    grid-column: 1 / -1;
  }

  .home-contact-list {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .home-upload-mode .nav.container,
  .home-upload-hero .container,
  .home-enterprise-section .container,
  .home-footer .container {
    width: min(100% - 24px, 560px);
  }

  .home-upload-mode .brand {
    min-width: 116px;
  }

  .home-upload-mode .brand img {
    width: 116px;
  }

  .home-free-link {
    display: none;
  }

  .home-top-link {
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home-upload-hero {
    min-height: auto;
    padding: 54px 0 46px;
  }

  .home-upload-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .home-upload-title span {
    display: inline;
    margin-left: 4px;
  }

  .home-tool-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 36px;
    border-radius: 14px;
  }

  .home-tool-tabs button {
    border-radius: 10px;
  }

  .home-upload-panel,
  .home-bid-search-panel {
    min-height: 410px;
    padding: 34px 14px 46px;
  }

  .home-upload-panel::before {
    inset: 34px 14px 46px;
  }

  .home-upload-content {
    min-height: 330px;
  }

  .home-file-icon {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    padding-bottom: 12px;
    font-size: 30px;
  }

  .home-file-icon::after {
    width: 24px;
    height: 24px;
    border-radius: 0 14px 0 10px;
  }

  .home-upload-primary {
    font-size: 16px;
  }

  .home-bid-search-panel {
    padding: 34px 16px;
  }

  .home-bid-search-form {
    grid-template-columns: 1fr;
  }

  .home-enterprise-section {
    padding: 34px 0 46px;
  }

  .home-enterprise-card,
  .home-demo-form {
    padding: 28px 22px;
  }

  .home-enterprise-card h2,
  .home-demo-form h2 {
    font-size: 28px;
  }

  .home-enterprise-features,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(96px, 1fr));
    gap: 18px 14px;
  }

  .home-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 44px;
  }

  .home-chat-questions {
    display: none;
  }
}

.home-upload-mode .nav.container,
.home-upload-hero .container {
  width: min(1220px, calc(100% - 48px));
}

.home-upload-mode .nav-links {
  display: flex !important;
  gap: 20px;
  margin-left: 34px;
  font-size: 13px;
}

.home-top-link {
  height: 28px;
  padding: 0 13px;
  border-radius: 7px;
  font-size: 13px;
}

.home-free-link {
  min-width: 128px;
  background: linear-gradient(90deg, #ff4d6d 0%, #ff7b38 100%);
  box-shadow: none;
}

.home-enterprise-link {
  min-width: 66px;
}

.home-login-link {
  min-width: 68px;
}

.home-new-badge {
  top: -12px;
  right: -15px;
}

.home-upload-hero {
  min-height: calc(100svh - 60px);
  padding: 126px 0 88px;
  background: linear-gradient(180deg, #c9f4ff 0%, #dff8ff 62%, #fbfdff 100%);
}

.home-upload-title {
  font-size: 50px;
  font-weight: 850;
  line-height: 1.15;
}

.home-tool-tabs {
  width: 676px;
  min-height: 44px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 33px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.home-tool-tabs button {
  width: 100%;
  min-height: 36px;
  font-size: 14px;
}

.home-upload-panel {
  width: min(1208px, 100%);
  min-height: 400px;
  margin-top: 56px;
  padding: 0;
  border: 1px dashed rgba(139, 183, 203, 0.62);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.home-upload-panel::before {
  display: none;
}

.home-upload-content {
  min-height: auto;
  gap: 14px;
}

.home-file-icons {
  gap: 46px;
}

.home-file-icon {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  padding-bottom: 10px;
  font-size: 28px;
  box-shadow: none;
}

.home-file-icon::before {
  top: 10px;
  left: 13px;
  right: 16px;
  height: 5px;
  box-shadow: 0 13px 0 rgba(255, 255, 255, 0.44), 0 26px 0 rgba(255, 255, 255, 0.3);
}

.home-file-icon::after {
  width: 21px;
  height: 21px;
  border-radius: 0 12px 0 8px;
}

.home-upload-primary {
  margin-top: 6px;
  font-size: 16px;
}

.home-upload-note,
.home-tool-options {
  font-size: 12px;
  line-height: 1.55;
}

.home-upload-next {
  width: 144px;
  min-height: 40px;
  margin-top: 36px;
  border-radius: 7px;
  font-size: 15px;
  box-shadow: none;
}

.home-upload-next[hidden] {
  display: none !important;
}

.home-invalid-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(1208px, 100%);
  margin-top: 56px;
}

.home-invalid-upload-grid[hidden] {
  display: none !important;
}

.home-invalid-panel {
  display: grid;
  place-items: center;
  min-height: 400px;
  border: 1px dashed rgba(139, 183, 203, 0.62);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.home-invalid-panel.is-dragging {
  border-color: #0a76ff;
  background: rgba(10, 118, 255, 0.04);
}

.home-invalid-content {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.home-invalid-content .home-file-icon {
  display: grid;
}

.home-chat {
  right: 4px;
  bottom: 0;
  z-index: 140;
  display: grid !important;
  justify-items: end;
  gap: 8px;
}

.home-chat-questions {
  display: grid;
  justify-items: end;
}

.home-chat-bubble {
  min-height: 24px;
  padding: 0 9px;
  font-size: 12px;
  box-shadow: 0 3px 12px rgba(31, 42, 55, 0.13);
}

.home-chat-bubble:not(:last-child) {
  display: none;
}

.home-chat-button {
  position: relative;
  width: 40px;
  min-height: 80px;
  padding-top: 24px;
  border-radius: 6px 0 0 6px;
  background: #ec3d45;
  box-shadow: none;
  font-size: 14px;
}

.home-chat-button::before {
  position: absolute;
  top: -20px;
  left: 4px;
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #ffe0c2 0 22%, transparent 23%),
    radial-gradient(circle at 48% 30%, #4b2a1d 0 14%, transparent 15%),
    radial-gradient(circle at 50% 78%, #3b82f6 0 28%, transparent 29%),
    #f8fbff;
  content: "";
}

.home-chat-button::after {
  position: absolute;
  top: -16px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #fff;
  background: #ff373f;
  content: "4";
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 1120px) {
  .home-upload-mode .nav-links {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .home-upload-hero {
    padding: 54px 0 46px;
  }

  .home-tool-tabs {
    width: 100%;
    margin-top: 36px;
  }

  .home-invalid-upload-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .home-invalid-panel {
    min-height: 300px;
  }

  .home-upload-panel {
    min-height: 360px;
    margin-top: 22px;
    padding: 0 16px;
  }

  .home-file-icon {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }

  .home-chat-questions {
    display: none;
  }
}

.home-enterprise-section {
  min-height: auto;
  padding: 118px 0 118px;
  background: linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
}

.home-enterprise-section .container {
  width: min(1218px, calc(100% - 48px));
}

.home-enterprise-grid {
  grid-template-columns: 555px minmax(0, 1fr);
  align-items: stretch;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  min-height: 498px;
  border-radius: 10px;
  background: #f3f8fe;
  box-shadow: 0 8px 22px rgba(17, 24, 32, 0.16);
}

.home-enterprise-card,
.home-demo-form {
  min-height: 498px;
  border-radius: 0;
  box-shadow: none;
}

.home-enterprise-card {
  position: relative;
  padding: 76px 72px;
  color: #fff;
  background:
    radial-gradient(280px 170px at 88% 95%, rgba(35, 255, 154, 0.82), transparent 64%),
    radial-gradient(330px 160px at 65% 103%, rgba(0, 90, 255, 0.78), transparent 62%),
    radial-gradient(360px 160px at 28% 104%, rgba(0, 180, 255, 0.44), transparent 66%),
    linear-gradient(180deg, #0d151b 0%, #090f13 64%, #05090b 100%);
}

.home-enterprise-card::after {
  position: absolute;
  right: -80px;
  bottom: 22px;
  left: -26px;
  height: 88px;
  border-top: 3px solid rgba(31, 178, 255, 0.72);
  border-radius: 50% 50% 0 0;
  transform: rotate(-7deg);
  filter: blur(0.2px);
  content: "";
}

.home-enterprise-badge {
  display: none;
}

.home-enterprise-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 34px;
  color: #fff;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.25;
}

.home-enterprise-features {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-enterprise-features li {
  min-height: 24px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 760;
}

.home-enterprise-features i {
  width: 20px;
  height: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.home-demo-form {
  padding: 50px 54px 46px;
  background: #f3f8fe;
}

.home-demo-form h2 {
  margin: 0 0 28px;
  color: #111820;
  font-size: 24px;
  font-weight: 620;
}

.home-form-field {
  gap: 10px;
  margin-bottom: 16px;
}

.home-form-label {
  color: #53616f;
  font-size: 13px;
  font-weight: 500;
}

.home-form-label em {
  color: #ff4d5f;
}

.home-form-field input {
  height: 39px;
  border-color: #d9e1ea;
  border-radius: 3px;
  color: #111820;
  font-size: 13px;
  background: #fff;
}

.home-counter {
  padding-right: 2px;
  color: #7d8896;
}

.home-form-submit {
  width: 145px;
  height: 39px;
  margin-top: 28px;
  border-radius: 7px;
  background: #111820;
  font-size: 14px;
}

.home-form-tip {
  margin-top: 16px;
  color: #647282;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .home-enterprise-section {
    padding: 64px 0;
  }

  .home-enterprise-grid {
    grid-template-columns: 1fr;
  }

  .home-enterprise-card,
  .home-demo-form {
    min-height: auto;
  }

  .home-enterprise-card {
    padding: 48px 32px 120px;
  }

  .home-demo-form {
    padding: 34px 28px;
  }
}

.home-enterprise-section {
  position: relative;
  padding: 104px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fdff 58%, #effbff 100%);
}

.home-enterprise-section::after {
  position: absolute;
  right: 0;
  bottom: -72px;
  left: 0;
  z-index: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(239, 251, 255, 1) 0%, rgba(247, 253, 255, 0.92) 52%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.home-enterprise-section .container {
  position: relative;
  z-index: 1;
}

.home-upload-mode .answer-section {
  position: relative;
  padding-top: 46px;
  background: linear-gradient(180deg, #effbff 0%, #f8fdff 28%, #ffffff 100%);
}

.home-upload-mode .answer-section::before {
  position: absolute;
  right: 0;
  top: -1px;
  left: 0;
  height: 1px;
  background: #effbff;
  content: "";
}

@media (max-width: 720px) {
  .home-enterprise-section {
    padding: 56px 0 34px;
  }

  .home-enterprise-section::after {
    bottom: -54px;
    height: 82px;
  }

  .home-upload-mode .answer-section {
    padding-top: 34px;
  }
}

.home-bid-search-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 42px;
  width: min(1136px, 100%);
  min-height: 454px;
  margin-top: 128px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-bid-search-panel[hidden] {
  display: none;
}

.home-keywords {
  position: absolute;
  inset: -86px 0 auto;
  z-index: 0;
  display: block;
  height: 292px;
  pointer-events: none;
}

.home-keywords button {
  position: absolute;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(96, 141, 164, 0.12);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 760;
  transform: rotate(-15deg);
}

.home-keywords button:nth-child(1) { left: 13%; top: 32%; }
.home-keywords button:nth-child(2) { left: 31%; top: 12%; }
.home-keywords button:nth-child(3) { left: 76%; top: 38%; }
.home-keywords button:nth-child(4) { left: 35%; top: 62%; }
.home-keywords button:nth-child(5) { left: 18%; top: 78%; }
.home-keywords button:nth-child(6) { left: 2%; top: 58%; }
.home-keywords button:nth-child(7) { left: 62%; top: 72%; }
.home-keywords button:nth-child(8) { left: 81%; top: 78%; }
.home-keywords button:nth-child(9) { left: 44%; top: 90%; }
.home-keywords button:nth-child(10) { left: 9%; top: 8%; }
.home-keywords button:nth-child(n + 11) { display: none; }

.home-bid-search-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 0;
  width: min(1136px, 100%);
  margin: 0 auto;
}

.home-search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 2;
  width: 18px;
  height: 18px;
  color: #6e7c89;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-bid-search-form input {
  height: 46px;
  border: 1px solid rgba(151, 176, 191, 0.42);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 0 18px 0 38px;
  color: #111820;
  background: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.home-bid-search-form input::placeholder {
  color: #9aa6b2;
}

.home-bid-search-form button {
  height: 46px;
  border-radius: 0 8px 8px 0;
  background: #111820;
  font-size: 16px;
  font-weight: 760;
}

.home-bid-types {
  z-index: 1;
  justify-items: start;
  width: min(1136px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.home-bid-types strong {
  color: #61707f;
  font-size: 14px;
  font-weight: 500;
}

.home-bid-type-list {
  justify-content: flex-start;
  gap: 10px;
}

.home-bid-types button {
  min-width: 76px;
  min-height: 35px;
  padding: 0 13px;
  border: 1px solid rgba(155, 183, 198, 0.36);
  border-radius: 7px;
  color: #1f2b37;
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 500;
}

.home-bid-types button.is-active {
  border-color: #111820;
  color: #fff;
  background: #111820;
}

@media (max-width: 720px) {
  .home-bid-search-panel {
    min-height: 380px;
    margin-top: 44px;
    gap: 24px;
  }

  .home-bid-search-form {
    grid-template-columns: 1fr 78px;
  }

  .home-bid-search-form button {
    font-size: 14px;
  }

  .home-bid-type-list {
    gap: 8px;
  }

  .home-bid-types button {
    min-width: auto;
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }
}

.home-upload-mode[data-active-tool="duplicate"] .home-file-icon.is-ppt {
  display: none;
}

.home-upload-mode[data-active-tool="duplicate"] .home-upload-panel {
  position: relative;
  display: block;
}

.home-upload-mode[data-active-tool="duplicate"] .home-upload-content {
  position: static;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 400px;
}

.home-upload-mode[data-active-tool="duplicate"] .home-tool-options {
  position: absolute;
  left: 28px;
  bottom: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 0;
}

.home-upload-mode[data-active-tool="duplicate"] .home-tool-options span {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(155, 183, 198, 0.42);
  border-radius: 6px;
  color: #172231;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.home-upload-mode[data-active-tool="duplicate"] .home-tool-options span:last-child::after {
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 50%;
  color: #fff;
  background: #111820;
  content: "?";
  font-size: 9px;
  line-height: 1;
}

.home-upload-mode[data-active-tool="interpret"] .home-upload-panel {
  position: relative;
  display: block;
}

.home-upload-mode[data-active-tool="interpret"] .home-upload-content {
  position: static;
  display: grid;
  align-content: start;
  justify-items: center;
  width: 100%;
  min-height: 400px;
  padding-top: 84px;
}

.home-upload-mode[data-active-tool="interpret"] .home-tool-options {
  position: absolute;
  left: 28px;
  bottom: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 0;
}

.home-upload-mode[data-active-tool="interpret"] .home-tool-options span {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(155, 183, 198, 0.42);
  border-radius: 6px;
  color: #172231;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.home-upload-mode[data-active-tool="interpret"] .home-tool-options span::after {
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 50%;
  color: #fff;
  background: #111820;
  content: "?";
  font-size: 9px;
  line-height: 1;
}

@media (max-width: 720px) {
  .home-upload-mode[data-active-tool="interpret"] .home-upload-content {
    align-content: center;
    min-height: auto;
    padding-top: 0;
  }

  .home-upload-mode[data-active-tool="interpret"] .home-tool-options,
  .home-upload-mode[data-active-tool="duplicate"] .home-tool-options {
    position: static;
    justify-content: center;
    margin-top: 4px;
  }
}

@media (min-width: 1121px) {
  .home-upload-mode .nav.container {
    justify-content: flex-start;
  }

  .home-upload-mode .nav-links {
    position: absolute;
    left: 50%;
    display: grid !important;
    grid-template-columns: repeat(7, max-content);
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.15vw, 18px);
    margin-left: 0;
    padding: 0 14px;
    transform: translateX(-50%);
  }

  .home-upload-mode .nav-item {
    display: flex;
    align-items: center;
  }

  .home-upload-mode .nav-item:nth-child(4)::before {
    display: block;
    width: 1px;
    height: 16px;
    margin-right: clamp(8px, 1.15vw, 18px);
    background: rgba(17, 24, 32, 0.18);
    content: "";
  }

  .home-upload-mode .nav-link {
    min-height: 38px;
    padding: 0 8px;
    white-space: nowrap;
    line-height: 38px;
  }

  .home-upload-mode .nav-link::after {
    bottom: 3px;
  }
}

/* Private-deployment consultation is available on demand without interrupting the homepage flow. */
.enterprise-demo-modal {
  width: min(1218px, calc(100% - 48px));
  max-width: 1218px;
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: auto;
  color: #111820;
  background: transparent;
  box-shadow: 0 24px 72px rgba(17, 24, 32, 0.24);
}

.enterprise-demo-modal::backdrop {
  background: rgba(8, 18, 28, 0.58);
  backdrop-filter: blur(5px);
}

.enterprise-demo-modal-grid {
  position: relative;
  display: grid;
  grid-template-columns: 555px minmax(0, 1fr);
  min-height: 498px;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f8fe;
}

.enterprise-demo-modal .home-enterprise-card,
.enterprise-demo-modal .home-demo-form {
  min-height: 498px;
  border-radius: 0;
  box-shadow: none;
}

.enterprise-demo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 6px;
  color: #53616f;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.enterprise-demo-close:hover {
  color: #111820;
  background: #fff;
}

.enterprise-demo-close:focus-visible {
  outline: 3px solid rgba(10, 118, 255, 0.28);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .enterprise-demo-modal {
    width: min(680px, calc(100% - 32px));
    max-height: calc(100dvh - 32px);
  }

  .enterprise-demo-modal-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .enterprise-demo-modal .home-enterprise-card,
  .enterprise-demo-modal .home-demo-form {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .enterprise-demo-modal {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }

  .enterprise-demo-close {
    top: 12px;
    right: 12px;
  }
}

/* PPT-inspired product capability board. */
.feature-image-stage:has(.feature-ppt-board) {
  background: #090f17;
}

.feature-concept.feature-ppt-board {
  --ppt-blue: #4b66ff;
  --ppt-cyan: #42d0f2;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 486px;
  height: auto;
  padding: 20px;
  overflow: hidden;
  color: #f7fbff;
  background:
    linear-gradient(124deg, rgba(64, 98, 255, 0.14), transparent 32%),
    linear-gradient(42deg, rgba(66, 208, 242, 0.08), transparent 46%),
    #090f17;
  isolation: isolate;
}

.feature-concept.feature-ppt-board::before {
  inset: 0;
  z-index: -1;
  display: block;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.8;
}

.feature-ppt-header,
.feature-ppt-main,
.feature-ppt-outcomes {
  position: relative;
  z-index: 1;
}

.feature-ppt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(123, 151, 255, 0.34);
}

.feature-ppt-header > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.feature-ppt-header svg {
  width: 18px;
  height: 18px;
  color: var(--ppt-cyan);
}

.feature-ppt-header p {
  margin: 0;
  color: var(--ppt-cyan);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.feature-ppt-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  min-height: 0;
}

.feature-ppt-preview {
  display: grid;
  min-width: 0;
  min-height: 0;
}

.feature-ppt-preview-1 {
  grid-template-columns: minmax(0, 1fr);
}

.feature-ppt-preview-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.feature-ppt-preview-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 141, 255, 0.7);
  border-radius: 6px;
  background: #e8f3fb;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.feature-ppt-preview-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ppt-cyan);
  content: "";
}

.feature-ppt-preview-frame img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.feature-concept-tender-parse .feature-ppt-frame-main {
  aspect-ratio: 16 / 9;
}

.feature-concept-tender-parse .feature-ppt-frame-main img {
  width: 258%;
  transform: translate(-6.1%, -23.7%);
}

.feature-concept-precise-search .feature-ppt-frame-main {
  aspect-ratio: 16 / 10;
}

.feature-concept-precise-search .feature-ppt-frame-main img {
  width: 228%;
  transform: translate(-4.5%, -24.3%);
}

.feature-concept-bid-writing .feature-ppt-frame-writing-editor img {
  width: 242%;
  transform: translate(-4.9%, -26.2%);
}

.feature-concept-bid-writing .feature-ppt-frame-writing-library img {
  width: 242%;
  transform: translate(-4.9%, -59.5%);
}

.feature-concept-format-config .feature-ppt-frame-main {
  aspect-ratio: 16 / 9;
}

.feature-concept-format-config .feature-ppt-frame-main img {
  width: 214%;
  transform: translate(-4.6%, -26.3%);
}

.feature-concept-full-review .feature-ppt-frame-main {
  aspect-ratio: 16 / 10;
}

.feature-concept-full-review .feature-ppt-frame-main img {
  width: 223%;
  transform: translate(-4.2%, -25%);
}

.feature-ppt-capabilities {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--ppt-blue);
  border-radius: 6px;
  background: rgba(4, 12, 23, 0.74);
}

.feature-ppt-capability-group + .feature-ppt-capability-group {
  padding-top: 13px;
  border-top: 1px solid rgba(111, 141, 255, 0.32);
}

.feature-ppt-capability-group h3 {
  margin: 0 0 9px;
  color: var(--ppt-cyan);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-ppt-capability-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-ppt-capability-group li {
  position: relative;
  min-width: 0;
  padding-left: 11px;
  color: rgba(247, 251, 255, 0.9);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.feature-ppt-capability-group li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ppt-cyan);
  content: "";
}

.feature-concept-tender-parse .feature-ppt-capability-group:first-child ul,
.feature-concept-format-config .feature-ppt-capability-group ul {
  grid-template-columns: minmax(0, 1fr);
}

.feature-ppt-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 13px 16px;
  border-radius: 6px;
  background: #3f5af1;
}

.feature-ppt-outcome {
  min-width: 0;
}

.feature-ppt-outcome + .feature-ppt-outcome {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-ppt-outcome strong,
.feature-ppt-outcome span {
  display: block;
}

.feature-ppt-outcome strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-ppt-outcome span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .feature-concept.feature-ppt-board {
    min-height: 0;
  }

  .feature-ppt-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-ppt-preview-1 {
    max-height: 300px;
  }

  .feature-concept-bid-writing .feature-ppt-preview-2 {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .feature-concept.feature-ppt-board {
    gap: 12px;
    padding: 14px;
  }

  .feature-ppt-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .feature-ppt-header p {
    text-align: left;
  }

  .feature-ppt-preview-1 {
    max-height: none;
  }

  .feature-ppt-capabilities {
    padding: 14px;
  }

  .feature-ppt-capability-group ul,
  .feature-ppt-outcomes {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-ppt-outcome + .feature-ppt-outcome {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }
}

/* Case entry cards: use the customer's business scene as the first visual signal. */
.resource-grid-cases {
  gap: 18px;
}

.resource-grid-cases .resource-card.resource-case-card {
  --case-accent: #1464d8;
  --case-soft: #edf5ff;
  display: grid;
  grid-template-rows: 178px minmax(172px, 1fr);
  min-height: 350px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border-color: #d7e3f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 67, 107, 0.055);
}

.resource-grid-cases .resource-case-cable {
  --case-accent: #c64b32;
  --case-soft: #fff1ec;
}

.resource-grid-cases .resource-case-construction {
  --case-accent: #196cb4;
  --case-soft: #eef7ff;
}

.resource-grid-cases .resource-case-water {
  --case-accent: #087e85;
  --case-soft: #eaf8f8;
}

.resource-case-card .case-card-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #e9f0f6;
}

.resource-case-card .case-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.resource-case-card .case-card-media figcaption {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.resource-case-card .case-card-media figcaption span:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 28px;
  color: #fff;
  background: var(--case-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.resource-case-card .case-card-media figcaption span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: #203248;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.resource-case-card .case-card-content {
  display: grid;
  grid-template-rows: auto minmax(40px, 1fr) auto;
  align-content: stretch;
  gap: 8px;
  min-width: 0;
  padding: 18px 18px 16px;
  border-top: 3px solid var(--case-accent);
}

.resource-case-card strong {
  color: #1e2e43;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

.resource-case-card > .case-card-content > .resource-card-copy {
  min-height: 40px;
  margin: 0;
  color: #617389;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.55;
}

.resource-case-card .case-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid #e4ecf4;
}

.resource-case-card .case-card-scope,
.resource-case-card .case-card-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #587087;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  white-space: nowrap;
}

.resource-case-card .case-card-scope i,
.resource-case-card .case-card-open i {
  width: 15px;
  height: 15px;
  color: var(--case-accent);
}

.resource-case-card .case-card-open {
  color: var(--case-accent);
}

.resource-grid-cases .resource-card.resource-case-card:hover {
  border-color: var(--case-accent);
  box-shadow: 0 20px 42px rgba(32, 67, 107, 0.12);
  transform: translateY(-4px);
}

.resource-case-card:hover .case-card-media img {
  transform: scale(1.04);
}

.resource-case-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--case-accent) 28%, transparent);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .resource-grid-cases .resource-card.resource-case-card {
    grid-template-rows: 170px minmax(162px, 1fr);
    min-height: 332px;
  }
}

@media (max-width: 720px) {
  .resource-grid-cases .resource-card.resource-case-card {
    grid-template-rows: 178px minmax(158px, 1fr);
    min-height: 336px;
  }

  .resource-case-card .case-card-content {
    padding: 16px;
  }
}

/* Give the sticky navigation a solid surface matched to the section below. */
.home-upload-mode .topbar.nav-scrolled {
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  background: #fbfdff;
  box-shadow: 0 8px 24px rgba(34, 70, 108, 0.045);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-upload-mode .topbar.nav-scrolled[data-surface="hero"] {
  background: #c9f4ff;
}

.home-upload-mode .topbar.nav-scrolled[data-surface="enterprise"] {
  background: #f8fdff;
}

.home-upload-mode .topbar.nav-scrolled[data-surface="soft"] {
  background: #effbff;
}

.home-upload-mode .topbar.nav-scrolled[data-surface="light"] {
  background: #fbfdff;
}

.home-upload-mode .topbar.nav-scrolled[data-surface="footer"] {
  background: #0d1217;
  box-shadow: none;
}

.home-upload-mode .topbar.nav-over-footer {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.home-upload-mode .topbar.nav-over-footer .nav-links,
.home-upload-mode .topbar.nav-over-footer .nav-link,
.home-upload-mode .topbar.nav-over-footer .nav-link.active {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: none;
}

.home-upload-mode .topbar.nav-over-footer .nav-link:hover,
.home-upload-mode .topbar.nav-over-footer .nav-item:focus-within .nav-link {
  color: #fff;
}

.home-upload-mode .topbar.nav-over-footer .home-login-link {
  color: #111820;
  background: #fff;
}

/* Product capability exhibits: image-led, editorial, and consistent with the GEO system. */
.feature-image-stage:has(.feature-ppt-board) {
  background: #f7fbff;
}

.feature-concept.feature-ppt-board {
  --geo-accent: var(--concept-accent);
  --geo-soft: var(--concept-soft);
  --geo-line: var(--concept-line);
  min-height: 520px;
  gap: 0;
  padding: 20px 22px 16px;
  color: #172231;
  background: #fbfdff;
}

.feature-concept.feature-ppt-board::before {
  display: none;
}

.feature-ppt-header,
.feature-ppt-main,
.feature-ppt-outcomes {
  z-index: auto;
}

.feature-ppt-header {
  min-height: 42px;
  padding-bottom: 14px;
  border-bottom-color: #d9e5f1;
}

.feature-ppt-header > span {
  gap: 9px;
  color: #172231;
  font-size: 18px;
  font-weight: 800;
}

.feature-ppt-header svg {
  width: 19px;
  height: 19px;
  color: var(--geo-accent);
}

.feature-ppt-header-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.feature-ppt-header p {
  margin: 0;
  padding: 6px 10px;
  border: 1px solid var(--geo-line);
  border-radius: 4px;
  color: var(--geo-accent);
  background: var(--geo-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.feature-ppt-sequence {
  color: #8190a2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.feature-ppt-main {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 0;
  padding: 20px 0 16px;
}

.feature-ppt-preview {
  position: relative;
  align-content: center;
  padding: 4px 28px 4px 2px;
  border-right: 1px solid #d9e5f1;
}

.feature-ppt-preview::before {
  position: absolute;
  top: 4px;
  left: 2px;
  width: 34px;
  height: 3px;
  background: var(--geo-accent);
  content: "";
}

.feature-ppt-preview-1 {
  align-content: center;
}

.feature-ppt-preview-frame {
  border-color: #c9d8e7;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(34, 70, 108, 0.1);
}

.feature-concept.feature-ppt-board .feature-ppt-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.feature-ppt-preview-frame::after {
  height: 3px;
  background: var(--geo-accent);
}

.feature-concept-format-config .feature-ppt-frame-main {
  aspect-ratio: 2 / 1;
}

.feature-concept-tender-parse .feature-ppt-frame-main {
  aspect-ratio: 1137 / 589;
}

.feature-concept-bid-writing .feature-ppt-frame-main {
  aspect-ratio: 720 / 371;
}

.feature-ppt-narrative {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 4px 2px 4px 28px;
}

.feature-ppt-intro {
  margin: 0 0 16px;
  color: #5a6b7f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.feature-ppt-capabilities {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-ppt-capability-group {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 0;
}

.feature-ppt-capability-group:first-child {
  padding-top: 0;
}

.feature-ppt-capability-group + .feature-ppt-capability-group {
  padding-top: 15px;
  border-top-color: #d9e5f1;
}

.feature-ppt-capability-index,
.feature-ppt-outcome .feature-ppt-outcome-index {
  color: var(--geo-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

.feature-ppt-capability-group h3 {
  margin: 0 0 8px;
  color: #1f3045;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-ppt-capability-group ul,
.feature-concept-tender-parse .feature-ppt-capability-group:first-child ul,
.feature-concept-format-config .feature-ppt-capability-group ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
}

.feature-ppt-capability-group li {
  padding-left: 0;
  color: #53657a;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.feature-ppt-capability-group li::before {
  display: none;
}

.feature-ppt-outcomes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid #d9e5f1;
  border-radius: 0;
  background: transparent;
}

.feature-ppt-outcome {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  min-height: 54px;
}

.feature-ppt-outcome + .feature-ppt-outcome {
  padding-left: 24px;
  border-left-color: #d9e5f1;
}

.feature-ppt-outcome strong {
  color: #26384e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-ppt-outcome span:not(.feature-ppt-outcome-index) {
  margin-top: 4px;
  color: #708096;
  font-size: 12px;
  line-height: 1.5;
}

.feature-concept-tender-parse.feature-ppt-board {
  --geo-accent: #1668dc;
  --geo-soft: #edf5ff;
  --geo-line: #cfe1f7;
}

.feature-concept-precise-search.feature-ppt-board {
  --geo-accent: #0b8767;
  --geo-soft: #eefaf5;
  --geo-line: #cdebe1;
}

.feature-concept-bid-writing.feature-ppt-board {
  --geo-accent: #9a691f;
  --geo-soft: #fff8ed;
  --geo-line: #f0ddbc;
}

.feature-concept-format-config.feature-ppt-board {
  --geo-accent: #405cc2;
  --geo-soft: #f2f4ff;
  --geo-line: #d9dff8;
}

.feature-concept-full-review.feature-ppt-board {
  --geo-accent: #bd4d58;
  --geo-soft: #fff3f4;
  --geo-line: #f0d5d8;
}

/* Align only the two parsing-capability notes without changing the preview image. */
.feature-concept-tender-parse .feature-ppt-capability-group:first-child ul {
  column-gap: 18px;
}

.feature-concept-tender-parse .feature-ppt-capability-group:first-child li {
  display: flex;
  align-items: flex-start;
  min-height: 42px;
  padding: 3px 0;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .feature-concept.feature-ppt-board {
    min-height: 0;
  }

  .feature-ppt-main {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 18px;
  }

  .feature-ppt-preview {
    padding: 4px 0 22px;
    border-right: 0;
    border-bottom: 1px solid #d9e5f1;
  }

  .feature-ppt-preview-1 {
    min-height: 260px;
  }

  .feature-ppt-narrative {
    padding: 20px 0 0;
  }
}

@media (max-width: 560px) {
  .feature-concept.feature-ppt-board {
    padding: 16px 14px;
    background: #fbfdff;
  }

  .feature-ppt-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .feature-ppt-header-meta {
    justify-content: space-between;
    width: 100%;
  }

  .feature-ppt-main {
    padding-top: 16px;
  }

  .feature-ppt-preview {
    padding-bottom: 16px;
  }

  .feature-ppt-preview-1 {
    min-height: 0;
  }

  .feature-ppt-narrative {
    padding-top: 18px;
  }

  .feature-ppt-intro {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .feature-ppt-capability-group,
  .feature-ppt-outcome {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .feature-ppt-capability-group ul,
  .feature-concept-tender-parse .feature-ppt-capability-group:first-child ul,
  .feature-concept-format-config .feature-ppt-capability-group ul,
  .feature-ppt-outcomes {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-ppt-outcome + .feature-ppt-outcome {
    margin-top: 13px;
    padding-top: 13px;
    padding-left: 0;
    border-top: 1px solid #d9e5f1;
    border-left: 0;
  }
}

/* CMS horizontal rails: cases + news in one scrollable row */
.cms-rail {
  position: relative;
  display: block;
}

.cms-rail-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 10px;
  margin: 0 -4px;
}

.cms-rail-viewport::-webkit-scrollbar {
  display: none;
}

.cms-rail .resource-grid-cases,
.cms-rail .media-grid {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  align-items: stretch;
}

.cms-rail .resource-grid-cases > .resource-case-card {
  flex: 0 0 clamp(280px, 30vw, 360px);
  width: clamp(280px, 30vw, 360px);
  max-width: 360px;
}

.cms-rail .media-grid > .media-card {
  flex: 0 0 clamp(240px, 26vw, 300px);
  width: clamp(240px, 26vw, 300px);
  max-width: 300px;
  height: 100%;
}

.cms-rail[data-cms-rail="media"] {
  margin-bottom: 8px;
}

.cms-rail[data-cms-rail="media"] .cms-rail-next {
  top: 42%;
}

.cms-rail-next {
  position: absolute;
  top: 50%;
  right: -6px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid #d5e2f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(28, 61, 110, 0.14);
  color: #1d4ed8;
  cursor: pointer;
  transform: translate(50%, -50%);
  transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.cms-rail-next:hover {
  border-color: #93c5fd;
  background: #fff;
}

.cms-rail-next.is-disabled,
.cms-rail-next:disabled {
  opacity: 0.45;
}

.cms-rail-next[hidden] {
  display: none !important;
}

.cms-rail-next svg,
.cms-rail-next i {
  width: 20px;
  height: 20px;
}

@media (max-width: 720px) {
  .cms-rail-next {
    right: 8px;
    transform: translateY(-50%);
  }

  .cms-rail .resource-grid-cases > .resource-case-card {
    flex-basis: min(78vw, 300px);
    width: min(78vw, 300px);
  }

  .cms-rail .media-grid > .media-card {
    flex-basis: min(72vw, 260px);
    width: min(72vw, 260px);
  }
}

.cms-rail-next.is-at-end {
  opacity: 0.92;
}
