@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+300-52F, U+1C80-1C8A, U+2000-206F, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* Keep the reference footer's image-button silhouette while changing its
   visible action to the product's application flow. */
.site-footer-cta-button {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer-cta-button .site-footer-cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.site-footer-cta-button::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, #1237d9 0%, #6517e8 100%);
  content: "";
}

.site-footer-cta-button span {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
}

@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand: #7c3aed;
  --brand-dark: #5b21b6;
  --brand-soft: #f3e8ff;
  --data: #2563eb;
  --data-soft: #eef2ff;
  --cta: #7c3aed;
  --cta-dark: #6d28d9;
  --cta-soft: #f3e8ff;
  --ink: #111827;
  --text: #4b5563;
  --muted: #6b7280;
  --line: #e6e8ef;
  --line-strong: #dfe2ea;
  --surface: #ffffff;
  --surface-soft: #f7f9fa;
  --footer: #070913;
  --page-max: 1280px;
  --shadow-soft: 0 18px 52px rgba(23, 36, 46, 0.08);
  --shadow-card: 0 24px 70px rgba(23, 36, 46, 0.11);
  --font-sans: "Inter Variable", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter Variable", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "DIN Alternate", "SF Mono", "JetBrains Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: visible;
  scrollbar-width: auto;
}

html:has(body.home-page),
html:has(body.auth-reference-page) {
  scrollbar-width: none;
}

html:has(body.home-page)::-webkit-scrollbar,
html:has(body.auth-reference-page)::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: visible;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open,
body.is-modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.site-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-kicker::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 750;
  line-height: 1.18;
}

.section-heading em {
  color: var(--brand);
  font-style: normal;
}

.section-description {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 17px;
}

.site-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.site-button:active {
  transform: translateY(0);
}

.site-button svg {
  width: 18px;
  height: 18px;
}

.site-button-primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.2);
}

.site-button-primary:hover {
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.28);
}

.site-button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}

.site-button-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.site-icon-button svg {
  width: 20px;
  height: 20px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 68px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header-shell {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 58px;
}

.site-header-shell > .site-header {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
}

.site-header-shell + main,
.site-header-shell + .page-main,
.site-header-shell + .academy-main,
.site-header-shell + .partner-main {
  margin-top: 58px;
}

.site-header-shell ~ main,
.site-header-shell ~ .page-main,
.site-header-shell ~ .academy-main,
.site-header-shell ~ .partner-main {
  margin-top: 58px;
}

.home-page .site-header-shell + .page-main,
.skill-lobster-page .site-header-shell + .lobster-main {
  margin-top: 0;
}

.home-page .site-header-shell ~ .page-main,
.skill-lobster-page .site-header-shell ~ .lobster-main {
  margin-top: 0;
}

.site-header.is-scrolled {
  border-color: rgba(18, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 26px rgba(18, 23, 34, 0.05);
}

.site-nav-inner {
  display: flex;
  width: min(calc(100% - 44px), 1388px);
  height: 68px;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.site-brand img {
  width: 34px;
  height: 34px;
}

.site-nav-links {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: stretch;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 28px);
  align-self: stretch;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #303742;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-link.is-current {
  color: var(--brand);
}

.site-nav-link.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-parent {
  gap: 5px;
}

.site-nav-parent svg {
  width: 14px;
  height: 14px;
}

.site-nav-dropdown {
  position: relative;
  display: flex;
}

.site-nav-parent {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
}

.site-nav-menu {
  position: absolute;
  top: 57px;
  left: 0;
  display: grid;
  width: 268px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav-dropdown:hover .site-nav-menu,
.site-nav-dropdown:focus-within .site-nav-menu,
.site-nav-dropdown.is-open .site-nav-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.site-nav-menu[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.home-page .hero-audit {
  order: 2;
}

.home-page .hero-copy {
  order: 1;
}

.site-nav-menu a {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
}

.site-nav-menu a:hover {
  color: var(--ink);
  background: var(--brand-soft);
}

.site-nav-menu-copy {
  display: grid;
  gap: 4px;
}

.site-nav-menu-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.site-nav-menu-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.site-nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
}

.site-login-link svg {
  width: 18px;
  height: 18px;
}

.site-nav-cta {
  min-height: 42px;
  padding-inline: 20px;
}

.site-nav-actions .site-login-link {
  min-height: 42px;
  padding-inline: 20px;
}

.site-menu-button,
.site-mobile-menu {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--footer);
}

.site-footer-main {
  display: grid;
  width: min(calc(100% - 48px), var(--page-max));
  min-height: 321px;
  box-sizing: border-box;
  grid-template-columns: 1.65fr repeat(4, 1fr);
  gap: 54px;
  margin-inline: auto;
  padding: 54px 0 64px;
}

.site-brand-light {
  color: #fff;
}

.site-footer-brand p {
  max-width: 280px;
  margin: 18px 0 0;
  font-size: 14px;
}

.site-footer-brand .site-button {
  display: none;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer-column h2 {
  margin: 4px 0 9px;
  color: #fff;
  font-size: 15px;
}

.site-footer-column a {
  font-size: 14px;
  transition: color 160ms ease;
}

.site-footer-column a:hover {
  color: #fff;
}

.site-footer-bottom {
  display: flex;
  width: min(calc(100% - 48px), var(--page-max));
  min-height: 71px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.survey-mask {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 9, 19, 0.56);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity 220ms ease;
}

.survey-mask.is-open {
  opacity: 1;
}

.survey-dialog {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  max-height: calc(100dvh - 48px);
  grid-template-columns: 0.82fr 1.18fr;
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 38px 110px rgba(4, 10, 16, 0.34);
  transform: translateY(12px) scale(0.985);
  transition: transform 220ms ease;
}

.survey-mask.is-open .survey-dialog {
  transform: none;
}

.survey-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
}

.survey-copy {
  min-height: 570px;
  padding: 62px 42px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(47, 111, 94, 0.98), rgba(41, 69, 107, 0.98)),
    var(--brand);
}

.survey-copy .site-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.survey-copy h2,
.survey-success h2 {
  margin: 86px 0 12px;
  font-family: var(--font-sans);
  font-size: 44px;
  line-height: 1.1;
}

.survey-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.survey-benefits {
  display: grid;
  gap: 12px;
  margin-top: 74px;
}

.survey-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.survey-benefits span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  content: "";
}

.survey-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 17px;
  padding: 64px 48px 44px;
}

.survey-field {
  display: grid;
  gap: 7px;
}

.survey-field-wide,
.survey-status,
.survey-submit {
  grid-column: 1 / -1;
}

.survey-field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.survey-field input,
.survey-field select,
.survey-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.survey-field input:focus,
.survey-field select:focus,
.survey-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(47, 111, 94, 0.12);
}

.survey-field textarea {
  resize: vertical;
}

.survey-status {
  min-height: 24px;
  margin: 0;
  color: #a3402f;
  font-size: 13px;
}

.survey-submit {
  width: 100%;
}

.survey-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.survey-success {
  grid-column: 2;
  min-height: 480px;
  place-content: center;
  padding: 54px;
  text-align: center;
}

.survey-success:not([hidden]) {
  display: grid;
}

.survey-success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 34px;
}

.survey-success h2 {
  margin: 24px 0 10px;
}

.survey-success p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--text);
}

.site-toast {
  position: fixed;
  z-index: 400;
  top: 20px;
  left: 50%;
  min-width: 260px;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -24px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast[data-type="error"] {
  border-left-color: #a3402f;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.contact-rail {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 104px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(14px);
}

.contact-rail a,
.contact-rail button {
  display: grid;
  width: 56px;
  height: 72px;
  min-height: 72px;
  place-items: center;
  gap: 4px;
  border: 0;
  color: #59616d;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

.contact-rail a:last-child {
  border-bottom: 0;
}

.contact-rail a + a,
.contact-rail a + button,
.contact-rail button + a {
  border-top: 1px solid #e5e7eb;
}

.contact-rail svg {
  width: 15px;
  height: 15px;
}

.contact-rail a:hover,
.contact-rail button:hover {
  color: var(--brand);
  background: rgba(47, 111, 94, 0.06);
}

.contact-rail-wechat {
  position: relative;
}

.contact-rail-popover {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  display: grid;
  width: 160px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(148, 163, 184, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-rail-popover img {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 12px;
  object-fit: cover;
}

.contact-rail-popover small {
  margin-top: 12px;
  color: #59616d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.contact-rail-wechat:hover .contact-rail-popover,
.contact-rail-wechat:focus-visible .contact-rail-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 32px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* The reference runtime keeps the fixed positioning on the shell around the
   header. The inner header itself stays in normal flow so scroll state and
   page offsets are consistent across every public route. */
.site-header-shell > .site-header,
.home-page .site-header-shell > .site-header,
.lobster-page .site-header-shell > .site-header,
.academy-reference-page .site-header-shell > .site-header,
.partner-reference-page .site-header-shell > .site-header {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
}

@media (max-width: 760px) {
  .site-header-shell {
    height: 58px;
  }

  .site-header-shell + main,
  .site-header-shell + .page-main,
  .site-header-shell + .academy-main,
  .site-header-shell + .partner-main {
    margin-top: 58px;
  }

  .site-header-shell ~ main,
  .site-header-shell ~ .page-main,
  .site-header-shell ~ .academy-main,
  .site-header-shell ~ .partner-main {
    margin-top: 58px;
  }

  .home-page .site-header-shell + .page-main,
  .skill-lobster-page .site-header-shell + .lobster-main {
    margin-top: 0;
  }

  .home-page .site-header-shell ~ .page-main,
  .skill-lobster-page .site-header-shell ~ .lobster-main {
    margin-top: 0;
  }
}

.mobile-apply-bar {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Homepage */
.home-hero {
  position: relative;
  min-height: 832px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 35%, rgba(255, 255, 255, 0.4) 64%, rgba(255, 255, 255, 0.08) 100%),
    url("/assets/hero-data-globe-20260721.png") center / cover no-repeat;
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 250, 249, 0.96));
  content: "";
  pointer-events: none;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 80px), 1300px);
  min-height: 710px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
  margin-inline: auto;
  padding: 76px 0 112px;
}

.hero-copy {
  align-self: center;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(58px, 5vw, 76px);
  font-weight: 780;
  line-height: 1.08;
}

.hero-copy h1 em {
  display: block;
  color: var(--brand);
  font-style: normal;
}

.hero-lead {
  margin: 24px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.hero-description {
  max-width: 580px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .site-button {
  min-width: 210px;
  min-height: 54px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-data);
  font-size: 34px;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 13px;
}

.hero-audit {
  align-self: center;
  padding: 39px 40px;
  border: 1px solid rgba(41, 69, 107, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 30px 82px rgba(41, 69, 107, 0.14);
  backdrop-filter: blur(16px);
}

.hero-audit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-audit-head strong {
  font-size: 18px;
}

.hero-audit-head button {
  border: 0;
  color: var(--brand);
  background: none;
  cursor: pointer;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.platform-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.platform-pill::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--data);
  content: attr(data-mark);
  font-family: var(--font-data);
  font-size: 10px;
}

.platform-pill img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.platform-pill::before {
  display: none;
}

.platform-pill.is-selected {
  border-color: rgba(47, 111, 94, 0.22);
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.audit-input {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0 17px;
  color: var(--muted);
  background: #fff;
}

.audit-input svg {
  width: 20px;
  height: 20px;
}

.audit-brand {
  display: grid;
  min-height: 62px;
  grid-template-columns: 70px 1fr;
  align-items: center;
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0 17px;
  color: var(--muted);
  background: #fff;
}

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

.hero-audit .site-button {
  min-width: 160px;
  margin: 18px auto 0;
}

.hero-capabilities {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 121px;
  min-height: 121px;
  border-top: 1px solid rgba(41, 69, 107, 0.1);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.hero-capabilities-inner {
  display: grid;
  width: 100%;
  max-width: 1300px;
  height: 120px;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding: 28px 0;
}

.hero-capability {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-content: center;
  align-items: center;
  gap: 15px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.hero-capability > img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.hero-capability:last-child {
  border-right: 0;
}

.hero-capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-weight: 800;
}

.hero-capability strong {
  display: block;
  font-size: 15px;
}

.hero-capability span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.principle-section {
  min-height: 780px;
  padding: 22px 0 148px;
  background: #fff;
}

.principle-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.principle-intro .section-description {
  margin: 0;
}

.principle-grid {
  display: grid;
  min-height: 438px;
  grid-template-columns: 0.78fr 0.78fr 1.85fr 0.78fr;
  gap: 16px;
  margin-top: 54px;
}

.principle-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--footer);
  box-shadow: var(--shadow-soft);
}

.principle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.92);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 650ms ease;
}

.principle-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 19, 0.02) 18%, rgba(7, 9, 19, 0.88) 100%);
  content: "";
}

.principle-card:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.principle-card-copy {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 27px;
  left: 25px;
  color: #fff;
}

.principle-card-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.8;
}

.principle-card-copy p {
  display: none;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.principle-card.is-wide .principle-card-copy p {
  display: block;
}

.principle-card-copy::after {
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.insights-section {
  min-height: 1410px;
  padding: 43px 0 137px;
  background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
}

.insights-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 94px;
}

.insights-copy {
  position: sticky;
  top: 138px;
  align-self: start;
  padding-top: 24px;
}

.insights-copy .section-heading {
  font-size: 50px;
}

.insights-copy .site-button {
  margin-top: 30px;
}

.insight-timeline {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 6px 0;
}

.insight-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 6%, var(--line-strong) 94%, transparent);
  content: "";
}

.insight-card {
  position: relative;
  display: grid;
  width: calc(50% - 34px);
  min-height: 250px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  opacity: 0.54;
  transform: translateY(28px);
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 420ms ease;
}

.insight-card:nth-child(even) {
  margin-left: calc(50% + 34px);
}

.insight-card::before {
  position: absolute;
  top: 44px;
  width: 13px;
  height: 13px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--line-strong);
  box-shadow: 0 0 0 1px var(--line-strong);
  content: "";
}

.insight-card:nth-child(odd)::before {
  right: -41px;
}

.insight-card:nth-child(even)::before {
  left: -41px;
}

.insight-card.is-active {
  opacity: 1;
  transform: none;
  box-shadow: var(--shadow-card);
}

.insight-card.is-active::before {
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 0 0 8px rgba(47, 111, 94, 0.12);
}

.insight-card-copy {
  padding: 24px 25px 20px;
}

.insight-card-num {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 800;
}

.insight-card h3 {
  margin: 8px 0 6px;
  font-size: 21px;
}

.insight-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.insight-card img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-top: 1px solid var(--line);
}

.engine-section {
  min-height: 740px;
  padding: 84px 0;
  background: #fff;
}

.engine-layout {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  align-items: center;
  gap: 70px;
}

.engine-copy .section-heading {
  font-size: 48px;
}

.engine-tabs {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.engine-tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 9px;
  border-bottom: 1px solid var(--line);
}

.engine-tab-list button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.engine-tab-list button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--data));
}

.engine-tab-panel {
  min-height: 185px;
  padding: 26px;
}

.engine-tab-panel h3 {
  margin: 0;
  font-size: 21px;
}

.engine-tab-panel ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 14px;
  list-style: none;
}

.engine-tab-panel li {
  display: flex;
  gap: 9px;
}

.engine-tab-panel li::before {
  color: var(--brand);
  content: "✓";
  font-weight: 800;
}

.engine-orbit {
  position: relative;
  min-height: 570px;
}

.engine-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 390px;
  height: 390px;
  place-items: center;
  border: 1px solid rgba(47, 111, 94, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 37%, var(--brand-soft) 38% 39%, transparent 40%);
  transform: translate(-50%, -50%);
}

.engine-ring::before,
.engine-ring::after {
  position: absolute;
  border: 1px solid rgba(41, 69, 107, 0.16);
  border-radius: 50%;
  content: "";
}

.engine-ring::before {
  inset: 40px;
}

.engine-ring::after {
  inset: 96px;
}

.engine-center {
  position: relative;
  z-index: 2;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--data));
  box-shadow: 0 28px 65px rgba(41, 69, 107, 0.22);
  text-align: center;
}

.engine-center strong {
  display: block;
  font-size: 21px;
}

.engine-center span {
  display: block;
  font-size: 12px;
  opacity: 0.74;
}

.orbit-node {
  position: absolute;
  display: grid;
  width: 116px;
  min-height: 70px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.orbit-node strong {
  display: block;
  font-size: 14px;
}

.orbit-node span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.orbit-node:nth-child(2) { top: 28px; left: 50%; transform: translateX(-50%); }
.orbit-node:nth-child(3) { top: 50%; right: 8px; transform: translateY(-50%); }
.orbit-node:nth-child(4) { bottom: 28px; left: 50%; transform: translateX(-50%); }
.orbit-node:nth-child(5) { top: 50%; left: 8px; transform: translateY(-50%); }

.citation-section {
  min-height: 890px;
  padding: 92px 0;
  background: #f6f8fa;
}

.citation-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  align-items: center;
  gap: 60px;
}

.platform-strategies {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.platform-strategy {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 14px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.platform-strategy:hover {
  border-color: rgba(47, 111, 94, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
}

.platform-strategy-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--data);
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 800;
}

.platform-strategy strong,
.platform-strategy span {
  display: block;
}

.platform-strategy strong {
  font-size: 14px;
}

.platform-strategy span {
  color: var(--muted);
  font-size: 12px;
}

.citation-dashboard {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.citation-dashboard-head {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.citation-dashboard-head h3 {
  margin: 0;
  font-size: 20px;
}

.citation-dashboard-head span {
  color: var(--muted);
  font-size: 13px;
}

.citation-chart {
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid var(--line);
  padding-right: 16px;
}

.citation-donut {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 0 42%, var(--data) 42% 67%, var(--cta) 67% 82%, #bfcad7 82% 100%);
}

.citation-donut::before {
  position: absolute;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.citation-donut strong {
  position: relative;
  font-family: var(--font-data);
  font-size: 46px;
}

.citation-legend {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px 18px;
  margin-top: 24px;
  color: var(--text);
  font-size: 12px;
}

.citation-legend span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.citation-legend span:nth-child(2)::before { background: var(--data); }
.citation-legend span:nth-child(3)::before { background: var(--cta); }
.citation-legend span:nth-child(4)::before { background: #bfcad7; }

.citation-ranking {
  display: grid;
  align-content: center;
  gap: 16px;
}

.citation-ranking h4 {
  margin: 0 0 3px;
  font-size: 15px;
}

.citation-source {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
}

.citation-source i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  font-style: normal;
  font-weight: 800;
}

.citation-source b {
  color: var(--ink);
  font-family: var(--font-data);
}

.citation-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}

.citation-answer,
.citation-score {
  border-radius: 12px;
  padding: 18px;
  background: var(--surface-soft);
}

.citation-answer p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 13px;
}

.citation-score {
  display: grid;
  place-content: center;
  text-align: center;
}

.citation-score strong {
  font-family: var(--font-data);
  font-size: 38px;
}

.citation-score span {
  color: var(--muted);
  font-size: 12px;
}

.start-section {
  min-height: 754px;
  padding: 26px 0 46px;
  background: #fff;
}

.start-heading {
  max-width: 920px;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.start-path-card {
  position: relative;
  display: grid;
  min-height: 240px;
  grid-template-columns: 0.96fr 1.04fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.start-path-copy {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.start-path-number {
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(41, 69, 107, 0.07);
  font-family: var(--font-data);
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
}

.start-path-copy h3 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.start-path-copy p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.start-path-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.start-path-copy svg {
  width: 16px;
  height: 16px;
}

.start-path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: 1px solid var(--line);
}

.services-section {
  min-height: 770px;
  padding: 26px 0 84px;
  background: #f7f8fa;
}

.services-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.services-heading .section-description {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.service-card {
  display: grid;
  min-height: 510px;
  grid-template-rows: 220px 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eef3f5;
}

.service-card-body {
  padding: 27px 27px 18px;
}

.service-card-label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 8px 0 10px;
  font-size: 25px;
}

.service-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 19px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 13px;
  list-style: none;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "•";
}

.service-card > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin: 0 27px 24px;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.service-card > a svg {
  width: 17px;
  height: 17px;
}

.cases-section {
  min-height: 760px;
  overflow: hidden;
  padding: 72px 0 0;
  background: #fff;
}

.cases-heading {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.case-tracks {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.case-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: case-marquee 34s linear infinite;
}

.case-track:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 40s;
  transform: translateX(-220px);
}

.case-tracks:hover .case-track {
  animation-play-state: paused;
}

.case-card {
  display: grid;
  width: 332px;
  min-height: 201px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 27px;
  background: var(--surface-soft);
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.case-card h3 {
  margin: 22px 0 8px;
  font-size: 20px;
}

.case-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.case-metrics {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-top: 22px;
}

.case-metric strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 30px;
}

.case-metric span {
  color: var(--muted);
  font-size: 11px;
}

@keyframes case-marquee {
  to { transform: translateX(calc(-50% - 9px)); }
}

.why-section {
  min-height: 730px;
  padding: 76px 0 131px;
  background: #f6f8fa;
}

.why-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.why-comparison {
  display: grid;
  max-width: 1160px;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 0;
  margin: 52px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.why-panel {
  min-height: 390px;
  padding: 44px;
}

.why-panel h3 {
  margin: 0;
  font-size: 26px;
}

.why-panel > p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 14px;
}

.why-panel-weak {
  color: #454b56;
  background: #eef0f2;
}

.why-panel-complete {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--data));
}

.why-panel-complete > p {
  color: rgba(255, 255, 255, 0.72);
}

.why-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.why-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 23, 34, 0.1);
}

.why-panel-complete .why-item {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.why-item i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 800;
}

.why-panel-complete .why-item i {
  color: var(--brand);
  background: #fff;
}

.why-item strong,
.why-item span {
  display: block;
}

.why-item strong {
  font-size: 14px;
}

.why-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.why-panel-complete .why-item span {
  color: rgba(255, 255, 255, 0.7);
}

.faq-section {
  min-height: 520px;
  padding: 70px 0 21px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 94px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  content: "+";
  font-size: 18px;
  font-weight: 400;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text);
  transition: max-height 280ms ease, padding 280ms ease;
}

.faq-answer p {
  margin: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding: 0 42px 22px 0;
}

.closing-cta {
  min-height: 300px;
  color: #fff;
  background: linear-gradient(110deg, #070913 0%, #11211d 56%, #17283b 100%);
}

.closing-cta-inner {
  display: grid;
  min-height: 300px;
  grid-template-columns: 0.58fr 0.42fr;
  align-items: center;
  gap: 60px;
}

.closing-cta h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 44px;
  line-height: 1.25;
}

.closing-cta h2 em {
  color: #8fc5b7;
  font-style: normal;
}

.closing-cta .site-button {
  margin-top: 24px;
}

.closing-promises {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.closing-promise {
  min-height: 104px;
  padding: 22px;
  background: rgba(7, 9, 19, 0.82);
}

.closing-promise strong {
  display: block;
  font-size: 14px;
}

.closing-promise span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

/* Secondary pages */
.page-main {
  overflow: hidden;
}

.page-hero {
  min-height: 650px;
  padding: 92px 0 86px;
  background: linear-gradient(180deg, #eef7f4 0%, #fff 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.page-hero h1 {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(50px, 5vw, 68px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 18px;
}

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

.page-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.page-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-section {
  padding: 92px 0;
}

.page-section-soft {
  background: var(--surface-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.info-card {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: #fff;
}

.info-card h3 {
  margin: 22px 0 8px;
  font-size: 21px;
}

.info-card p {
  margin: 0;
  color: var(--text);
}

.info-card-number {
  color: var(--brand);
  font-family: var(--font-data);
  font-weight: 800;
}

.split-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 70px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
}

.check-list li::before {
  color: var(--brand);
  content: "✓";
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.process-card {
  min-height: 220px;
  border-top: 2px solid var(--brand);
  padding: 25px 4px;
}

.process-card strong {
  color: var(--brand);
  font-family: var(--font-data);
}

.process-card h3 {
  margin: 16px 0 8px;
  font-size: 21px;
}

.process-card p {
  margin: 0;
  color: var(--text);
}

.metric-band {
  color: #fff;
  background: var(--footer);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  min-height: 170px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item:last-child {
  border-right: 0;
}

.metric-item strong {
  display: block;
  color: #9fd0c3;
  font-family: var(--font-data);
  font-size: 38px;
}

.metric-item span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.application-page {
  min-height: calc(100vh - 68px);
  padding: 64px 0 90px;
  background: linear-gradient(180deg, #eff8f5, #fff);
}

.application-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.application-copy {
  padding: 64px 46px;
  color: #fff;
  background: linear-gradient(150deg, var(--brand), var(--data));
}

.application-copy h1 {
  margin: 96px 0 18px;
  font-family: var(--font-sans);
  font-size: 52px;
  line-height: 1.12;
}

.application-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.application-form {
  padding: 58px;
}

.application-form .survey-form {
  padding: 0;
}

.auth-site-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 255, 0.72)),
    url("/assets/reference/hero-bg.webp") center / cover no-repeat;
}

.auth-site-layout {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 80px;
  padding: 48px max(48px, calc((100vw - 1280px) / 2));
}

.auth-site-copy h1 {
  max-width: 640px;
  margin: 26px 0 18px;
  font-family: var(--font-sans);
  font-size: 60px;
  line-height: 1.12;
}

.auth-site-copy p {
  max-width: 560px;
  color: var(--text);
  font-size: 17px;
}

.auth-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.auth-card h2 {
  margin: 22px 0 8px;
  font-size: 30px;
}

.auth-card > p {
  margin: 0 0 25px;
  color: var(--muted);
}

.auth-card .survey-field {
  margin-bottom: 15px;
}

.auth-card .site-button {
  width: 100%;
  margin-top: 6px;
}

.auth-switch {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.auth-switch a {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 1280px) {
  .site-nav-links {
    gap: 14px;
  }

  .site-nav-link {
    font-size: 13px;
  }

  .site-login-link span {
    display: none;
  }

  .hero-main {
    width: min(calc(100% - 56px), 1220px);
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-capability {
    padding-inline: 18px;
  }
}

@media (max-width: 1080px) {
  .site-nav-links,
  .site-login-link {
    display: none;
  }

  .site-menu-button {
    display: inline-grid;
  }

  .menu-close-icon {
    display: none;
  }

  .is-menu-open .menu-open-icon {
    display: none;
  }

  .is-menu-open .menu-close-icon {
    display: block;
  }

  .site-mobile-menu {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(420px, 100%);
    grid-template-rows: 1fr auto;
    padding: 20px;
    background: #fff;
    box-shadow: -24px 40px 60px rgba(18, 23, 34, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .reference-hero-page .site-mobile-menu,
  .reference-pricing-page .site-mobile-menu,
  .reference-about-page .site-mobile-menu,
  .reference-partner-page .site-mobile-menu {
    top: 58px;
  }

  .is-menu-open .site-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-mobile-menu nav {
    overflow: auto;
  }

  .site-mobile-menu nav > a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .site-mobile-menu nav > a svg {
    width: 18px;
    height: 18px;
  }

  .site-mobile-menu .site-mobile-sub-link {
    min-height: 42px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
  }

  .site-mobile-menu > .site-button {
    width: 100%;
  }

  .hero-main,
  .engine-layout,
  .citation-layout,
  .page-hero-grid,
  .split-content {
    grid-template-columns: 1fr;
  }

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

  .hero-main {
    min-height: 0;
    padding-bottom: 180px;
  }

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

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

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

  .principle-card {
    min-height: 330px;
  }

  .principle-card.is-wide {
    grid-column: span 2;
  }

  .insights-layout {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 50px;
  }

  .engine-orbit {
    max-width: 720px;
    margin-inline: auto;
  }

  .citation-dashboard {
    max-width: 820px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .site-footer-main {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .auth-site-layout {
    grid-template-columns: 1fr;
  }

  .auth-site-copy {
    display: none;
  }

  .auth-card {
    width: min(500px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--page-max));
  }

  .site-nav-inner {
    width: calc(100% - 28px);
  }

  .site-brand {
    font-size: 15px;
  }

  .site-nav-cta {
    display: none;
  }

  .section-heading,
  .insights-copy .section-heading,
  .engine-copy .section-heading {
    font-size: 34px;
  }

  .section-description {
    font-size: 15px;
  }

  .contact-rail,
  .back-to-top {
    display: none;
  }

  .mobile-apply-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 96px;
    gap: 8px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -12px 32px rgba(18, 23, 34, 0.08);
    backdrop-filter: blur(14px);
  }

  .mobile-apply-bar .site-button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .home-hero {
    background-position: 62% center;
  }

  .home-hero::before {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    content: "";
  }

  .hero-main {
    width: calc(100% - 32px);
    gap: 30px;
    padding: 52px 0 538px;
  }

  .hero-copy h1 {
    font-size: 44px;
    line-height: 1.12;
  }

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

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 10px;
  }

  .hero-stat strong {
    font-size: 23px;
  }

  .hero-stat span {
    font-size: 11px;
  }

  .hero-audit {
    position: absolute;
    right: 0;
    bottom: 132px;
    left: 0;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .hero-audit-head strong {
    font-size: 15px;
  }

  .platform-pills {
    gap: 7px;
  }

  .platform-pill {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .platform-pill::before {
    width: 19px;
    height: 19px;
  }

  .audit-input,
  .audit-brand {
    min-height: 52px;
    font-size: 12px;
  }

  .hero-capabilities {
    grid-template-columns: repeat(5, minmax(128px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .hero-capability {
    grid-template-columns: 38px 1fr;
    min-width: 150px;
    gap: 10px;
    padding: 14px;
  }

  .hero-capability-icon {
    width: 36px;
    height: 36px;
  }

  .principle-section,
  .insights-section,
  .engine-section,
  .citation-section,
  .start-section,
  .services-section,
  .cases-section,
  .why-section,
  .faq-section,
  .page-section {
    min-height: 0;
    padding: 70px 0;
  }

  .principle-intro,
  .insights-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .principle-card,
  .principle-card.is-wide {
    min-height: 310px;
    grid-column: auto;
  }

  .principle-card-copy p {
    display: block;
  }

  .insights-copy {
    position: static;
    padding: 0;
  }

  .insight-timeline {
    gap: 16px;
    padding-left: 20px;
  }

  .insight-timeline::before {
    left: 5px;
  }

  .insight-card,
  .insight-card:nth-child(even) {
    width: 100%;
    margin-left: 0;
    opacity: 1;
    transform: none;
  }

  .insight-card:nth-child(odd)::before,
  .insight-card:nth-child(even)::before {
    top: 34px;
    right: auto;
    left: -22px;
  }

  .engine-tabs {
    margin-top: 24px;
  }

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

  .engine-orbit {
    min-height: 450px;
  }

  .engine-ring {
    width: 290px;
    height: 290px;
  }

  .engine-center {
    width: 128px;
    height: 128px;
  }

  .orbit-node {
    width: 92px;
    min-height: 58px;
  }

  .citation-dashboard {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .citation-chart {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0 28px;
  }

  .citation-donut {
    width: 210px;
    height: 210px;
  }

  .citation-donut::before {
    width: 140px;
    height: 140px;
  }

  .citation-preview {
    grid-template-columns: 1fr;
  }

  .start-grid,
  .services-grid,
  .feature-grid,
  .process-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .start-path-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .start-path-card img {
    height: 210px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
  }

  .case-card {
    width: 292px;
  }

  .why-comparison {
    grid-template-columns: 1fr;
  }

  .why-panel {
    min-height: 0;
    padding: 30px 24px;
  }

  .closing-cta-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 64px 0;
  }

  .closing-cta h2 {
    font-size: 34px;
  }

  .closing-promises {
    grid-template-columns: 1fr;
  }

  .site-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding-top: 56px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer-bottom {
    display: grid;
    gap: 6px;
    justify-content: start;
    padding: 18px 0 92px;
  }

  .survey-dialog,
  .application-shell {
    grid-template-columns: 1fr;
  }

  .survey-success {
    grid-column: 1;
  }

  .survey-copy {
    min-height: auto;
    padding: 42px 24px 28px;
  }

  .survey-copy h2 {
    margin: 42px 0 10px;
    font-size: 36px;
  }

  .survey-benefits {
    margin-top: 28px;
  }

  .survey-form,
  .application-form {
    grid-template-columns: 1fr;
    padding: 30px 22px 24px;
  }

  .survey-field,
  .survey-field-wide,
  .survey-status,
  .survey-submit {
    grid-column: 1;
  }

  .page-hero {
    min-height: 0;
    padding: 64px 0;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .metric-item {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .application-page {
    padding: 28px 16px 90px;
  }

  .application-copy {
    padding: 46px 26px;
  }

  .application-copy h1 {
    margin: 54px 0 16px;
    font-size: 42px;
  }

  .auth-site-layout {
    padding: 24px 16px;
  }

  .auth-card {
    padding: 30px 22px;
  }
}

/* Final desktop homepage geometry lock. These rules intentionally sit after
   the historical shared styles so the measured reference composition wins. */
@media (min-width: 1121px) {
  .home-page .engine-copy .section-heading {
    margin: 0 0 20px;
    line-height: 55px;
  }

  .home-page .engine-copy .section-description {
    max-width: 422px;
    margin: 0 0 24px;
    line-height: 27px;
  }

  .home-page .engine-tabs {
    height: 245px;
    margin: 0 0 24px;
    border-radius: 26px;
    padding: 6px;
  }

  .home-page .engine-tab-list {
    height: 47px;
    padding: 4px;
    border: 1px solid rgba(41, 69, 107, 0.08);
    border-radius: 21px;
    background: rgba(247, 248, 255, 0.9);
  }

  .home-page .engine-tab-list button {
    height: 37px;
    min-height: 37px;
    padding: 10px;
    border-radius: 17px;
    font-size: 13px;
    line-height: 17px;
  }

  .home-page .engine-tab-panel {
    height: 184px;
    min-height: 184px;
    padding: 24px 20px;
  }

  .home-page .citation-layout {
    display: block;
  }

  .home-page .citation-heading-block {
    width: 820px;
    max-width: 100%;
    height: 91px;
    margin: 22px 0 19px;
  }

  .home-page .citation-heading-block .section-heading {
    max-width: 820px;
    margin: 0 0 16px;
    line-height: 48.4px;
    white-space: nowrap;
  }

  .home-page .citation-heading-block .section-description {
    max-width: 768px;
    margin: 0;
    font-size: 16px;
    line-height: 27px;
  }

  .home-page .citation-content-grid {
    display: grid;
    grid-template-columns: 430px 650px;
    column-gap: 40px;
    align-items: start;
  }

  .home-page .citation-content-grid .platform-strategies {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 0 -24px;
  }

  .home-page .citation-content-grid .citation-dashboard {
    grid-column: 2;
    grid-row: 1;
    height: 570px;
    min-height: 570px;
    margin: 28px 0 0;
  }

  .home-page .cases-section {
    padding-top: 96px;
  }

  .home-page .cases-heading {
    width: min(calc(100% - 96px), 1184px);
  }

  .home-page .cases-heading .section-heading {
    margin: 0 0 12px;
    line-height: 55px;
  }

  .home-page .cases-heading .section-description {
    width: 760px;
    max-width: 100%;
    margin: 16px auto 0;
    line-height: 27px;
  }
}

@media (max-width: 1120px) {
  .home-page .citation-content-grid {
    grid-template-columns: 1fr;
  }

  .home-page .citation-content-grid .platform-strategies {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .home-page .citation-heading-block {
    height: auto;
    margin: 0;
  }

  .home-page .citation-heading-block .section-heading {
    white-space: normal;
  }

  .home-page .citation-content-grid .citation-dashboard {
    margin-top: 24px;
  }
}

/* Final reference geometry pass: keep the public shell while matching the source site's measured proportions. */
.home-page .hero-main {
  width: min(calc(100% - 112px), 1300px);
  grid-template-columns: minmax(0, 1fr) minmax(620px, 690px);
  gap: 44px;
}

.home-page .hero-copy {
  max-width: 620px;
}

.home-page .hero-copy h1 {
  max-width: 620px;
  font-size: clamp(58px, 5.5vw, 74px);
  line-height: 1.1;
}

.home-page .hero-audit {
  width: 690px;
  padding: 40px;
}

.home-page .hero-capabilities {
  padding-inline: 64px;
}

.home-page .hero-capabilities-inner {
  max-width: 1300px;
}

.home-page .hero-capability {
  display: flex;
  min-width: 0;
  height: 64px;
  gap: 20px;
  padding: 0;
  border-right: 0;
}

.home-page .hero-capability:not(:first-child) {
  border-left: 1px solid rgba(41, 69, 107, 0.1);
  padding-left: 16px;
}

.home-page .hero-capability > img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.home-page .hero-capability > div {
  min-width: 0;
}

.home-page .hero-stats {
  width: 600px;
  max-width: none;
  flex-wrap: nowrap;
}

.lobster-container,
.academy-container,
.partner-container {
  width: min(calc(100% - 160px), 1120px);
}

.lobster-hero-grid {
  grid-template-columns: minmax(0, 531px) minmax(0, 624px);
  gap: 77px;
}

.lobster-hero-copy h1 {
  max-width: 531px;
  font-size: 83px;
  line-height: 1.04;
}

.lobster-hero-agent {
  width: 512px;
}

.lobster-hero-terminal {
  width: 420px;
}

.lobster-capability-tabs {
  grid-template-columns: repeat(4, 1fr);
}

.academy-hero h1,
.partner-hero h1 {
  margin-top: 0;
  font-size: 54px;
}

.academy-hero h2,
.partner-hero h2 {
  max-width: 840px;
  margin: 10px 0 0;
  color: var(--reference-accent);
  font-family: var(--font-sans);
  font-size: 48px;
  line-height: 1.12;
}

.academy-hero h2 em,
.partner-hero h2 em {
  color: var(--reference-accent);
  font-style: normal;
}

.academy-wordmark,
.partner-eyebrow {
  letter-spacing: 0;
}

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

@media (max-width: 1120px) {
  .home-page .hero-main {
    width: min(calc(100% - 64px), 960px);
    grid-template-columns: 1fr;
  }

  .home-page .hero-audit {
    width: auto;
  }

  .lobster-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .home-page .hero-main {
    width: calc(100% - 32px);
  }

  .home-page .hero-capabilities {
    padding-inline: 0;
  }

  .home-page .hero-stats {
    width: 100%;
    flex-wrap: wrap;
  }

  .lobster-container,
  .academy-container,
  .partner-container {
    width: calc(100% - 32px);
  }

  .lobster-hero-copy h1 {
    font-size: 45px;
  }

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

  .academy-hero h1,
  .partner-hero h1 {
    font-size: 42px;
  }

  .academy-hero h2,
  .partner-hero h2 {
    font-size: 36px;
  }

  .partner-rights-grid {
    grid-template-columns: 1fr;
  }
}

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

  [data-reveal],
  .insight-card {
    opacity: 1;
    transform: none;
  }
}

/* Homepage reference geometry corrections. Keep the existing brand asset and
   public behavior while matching the source site's internal flow. */
.home-page .engine-copy .section-heading {
  margin: 0 0 20px;
}

.home-page .engine-copy .section-description {
  max-width: 422px;
  margin: 0 0 24px;
}

.home-page .engine-tabs {
  height: 245px;
  margin: 0 0 24px;
  border-radius: 26px;
  padding: 6px;
}

.home-page .engine-tab-list {
  height: 47px;
  padding: 4px;
  border: 1px solid rgba(41, 69, 107, 0.08);
  border-radius: 21px;
  background: rgba(247, 248, 255, 0.9);
}

.home-page .engine-tab-list button {
  height: 37px;
  min-height: 37px;
  padding: 10px;
  border-radius: 17px;
  font-size: 13px;
  line-height: 17px;
}

.home-page .engine-tab-panel {
  height: 184px;
  min-height: 184px;
  padding: 24px 20px;
}

.home-page .citation-layout {
  display: block;
}

.home-page .citation-heading-block {
  width: 820px;
  max-width: 100%;
  height: 91px;
  margin: 22px 0 19px;
}

.home-page .citation-heading-block .section-heading {
  max-width: 820px;
  white-space: nowrap;
}

.home-page .citation-heading-block .section-description {
  max-width: 768px;
  margin-top: 0;
  font-size: 16px;
  line-height: 27px;
}

.home-page .citation-content-grid {
  display: grid;
  grid-template-columns: 430px 650px;
  column-gap: 40px;
  align-items: start;
}

.home-page .citation-content-grid .platform-strategies {
  margin: 0 0 0 -24px;
}

.home-page .citation-content-grid .citation-dashboard {
  height: 570px;
  min-height: 570px;
  margin-top: 28px;
}

.home-page .cases-section {
  padding-top: 96px;
}

.home-page .cases-heading {
  width: min(calc(100% - 96px), 1184px);
}

.home-page .cases-heading .section-heading {
  line-height: 55px;
  margin: 0 0 12px;
}

.home-page .cases-heading .section-description {
  width: 760px;
  max-width: 100%;
  margin: 16px auto 0;
  line-height: 27px;
}

@media (max-width: 1120px) {
  .home-page .citation-content-grid {
    grid-template-columns: 1fr;
  }

  .home-page .citation-content-grid .platform-strategies {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .home-page .citation-heading-block {
    height: auto;
    margin: 0;
  }

  .home-page .citation-heading-block .section-heading {
    white-space: normal;
  }

  .home-page .citation-content-grid .citation-dashboard {
    margin-top: 24px;
  }
}

/* Homepage reference-parity pass */
.home-page {
  overflow-x: visible;
}

.home-page .site-header {
  height: 58px;
}

.home-page .site-nav-inner {
  width: min(calc(100% - 48px), 1392px);
  height: 58px;
  gap: 22px;
}

.home-page .site-brand {
  font-size: 16px;
}

.home-page .site-brand img {
  width: 30px;
  height: 30px;
}

.home-page .site-nav-links {
  justify-content: flex-start;
  gap: 40px;
  margin-left: 72px;
}

.home-page .site-nav-link,
.home-page .site-login-link {
  font-size: 13px;
}

.home-page .site-brand {
  width: 108px;
  overflow: hidden;
  gap: 6px;
  font-size: 14px;
}

.home-page .site-brand span {
  display: inline;
  font-weight: 800;
}

.home-page .site-brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  object-position: left center;
}

.home-page .site-nav-link::after {
  bottom: 0;
}

.home-page .site-nav-links > .site-nav-link[href="/"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-page .site-nav-cta {
  min-height: 38px;
  padding-inline: 19px;
}

.home-page .home-hero {
  min-height: 842px;
}

.home-page .hero-main {
  width: min(calc(100% - 140px), 1300px);
  min-height: 712px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  padding: 102px 0 112px;
}

.home-page .hero-copy h1 {
  max-width: 590px;
  font-size: 72px;
  font-weight: 760;
  line-height: 1.08;
}

.home-page .hero-copy,
.home-page .hero-audit {
  transform: translateY(18px);
}

.home-page .hero-lead {
  margin-top: 25px;
  font-size: 21px;
}

.home-page .hero-description {
  max-width: 570px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.9;
}

.home-page .hero-actions {
  margin-top: 30px;
}

.home-page .hero-actions .site-button {
  min-width: 210px;
}

.home-page .hero-stats {
  max-width: 530px;
  margin-top: 34px;
}

.home-page .hero-stat strong {
  font-size: 34px;
}

.home-page .hero-audit {
  min-height: 474px;
  align-self: center;
  border-color: rgba(41, 69, 107, 0.17);
  border-radius: 22px;
  padding: 42px 40px 34px;
  box-shadow: 0 26px 72px rgba(41, 69, 107, 0.13);
}

.home-page .hero-capabilities {
  height: 121px;
  min-height: 121px;
}

.home-page .principle-intro .site-kicker,
.home-page .insights-copy .site-kicker,
.home-page .engine-copy .site-kicker,
.home-page .citation-layout > div:first-child > .site-kicker,
.home-page .start-heading .site-kicker,
.home-page .services-heading .site-kicker,
.home-page .cases-heading .site-kicker,
.home-page .why-heading .site-kicker,
.home-page .faq-layout .site-kicker {
  display: none;
}

.home-page .principle-section {
  height: 789px;
  min-height: 789px;
  padding: 78px 0 70px;
}

.home-page .principle-intro {
  display: block;
}

.home-page .principle-intro .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .principle-intro .section-description {
  max-width: 960px;
  margin-top: 14px;
}

.home-page .principle-grid {
  min-height: 440px;
  grid-template-columns: 1fr 2.35fr 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}

.home-page .principle-card {
  min-height: 440px;
  border-radius: 24px;
}

.home-page .principle-card-copy {
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.home-page .principle-card-copy h3 {
  font-size: 29px;
  line-height: 1.28;
}

.home-page .principle-card.is-wide .principle-card-copy h3 {
  font-size: 32px;
}

.home-page .principle-card-copy p {
  font-size: 14px;
}

.home-page .principle-card.is-active .principle-card-copy p {
  display: block;
}

.home-page .principle-card-copy::after {
  width: 76px;
  margin-top: 25px;
}

.home-page .principle-grid:has(.principle-card:nth-child(1).is-active) {
  grid-template-columns: 2.35fr 1fr 1fr 1fr;
}

.home-page .principle-grid:has(.principle-card:nth-child(2).is-active) {
  grid-template-columns: 1fr 2.35fr 1fr 1fr;
}

.home-page .principle-grid:has(.principle-card:nth-child(3).is-active) {
  grid-template-columns: 1fr 1fr 2.35fr 1fr;
}

.home-page .principle-grid:has(.principle-card:nth-child(4).is-active) {
  grid-template-columns: 1fr 1fr 1fr 2.35fr;
}

.home-page .insights-section {
  height: 1355px;
  min-height: 1355px;
  padding: 56px 0 82px;
  background: #fff;
}

.home-page .insights-layout {
  grid-template-columns: 500px 1fr;
  gap: 100px;
}

.home-page .insights-copy {
  top: 116px;
  padding-top: 0;
}

.home-page .insights-copy .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
  line-height: 1.22;
}

.home-page .insights-copy .section-description {
  max-width: 470px;
  margin-top: 126px;
  font-size: 16px;
  line-height: 1.9;
}

.home-page .insights-copy .site-button {
  margin-top: 28px;
}

.home-page .insight-timeline {
  gap: 112px;
  padding: 0 0 0 30px;
}

.home-page .insight-timeline::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--data) 58%, var(--line-strong));
}

.home-page .insight-card,
.home-page .insight-card:nth-child(even) {
  width: 520px;
  min-height: 176px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr;
  margin-left: 0;
  border-radius: 16px;
  opacity: 1;
  transform: none;
}

.home-page .insight-card:nth-child(even) {
  margin-left: 174px;
}

.home-page .insight-card::before,
.home-page .insight-card:nth-child(odd)::before,
.home-page .insight-card:nth-child(even)::before {
  top: 50%;
  right: auto;
  left: -40px;
  width: 17px;
  height: 17px;
  border-width: 5px;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 0 0 8px rgba(47, 111, 94, 0.1);
  transform: translateY(-50%);
}

.home-page .insight-card:nth-child(even)::before {
  left: -214px;
}

.home-page .insight-card-copy {
  padding: 20px 8px 23px 28px;
}

.home-page .insight-card-num {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
}

.home-page .insight-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.home-page .insight-card p {
  font-size: 13px;
  line-height: 1.75;
}

.home-page .insight-card img {
  width: 100%;
  height: 100%;
  border-top: 0;
  border-left: 1px solid var(--line);
  object-fit: cover;
}

.home-page .engine-section {
  height: 737px;
  min-height: 737px;
  padding: 56px 0;
}

.home-page .engine-section .site-shell {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.home-page .engine-layout {
  grid-template-columns: 420px 1fr;
  grid-template-columns: 422px minmax(0, 1fr);
  gap: 24px;
}

.home-page .engine-copy .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
  line-height: 1.25;
}

.home-page .engine-copy .section-description {
  max-width: 390px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.home-page .engine-tabs {
  margin-top: 25px;
  border-radius: 18px;
}

.home-page .engine-tab-panel {
  min-height: 172px;
  padding: 24px 26px;
}

.home-page .engine-tab-list button {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3333;
}

.home-page .engine-orbit {
  min-height: 620px;
}

.home-page .engine-ring {
  width: 416px;
  height: 416px;
  border: 2px solid rgba(47, 111, 94, 0.23);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 60%, transparent 60.5%),
    conic-gradient(from -25deg, var(--brand), var(--data), #59a79b, var(--brand));
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.92), 0 24px 70px rgba(41, 69, 107, 0.08);
}

.home-page .engine-ring::before {
  inset: 48px;
  border-color: rgba(47, 111, 94, 0.18);
}

.home-page .engine-ring::after {
  inset: 106px;
  border-color: rgba(41, 69, 107, 0.16);
}

.home-page .engine-center {
  width: 154px;
  height: 154px;
}

.home-page .engine-center strong {
  font-size: 26px;
}

.home-page .orbit-node {
  z-index: 4;
  width: 126px;
  min-height: 78px;
  border-radius: 14px;
}

.home-page .engine-orbit > .orbit-node:nth-last-child(4) {
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
}

.home-page .engine-orbit > .orbit-node:nth-last-child(3) {
  top: 50%;
  right: 76px;
  transform: translateY(-50%);
}

.home-page .engine-orbit > .orbit-node:nth-last-child(2) {
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
}

.home-page .engine-orbit > .orbit-node:nth-last-child(1) {
  top: 50%;
  left: 76px;
  transform: translateY(-50%);
}

.home-page .engine-data-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(41, 69, 107, 0.1);
}

.home-page .engine-data-card > strong {
  display: block;
  font-size: 13px;
}

.home-page .engine-data-card-platform {
  top: 48px;
  left: 0;
}

.home-page .engine-data-card-distribution {
  top: 48px;
  right: 0;
  text-align: center;
}

.home-page .engine-data-card-content {
  bottom: 44px;
  left: 0;
}

.home-page .engine-data-card-monitor {
  right: 0;
  bottom: 44px;
}

.home-page .engine-platform-icons {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.home-page .engine-platform-icons span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 10px;
  font-weight: 800;
}

.home-page .engine-mini-chart {
  display: flex;
  height: 38px;
  align-items: end;
  gap: 7px;
  margin-top: 12px;
  border-bottom: 1px solid var(--line);
}

.home-page .engine-mini-chart i {
  width: 12px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--data), var(--brand));
}

.home-page .engine-mini-chart i:nth-child(1) { height: 16px; }
.home-page .engine-mini-chart i:nth-child(2) { height: 24px; }
.home-page .engine-mini-chart i:nth-child(3) { height: 20px; }
.home-page .engine-mini-chart i:nth-child(4) { height: 32px; }
.home-page .engine-mini-chart i:nth-child(5) { height: 27px; }
.home-page .engine-mini-chart i:nth-child(6) { height: 36px; }

.home-page .engine-mini-donut {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 10px auto 6px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 0 32%, var(--data) 32% 61%, #84b5a8 61% 78%, var(--line) 78%);
}

.home-page .engine-mini-donut::before {
  grid-area: 1 / 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.home-page .engine-mini-donut span {
  position: relative;
  z-index: 1;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 800;
}

.home-page .engine-data-card small {
  color: var(--muted);
  font-size: 9px;
}

.home-page .engine-content-lines {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.home-page .engine-content-lines i {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-soft) 0 22%, #eef1f4 22%);
}

.home-page .engine-mini-metrics {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.home-page .engine-mini-metrics span {
  flex: 1;
  border-radius: 6px;
  padding: 5px 4px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.home-page .citation-section {
  height: 902px;
  min-height: 902px;
  padding: 58px 0 68px;
  background: linear-gradient(180deg, #fbfcfd 0%, #eef6f3 100%);
}

.home-page .citation-layout {
  grid-template-columns: 430px 1fr;
  align-items: start;
  gap: 40px;
}

.home-page .citation-layout .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .citation-layout .section-description {
  margin-top: 14px;
  font-size: 15px;
}

.home-page .platform-strategies {
  gap: 8px;
  margin-top: 28px;
}

.home-page .platform-strategy {
  min-height: 70px;
  grid-template-columns: 42px 1fr;
  border-color: var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.home-page .platform-strategy.is-active {
  border-color: rgba(47, 111, 94, 0.5);
  box-shadow: 0 12px 28px rgba(47, 111, 94, 0.08);
}

.home-page .citation-dashboard {
  min-height: 568px;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  margin-top: 152px;
  border-radius: 22px;
  padding: 26px;
}

.home-page .citation-chart {
  padding-right: 20px;
}

.home-page .citation-donut {
  width: 230px;
  height: 230px;
}

.home-page .citation-donut::before {
  width: 150px;
  height: 150px;
}

.home-page .citation-donut strong {
  font-size: 36px;
}

.home-page .citation-ranking {
  align-content: start;
  gap: 4px;
  padding-top: 8px;
}

.home-page .citation-ranking h4 {
  margin-bottom: 8px;
  font-size: 17px;
}

.home-page .citation-source {
  min-height: 25px;
  grid-template-columns: 24px 1fr 52px;
  gap: 7px;
  font-size: 11px;
}

.home-page .citation-source i {
  width: 22px;
  height: 22px;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
}

.home-page .citation-source span {
  border-radius: 999px;
  padding: 3px 6px;
  background: linear-gradient(90deg, rgba(47, 111, 94, 0.16) 0 var(--bar), transparent var(--bar) 100%);
}

.home-page .citation-source b {
  font-size: 10px;
  text-align: right;
}

.home-page .citation-preview {
  display: none;
}

.home-page .start-section {
  height: 840px;
  min-height: 840px;
  padding: 78px 0 66px;
}

.home-page .start-heading {
  max-width: 1000px;
}

.home-page .start-heading .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .start-heading .section-description {
  margin-top: 14px;
}

.home-page .start-grid {
  gap: 24px;
  margin-top: 50px;
}

.home-page .start-path-card {
  min-height: 252px;
  grid-template-columns: 1.2fr 0.8fr;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #f4f9f7 100%);
}

.home-page .start-path-copy {
  padding: 62px 20px 28px 32px;
}

.home-page .start-path-number {
  top: 18px;
  right: auto;
  left: 30px;
  color: rgba(47, 111, 94, 0.07);
  font-size: 82px;
}

.home-page .start-path-copy .site-kicker {
  display: none;
}

.home-page .start-path-copy h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.home-page .start-path-copy p {
  max-width: 360px;
}

.home-page .start-path-copy a {
  margin-top: 20px;
}

.home-page .start-path-card img {
  align-self: center;
  width: calc(100% - 24px);
  height: 190px;
  border-left: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.home-page .services-section {
  height: 947px;
  min-height: 947px;
  padding: 78px 0 78px;
  background: #fff;
}

.home-page .services-heading .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .services-heading .section-description {
  margin-top: 15px;
}

.home-page .services-grid {
  gap: 32px;
  margin-top: 42px;
}

.home-page .service-card {
  position: relative;
  min-height: 615px;
  grid-template-rows: 285px 1fr auto;
  border-radius: 14px;
  box-shadow: none;
}

.home-page .service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--data));
  content: "";
}

.home-page .service-card:nth-child(2)::after {
  background: linear-gradient(90deg, var(--data), var(--brand));
}

.home-page .service-card-audience {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 24px;
  display: grid;
  border: 1px solid rgba(47, 111, 94, 0.28);
  border-radius: 4px;
  padding: 8px 13px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
}

.home-page .service-card-audience span {
  font-size: 10px;
}

.home-page .service-card-audience strong {
  font-size: 13px;
}

.home-page .service-card img {
  height: 285px;
  border-bottom: 0;
  object-fit: contain;
  background: linear-gradient(180deg, #fbfcfd, #f1f6f4);
  mix-blend-mode: multiply;
}

.home-page .service-card-body {
  padding: 18px 40px 14px;
}

.home-page .service-card-label {
  display: none;
}

.home-page .service-card h3 {
  margin: 0 0 6px;
  font-size: 27px;
}

.home-page .service-card ul {
  gap: 8px;
  margin-top: 16px;
}

.home-page .service-card li::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  margin-right: 9px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  content: "✓";
  font-size: 10px;
}

.home-page .service-card > a {
  min-height: 48px;
  width: max-content;
  min-width: 150px;
  justify-content: center;
  gap: 24px;
  margin: 0 40px 34px;
  border: 1px solid var(--brand);
  padding: 0 18px;
}

.home-page .cases-section {
  height: 830px;
  min-height: 830px;
  padding: 72px 0 0;
  background: linear-gradient(180deg, #fff, #f7f8fb);
}

.home-page .cases-heading .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .cases-heading .section-description {
  margin: 14px auto 0;
}

.home-page .case-tracks {
  width: 100%;
  overflow: hidden;
  gap: 32px;
  margin-top: 48px;
}

.home-page .case-track {
  gap: 24px;
  animation-duration: 34s;
}

.home-page .case-card {
  width: 320px;
  height: 204px;
  min-height: 204px;
  grid-template-rows: 1fr auto;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  padding: 0;
  background: linear-gradient(180deg, #fff, #fbfbfc);
}

.home-page .case-card-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 16px 16px 12px;
}

.home-page .case-card-top {
  justify-content: flex-start;
  gap: 10px;
}

.home-page .case-card-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid rgba(47, 111, 94, 0.22);
  border-radius: 7px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 14px;
  line-height: 1;
}

.home-page .case-card-top h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.home-page .case-card-top p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.home-page .case-card-result {
  min-width: 0;
}

.home-page .case-card-result strong {
  display: inline-block;
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 38px;
  line-height: 1;
}

.home-page .case-card-result strong::after {
  margin-left: 6px;
  color: var(--brand);
  content: "↗";
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
}

.home-page .case-card-result span {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .case-card-tags {
  display: flex;
  min-height: 34px;
  align-items: flex-start;
  gap: 6px;
  overflow: hidden;
  padding: 0 16px 10px;
}

.home-page .case-card-tags span {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 94, 0.1);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .case-metric strong {
  font-size: 38px;
}

.home-page .why-section {
  height: 859px;
  min-height: 859px;
  padding: 72px 0 66px;
  background: #fff;
}

.home-page .why-heading .section-heading {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .why-heading .section-description {
  max-width: 860px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.home-page .why-comparison {
  position: relative;
  max-width: 1160px;
  grid-template-columns: 500px 680px;
  align-items: start;
  margin-top: 92px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .why-panel {
  position: relative;
  min-height: 446px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 24px 24px;
}

.home-page .why-panel::before {
  position: absolute;
  top: -18px;
  left: 50%;
  min-width: 164px;
  border-radius: 999px;
  padding: 8px 18px;
  background: #eef0f2;
  content: "";
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.home-page .why-panel h3,
.home-page .why-panel > p {
  display: none;
}

.home-page .why-panel-weak {
  margin-top: 54px;
  color: var(--ink);
  background: #fbfbfc;
}

.home-page .why-panel-weak::before {
  content: "竞品的单点工具";
}

.home-page .why-panel-complete {
  z-index: 2;
  min-height: 548px;
  margin-left: -20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 60px rgba(41, 69, 107, 0.08);
}

.home-page .why-panel-complete::before {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--data));
  content: "问策 GEO 完整能力";
  box-shadow: 0 10px 28px rgba(47, 111, 94, 0.2);
}

.home-page .why-list {
  gap: 14px;
  margin-top: 0;
}

.home-page .why-item {
  min-height: 82px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  background: #fff;
}

.home-page .why-panel-complete .why-item {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 24px rgba(41, 69, 107, 0.05);
}

.home-page .why-item i {
  color: var(--muted);
  background: #eef0f2;
}

.home-page .why-panel-complete .why-item i {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--data));
}

.home-page .why-panel-complete .why-item span {
  color: var(--muted);
}

.home-page .why-summary {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  margin-top: 14px;
  border: 1px solid rgba(47, 111, 94, 0.2);
  border-radius: 12px;
  padding: 12px 18px 12px 66px;
  color: var(--brand);
  background:
    radial-gradient(circle at 29px 50%, var(--brand) 0 17px, transparent 18px),
    linear-gradient(90deg, var(--brand-soft), #fff);
}

.home-page .why-summary::before {
  position: absolute;
  margin-left: -47px;
  color: #fff;
  content: "✦";
  font-size: 18px;
}

.home-page .why-summary-copy strong,
.home-page .why-summary-copy > span {
  display: block;
}

.home-page .why-summary-copy strong {
  font-size: 16px;
}

.home-page .why-summary-copy > span {
  color: var(--muted);
  font-size: 11px;
}

.home-page .faq-section {
  height: 526.375px;
  min-height: 526.375px;
  padding: 68px 0 38px;
}

.home-page .faq-layout {
  width: min(calc(100% - 160px), 1120px);
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  margin-inline: auto;
}

.home-page .faq-layout .section-heading {
  font-size: 44px;
  line-height: 55px;
}

.home-page .faq-layout .section-description {
  margin-top: 14px;
  font-size: 15px;
}

.home-page .faq-question {
  min-height: 0;
  padding: 16px 0;
  font-size: 16px;
  line-height: 22.5px;
}

.home-page .faq-question::after {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  content: "⌄";
  font-size: 18px;
  line-height: 1;
}

.home-page .faq-item.is-open .faq-question::after {
  content: "⌃";
  color: var(--brand);
}

.home-page .faq-answer {
  font-size: 14px;
}

.home-page .faq-item.is-open .faq-answer {
  padding-bottom: 16px;
}

.home-page .closing-cta {
  min-height: 258px;
}

.home-page .closing-cta-inner {
  min-height: 258px;
}

.home-page .closing-cta h2 {
  font-size: 40px;
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .home-page .hero-copy h1 {
    font-size: 62px;
  }
}

@media (max-width: 1120px) {
  .home-page .site-header,
  .home-page .site-nav-inner {
    height: 68px;
  }

  .home-page .home-hero,
  .home-page .principle-section,
  .home-page .insights-section,
  .home-page .engine-section,
  .home-page .citation-section,
  .home-page .start-section,
  .home-page .services-section,
  .home-page .cases-section,
  .home-page .why-section,
  .home-page .faq-section {
    height: auto;
    min-height: 0;
  }

  .home-page .hero-main {
    width: min(calc(100% - 64px), 960px);
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .home-page .insights-layout {
    grid-template-columns: 0.38fr 0.62fr;
    gap: 50px;
  }

  .home-page .insight-card,
  .home-page .insight-card:nth-child(even) {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .home-page .insight-card:nth-child(even)::before {
    left: -40px;
  }

  .home-page .engine-layout {
    grid-template-columns: 1fr;
  }

  .home-page .engine-orbit {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .home-page .citation-layout {
    grid-template-columns: 1fr;
  }

  .home-page .citation-dashboard {
    margin-top: 20px;
  }

  .home-page .why-comparison {
    max-width: 900px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .home-page .why-panel-complete {
    margin-left: -12px;
  }
}

@media (max-width: 760px) {
  .home-page .site-mobile-menu {
    visibility: hidden;
  }

  .home-page.is-menu-open .site-mobile-menu {
    visibility: visible;
  }

  .home-page .hero-main {
    width: calc(100% - 32px);
    padding: 50px 0 540px;
  }

  .home-page .hero-copy h1 {
    font-size: 44px;
  }

  .home-page .principle-section,
  .home-page .insights-section,
  .home-page .engine-section,
  .home-page .citation-section,
  .home-page .start-section,
  .home-page .services-section,
  .home-page .cases-section,
  .home-page .why-section,
  .home-page .faq-section {
    padding: 64px 0;
  }

  .home-page .principle-grid {
    grid-template-columns: 1fr;
  }

  .home-page .principle-card,
  .home-page .principle-card.is-wide {
    min-height: 310px;
  }

  .home-page .insights-copy .section-description {
    margin-top: 20px;
  }

  .home-page .insight-timeline {
    gap: 18px;
    padding-left: 20px;
  }

  .home-page .insight-card,
  .home-page .insight-card:nth-child(even) {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .home-page .insight-card::before,
  .home-page .insight-card:nth-child(odd)::before,
  .home-page .insight-card:nth-child(even)::before {
    top: 38px;
    left: -28px;
  }

  .home-page .insight-card img {
    height: 150px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-page .engine-orbit {
    min-height: 520px;
  }

  .home-page .engine-ring {
    width: 300px;
    height: 300px;
  }

  .home-page .engine-data-card {
    width: 126px;
    min-height: 92px;
    padding: 10px;
  }

  .home-page .engine-data-card-platform,
  .home-page .engine-data-card-content {
    left: 0;
  }

  .home-page .engine-data-card-distribution,
  .home-page .engine-data-card-monitor {
    right: 0;
  }

  .home-page .engine-platform-icons span:nth-child(n + 4),
  .home-page .engine-mini-metrics,
  .home-page .engine-data-card small {
    display: none;
  }

  .home-page .engine-orbit > .orbit-node:nth-last-child(4) {
    top: 80px;
  }

  .home-page .engine-orbit > .orbit-node:nth-last-child(2) {
    bottom: 80px;
  }

  .home-page .engine-orbit > .orbit-node:nth-last-child(3) {
    right: 24px;
  }

  .home-page .engine-orbit > .orbit-node:nth-last-child(1) {
    left: 24px;
  }

  .home-page .citation-dashboard {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .home-page .citation-chart {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .citation-ranking {
    padding-top: 0;
  }

  .home-page .start-grid,
  .home-page .services-grid,
  .home-page .why-comparison {
    grid-template-columns: 1fr;
  }

  .home-page .start-path-card {
    grid-template-columns: 1fr;
  }

  .home-page .start-path-card img {
    width: 100%;
    height: 190px;
  }

  .home-page .service-card {
    min-height: 590px;
  }

  .home-page .why-comparison {
    margin-top: 64px;
  }

  .home-page .why-panel,
  .home-page .why-panel-weak,
  .home-page .why-panel-complete {
    min-height: 0;
    margin: 0;
  }

  .home-page .why-panel-complete {
    margin-top: 54px;
  }

  .home-page .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page [data-reveal],
  .home-page .insight-card {
    opacity: 1;
    transform: none;
  }
}

/* Reference-family secondary pages */
.reference-hero-page .site-header,
.reference-hero-page .site-nav-inner,
.reference-pricing-page .site-header,
.reference-pricing-page .site-nav-inner,
.reference-about-page .site-header,
.reference-about-page .site-nav-inner,
.reference-partner-page .site-header,
.reference-partner-page .site-nav-inner {
  height: 58px;
}

.reference-hero-page .site-nav-menu,
.reference-pricing-page .site-nav-menu,
.reference-about-page .site-nav-menu,
.reference-partner-page .site-nav-menu {
  top: 50px;
}

.reference-hero-page .site-nav-link::after,
.reference-pricing-page .site-nav-link::after,
.reference-about-page .site-nav-link::after,
.reference-partner-page .site-nav-link::after {
  bottom: 0;
}

.reference-hero-page .page-hero {
  height: calc(100vh - 58px);
  min-height: 620px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    url("/assets/hero-data-globe-20260721.png") center / cover no-repeat;
}

.reference-hero-page .page-hero .site-shell {
  height: 100%;
}

.reference-hero-page .page-hero-grid {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1120px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.reference-hero-page .page-hero-grid > div:first-child {
  width: 100%;
  max-width: 1080px;
}

.reference-hero-page .page-hero .site-kicker {
  display: none;
}

.reference-hero-page .page-hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.reference-hero-page .page-hero h2 {
  margin: 8px auto 0;
  color: var(--brand);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.reference-hero-page .page-hero h2 em {
  color: var(--brand);
  font-style: normal;
}

.service-detail-page .page-hero h2 {
  font-size: 52px;
}

.service-detail-page .page-hero h1 {
  line-height: 1.1;
}

.service-detail-page .page-hero-grid > div:first-child {
  position: relative;
  top: -2px;
}

.reference-hero-page .page-hero h1 em {
  color: var(--brand);
  font-style: normal;
}

.reference-hero-page .page-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #6d727b;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.reference-hero-page .page-hero-actions {
  justify-content: center;
  margin-top: 40px;
}

.reference-hero-page .page-hero-actions .site-button {
  min-width: 126px;
  min-height: 52px;
  font-size: 15px;
  font-weight: 500;
}

.reference-hero-page .hero-board,
.reference-hero-page .page-visual,
.reference-hero-page .hero-frame,
.reference-hero-page .hero-chip-row,
.reference-hero-page .signal-band {
  display: none !important;
}

.reference-hero-page .page-section {
  padding: 86px 0;
}

.reference-hero-page .page-section-soft {
  background: #f7f8fa;
}

.reference-hero-page .info-card,
.reference-hero-page .process-card,
.reference-hero-page .scope-card,
.reference-hero-page .delivery-card,
.reference-hero-page .factor-card {
  border-radius: 8px;
  box-shadow: none;
}

.reference-pricing-page {
  background: #fff;
}

.reference-pricing-page .page-hero {
  height: 270px;
  min-height: 270px;
  padding: 0;
  background: #fff;
}

.reference-pricing-page .page-hero .site-shell {
  height: 100%;
}

.reference-pricing-page .page-hero-grid {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}

.reference-pricing-page .page-hero-grid > div:first-child {
  width: 100%;
}

.reference-pricing-page .page-hero .site-kicker,
.reference-pricing-page .page-hero-actions,
.reference-pricing-page .hero-chip-row,
.reference-pricing-page .hero-board {
  display: none !important;
}

.reference-pricing-page .page-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
}

.reference-pricing-page .page-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #777b83;
  font-size: 18px;
  text-align: center;
}

.reference-pricing-page .page-hero + .page-section {
  padding: 0 0 92px;
}

.reference-pricing-page .page-hero + .page-section .site-shell > .site-kicker,
.reference-pricing-page .page-hero + .page-section .site-shell > .section-heading,
.reference-pricing-page .page-hero + .page-section .site-shell > .section-description {
  display: none;
}

.reference-pricing-page .plan-grid {
  display: grid;
  grid-template-columns: 148px 248px repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.reference-pricing-page .plan-card {
  position: relative;
  min-height: 430px;
  overflow: visible;
  border: 0;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 28px 20px 0;
  background: #fff;
  box-shadow: none;
}

.reference-pricing-page .plan-card:nth-child(5) {
  background: #edf5f2;
}

.reference-pricing-page .plan-card:nth-child(5)::before {
  position: absolute;
  top: -14px;
  left: 50%;
  min-width: 86px;
  border-radius: 999px;
  padding: 4px 12px;
  color: #fff;
  background: var(--brand);
  content: "推荐方案";
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.reference-pricing-page .plan-card small {
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.reference-pricing-page .plan-card strong {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.3;
}

.reference-pricing-page .plan-card p {
  min-height: 96px;
  margin: 18px -20px 0;
  border-top: 1px solid var(--line);
  padding: 18px 20px;
}

.reference-pricing-page .plan-card ul {
  min-height: 156px;
  gap: 0;
  margin: 0 -20px;
}

.reference-pricing-page .plan-card li {
  min-height: 52px;
  border-top: 1px solid var(--line);
  padding: 14px 20px;
}

.reference-pricing-page .plan-card li::before {
  display: none;
}

.reference-pricing-page .plan-card .site-button {
  width: 100%;
  margin: 18px 0 22px;
  border-radius: 4px;
}

.reference-pricing-page .plan-card-meta {
  background: #f6f7f8;
}

.reference-pricing-page .plan-card-meta small,
.reference-pricing-page .plan-card-meta strong,
.reference-pricing-page .plan-card-meta p,
.reference-pricing-page .plan-card-meta li {
  font-weight: 700;
}

.reference-pricing-page .plan-card-meta strong {
  font-size: 17px;
}

.reference-pricing-page .plan-card-meta .site-button {
  display: none;
}

body.reference-about-page {
  background: #fff;
}

.reference-about-page .page-main {
  padding-bottom: 72px;
}

.reference-about-page .page-hero {
  min-height: 250px;
  padding: 88px 0 28px;
  background: #fff;
}

.reference-about-page .page-hero-grid {
  display: block;
}

.reference-about-page .page-hero-copy {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.reference-about-page .page-hero-copy .site-kicker,
.reference-about-page .page-hero-copy p,
.reference-about-page .page-hero-copy .hero-actions {
  display: none;
}

.reference-about-page .page-hero-copy h1 {
  max-width: none;
  margin: 0;
  font-size: 48px;
  line-height: 1.16;
}

.reference-about-page .page-hero-panel {
  display: none;
}

.reference-about-page .about-tabs {
  display: flex;
  gap: 34px;
  margin-top: 42px;
  border-bottom: 1px solid var(--line-strong);
}

.reference-about-page .about-tab {
  position: relative;
  padding: 0 0 14px;
  color: var(--muted);
}

.reference-about-page .about-tab.is-active {
  color: var(--ink);
}

.reference-about-page .about-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
}

.reference-about-page .page-section {
  border: 0;
  border-radius: 0;
  padding: 48px 0;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.reference-about-page .section-head {
  grid-template-columns: 1fr;
  gap: 18px;
}

.reference-about-page .section-head .site-kicker {
  display: none;
}

.reference-about-page .section-title {
  max-width: 900px;
  font-size: 26px;
}

.reference-about-page .section-copy {
  max-width: 1120px;
  color: var(--text);
}

.reference-about-page .signal-card,
.reference-about-page .timeline-card,
.reference-about-page .path-card {
  border-radius: 4px;
  box-shadow: none;
}

body.reference-partner-page {
  background: #fff;
}

.reference-partner-page .page-main {
  padding: 0 0 88px;
}

.reference-partner-page .contact-shell {
  width: 100%;
  max-width: none;
  gap: 0;
}

.reference-partner-page .hero-card {
  display: grid;
  min-height: 710px;
  grid-template-columns: 1fr;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 72px 24px 110px;
  background: #fff;
  box-shadow: none;
  text-align: center;
}

.reference-partner-page .hero-copy {
  width: min(100%, 980px);
}

.reference-partner-page .hero-copy .site-kicker {
  display: none;
}

.reference-partner-page .hero-copy h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.2;
}

.reference-partner-page .hero-copy p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #747982;
  font-size: 18px;
}

.reference-partner-page .hero-copy p + p {
  display: none;
}

.reference-partner-page .hero-actions {
  justify-content: center;
  margin-top: 36px;
}

.reference-partner-page .hero-actions .site-button {
  min-width: 154px;
  min-height: 52px;
}

.reference-partner-page .hero-note {
  display: none;
}

.reference-partner-page .partner-banner {
  display: flex;
  width: min(576px, 100%);
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 64px auto 0;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}

.reference-partner-page .section-card {
  width: min(calc(100% - 48px), var(--page-max));
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 72px 0;
  margin-inline: auto;
  background: #fff;
  box-shadow: none;
}

.reference-partner-page .contact-panel,
.reference-partner-page .faq-card {
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 760px) {
  .reference-hero-page .site-header,
  .reference-hero-page .site-nav-inner,
  .reference-pricing-page .site-header,
  .reference-pricing-page .site-nav-inner,
  .reference-about-page .site-header,
  .reference-about-page .site-nav-inner,
  .reference-partner-page .site-header,
  .reference-partner-page .site-nav-inner {
    height: 58px;
  }

  .reference-hero-page .page-hero {
    height: calc(100svh - 58px);
    min-height: 620px;
    padding: 0;
    background-position: 56% center;
  }

  .reference-hero-page .page-hero h1 {
    font-size: 40px;
    line-height: 1.22;
  }

  .service-detail-page .page-hero-grid > div:first-child {
    top: -7px;
  }

  .reference-hero-page .page-hero p {
    margin-top: 18px;
    font-size: 16px;
  }

  .reference-hero-page .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

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

  .reference-pricing-page .page-hero {
    height: auto;
    min-height: 230px;
    padding: 54px 0 42px;
  }

  .reference-pricing-page .page-hero h1 {
    font-size: 36px;
  }

  .reference-pricing-page .page-hero p {
    font-size: 15px;
  }

  .reference-pricing-page .plan-grid {
    grid-template-columns: 1fr;
  }

  .reference-pricing-page .plan-card-meta {
    display: none;
  }

  .reference-pricing-page .plan-card {
    min-height: 0;
  }

  .reference-pricing-page .plan-card:nth-child(5)::before {
    top: 12px;
    right: 16px;
    left: auto;
    transform: none;
  }

  .reference-about-page .page-hero {
    padding: 58px 0 22px;
  }

  .reference-about-page .page-hero-copy {
    padding: 0;
  }

  .reference-about-page .page-hero-copy h1 {
    font-size: 38px;
  }

  .reference-about-page .about-tabs {
    margin-top: 32px;
  }

  .reference-about-page .page-section {
    padding: 38px 0;
  }

  .reference-partner-page .hero-card {
    min-height: 630px;
    padding: 70px 16px 90px;
  }

  .reference-partner-page .hero-copy h1 {
    font-size: 40px;
  }

  .reference-partner-page .hero-copy p {
    font-size: 16px;
  }

  .reference-partner-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reference-partner-page .hero-actions .site-button {
    width: 100%;
  }

  .reference-partner-page .partner-banner {
    min-height: 60px;
    margin-top: 46px;
    padding: 12px 18px;
  }

  .reference-partner-page .section-card {
    width: calc(100% - 32px);
    padding: 56px 0;
  }
}

.reference-entry-page .page-hero {
  height: 504px;
  min-height: 504px;
  background: #fff;
}

.reference-entry-page .page-hero::before,
.reference-entry-page .page-hero::after {
  display: none;
}

.reference-entry-page .page-hero .site-shell {
  height: 100%;
}

.reference-entry-page .page-hero-grid {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1120px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.reference-entry-page .page-hero-grid > div:first-child {
  width: 100%;
  max-width: 1080px;
}

.reference-entry-page .page-hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(48px, 4.25vw, 62px);
  line-height: 1.18;
  text-align: center;
}

.reference-entry-page .page-hero h1 em {
  color: var(--brand);
  font-style: normal;
}

.reference-entry-page .page-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #6d727b;
  font-size: 17px;
  text-align: center;
}

.reference-entry-page .page-hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.reference-entry-page .page-hero-actions .site-button {
  min-width: 142px;
  min-height: 52px;
}

.reference-entry-page .page-visual {
  display: none !important;
}

.skill-page .page-hero {
  height: 840px;
  min-height: 840px;
  padding: 0;
  background: #fff;
}

.skill-page .page-hero .site-shell {
  width: min(calc(100% - 128px), 1232px);
}

.skill-page .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(560px, 1.22fr);
  gap: 64px;
  max-width: none;
  text-align: left;
}

.skill-page .page-hero-grid > div:first-child {
  width: auto;
  max-width: 520px;
}

.skill-page .page-hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(58px, 5.5vw, 76px);
  line-height: 1.02;
  text-align: left;
}

.skill-page .page-hero p {
  max-width: 540px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

.skill-page .page-hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}

body.skill-page .reference-entry-page .page-visual {
  display: block !important;
  align-self: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.skill-page .page-visual[data-reveal] {
  opacity: 1;
  transform: none;
}

.skill-page .page-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: contain;
  filter: none;
}

.blog-page .page-main {
  background: #f7f8fa;
}

.blog-page .blog-list-main {
  width: min(calc(100% - 160px), 1040px);
  min-height: 2114px;
  padding: 54px 0 96px;
  margin-inline: auto;
}

.blog-page .blog-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.blog-page .blog-list-head h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
}

.blog-page .blog-filters {
  display: grid;
  grid-template-columns: 160px 132px minmax(180px, 240px);
  gap: 10px;
}

.blog-page .blog-filters select,
.blog-page .blog-filters input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
}

.blog-page .blog-filters input {
  outline: 0;
}

.blog-page .blog-search-field {
  position: relative;
  display: block;
  width: 100%;
}

.blog-page .blog-search-field svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  color: #8a9099;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  pointer-events: none;
  transform: translateY(-50%);
}

.blog-page .blog-card-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.blog-page .blog-card {
  display: block;
  min-height: 164px;
  border: 1px solid rgba(18, 23, 34, 0.08);
  border-radius: 15px;
  padding: 24px 20px 20px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(18, 23, 34, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-page .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 23, 34, 0.08);
}

.blog-page .blog-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.blog-page .blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-page .blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}

.blog-page .blog-card-meta span {
  border-radius: 6px;
  padding: 3px 7px;
  color: var(--brand);
  background: var(--brand-soft);
}

.blog-page .blog-card-meta span:first-child {
  color: var(--cta-dark);
  background: var(--cta-soft);
}

.blog-page .blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.blog-page .blog-pagination button,
.blog-page .blog-pagination span {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
}

.blog-page .blog-pagination button {
  border-color: var(--line);
  background: #fff;
  cursor: pointer;
}

.blog-page .blog-pagination button.is-current {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.blog-page .blog-pagination button:disabled {
  color: #b3b7be;
  background: #f1f2f4;
  cursor: default;
}

.blog-post-page .page-main {
  background: #f7f8fa;
}

.blog-post-main {
  width: min(calc(100% - 160px), 820px);
  min-height: 1120px;
  margin-inline: auto;
  padding: 56px 0 104px;
}

.blog-post-back {
  display: inline-flex;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 12px;
}

.blog-post-meta span {
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--brand);
  background: var(--brand-soft);
}

.blog-post-meta span:first-child {
  color: var(--cta-dark);
  background: var(--cta-soft);
}

.blog-post-main h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.22;
}

.blog-post-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.blog-post-content {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 38px;
}

.blog-post-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.35;
}

.blog-post-content h2:first-child {
  margin-top: 0;
}

.blog-post-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.blog-post-cta {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .skill-page .page-hero .site-shell {
    width: min(calc(100% - 64px), 720px);
  }

  .skill-page .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 72px 0 86px;
  }

  .skill-page .page-hero {
    height: auto;
    min-height: 840px;
  }

  .skill-page .page-visual {
    max-width: 720px;
  }

  .blog-page .blog-list-main {
    width: min(calc(100% - 64px), 760px);
  }

  .blog-page .blog-list-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .reference-entry-page .page-hero {
    height: 504px;
    min-height: 504px;
  }

  .reference-entry-page .page-hero h1 {
    font-size: 40px;
    line-height: 1.22;
  }

  .reference-entry-page .page-hero p {
    margin-top: 18px;
    font-size: 16px;
  }

  .reference-entry-page .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .reference-entry-page .page-hero-actions .site-button {
    width: 100%;
  }

  .skill-page .page-hero {
    height: auto;
    min-height: 840px;
  }

  .skill-page .page-hero .site-shell {
    width: calc(100% - 32px);
  }

  .skill-page .page-hero-grid {
    padding: 76px 0 80px;
  }

  .skill-page .page-hero h1 {
    font-size: 52px;
  }

  .skill-page .page-hero p {
    margin-top: 22px;
    font-size: 16px;
  }

  .blog-page .blog-list-main {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 42px 0 72px;
  }

  .blog-page .blog-filters {
    grid-template-columns: 1fr 1fr;
  }

  .blog-page .blog-filters input {
    grid-column: 1 / -1;
  }

  .blog-post-main {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 42px 0 72px;
  }

  .blog-post-main h1 {
    font-size: 34px;
  }

  .blog-post-lead {
    font-size: 16px;
  }
}

/* Reference document and gallery pages */
body.reference-about-page,
body.reference-hero-page:has(main[data-reference-cases-page]) {
  background: #fff;
}

body.reference-about-page .page-main,
body.reference-hero-page:has(main[data-reference-cases-page]) .page-main {
  padding: 0;
}

body.reference-about-page .reference-subpage-title,
body.reference-hero-page:has(main[data-reference-cases-page]) .reference-subpage-title {
  height: 188.4px;
  padding: 96px 0 44px;
}

body.reference-about-page .reference-subpage-title h1,
body.reference-hero-page:has(main[data-reference-cases-page]) .reference-subpage-title h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

body.reference-about-page .reference-subpage-tabs,
body.reference-hero-page:has(main[data-reference-cases-page]) .reference-subpage-tabs {
  height: 43.5px;
}

body.reference-about-page .reference-about-content {
  height: 3953.28125px;
  overflow: hidden;
  padding: 40px 0 112px;
  background: #fff;
}

.reference-document {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.reference-document h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}

.reference-document h2:not(:first-child) {
  margin-top: 40px;
  margin-bottom: 16px;
}

.reference-document h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.reference-document p {
  margin: 0 0 16px;
}

.reference-document ul {
  display: grid;
  gap: 0;
  margin: 12px 0 20px;
  padding-left: 24px;
}

.reference-document li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.reference-document li::marker {
  color: var(--brand);
}

.reference-document strong {
  color: var(--ink);
  font-weight: 700;
}

.reference-document table {
  width: 100%;
  margin: 16px 0 24px;
  border: 1px solid var(--line-strong);
  border-collapse: separate;
  border-radius: 8px;
  border-spacing: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.reference-document th,
.reference-document td {
  min-height: 46px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
  vertical-align: middle;
}

.reference-document th:last-child,
.reference-document td:last-child {
  border-right: 0;
}

.reference-document tr:last-child td {
  border-bottom: 0;
}

.reference-document th {
  color: var(--ink);
  background: #f5f6f8;
  font-size: 13px;
  font-weight: 600;
}

.reference-document td {
  font-size: 14px;
}

.reference-document .site-button {
  margin-top: 10px;
  border-radius: 6px;
}

.reference-about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 42px;
}

.reference-about-image-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #f7f8fa;
}

.reference-about-image-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.reference-about-image-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

body.reference-about-page .site-footer,
body.reference-hero-page:has(main[data-reference-cases-page]) .site-footer {
  min-height: 649.5px;
}

.reference-cases-main {
  height: 1312.875px;
  overflow: hidden;
  padding: 56px 0 96px;
  background: #fff;
}

.reference-cases-content {
  width: min(calc(100% - 160px), 1120px);
}

.reference-cases-main h1 {
  margin: 0 0 40px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.reference-case-group {
  margin: 0;
}

.reference-case-group + .reference-case-group {
  margin-top: 56px;
}

.reference-case-group h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

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

.reference-case-card {
  display: flex;
  min-width: 0;
  height: 288.8125px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(18, 23, 34, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.reference-case-card:hover {
  box-shadow: 0 10px 26px rgba(18, 23, 34, 0.14);
  transform: translateY(-2px);
}

.reference-case-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  object-fit: cover;
}

.reference-case-card-copy {
  display: grid;
  align-content: start;
  min-height: 91.265625px;
  padding: 15px 20px 14px;
}

.reference-case-reading {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.reference-case-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

/* Case detail pages follow the reference three-rail article composition. */
.reference-case-detail-page {
  background: #fff;
}

.reference-case-detail-page .site-header {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.reference-case-detail-page .site-header.is-scrolled {
  border-bottom-color: rgba(18, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.reference-case-detail-page main {
  background: #fff;
}

.reference-case-detail-shell {
  width: min(calc(100% - 160px), 1440px);
  margin-inline: auto;
}

.reference-case-detail-hero {
  padding: 40px 0 48px;
}

.reference-case-detail-back {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  margin-left: -12px;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  transition: color 160ms ease, background 160ms ease;
}

.reference-case-detail-back:hover {
  color: var(--brand);
  background: var(--surface-soft);
}

.reference-case-detail-back svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  transition: transform 160ms ease;
}

.reference-case-detail-back:hover svg {
  transform: translateX(-2px);
}

.reference-case-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.reference-case-detail-cover {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--surface-soft);
}

.reference-case-detail-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-case-detail-heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.reference-case-detail-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

.reference-case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.reference-case-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.reference-case-detail-meta svg {
  width: 12px;
  height: 12px;
}

.reference-case-detail-divider {
  padding: 0 80px;
}

.reference-case-detail-divider i {
  display: block;
  width: min(100%, 1440px);
  height: 1px;
  margin-inline: auto;
  background: var(--line);
}

.reference-case-detail-body {
  padding: 56px 0 96px;
}

.reference-case-detail-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 260px;
  gap: 48px;
}

.reference-case-detail-toc nav,
.reference-case-detail-contact > div {
  position: sticky;
  top: 96px;
}

.reference-case-detail-toc nav {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
}

.reference-case-detail-toc p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
  text-transform: uppercase;
}

.reference-case-detail-toc a {
  display: block;
  overflow: hidden;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.reference-case-detail-toc a + a {
  margin-top: 6px;
}

.reference-case-detail-toc a.is-active,
.reference-case-detail-toc a:hover {
  color: var(--brand);
  background: var(--surface-soft);
}

.reference-case-detail-toc a.is-sub {
  padding-left: 20px;
  font-weight: 400;
}

.reference-case-detail-main {
  min-width: 0;
}

.reference-case-detail-article {
  width: min(100%, 720px);
  margin-inline: auto;
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.reference-case-detail-article h2,
.reference-case-detail-article h3 {
  scroll-margin-top: 96px;
  color: var(--ink);
}

.reference-case-detail-article h2 {
  margin: 48px 0 16px;
  font-size: 28px;
  line-height: 1.35;
}

.reference-case-detail-article h2:first-child {
  margin-top: 0;
}

.reference-case-detail-article h3 {
  margin: 34px 0 14px;
  font-size: 20px;
  line-height: 1.45;
}

.reference-case-detail-article p,
.reference-case-detail-article ul {
  margin: 0 0 20px;
}

.reference-case-detail-article strong {
  color: var(--ink);
}

.reference-case-detail-article ul {
  padding-left: 22px;
}

.reference-case-detail-article > img {
  display: block;
  width: 100%;
  margin: 24px 0 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reference-case-detail-article table {
  width: 100%;
  margin: 20px 0 30px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.65;
}

.reference-case-detail-article th,
.reference-case-detail-article td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.reference-case-detail-article th {
  color: var(--ink);
  background: var(--surface-soft);
  font-weight: 650;
}

.reference-case-detail-contact > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(18, 23, 34, 0.08);
  text-align: center;
}

.reference-case-detail-contact img {
  display: block;
  width: 64px;
  height: 64px;
}

.reference-case-detail-contact h2 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
}

.reference-case-detail-contact p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.65;
}

.reference-case-detail-contact .site-button {
  width: 100%;
}

.reference-case-detail-mobile-apply {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 80px;
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.26);
  cursor: pointer;
}

.reference-case-detail-mobile-apply img {
  width: 28px;
  height: 28px;
}

@media (max-width: 1199px) {
  .reference-case-detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .reference-case-detail-toc,
  .reference-case-detail-contact {
    display: none;
  }

  .reference-case-detail-mobile-apply {
    display: grid;
  }
}

@media (max-width: 760px) {
  .reference-case-detail-shell {
    width: calc(100% - 48px);
  }

  .reference-case-detail-hero {
    padding: 40px 0;
  }

  .reference-case-detail-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .reference-case-detail-heading h1 {
    font-size: 28px;
  }

  .reference-case-detail-divider {
    padding: 0 24px;
  }

  .reference-case-detail-body {
    padding: 40px 0 64px;
  }

  .reference-case-detail-article {
    font-size: 16px;
    line-height: 1.8;
  }

  .reference-case-detail-article h2 {
    margin-top: 40px;
    font-size: 24px;
  }

  .reference-case-detail-article h3 {
    font-size: 19px;
  }

  .reference-case-detail-article table {
    display: table;
    table-layout: fixed;
    font-size: 13px;
  }

  .reference-case-detail-article th,
  .reference-case-detail-article td {
    padding: 10px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  body.reference-about-page .reference-subpage-title {
    height: 150px;
    padding: 64px 0 32px;
  }

  body.reference-about-page .reference-subpage-title h1 {
    font-size: 38px;
  }

  body.reference-about-page .reference-about-content {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 40px 0 64px;
  }

  .reference-document {
    font-size: 15px;
    line-height: 1.8;
  }

  .reference-document h2 {
    font-size: 28px;
  }

  .reference-document h3 {
    font-size: 20px;
  }

  .reference-document table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .reference-about-image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reference-cases-main {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 52px 0 64px;
  }

  .reference-cases-content {
    width: calc(100% - 32px);
  }

  .reference-cases-main h1 {
    margin-bottom: 32px;
    font-size: 36px;
  }

  .reference-case-group + .reference-case-group {
    margin-top: 48px;
  }

  .reference-case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reference-case-card {
    height: auto;
    min-height: 291.625px;
  }
}

/* Shared reference footer */
.site-footer {
  height: 649.5px;
  min-height: 649.5px;
  overflow: hidden;
  background:
    var(--footer)
    url("/assets/reference/footer-cta-bg.webp")
    center top / 1722px auto no-repeat;
}

.site-footer-cta-strip {
  height: 192px;
  overflow: hidden;
}

.site-footer-cta-strip-inner {
  width: min(calc(100% - 160px), var(--page-max));
  height: 192px;
  padding-top: 148px;
  margin-inline: auto;
}

.site-footer-cta-button {
  position: relative;
  display: inline-flex;
  width: 192px;
  height: 44px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.site-footer-cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.site-footer-cta-button::after {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 25%;
  width: 50%;
  height: 64%;
  border-radius: 8px;
  background: linear-gradient(90deg, #153bda 0%, #6519e7 100%);
  content: "";
}

.site-footer-cta-button span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease;
}

.site-footer-cta-button:hover span {
  transform: scale(1.03);
}

.site-footer-main {
  width: min(calc(100% - 160px), var(--page-max));
  height: 386.5px;
  min-height: 386.5px;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 40px;
  padding: 120px 0 64px;
}

.site-footer-brand-title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer-brand p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer-column {
  gap: 10px;
}

.site-footer-column h2 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.site-footer-column a,
.site-footer-column span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.site-footer-column a:hover {
  color: #fff;
}

.site-footer-bottom {
  width: min(calc(100% - 160px), var(--page-max));
  height: 71px;
  min-height: 71px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer-legal a,
.site-footer-legal span {
  color: inherit;
  font-size: inherit;
}

/* The shared footer now owns the reference conversion strip. */
.site-footer-cta,
.closing-cta {
  display: none !important;
}

body.reference-about-page .site-footer,
body.reference-hero-page:has(main[data-reference-cases-page]) .site-footer,
body.reference-partner-page .site-footer {
  height: 649.5px;
  min-height: 649.5px;
}

@media (max-width: 760px) {
  .site-footer {
    height: 954px;
    min-height: 954px;
    background-size: 880px auto;
    background-position: 27% 0;
  }

  .site-footer-cta-strip,
  .site-footer-cta-strip-inner {
    height: 188px;
  }

  .site-footer-cta-strip-inner {
    width: calc(100% - 32px);
    padding-top: 152px;
  }

  .site-footer-cta-button {
    width: 157px;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
  }

  .site-footer-main {
    width: calc(100% - 32px);
    height: 690px;
    min-height: 690px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding: 84px 0 68px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer-bottom {
    width: calc(100% - 32px);
    height: 76px;
    min-height: 76px;
    padding: 16px 0;
  }

  .site-footer-legal {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
}

/* Long-form reference pages: fixed navigation, product panels, and measured section rhythm. */
.lobster-page,
.academy-reference-page,
.partner-reference-page {
  --reference-accent: var(--brand);
  --reference-accent-2: var(--data);
  --reference-ink: #171b27;
  --reference-muted: #6f7580;
  --reference-line: #e8e9ee;
  background: #fff;
}

.lobster-page .site-header,
.academy-reference-page .site-header,
.partner-reference-page .site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 58px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.lobster-page .site-nav-inner,
.academy-reference-page .site-nav-inner,
.partner-reference-page .site-nav-inner {
  height: 58px;
}

.lobster-page .site-brand img,
.academy-reference-page .site-brand img,
.partner-reference-page .site-brand img {
  width: 30px;
  height: 30px;
}

.lobster-page .site-nav-cta,
.academy-reference-page .site-nav-cta,
.partner-reference-page .site-nav-cta {
  min-height: 38px;
  padding-inline: 18px;
}

.lobster-page .site-nav-link,
.academy-reference-page .site-nav-link,
.partner-reference-page .site-nav-link {
  font-size: 13px;
}

.lobster-container,
.academy-container,
.partner-container {
  width: min(calc(100% - 160px), 1120px);
  margin-inline: auto;
}

.lobster-main,
.academy-main,
.partner-main {
  position: relative;
  overflow: hidden;
}

.lobster-main {
  color: var(--reference-ink);
}

.lobster-hero {
  position: relative;
  height: 840px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(47, 111, 94, 0.11), transparent 370px),
    #fff;
}

.lobster-hero-grid {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(390px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 64px;
}

.lobster-hero-copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--reference-ink);
  font-family: var(--font-sans);
  font-size: clamp(58px, 5.5vw, 76px);
  font-weight: 760;
  line-height: 1.02;
}

.lobster-hero-copy h1 span {
  display: block;
  color: var(--reference-accent);
}

.lobster-mobile-break {
  display: none;
}

.lobster-hero-description {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--reference-muted);
  font-size: 17px;
  line-height: 1.8;
}

.lobster-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.lobster-hero-actions .site-button {
  min-width: 154px;
  min-height: 52px;
}

.lobster-text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--reference-ink);
  font-size: 14px;
  font-weight: 700;
}

.lobster-text-action span {
  color: var(--reference-accent);
  font-size: 18px;
}

.lobster-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: var(--reference-muted);
  font-size: 13px;
}

.lobster-hero-proof span::first-letter {
  color: var(--reference-accent);
}

.lobster-hero-demo {
  min-width: 0;
}

.lobster-hero-stage {
  position: relative;
  min-height: 600px;
}

.lobster-stage-glow {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: 0;
  width: 500px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 94, 0.14), transparent 68%);
  filter: blur(20px);
}

.lobster-agent-window,
.lobster-terminal-window,
.lobster-hero-result {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--reference-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(23, 36, 46, 0.1);
}

.lobster-hero-agent {
  top: 104px;
  left: 0;
  width: min(100%, 630px);
}

.lobster-hero-terminal {
  right: 0;
  bottom: 66px;
  width: min(82%, 480px);
  overflow: hidden;
}

.lobster-hero-result {
  top: 32px;
  right: -8px;
  width: 174px;
  padding: 16px;
}

.lobster-window-header {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--reference-line);
  padding: 0 16px;
}

.lobster-window-header.is-dark {
  border-color: rgba(255, 255, 255, 0.1);
  color: #dbe7e5;
  background: #152329;
}

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

.lobster-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd0d4;
}

.is-dark .lobster-window-dots span {
  background: #54666b;
}

.lobster-window-title {
  flex: 1;
  color: var(--reference-muted);
  font-size: 12px;
  text-align: center;
}

.is-dark .lobster-window-title {
  color: #c5d0d1;
}

.lobster-window-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--reference-muted);
  font-size: 11px;
  white-space: nowrap;
}

.lobster-window-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.lobster-agent-body {
  padding: 24px 25px 28px;
}

.lobster-chat-message {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.lobster-chat-message:first-child {
  margin-top: 0;
}

.lobster-chat-message.is-user {
  justify-content: flex-end;
}

.lobster-chat-bubble {
  max-width: 88%;
  border: 1px solid var(--reference-line);
  border-radius: 14px;
  padding: 13px 15px;
  color: var(--reference-ink);
  background: #f7f8fa;
  font-size: 13px;
  line-height: 1.65;
}

.is-user .lobster-chat-bubble {
  border-color: rgba(47, 111, 94, 0.14);
  background: var(--brand-soft);
}

.lobster-chat-bubble p {
  margin: 0;
}

.lobster-agent-mark {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--data));
}

.lobster-mini-steps {
  display: grid;
  gap: 8px;
  margin-top: 13px;
  color: var(--reference-muted);
  font-size: 11px;
}

.lobster-terminal-body {
  min-height: 150px;
  padding: 23px;
  color: #b7cbc7;
  background: #152329;
  font-family: var(--font-data);
  font-size: 11px;
  line-height: 1.8;
}

.terminal-line {
  display: flex;
  gap: 8px;
  overflow-wrap: anywhere;
}

.terminal-line.is-command {
  color: #d8e5df;
}

.terminal-line.is-command span,
.terminal-line.is-success {
  color: #70d2ae;
}

.terminal-line.is-output {
  color: #8ca5aa;
}

.lobster-hero-result > div {
  display: flex;
  justify-content: space-between;
  color: var(--reference-muted);
  font-size: 11px;
}

.lobster-hero-result > div b {
  color: var(--reference-accent);
}

.lobster-hero-result strong {
  display: block;
  margin-top: 17px;
  font-family: var(--font-data);
  font-size: 30px;
  line-height: 1;
}

.lobster-hero-result p {
  margin: 10px 0 20px;
  color: var(--reference-muted);
  font-size: 11px;
}

.lobster-install-section {
  height: 1315px;
  padding: 128px 0 112px;
  background: #f7f8fa;
}

.lobster-section-intro {
  max-width: 720px;
}

.lobster-section-intro.is-center {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.lobster-section-intro h2,
.academy-section-title h2,
.partner-section-title h2 {
  margin: 0;
  color: var(--reference-ink);
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 740;
  line-height: 1.2;
}

.lobster-section-intro p,
.academy-section-title p,
.partner-section-title p {
  margin: 20px 0 0;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 1.8;
}

.lobster-install-grid {
  margin-top: 58px;
}

.lobster-install-card {
  padding: 36px;
  border: 1px solid rgba(47, 111, 94, 0.16);
  border-radius: 18px;
  background: radial-gradient(circle at 92% 5%, rgba(47, 111, 94, 0.1), transparent 260px), #fff;
  box-shadow: var(--shadow-soft);
}

.lobster-install-card-heading > span,
.lobster-env-heading h3 {
  color: var(--reference-accent);
  font-size: 14px;
  font-weight: 800;
}

.lobster-install-card h3 {
  margin: 12px 0 8px;
  color: var(--reference-ink);
  font-size: 25px;
}

.lobster-install-card p {
  max-width: 680px;
  margin: 0;
  color: var(--reference-muted);
  font-size: 14px;
}

.lobster-copy-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  border: 1px dashed rgba(47, 111, 94, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
  background: #fbfdfc;
}

.lobster-copy-quote {
  color: var(--reference-accent);
  font-size: 32px;
  line-height: 1;
}

.lobster-copy-block code {
  flex: 1;
  color: var(--reference-ink);
  font-family: var(--font-body);
  font-size: 14px;
}

.lobster-copy-button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: var(--brand);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.lobster-env-heading {
  margin-top: 72px;
}

.lobster-env-heading h3 {
  margin: 0;
  color: var(--reference-ink);
  font-size: 22px;
}

.lobster-env-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.lobster-env-item {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lobster-env-item:hover {
  border-color: rgba(47, 111, 94, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.lobster-env-item.is-openclaw {
  background: linear-gradient(145deg, #f6fbf9, #fff);
}

.lobster-env-item.is-qclaw {
  background: linear-gradient(145deg, #f5f8fc, #fff);
}

.lobster-env-item.is-codebuddy {
  background: linear-gradient(145deg, #f7f6fc, #fff);
}

.lobster-env-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lobster-env-logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  color: var(--reference-accent);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 800;
}

.lobster-env-logo img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.is-qclaw .lobster-env-logo {
  color: var(--data);
  background: var(--data-soft);
}

.is-codebuddy .lobster-env-logo {
  color: var(--cta-dark);
  background: var(--cta-soft);
}

.lobster-env-index {
  color: rgba(47, 111, 94, 0.14);
  font-family: var(--font-data);
  font-size: 46px;
  font-weight: 900;
}

.lobster-env-copy h3 {
  margin: 24px 0 8px;
  font-size: 21px;
}

.lobster-env-copy h3 small {
  margin-left: 6px;
  color: var(--brand);
  font-size: 11px;
}

.lobster-env-copy p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 13px;
}

.lobster-env-item > a {
  color: var(--reference-accent);
  font-size: 13px;
  font-weight: 700;
}

.lobster-execution-section {
  height: 699px;
  padding: 128px 0 110px;
  background: #fff;
}

.lobster-execution-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 86px;
}

.lobster-execution-flow > div {
  min-height: 170px;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.lobster-execution-flow > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--reference-accent);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-weight: 800;
}

.lobster-execution-flow strong {
  display: block;
  margin-top: 23px;
  font-size: 16px;
}

.lobster-execution-flow small {
  display: block;
  margin-top: 5px;
  color: var(--reference-muted);
  font-size: 12px;
}

.lobster-execution-flow > i {
  color: var(--reference-accent);
  font-size: 24px;
  font-style: normal;
  text-align: center;
}

.lobster-capability-explorer-section {
  height: 1465px;
  padding: 128px 0 120px;
  background: #f7f8fa;
}

.lobster-capability-explorer {
  margin-top: 58px;
}

.lobster-capability-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lobster-capability-tabs button {
  position: relative;
  min-height: 88px;
  border: 1px solid var(--reference-line);
  border-radius: 10px;
  padding: 17px 48px 16px 18px;
  color: var(--reference-ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.lobster-capability-tabs button.is-active {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 10px 28px rgba(47, 111, 94, 0.1);
}

.lobster-capability-tabs strong,
.lobster-capability-tabs small {
  display: block;
}

.lobster-capability-tabs strong {
  font-size: 14px;
}

.lobster-capability-tabs small {
  margin-top: 6px;
  color: var(--reference-muted);
  font-size: 11px;
  line-height: 1.45;
}

.lobster-capability-tabs i {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(47, 111, 94, 0.18);
  font-family: var(--font-data);
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
}

.lobster-capability-panel {
  display: none;
  min-height: 860px;
  margin-top: 16px;
  border: 1px solid var(--reference-line);
  border-radius: 16px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.lobster-capability-panel.is-active {
  display: block;
}

.lobster-capability-panel[hidden] {
  display: none;
}

.lobster-capability-panel-heading h3 {
  margin: 0;
  font-size: 24px;
}

.lobster-capability-panel-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--reference-muted);
  font-size: 14px;
}

.lobster-capability-shell {
  position: relative;
  min-height: 650px;
  margin-top: 42px;
}

.lobster-capability-shell .lobster-agent-window {
  top: 0;
  left: 0;
  width: 68%;
}

.lobster-capability-shell .lobster-terminal-window {
  right: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
}

.capability-empty {
  display: grid;
  min-height: 750px;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.capability-empty strong {
  font-size: 30px;
}

.capability-empty p {
  max-width: 520px;
  margin: 16px 0 26px;
  color: var(--reference-muted);
}

.lobster-final-cta {
  position: relative;
  height: 619px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 111, 94, 0.28), transparent 400px),
    #07131b;
}

.lobster-final-cta-inner {
  display: grid;
  height: 420px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.lobster-final-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.25;
}

.lobster-final-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.lobster-final-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.lobster-final-actions span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.lobster-capability-marquee {
  display: flex;
  height: 84px;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-inline: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  white-space: nowrap;
}

.lobster-capability-marquee i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

/* Academy */
.academy-main,
.partner-main {
  padding-top: 58px;
}

.academy-hero,
.partner-hero {
  position: relative;
  height: 504px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.academy-hero-bg,
.partner-hero-bg {
  display: none;
}

.academy-hero::after,
.partner-hero::after {
  display: none;
}

.academy-hero-copy,
.partner-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  place-content: center;
  justify-items: center;
  padding-inline: 24px;
}

.academy-wordmark,
.partner-eyebrow,
.academy-section-title > span,
.partner-section-title > span {
  color: var(--reference-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.academy-hero h1,
.partner-hero h1 {
  max-width: 840px;
  margin: 13px 0 0;
  color: var(--reference-ink);
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.12;
}

.academy-hero h2 {
  max-width: 900px;
  margin: 8px 0 0;
  color: var(--reference-accent);
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.partner-hero h1 {
  max-width: 920px;
  font-size: 60px;
  line-height: 1.1;
}

.partner-hero h2 {
  max-width: 1000px;
  margin: 8px 0 0;
  color: var(--reference-accent);
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

.academy-hero h1 em,
.partner-hero h1 em {
  color: var(--reference-accent);
  font-style: normal;
}

.academy-hero p,
.partner-hero p {
  margin: 24px 0 0;
  color: var(--reference-muted);
  font-size: 18px;
  line-height: 1.5;
}

.academy-hero-actions,
.partner-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.academy-hero-actions .site-button,
.partner-hero-actions .site-button {
  min-width: 126px;
  min-height: 52px;
  font-size: 15px;
  font-weight: 500;
}

.partner-hero-actions .site-button {
  min-width: 156px;
}

.academy-course-section {
  height: 817px;
  padding: 112px 0;
  background: #f7f8fa;
}

.academy-section-title {
  max-width: 760px;
}

.academy-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.academy-course-card {
  position: relative;
  display: flex;
  min-height: 485px;
  flex-direction: column;
  border: 1px solid var(--reference-line);
  border-radius: 10px;
  padding: 30px;
  background: #fff;
}

.academy-course-card.is-featured {
  border-color: rgba(47, 111, 94, 0.36);
  box-shadow: 0 18px 50px rgba(47, 111, 94, 0.1);
}

.academy-card-index {
  color: rgba(47, 111, 94, 0.18);
  font-family: var(--font-data);
  font-size: 42px;
  font-weight: 900;
}

.academy-course-card h3 {
  margin: 22px 0 7px;
  font-size: 24px;
}

.academy-course-card > strong {
  color: var(--reference-accent);
  font-size: 13px;
}

.academy-course-card > p {
  min-height: 48px;
  margin: 13px 0 0;
  color: var(--reference-muted);
  font-size: 13px;
}

.academy-course-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--reference-muted);
  font-size: 12px;
  list-style: none;
}

.academy-course-card li {
  display: flex;
  gap: 8px;
}

.academy-course-card li::before {
  color: var(--reference-accent);
  content: "✓";
  font-weight: 800;
}

.academy-course-card button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.academy-course-card.is-featured button {
  color: #fff;
  background: var(--brand);
}

.academy-mentor-section {
  height: 1190px;
  padding: 112px 0;
  background: #fff;
}

.academy-mentor-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 52px;
}

.academy-mentor-stage {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f4f7;
  box-shadow: var(--shadow-soft);
}

.academy-mentor-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.academy-mentor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 111, 94, 0.08), transparent 60%);
}

.academy-mentor-cards {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.academy-mentor-card {
  display: flex;
  min-height: 235px;
  gap: 16px;
  border-top: 2px solid var(--brand);
  padding: 24px 0;
}

.academy-mentor-card > span {
  color: rgba(47, 111, 94, 0.18);
  font-family: var(--font-data);
  font-size: 35px;
  font-weight: 900;
}

.academy-mentor-card h3 {
  margin: 0;
  font-size: 19px;
}

.academy-mentor-card strong {
  display: block;
  margin-top: 6px;
  color: var(--reference-accent);
  font-size: 12px;
}

.academy-mentor-card p {
  margin: 16px 0 0;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.7;
}

.academy-benefit-section {
  height: 498px;
  padding: 88px 0;
  background: #f7f8fa;
}

.academy-benefit-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.academy-benefit-list {
  display: grid;
  gap: 0;
}

.academy-benefit-list p {
  display: flex;
  gap: 18px;
  margin: 0;
  border-bottom: 1px solid var(--reference-line);
  padding: 18px 0;
  color: var(--reference-ink);
  font-size: 16px;
}

.academy-benefit-list b {
  color: var(--reference-accent);
  font-family: var(--font-data);
}

/* Partner */
.partner-hero-copy {
  padding-bottom: 8px;
}

.partner-hero h1 {
  max-width: 920px;
}

.partner-match-banner {
  display: inline-flex;
  min-width: 576px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 67px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  box-shadow: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.partner-match-banner svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.partner-match-banner small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.partner-rights-section {
  height: 765px;
  padding: 80px 0;
  background: #fff;
}

.partner-rights-section .partner-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 40px;
}

.partner-rights-intro-card {
  display: flex;
  min-height: 605px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--reference-line);
  border-radius: 8px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 255, 0.92));
}

.partner-section-title {
  max-width: 780px;
}

.partner-rights-intro-card .partner-section-title {
  width: 100%;
  max-width: 420px;
}

.partner-section-title h2 {
  margin-top: 12px;
}

.partner-action-rail {
  margin-top: 32px;
}

.partner-action-rail span {
  display: block;
  margin-bottom: 16px;
  color: var(--reference-ink);
  font-size: 14px;
  font-weight: 700;
}

.partner-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.partner-action-grid b {
  display: flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--reference-line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--reference-ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.partner-action-grid b:last-child {
  grid-column: 1 / -1;
}

.partner-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 0;
}

.partner-rights-grid article {
  position: relative;
  min-height: 191px;
  overflow: hidden;
  border: 1px solid var(--reference-line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-rights-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.partner-rights-grid article::after {
  position: absolute;
  right: 16px;
  top: 12px;
  color: rgba(47, 111, 94, 0.12);
  content: attr(data-index);
  font-family: var(--font-data);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.partner-rights-grid article > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--reference-accent);
  background: rgba(47, 111, 94, 0.08);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 800;
}

.partner-rights-grid h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.partner-rights-grid p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Keep the same card geometry on the long-form pages while preserving the local brand. */
.partner-rights-grid article > span::after {
  content: "";
}

.partner-rights-grid article > span,
.partner-advantage-grid i {
  color: var(--reference-accent);
  font-family: var(--font-data);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.partner-rights-grid article > span {
  font-size: 0;
}

.partner-rights-grid article > span::before {
  display: none;
  content: none;
}

.partner-rights-grid article > span svg {
  display: block;
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.partner-rights-grid article:nth-child(1)::after { content: "01"; }
.partner-rights-grid article:nth-child(2)::after { content: "02"; }
.partner-rights-grid article:nth-child(3)::after { content: "03"; }
.partner-rights-grid article:nth-child(4)::after { content: "04"; }
.partner-rights-grid article:nth-child(5)::after { content: "05"; }
.partner-rights-grid article:nth-child(6)::after { content: "06"; }

.partner-rights-grid article > span + h3 {
  position: relative;
  z-index: 1;
}

.partner-rights-grid article > span + h3 + p {
  position: relative;
  z-index: 1;
}

.partner-rights-grid article > span + h3 {
  margin-top: 16px;
}

.partner-rights-grid article > span {
  position: relative;
  z-index: 1;
}

/* The original flat rail is kept only for narrow screens. */
.partner-rights-intro-card .partner-action-rail b {
  border: 1px solid rgba(47, 111, 94, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: #fff;
  font-size: 12px;
}
.partner-rights-grid p,
.partner-advantage-grid p,
.partner-process-grid p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.7;
}

.partner-metrics-section {
  height: 225px;
  color: #fff;
  background: #07131b;
}

.partner-metrics {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(3, 1fr);
}

.partner-metrics > div {
  display: grid;
  place-content: center;
  justify-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-metrics > div:last-child {
  border-right: 0;
}

.partner-metrics strong {
  color: #9fd0c3;
  font-family: var(--font-data);
  font-size: 40px;
}

.partner-metrics span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.partner-showcase-section {
  height: 688px;
  padding: 0;
  background: #fff;
}

.partner-showcase-section img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-advantage-section {
  height: 699px;
  padding: 112px 0;
  background: #f7f8fa;
}

.partner-advantage-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}

.partner-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
}

.partner-advantage-grid article {
  min-height: 155px;
  border-top: 1px solid var(--reference-line);
  padding: 20px 0;
}

.partner-advantage-grid h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.partner-process-section {
  height: 856px;
  padding: 112px 0;
  background: #fff;
}

.partner-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.partner-process-grid article {
  min-height: 220px;
  border-top: 2px solid var(--brand);
  padding: 24px 8px;
}

.partner-process-grid b {
  color: var(--reference-accent);
  font-family: var(--font-data);
  font-size: 24px;
}

.partner-process-grid h3 {
  margin: 28px 0 9px;
  font-size: 19px;
}

.partner-condition-section {
  height: 660px;
  padding: 112px 0;
  background: #f7f8fa;
}

.partner-condition-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.partner-condition-list {
  display: grid;
  align-content: start;
  gap: 0;
}

.partner-condition-list p {
  margin: 0;
  border-bottom: 1px solid var(--reference-line);
  padding: 18px 0;
  color: var(--reference-ink);
  font-size: 15px;
}

.partner-condition-list p::first-letter {
  color: var(--reference-accent);
}

.partner-condition-list .site-button {
  width: 164px;
  margin-top: 28px;
}

@media (max-width: 760px) {
  .lobster-container,
  .academy-container,
  .partner-container {
    width: calc(100% - 32px);
  }

  .lobster-hero {
    height: auto;
    min-height: 840px;
    padding: 88px 0 52px;
  }

  .lobster-hero-grid,
  .academy-mentor-layout,
  .academy-benefit-layout,
  .partner-advantage-layout,
  .partner-condition-layout {
    display: block;
  }

  .lobster-hero-copy h1 {
    font-size: 45px;
  }

  .lobster-hero-description {
    font-size: 15px;
  }

  .lobster-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .lobster-text-action {
    justify-content: center;
  }

  .lobster-hero-proof {
    gap: 10px 16px;
    font-size: 11px;
  }

  .lobster-hero-demo {
    margin-top: 34px;
  }

  .lobster-hero-stage {
    min-height: 390px;
  }

  .lobster-hero-agent {
    top: 35px;
    width: 94%;
  }

  .lobster-hero-terminal {
    right: 0;
    bottom: 10px;
    width: 82%;
  }

  .lobster-hero-result {
    top: 0;
    right: 0;
    width: 135px;
    padding: 12px;
  }

  .lobster-hero-result strong {
    font-size: 24px;
  }

  .lobster-install-section,
  .lobster-execution-section,
  .lobster-capability-explorer-section,
  .lobster-final-cta,
  .academy-course-section,
  .academy-mentor-section,
  .academy-benefit-section,
  .partner-rights-section,
  .partner-metrics-section,
  .partner-advantage-section,
  .partner-process-section,
  .partner-condition-section {
    height: auto;
    min-height: 0;
  }

  .lobster-install-section,
  .lobster-execution-section,
  .lobster-capability-explorer-section,
  .academy-course-section,
  .academy-mentor-section,
  .academy-benefit-section,
  .partner-rights-section,
  .partner-advantage-section,
  .partner-process-section,
  .partner-condition-section {
    padding: 76px 0;
  }

  .lobster-section-intro h2,
  .academy-section-title h2,
  .partner-section-title h2 {
    font-size: 34px;
  }

  .lobster-install-card {
    padding: 22px;
  }

  .lobster-copy-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .lobster-copy-block code {
    width: 100%;
    font-size: 12px;
  }

  .lobster-copy-button {
    width: 100%;
  }

  .lobster-env-rail,
  .academy-course-grid,
  .academy-mentor-cards,
  .partner-rights-grid {
    grid-template-columns: 1fr;
  }

  .lobster-env-heading {
    margin-top: 50px;
  }

  .lobster-execution-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 42px;
  }

  .lobster-execution-flow > div {
    min-height: 128px;
  }

  .lobster-execution-flow > i {
    transform: rotate(90deg);
  }

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

  .lobster-capability-panel {
    min-height: 620px;
    padding: 22px;
  }

  .lobster-capability-shell {
    min-height: 440px;
  }

  .lobster-capability-shell .lobster-agent-window {
    width: 100%;
  }

  .lobster-capability-shell .lobster-terminal-window {
    right: 0;
    bottom: 0;
    width: 88%;
  }

  .capability-empty {
    min-height: 470px;
  }

  .lobster-final-cta-inner {
    display: block;
    height: auto;
    padding: 84px 0;
  }

  .lobster-final-copy h2 {
    font-size: 34px;
  }

  .lobster-final-actions {
    margin-top: 30px;
  }

  .lobster-capability-marquee {
    overflow: hidden;
  }

  .academy-hero h1,
  .partner-hero h1 {
    font-size: 42px;
  }

  .academy-hero p,
  .partner-hero p {
    font-size: 15px;
  }

  .academy-hero-actions,
  .partner-hero-actions {
    width: min(100%, 310px);
    flex-direction: column;
  }

  .academy-hero-actions .site-button,
  .partner-hero-actions .site-button {
    width: 100%;
  }

  .academy-course-card {
    min-height: 0;
  }

  .academy-mentor-stage {
    margin-top: 36px;
  }

  .academy-mentor-cards {
    margin-top: 32px;
  }

  .academy-benefit-layout,
  .partner-condition-layout {
    display: grid;
    gap: 36px;
  }

  .partner-match-banner {
    min-width: 0;
    width: min(100%, 340px);
    padding: 0 14px;
    font-size: 13px;
  }

  .partner-action-rail {
    align-items: stretch;
  }

  .partner-action-rail span {
    margin: 0 0 4px;
  }

  .partner-rights-grid {
    margin-top: 30px;
  }

  .partner-metrics {
    width: 100%;
  }

  .partner-metrics strong {
    font-size: 28px;
  }

  .partner-metrics span {
    font-size: 11px;
  }

  .partner-showcase-section {
    height: 260px;
  }

  .partner-advantage-grid,
  .partner-process-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .partner-process-grid article {
    min-height: 0;
  }
}

/* Strict reference-composition corrections */
.home-page .site-header {
  position: relative;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.home-page .site-header.is-scrolled {
  border-bottom-color: rgba(18, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.home-page .home-hero {
  display: flex;
  height: 899px;
  min-height: 899px;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  background: #f8fafb;
}

.home-page .home-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("/assets/reference/hero-bg.webp") center / cover no-repeat;
  content: "";
  filter: none;
}

.home-page .home-hero::after {
  z-index: 0;
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, transparent 72%, rgba(248, 250, 251, 0.26) 88%, rgba(248, 250, 251, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 58%);
}

.home-page .hero-main,
.home-page .hero-capabilities {
  z-index: 2;
}

.home-page .hero-main {
  width: min(calc(100vw - 128px), 1300px);
  margin-left: 64px;
  margin-right: auto;
  height: 899px;
  min-height: 899px;
  grid-template-columns: minmax(0, 1fr) minmax(620px, 690px);
  gap: 44px;
  padding: 92px 0 0;
  transform: translateY(-68px);
}

.home-page .hero-copy {
  align-self: start;
  transform: none;
}

.home-page .hero-copy h1 {
  max-width: none;
  font-size: 74px;
  font-weight: 700;
  line-height: 1.1;
}

.home-page .hero-copy h1 span,
.home-page .hero-copy h1 em {
  display: block;
}

.home-page .hero-lead {
  margin-top: 24px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.home-page .hero-description {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.8;
}

.home-page .hero-actions {
  gap: 16px;
  margin-top: 32px;
}

.home-page .hero-actions .site-button {
  min-height: 56px;
}

.home-page .hero-actions .site-button-primary {
  width: 212px;
}

.home-page .hero-stats {
  display: flex;
  width: 418px;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 40px;
  margin-top: 36px;
}

.home-page .hero-stat {
  flex: 0 0 153px;
}

.home-page .hero-stat strong {
  font-size: 32px;
  line-height: 1;
}

.home-page .hero-audit {
  width: 690px;
  height: 474px;
  min-height: 474px;
  align-self: start;
  padding: 40px 40px 34px;
  border-radius: 20px;
  transform: translateY(167px);
}

.home-page .hero-audit-head strong {
  font-weight: 600;
  line-height: 1.5;
}

.home-page .platform-pills {
  gap: 12px;
  margin-top: 14px;
}

.home-page .platform-pill {
  min-height: 44px;
}

.home-page .audit-input {
  min-height: 60px;
}

.home-page .audit-brand {
  min-height: 60px;
  margin-top: 16px;
}

.home-page .hero-audit > .site-button {
  display: flex;
  width: 140px;
  min-width: 140px;
  margin: 16px 120px 0 auto;
}

.home-page .contact-rail {
  right: 24px;
  bottom: 104px;
}

.home-page .principle-section .site-shell,
.home-page .insights-section .site-shell {
  width: min(calc(100vw - 160px), 1280px);
  margin-left: 80px;
  margin-right: auto;
}

.home-page .principle-grid {
  display: flex;
  grid-template-columns: none;
}

.home-page .principle-card {
  flex: 1 1 0%;
  min-width: 0;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(9, 12, 24, 0.1);
  transition: flex 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms ease, box-shadow 280ms ease;
}

.home-page .principle-section {
  padding: 80px 0;
}

.home-page .principle-intro .section-heading {
  font-size: 44px;
  line-height: 1.25;
}

.home-page .principle-intro .section-description {
  max-width: 896px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.home-page .principle-grid {
  height: 440px;
  min-height: 440px;
  margin-top: 64px;
}

.home-page .principle-card.is-active {
  flex: 2.4 1 0%;
  box-shadow: 0 18px 42px rgba(9, 12, 24, 0.18);
  transform: translateY(-2px);
}

.home-page .principle-card img,
.home-page .insight-card img,
.home-page .engine-flow-image,
.home-page .start-path-card img,
.home-page .service-card img {
  filter: none;
}

.home-page .principle-card.is-active img {
  transform: scale(1.05);
}

.home-page .principle-card.is-active .principle-card-copy h3 {
  font-size: 32px;
}

.home-page .principle-card.is-active .principle-card-copy p {
  display: block;
}

.home-page .insights-section {
  height: 1355px;
  min-height: 1355px;
  padding: 80px 0;
}

.home-page .insights-layout {
  height: 100%;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.6fr);
  gap: 80px;
}

.home-page .insights-copy {
  top: 112px;
}

.home-page .insights-copy .section-heading {
  font-size: 44px;
  line-height: 1.25;
}

.home-page .insights-heading-break {
  display: inline;
}

.home-page .insights-copy .section-description {
  max-width: 374px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.home-page .insights-copy .site-button {
  width: 182px;
  min-width: 182px;
  min-height: 52px;
  margin-top: 32px;
  gap: 8px;
}

.home-page .insights-copy .site-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-page .insight-timeline {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
}

.home-page .insight-timeline::before {
  top: 0;
  bottom: 0;
  left: 89px;
}

.home-page .insight-card,
.home-page .insight-card:nth-child(even) {
  position: absolute;
  left: 118px;
  width: min(520px, calc(100% - 126px));
  min-height: 176px;
  margin-left: 0;
}

.home-page .insight-card:nth-child(1) {
  top: 0;
}

.home-page .insight-card:nth-child(2) {
  top: 21%;
}

.home-page .insight-card:nth-child(3) {
  top: 42%;
}

.home-page .insight-card:nth-child(4) {
  top: 63%;
}

.home-page .insight-card:nth-child(5) {
  top: 82%;
}

.home-page .insight-card:nth-child(even) {
  left: 292px;
  width: calc(100% - 300px);
}

.home-page .insight-card:nth-child(odd) {
  height: 176px;
}

.home-page .insight-card {
  grid-template-columns: 1.24fr 0.76fr;
}

.home-page .insight-card p {
  font-size: 14px;
  line-height: 1.8;
}

.home-page .start-section {
  height: 874px;
  min-height: 874px;
  padding: 80px 0;
}

.home-page .start-section .site-shell {
  width: min(calc(100% - 160px), 1280px);
}

.home-page .start-heading .section-heading {
  font-size: 44px;
  line-height: 1.1;
}

.home-page .start-heading .section-description {
  max-width: 896px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.home-page .start-grid {
  gap: 24px;
  margin-top: 78px;
}

.home-page .start-path-card {
  min-height: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(47, 111, 94, 0.08);
}

.home-page .start-path-card:nth-child(-n + 2) {
  height: 260px;
}

.home-page .start-path-card:nth-child(n + 3) {
  height: 291px;
}

.home-page .start-path-copy p {
  font-size: 15px;
  line-height: 1.8;
}

.home-page .services-section {
  height: 960px;
  min-height: 960px;
  padding: 80px 0;
}

.home-page .services-section .site-shell {
  width: min(calc(100% - 160px), 1280px);
}

.home-page .services-heading {
  max-width: 900px;
}

.home-page .services-heading .section-heading {
  font-size: 44px;
  line-height: 1.25;
}

.home-page .services-heading .section-description {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.8;
}

.home-page .services-grid {
  gap: 32px;
  margin-top: 62px;
}

.home-page .service-card {
  height: 623px;
  min-height: 623px;
  border-radius: 14px;
}

.home-page .service-card img {
  position: absolute;
  top: 17px;
  left: -13px;
  width: 378px;
  height: 324px;
}

.home-page .service-card-body {
  padding: 20px 40px 14px;
}

.home-page .service-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.home-page .service-card p {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.8;
}

.home-page .service-card ul {
  gap: 5px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 24px;
}

.home-page .service-card > a {
  min-width: 144px;
  min-height: 40px;
  margin: 24px 40px 29px;
}

.home-page .engine-layout {
  grid-template-columns: 422px 834px;
  gap: 24px;
}

.home-page .engine-orbit {
  display: flex;
  min-height: 625px;
  align-items: center;
  justify-content: center;
}

.home-page .engine-flow-image {
  display: block;
  width: 834px;
  height: 625px;
  max-width: none;
  object-fit: contain;
}

.home-page .citation-section {
  padding-top: 80px;
}

.home-page .citation-section .site-shell {
  width: min(calc(100% - 160px), 1280px);
}

.home-page .platform-strategies::before {
  position: absolute;
  z-index: 0;
  top: 14px;
  bottom: 14px;
  left: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--brand), rgba(47, 111, 94, 0.1));
  content: "";
}

.home-page .platform-strategy {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 92px;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 14px 15px 14px 61px;
  background: transparent;
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.home-page .platform-strategy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 46px;
  border: 1px solid rgba(41, 69, 107, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(41, 69, 107, 0.04);
  content: "";
}

.home-page .platform-strategy.is-active {
  min-height: 104px;
}

.home-page .platform-strategy.is-active::after {
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(47, 111, 94, 0.09);
}

.home-page .platform-strategy:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.home-page .platform-strategy:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.28);
  outline-offset: 3px;
}

.home-page .platform-strategy-index {
  position: absolute;
  top: 14px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  box-shadow: 0 4px 14px rgba(41, 69, 107, 0.08);
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 800;
}

.home-page .platform-strategy.is-active .platform-strategy-index {
  color: #fff;
  background: var(--brand);
}

.home-page .platform-strategy-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-soft);
}

.home-page .platform-strategy-mark img,
.home-page .citation-platform-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.home-page .platform-strategy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-page .platform-strategy-tag {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 11px;
  font-weight: 800;
}

.home-page .platform-strategy > div > span:last-child {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
}

.home-page .platform-strategy > span:last-child {
  min-width: 0;
}

.home-page .platform-strategy > span:last-child > span:last-child {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.home-page .citation-dashboard {
  grid-column: 2;
  grid-row: 3;
  min-height: 568px;
  margin-top: 26px;
  border-color: rgba(41, 69, 107, 0.06);
  border-radius: 28px;
  padding: 28px;
}

.home-page .citation-dashboard-head h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
}

.home-page .citation-platform-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 14px;
}

.home-page .citation-dashboard-head button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--brand);
  background: var(--brand-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.home-page .citation-chart {
  align-content: start;
  justify-items: stretch;
  border: 1px solid rgba(41, 69, 107, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
}

.home-page .citation-chart > h4 {
  width: 100%;
  margin: 0;
  font-size: 17px;
  text-align: left;
}

.home-page .citation-donut {
  width: 220px;
  height: 220px;
  margin: 34px auto 0;
  background: conic-gradient(var(--brand) 0 16%, var(--data) 16% 32%, #568aa7 32% 48%, #91b5dc 48% 64%, #91c6bb 64% 80%, #dce2eb 80% 100%);
}

.home-page .citation-donut::before {
  width: 142px;
  height: 142px;
}

.home-page .citation-legend {
  margin: 28px auto 0;
}

.home-page .citation-ranking {
  border: 1px solid rgba(41, 69, 107, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
}

.home-page .citation-ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.home-page .citation-ranking-head h4 {
  margin: 0;
}

.home-page .citation-ranking-head span {
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 11px;
  font-weight: 800;
}

.home-page .start-path-card img {
  width: 180px;
  height: 180px;
  justify-self: center;
}

.home-page .service-card img {
  object-fit: cover;
}

.reference-hero-page .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
}

.reference-hero-page .page-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/reference/secondary-hero-bg.webp") center / cover no-repeat;
  content: "";
  filter: none;
}

.reference-hero-page .page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52) 42%, rgba(255, 255, 255, 0.84));
  content: "";
  pointer-events: none;
}

.reference-hero-page .page-hero .site-shell {
  position: relative;
  z-index: 2;
}

.reference-hero-page .page-hero-grid {
  align-items: center;
  padding-top: 0;
}

@media (max-width: 1120px) {
  .home-page .site-header {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
  }

  .home-page .hero-main {
    width: min(calc(100% - 64px), 960px);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 76px;
    transform: none;
  }

  .home-page .home-hero,
  .home-page .principle-section,
  .home-page .insights-section,
  .home-page .engine-section,
  .home-page .citation-section,
  .home-page .start-section,
  .home-page .services-section,
  .home-page .cases-section,
  .home-page .why-section,
  .home-page .faq-section {
    height: auto;
    min-height: 0;
  }

  .home-page .hero-audit {
    width: auto;
    transform: none;
  }

  .home-page .principle-section .site-shell,
  .home-page .insights-section .site-shell,
  .home-page .citation-section .site-shell,
  .home-page .start-section .site-shell,
  .home-page .services-section .site-shell {
    width: min(calc(100% - 64px), 960px);
  }

  .home-page .principle-grid {
    display: grid;
    height: auto;
    margin-top: 40px;
  }

  .home-page .principle-card,
  .home-page .principle-card.is-active {
    width: auto;
    flex-basis: auto;
  }

  .home-page .engine-layout,
  .home-page .citation-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-page .insight-timeline {
    display: grid;
    height: auto;
  }

  .home-page .insight-timeline::before {
    left: 0;
  }

  .home-page .insight-card,
  .home-page .insight-card:nth-child(even),
  .home-page .insight-card:nth-child(odd) {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 20px);
    height: auto;
    min-height: 176px;
    margin-left: 20px;
  }

  .home-page .engine-flow-image {
    width: 100%;
    height: auto;
    max-width: 834px;
  }

  .home-page .citation-layout > div:first-child {
    display: block;
  }

  .home-page .citation-layout .section-heading,
  .home-page .citation-layout .section-description,
  .home-page .platform-strategies,
  .home-page .citation-dashboard {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .citation-layout .section-heading {
    white-space: normal;
  }

  .home-page .start-section,
  .home-page .services-section {
    padding: 72px 0;
  }

  .home-page .start-path-card:nth-child(-n + 2),
  .home-page .start-path-card:nth-child(n + 3),
  .home-page .service-card {
    height: auto;
    min-height: 0;
  }

  .home-page .service-card img {
    position: static;
    width: 100%;
    height: 285px;
  }
}

@media (max-width: 760px) {
  .home-page .insights-heading-break {
    display: none;
  }

  .home-page .hero-main {
    width: calc(100% - 32px);
    padding: 50px 0 540px;
  }

  .home-page .hero-copy h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .home-page .hero-stats {
    width: 100%;
  }

  .home-page .principle-section,
  .home-page .insights-section,
  .home-page .engine-section,
  .home-page .citation-section,
  .home-page .start-section,
  .home-page .services-section,
  .home-page .cases-section,
  .home-page .why-section,
  .home-page .faq-section {
    padding: 64px 0;
  }

  .home-page .principle-section .site-shell,
  .home-page .insights-section .site-shell,
  .home-page .citation-section .site-shell,
  .home-page .start-section .site-shell,
  .home-page .services-section .site-shell {
    width: calc(100% - 32px);
  }

  .home-page .start-path-card:nth-child(-n + 2),
  .home-page .start-path-card:nth-child(n + 3) {
    height: auto;
    min-height: 252px;
  }

  .home-page .home-hero::before {
    background-position: 62% center;
  }

  .home-page .engine-orbit {
    min-height: 0;
  }

  .home-page .platform-strategy {
    padding-right: 12px;
  }

  .home-page .citation-dashboard {
    padding: 18px;
  }

  .reference-hero-page .page-hero-grid {
    padding-top: 90px;
  }

  .reference-hero-page .page-hero::before {
    width: 100%;
    background-size: auto 640px;
    background-position: 52% top;
  }
}

/* Reference engine detail page */
.reference-content-shell {
  width: min(calc(100% - 160px), 1120px);
  margin-inline: auto;
}

main[data-reference-contact-page] {
  padding: 0;
}

main.page-main[data-reference-contact-page] {
  padding: 0;
}

main[data-reference-contact-page] .reference-subpage-title {
  height: 188.4px;
  padding: 96px 0 44px;
}

main[data-reference-contact-page] .reference-subpage-title h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

main[data-reference-contact-page] .reference-subpage-tabs {
  height: 43.5px;
}

.reference-subpage-tabs nav {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.reference-subpage-tabs a {
  position: relative;
  height: 100%;
  color: var(--muted);
  font-size: 16px;
}

.reference-subpage-tabs a.is-active {
  color: var(--ink);
  font-weight: 700;
}

.reference-subpage-tabs a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
}

main[data-reference-contact-page] .reference-contact-content {
  height: 872px;
  padding: 40px 0 112px;
  background: #fff;
}

.reference-contact-grid {
  display: grid;
  grid-template-columns: 413.3px 626.7px;
  gap: 80px;
}

.reference-contact-details h2,
.reference-contact-form-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.reference-contact-details > p,
.reference-contact-form-card > p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.reference-contact-list {
  display: grid;
  gap: 24px;
  margin: 34px 0 40px;
}

.reference-contact-list div {
  padding: 0 0 18px 56px;
  border-bottom: 1px solid var(--line);
}

.reference-contact-list dt {
  color: var(--muted);
  font-size: 13px;
}

.reference-contact-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.reference-contact-form-card {
  position: relative;
  height: 720px;
  border-radius: 16px;
  padding: 40px;
  background: #fff;
}

.reference-contact-form {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 22px;
}

.reference-contact-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.reference-contact-topics legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.reference-contact-topics label {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14px;
}

.reference-contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reference-contact-form > label,
.reference-contact-row label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.reference-contact-form input[type="text"],
.reference-contact-form input[type="tel"],
.reference-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.reference-contact-form input[type="text"],
.reference-contact-form input[type="tel"] {
  height: 42px;
}

.reference-contact-form textarea {
  height: 102px;
  resize: none;
}

body.reference-partner-page .site-footer {
  min-height: 649.5px;
}

/* Final homepage parity tokens. Keep the structure and interactions above,
   but remove the remaining legacy green/blue treatment from the reference
   composition so the shared shell reads as one coherent site. */
.home-page {
  line-height: 1.5;
}

.home-page .site-header {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: rgba(230, 232, 239, 0.88) !important;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.06) !important;
  backdrop-filter: blur(18px) !important;
}

.home-page .site-nav-link,
.home-page .site-login-link {
  line-height: 1.5;
}

.home-page .site-nav-link.is-current {
  color: #7c3aed;
}

.home-page .site-nav-link::after,
.home-page .site-nav-link.is-current::after {
  background: #7c3aed;
}

.home-page .site-nav-cta {
  width: 84px;
  min-width: 84px;
  min-height: 40px;
  padding: 0;
  border-color: transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.18);
}

.home-page .site-login-link {
  width: 84px;
  min-width: 84px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
}

.home-page .hero-copy h1 em,
.home-page .section-heading em,
.home-page .hero-audit-head button,
.home-page .insight-card-num,
.home-page .platform-strategy-index,
.home-page .platform-strategy-tag,
.home-page .citation-dashboard-head button {
  color: #7c3aed;
}

.home-page .hero-actions .site-button-primary,
.home-page .insights-copy .site-button {
  border-color: transparent;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.2);
}

.home-page .hero-audit > .site-button {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
}

.home-page .hero-audit > .site-button:hover {
  border-color: rgba(124, 58, 237, 0.24);
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.1);
}

.home-page .why-heading .section-description {
  max-width: 860px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.home-page .platform-pill.is-selected {
  border-color: rgba(124, 58, 237, 0.16);
  color: #6d28d9;
  background: #f3e8ff;
}

.home-page .principle-card.is-active {
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.14);
}

.home-page .insight-card.is-active::before {
  background: #7c3aed;
  border-color: #fff;
  box-shadow: 0 0 0 1px #7c3aed, 0 0 0 8px rgba(124, 58, 237, 0.12);
}

.home-page .engine-tab-list button.is-active,
.home-page .engine-center {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.home-page .engine-ring {
  border-color: rgba(124, 58, 237, 0.23);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 60%, transparent 60.5%),
    conic-gradient(from -25deg, #7c3aed, #2563eb, #a78bfa, #7c3aed);
}

.home-page .platform-strategy.is-active::after {
  border-color: #7c3aed;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.09);
}

.home-page .platform-strategy.is-active .platform-strategy-index {
  background: #7c3aed;
}

.home-page .platform-strategy-tag,
.home-page .citation-dashboard-head button {
  background: #f3e8ff;
}

.home-page .why-panel-complete::before,
.home-page .why-panel-complete .why-item i {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.home-page .why-summary {
  border-color: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
  background:
    radial-gradient(circle at 29px 50%, #7c3aed 0 17px, transparent 18px),
    linear-gradient(90deg, #f3e8ff, #fff);
}

.home-page .faq-item.is-open .faq-question::after {
  color: #7c3aed;
}

.site-footer-cta-button,
.site-footer-cta-button:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.28);
}

.site-footer-cta-benefits span {
  border-color: rgba(167, 139, 250, 0.42);
  box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.08);
}

.site-footer-cta-benefits span::before {
  border-color: #a78bfa;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.35);
}

.auth-site-page .site-button-primary {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.2);
}

.auth-card {
  border-color: rgba(124, 58, 237, 0.16);
}

.auth-switch a,
.auth-site-copy .site-kicker {
  color: #7c3aed;
}

/* Reference login composition. The original product mark stays in the
   corner while the authentication surface follows the source site's
   wide-form, QR-login layout. */
.auth-reference-page {
  min-height: 100vh;
  overflow-x: visible;
  color: #171b26;
  background: #fff;
}

.auth-reference-shell {
  position: relative;
  min-height: 100vh;
  padding: 97px 40px 34px;
}

.auth-reference-brand {
  position: absolute;
  top: 32px;
  left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #161b27;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  white-space: nowrap;
}

.auth-reference-brand img {
  width: 34px;
  height: 34px;
}

.auth-reference-content {
  display: grid;
  width: min(100%, 1018px);
  margin-right: auto;
  margin-left: max(0px, calc((100% - 1100px) / 2 + 84px));
  grid-template-columns: 380px 482px;
  align-items: start;
  column-gap: 156px;
}

.auth-reference-form-panel {
  width: 380px;
}

.auth-reference-form-panel h1 {
  margin: 0 0 12px;
  color: #171b26;
  font-size: 40px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 60px;
}

.auth-reference-subtitle {
  margin: 0 0 43px;
  color: #6c7483;
  font-size: 14px;
  line-height: 21px;
}

.auth-mode-tabs {
  display: grid;
  width: 380px;
  height: 47px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 3px;
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  background: #f4f5f7;
}

.auth-mode-tabs button {
  height: 36px;
  border: 0;
  border-radius: 8px;
  color: #6c7483;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.auth-mode-tabs button.is-active {
  color: #252a35;
  background: #fff;
  box-shadow: 0 1px 4px rgba(18, 23, 34, 0.05);
}

.auth-reference-form {
  margin-top: 22px;
}

.auth-mode-panel {
  display: grid;
  gap: 20px;
}

.auth-reference-field {
  display: grid;
  gap: 9px;
}

.auth-reference-field label {
  color: #303744;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
}

.auth-reference-input {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid #e2e5eb;
  border-radius: 14px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.auth-reference-input:focus-within {
  border-color: rgba(124, 58, 237, 0.48);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.auth-reference-input svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #858c98;
  stroke-width: 1.7;
}

.auth-reference-input input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #252a35;
  background: transparent;
  font-size: 14px;
  line-height: 20px;
}

.auth-reference-input input::placeholder {
  color: #a1a7b1;
}

.auth-reference-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.auth-code-button {
  height: 32px;
  border: 1px solid #e6e8ef;
  border-radius: 999px;
  padding: 0 10px;
  color: #a1a7b1;
  background: #fff;
  cursor: not-allowed;
  font-size: 13px;
  white-space: nowrap;
}

.auth-reference-status {
  min-height: 20px;
  margin: 14px 0 -2px;
  color: #b42318;
  font-size: 12px;
  line-height: 18px;
}

.auth-reference-submit {
  display: inline-flex;
  width: 100%;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #e6e8ef;
  border-radius: 999px;
  color: #252a35;
  background: #fff;
  box-shadow: 0 5px 16px rgba(18, 23, 34, 0.04);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.auth-reference-submit:hover {
  border-color: rgba(124, 58, 237, 0.36);
  color: #6d28d9;
}

.auth-reference-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.auth-reference-submit svg {
  width: 17px;
  height: 17px;
}

.auth-reference-register {
  margin: 12px 0 0;
  color: #858c98;
  font-size: 12px;
  line-height: 18px;
}

.auth-reference-register a {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-reference-other,
.auth-reference-register-mobile {
  display: none;
}

.auth-reference-wechat {
  display: flex;
  width: 482px;
  height: 382px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  margin-top: 48px;
  border: 1px solid #e1e4e9;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.auth-reference-apply {
  gap: 12px;
  text-align: center;
}

.auth-apply-visual {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  margin-bottom: 8px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(145deg, #f4f0ff, #e9e3ff);
}

.auth-apply-visual img {
  display: block;
  width: 64px;
  height: 64px;
}

.auth-reference-apply > strong {
  color: #252a35;
  font-size: 20px;
  line-height: 28px;
}

.auth-reference-apply > p {
  max-width: 260px;
  margin: 0;
  color: #737b88;
  font-size: 13px;
  line-height: 22px;
}

.auth-apply-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: #7c3aed;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.auth-apply-link:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.auth-apply-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.auth-wechat-qr {
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  background: #fff;
  overflow: hidden;
}

.auth-wechat-qr img {
  display: block;
  width: 260px;
  height: 260px;
  object-fit: cover;
}

.auth-wechat-scan {
  display: inline-flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #252a35;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.auth-wechat-scan-mark {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #07c160;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.auth-reference-legal {
  position: absolute;
  right: 40px;
  bottom: 31px;
  left: 40px;
  margin: 0;
  color: #737b88;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.auth-reference-legal a {
  color: #5f6775;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 901px) {
  .auth-reference-shell {
    padding: 187px 40px 34px;
  }

  .auth-reference-content {
    width: min(100%, 1100px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    align-items: center;
    column-gap: 32px;
  }

  .auth-reference-form-panel {
    width: 420px;
    height: 477.5px;
    justify-self: center;
  }

  .auth-reference-form-panel > * {
    width: 380px;
    max-width: 100%;
  }

  .auth-reference-subtitle {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .auth-mode-tabs {
    height: 46px;
    margin-bottom: 24px;
    padding: 4px;
  }

  .auth-reference-form {
    height: 239px;
    margin-top: 0;
  }

  .auth-mode-panel {
    gap: 20px;
  }

  .auth-reference-field {
    gap: 8.5px;
  }

  .auth-reference-register-desktop {
    margin-top: 16px;
  }

  .auth-reference-wechat {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .auth-reference-shell {
    padding: 96px 24px 32px;
  }

  .auth-reference-content {
    width: min(100%, 540px);
    margin-left: auto;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .auth-reference-form-panel,
  .auth-mode-tabs,
  .auth-reference-wechat {
    width: 100%;
  }

  .auth-reference-wechat {
    height: 382px;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .auth-reference-shell {
    padding: 88px 20px 72px;
  }

  .auth-reference-brand {
    top: 24px;
    left: 20px;
  }

  .auth-reference-content {
    row-gap: 28px;
  }

  .auth-reference-form-panel h1 {
    font-size: 34px;
    line-height: 48px;
  }

  .auth-reference-subtitle {
    margin-bottom: 28px;
  }

  .auth-reference-wechat {
    height: 330px;
    padding: 26px 20px 22px;
  }

  .auth-wechat-qr {
    width: 220px;
    height: 220px;
  }

  .auth-wechat-qr img {
    width: 220px;
    height: 220px;
  }

  .auth-reference-legal {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }
}

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

  main[data-reference-contact-page] .reference-subpage-title {
    height: 150px;
    padding: 64px 0 32px;
  }

  main[data-reference-contact-page] .reference-contact-content {
    height: auto;
    padding: 40px 0 64px;
  }

  .reference-contact-grid,
  .reference-contact-row {
    grid-template-columns: 1fr;
  }

  .reference-contact-grid {
    gap: 32px;
  }

  .reference-contact-form-card {
    height: auto;
    padding: 24px;
  }
}

/* Reference engine detail page */
.engine-detail-page .engine-metrics-section {
  height: 225px;
  background: #fff;
}

.engine-detail-page .engine-metrics {
  display: grid;
  height: 225px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.engine-detail-page .engine-metric {
  position: relative;
}

.engine-detail-page .engine-metric + .engine-metric::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 58px;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.engine-detail-page .engine-metric strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 46px;
  line-height: 1;
}

.engine-detail-page .engine-metric strong b,
.engine-detail-page .engine-metric strong i {
  font: inherit;
}

.engine-detail-page .engine-metric strong i {
  margin-left: 5px;
  color: var(--ink);
  font-size: 28px;
  font-style: normal;
}

.engine-detail-page .engine-metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.engine-detail-page .engine-showcase-section {
  height: 688px;
  overflow: hidden;
  background: #fff;
  transform: translateY(30px);
}

.engine-detail-page .engine-showcase {
  width: min(1024px, calc(100% - 48px));
  height: 576px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: none;
}

.engine-detail-page .engine-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.engine-detail-page .engine-features-section {
  height: 756px;
  padding: 112px 0 96px;
  background: #fff;
}

.engine-detail-page .engine-features-section .site-shell,
.engine-detail-page .engine-source-section .site-shell,
.engine-detail-page .engine-editions-section .site-shell {
  width: min(calc(100% - 48px), 1152px);
}

.engine-detail-page .engine-section-heading {
  text-align: center;
}

.engine-detail-page .engine-section-heading h2,
.engine-detail-page .engine-compare-section h2,
.engine-detail-page .engine-editions-section h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
}

.engine-detail-page .engine-section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.engine-detail-page .engine-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 78px;
}

.engine-detail-page .engine-feature-item {
  min-height: 183px;
  border-radius: 12px;
  padding: 24px;
  transition: background 180ms ease;
}

.engine-detail-page .engine-feature-item:hover {
  background: var(--surface-soft);
}

.engine-detail-page .engine-feature-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.engine-detail-page .engine-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engine-detail-page .engine-feature-item h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.engine-detail-page .engine-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.engine-detail-page .engine-source-section {
  height: 1472px;
  min-height: 0;
  padding: 112px 0;
  background: #f5f6f8;
}

.engine-detail-page .engine-source-row {
  display: grid;
  height: 598px;
  min-height: 0;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 64px;
}

.engine-detail-page .engine-source-row + .engine-source-row {
  height: 570px;
  margin-top: 79px;
}

.engine-detail-page .engine-source-row-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.engine-detail-page .engine-source-copy > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.engine-detail-page .engine-source-copy h2 {
  margin: 18px 0 20px;
  font-size: 46px;
  line-height: 1.24;
}

.engine-detail-page .engine-source-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}

.engine-detail-page .engine-source-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.engine-detail-page .engine-source-facts div {
  min-height: 74px;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.engine-detail-page .engine-source-facts strong,
.engine-detail-page .engine-source-facts span {
  display: block;
}

.engine-detail-page .engine-source-facts strong {
  color: var(--brand);
  font-size: 17px;
}

.engine-detail-page .engine-source-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.engine-detail-page .engine-source-card,
.engine-detail-page .engine-detection-card {
  border: 1px solid rgba(41, 69, 107, 0.07);
  border-radius: 18px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(41, 69, 107, 0.07);
}

.engine-detail-page .engine-source-card-head,
.engine-detail-page .engine-detection-head,
.engine-detail-page .engine-detection-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.engine-detail-page .engine-source-card-head span,
.engine-detail-page .engine-detection-head span {
  color: var(--muted);
  font-size: 12px;
}

.engine-detail-page .engine-source-card-head b,
.engine-detail-page .engine-detection-head > b {
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 11px;
}

.engine-detail-page .engine-source-card h3 {
  margin: 8px 0 20px;
  font-size: 25px;
}

.engine-detail-page .engine-source-fields,
.engine-detail-page .engine-detection-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.engine-detail-page .engine-source-fields div,
.engine-detail-page .engine-detection-summary div {
  border-radius: 12px;
  padding: 14px;
  background: var(--surface-soft);
}

.engine-detail-page .engine-source-fields span,
.engine-detail-page .engine-source-fields strong,
.engine-detail-page .engine-detection-summary span,
.engine-detail-page .engine-detection-summary strong {
  display: block;
}

.engine-detail-page .engine-source-fields span,
.engine-detail-page .engine-detection-summary span {
  color: var(--muted);
  font-size: 11px;
}

.engine-detail-page .engine-source-fields strong,
.engine-detail-page .engine-detection-summary strong {
  margin-top: 5px;
  font-size: 15px;
}

.engine-detail-page .engine-source-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.engine-detail-page .engine-source-stage {
  border-radius: 12px;
  padding: 12px;
  background: #f1f3f6;
}

.engine-detail-page .engine-source-stage b,
.engine-detail-page .engine-source-stage span {
  display: block;
}

.engine-detail-page .engine-source-stage b {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 12px;
}

.engine-detail-page .engine-source-stage span {
  margin-top: 7px;
  color: var(--text);
  font-size: 12px;
}

.engine-detail-page .engine-source-meta {
  margin: 18px 0 0;
}

.engine-detail-page .engine-source-meta div {
  display: grid;
  min-height: 48px;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

.engine-detail-page .engine-source-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.engine-detail-page .engine-source-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  text-align: right;
}

.engine-detail-page .engine-detection-head strong {
  display: block;
  margin-top: 5px;
  font-size: 17px;
}

.engine-detail-page .engine-detection-summary {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.engine-detail-page .engine-detection-progress {
  margin-top: 18px;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 12px;
}

.engine-detail-page .engine-detection-table {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.engine-detail-page .engine-detection-table > div {
  display: grid;
  min-height: 45px;
  grid-template-columns: 1fr 2fr 0.7fr;
  align-items: center;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.engine-detail-page .engine-detection-table > div:first-child {
  border-top: 0;
}

.engine-detail-page .engine-detection-table .is-head {
  color: var(--muted);
  background: var(--surface-soft);
  font-weight: 700;
}

.engine-detail-page .engine-detection-table b {
  color: var(--brand);
}

.engine-detail-page .engine-compare-section {
  height: 703px;
  padding: 110px 0 96px;
  background: #f5f6f8;
}

.engine-detail-page .engine-compare-section h2,
.engine-detail-page .engine-editions-section h2 {
  text-align: center;
}

.engine-detail-page .engine-compare-table {
  max-width: 896px;
  margin: 64px auto 0;
}

.engine-detail-page .engine-compare-table > div {
  display: grid;
  min-height: 62px;
  grid-template-columns: 0.85fr 1.35fr 1.35fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}

.engine-detail-page .engine-compare-table .is-head {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.engine-detail-page .engine-compare-table strong,
.engine-detail-page .engine-compare-table span,
.engine-detail-page .engine-compare-table b {
  font-size: 14px;
}

.engine-detail-page .engine-compare-table span {
  color: var(--muted);
}

.engine-detail-page .engine-compare-table b {
  color: var(--brand);
}

.engine-detail-page .engine-editions-section {
  height: 723px;
  padding: 112px 0;
  background: #fff;
}

.engine-detail-page .engine-edition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 58px;
}

.engine-detail-page .engine-edition-card {
  position: relative;
  min-height: 389px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  background: #fff;
}

.engine-detail-page .engine-edition-card.is-featured {
  border-color: rgba(47, 111, 94, 0.5);
  background: #fff;
  box-shadow: 0 20px 55px rgba(47, 111, 94, 0.12);
  transform: none;
}

.engine-detail-page .engine-edition-card > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.engine-detail-page .engine-edition-card h3 {
  margin: 10px 0 6px;
  font-size: 27px;
}

.engine-detail-page .engine-edition-card p {
  min-height: 54px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.engine-detail-page .engine-edition-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  list-style: none;
}

.engine-detail-page .engine-edition-card li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "✓";
}

.engine-detail-page .engine-edition-card .site-button {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  min-height: 36px;
  height: 36px;
}

.site-footer-cta {
  height: 258px;
  overflow: hidden;
  color: #fff;
  background:
    #07121c
    url("/assets/reference/footer-cta-bg.webp")
    center 48% / cover no-repeat;
}

.site-footer-cta-inner {
  display: grid;
  width: min(calc(100% - 48px), 1056px);
  height: 100%;
  grid-template-columns: 475px 1fr;
  align-items: center;
  gap: 111px;
  margin-inline: auto;
}

.site-footer-cta-copy h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.45;
  letter-spacing: 0;
}

.site-footer-cta-copy h2 em {
  color: #5bd6aa;
  font-style: normal;
}

.site-footer-cta-button {
  position: relative;
  overflow: hidden;
  width: 192px;
  height: 44px;
  margin-top: 24px;
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}

.site-footer-cta .site-footer-cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.site-footer-cta .site-footer-cta-button::after {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 25%;
  width: 50%;
  height: 64%;
  border-radius: 8px;
  background: linear-gradient(90deg, #153bda 0%, #6519e7 100%);
  content: "";
}

.site-footer-cta .site-footer-cta-button span {
  position: relative;
  z-index: 2;
}

.site-footer-cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 34px;
}

.site-footer-cta-benefits span {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(91, 214, 170, 0.32);
  border-radius: 7px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(6, 17, 27, 0.48);
  box-shadow: inset 0 0 20px rgba(39, 145, 128, 0.08);
  font-size: 14px;
  white-space: nowrap;
}

.site-footer-cta-benefits span::before {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-right: 10px;
  border: 1px solid #5bd6aa;
  border-radius: 5px;
  content: "";
  box-shadow: 0 0 12px rgba(91, 214, 170, 0.35);
}

@media (max-width: 1120px) {
  .engine-detail-page .engine-metrics-section,
  .engine-detail-page .engine-showcase-section,
  .engine-detail-page .engine-features-section,
  .engine-detail-page .engine-source-section,
  .engine-detail-page .engine-compare-section,
  .engine-detail-page .engine-editions-section {
    height: auto;
    min-height: 0;
  }

  .engine-detail-page .engine-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engine-detail-page .engine-source-row,
  .engine-detail-page .engine-source-row-reverse {
    height: auto;
    grid-template-columns: 1fr;
  }

  .engine-detail-page .engine-source-row + .engine-source-row {
    height: auto;
    margin-top: 72px;
  }

  .site-footer-cta-inner {
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .engine-detail-page > section .site-shell {
    width: calc(100% - 48px);
  }

  .engine-detail-page .engine-metrics-section {
    height: 298px;
  }

  .engine-detail-page .engine-metrics {
    height: 298px;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    gap: 32px;
    padding: 48px 0;
  }

  .engine-detail-page .engine-metric {
    min-height: 85px;
  }

  .engine-detail-page .engine-metric strong {
    font-size: 40px;
  }

  .engine-detail-page .engine-metric strong i {
    font-size: 23px;
  }

  .engine-detail-page .engine-metric + .engine-metric::before {
    display: none;
  }

  .engine-detail-page .engine-showcase-section {
    height: 272px;
  }

  .engine-detail-page .engine-showcase {
    width: 100%;
    height: 192px;
    margin: 0 auto;
  }

  .engine-detail-page .engine-showcase img {
    height: 100%;
  }

  .engine-detail-page .engine-features-section {
    height: 1456px;
    padding: 80px 0;
  }

  .engine-detail-page .engine-section-heading h2,
  .engine-detail-page .engine-compare-section h2,
  .engine-detail-page .engine-editions-section h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .engine-detail-page .engine-section-heading p {
    margin-top: 12px;
    font-size: 15px;
    white-space: nowrap;
  }

  .engine-detail-page .engine-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
  }

  .engine-detail-page .engine-feature-item {
    min-height: 170px;
    padding: 24px;
  }

  .engine-detail-page .engine-feature-item:nth-child(2) {
    min-height: 196px;
  }

  .engine-detail-page .engine-feature-item h3 {
    margin: 16px 0 8px;
    font-size: 16px;
    line-height: 24px;
  }

  .engine-detail-page .engine-source-section {
    height: 2775px;
    padding: 80px 0;
  }

  .engine-detail-page .engine-source-row,
  .engine-detail-page .engine-source-row-reverse {
    display: grid;
    gap: 48px;
  }

  .engine-detail-page .engine-source-row + .engine-source-row {
    margin-top: 80px;
  }

  .engine-detail-page .engine-source-row-reverse .engine-source-copy {
    order: 1;
  }

  .engine-detail-page .engine-source-row-reverse .engine-detection-card {
    order: 2;
  }

  .engine-detail-page .engine-source-copy h2 {
    font-size: 36px;
  }

  .engine-detail-page .engine-source-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .engine-detail-page .engine-source-facts div {
    min-height: 74px;
    padding: 12px;
  }

  .engine-detail-page .engine-source-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .engine-detail-page .engine-detection-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .engine-detail-page .engine-source-card,
  .engine-detail-page .engine-detection-card {
    padding: 20px;
  }

  .engine-detail-page .engine-source-meta div {
    grid-template-columns: 90px 1fr;
  }

  .engine-detail-page .engine-source-meta dd {
    text-align: right;
  }

  .engine-detail-page .engine-detection-table > div {
    grid-template-columns: 0.8fr 1.6fr 0.7fr;
    gap: 8px;
    padding: 0 10px;
  }

  .engine-detail-page .engine-compare-section {
    height: 753px;
    padding: 80px 0;
  }

  .engine-detail-page .engine-compare-section .site-shell {
    overflow: hidden;
  }

  .engine-detail-page .engine-compare-table {
    width: 100%;
    margin-top: 56px;
    overflow-x: auto;
  }

  .engine-detail-page .engine-compare-table > div {
    min-width: 720px;
    min-height: 70.7px;
    grid-template-columns: 170px 250px 250px;
    padding: 0 16px;
  }

  .engine-detail-page .engine-editions-section {
    height: 1380px;
    padding: 80px 0;
  }

  .engine-detail-page .engine-edition-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .engine-detail-page .engine-edition-card {
    display: flex;
    min-height: 0;
    height: 327px;
    flex-direction: column;
  }

  .engine-detail-page .engine-edition-card:nth-child(2) {
    height: 358px;
  }

  .engine-detail-page .engine-edition-card:nth-child(3) {
    height: 389px;
  }

  .engine-detail-page .engine-edition-card.is-featured {
    transform: none;
  }

  .engine-detail-page .engine-edition-card > span {
    display: none;
  }

  .engine-detail-page .engine-edition-card h3 {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 30px;
  }

  .engine-detail-page .engine-edition-card p {
    min-height: 0;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 21px;
  }

  .engine-detail-page .engine-edition-card ul {
    display: grid;
    flex: 1;
    gap: 10px;
    margin: 0 0 32px;
    padding: 0;
    border-top: 0;
    font-size: 14px;
    line-height: 21px;
  }

  .engine-detail-page .engine-edition-card .site-button {
    position: static;
    width: 100%;
    min-height: 36px;
    height: 36px;
  }

  .site-footer-cta {
    height: 188px;
    min-height: 188px;
    background-size: 880px auto;
    background-position: 27% 52px;
  }

  .site-footer-cta-inner {
    display: block;
    width: calc(100% - 48px);
    height: 188px;
    padding: 152px 0 0;
  }

  .site-footer-cta-copy h2 {
    display: none;
  }

  .site-footer-cta-button {
    width: 157px;
    height: 36px;
    margin: 0;
    font-size: 14px;
  }

  .site-footer-cta-benefits {
    display: none;
  }

  .site-footer {
    height: 766px;
    overflow: hidden;
  }

  .site-footer-main {
    height: 690px;
    min-height: 690px;
    gap: 38px 24px;
    padding: 84px 0 68px;
  }

  .site-footer-bottom {
    min-height: 76px;
    height: 76px;
    padding: 16px 0;
  }
}

/* Reference GEO service page */
.service-detail-page .service-core-section {
  height: 1787px;
  overflow: hidden;
  padding: 112px 0 0;
  background: #f5f6f8;
}

.service-detail-page .service-core-section .site-shell {
  width: min(calc(100% - 48px), 1152px);
}

.service-detail-page .service-core-section h2,
.service-detail-page .service-packages-section h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
}

.service-detail-page .service-core-subtitle,
.service-detail-page .service-packages-section > .service-packages-inner > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.service-detail-page .service-detail-banner {
  display: block;
  width: 1152px;
  height: auto;
  margin-top: 48px;
  object-fit: contain;
  filter: none;
  transition: transform 700ms ease;
}

.service-detail-page .service-detail-banner-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.service-detail-page .service-detail-banner:hover {
  transform: scale(1.015);
}

.service-detail-page .service-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-detail-page .service-capability-card {
  height: 170px;
  border: 0;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

.service-detail-page .service-capability-icon {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.service-detail-page .service-capability-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.service-detail-page .service-capability-card h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  line-height: 1.5;
}

.service-detail-page .service-capability-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.service-detail-page .service-benefits-rail {
  display: flex;
  width: 100%;
  height: 108px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 56px;
  border: 0;
  border-radius: 12px;
  padding: 32px 0;
  background: #fff;
}

.service-detail-page .service-benefit-item {
  min-width: 0;
  padding: 0;
  text-align: center;
}

.service-detail-page .service-benefit-item strong,
.service-detail-page .service-benefit-item span {
  display: block;
}

.service-detail-page .service-benefit-item strong {
  font-size: 16px;
  line-height: 1.5;
}

.service-detail-page .service-benefit-item span {
  margin-top: 2px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.service-detail-page .service-packages-section {
  position: relative;
  height: 893px;
  overflow: hidden;
  padding: 64px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.2)),
    url("/assets/reference/service-packages-bg.webp") center / cover no-repeat;
}

.service-detail-page .service-packages-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.service-detail-page .service-packages-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 160px), 1280px);
  margin-inline: auto;
}

.service-detail-page .service-packages-section h2 {
  font-size: 60px;
}

.service-detail-page .service-package-grid {
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  align-items: start;
  gap: 32px;
  margin-top: 70px;
}

.service-detail-page .service-package-card {
  position: relative;
  display: flex;
  height: 515px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 23, 34, 0.09);
  border-radius: 18px;
  padding: 36px;
  background: transparent;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.service-detail-page .service-package-basic {
  margin-top: 55px;
}

.service-detail-page .service-package-featured {
  height: 551.5px;
  margin-top: 36.75px;
  border-color: var(--brand);
  background: transparent;
  box-shadow: 0 22px 60px rgba(124, 58, 237, 0.2);
}

.service-detail-page .service-package-custom {
  height: 565px;
  margin-top: 30px;
}

.service-detail-page .service-package-badge {
  position: absolute;
  top: 0;
  right: 32px;
  border-radius: 0 0 10px 10px;
  padding: 10px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-size: 17px;
  font-weight: 650;
  line-height: 25.5px;
}

.service-detail-page .service-package-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
}

.service-detail-page .service-package-name {
  margin: 10px 0 0;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
}

.service-detail-page .service-package-fit {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-detail-page .service-package-price {
  display: flex;
  min-height: 58px;
  align-items: end;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--brand);
}

.service-detail-page .service-package-price span {
  font-size: 21px;
  font-weight: 750;
}

.service-detail-page .service-package-price small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.service-detail-page .service-package-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 14px;
  list-style: none;
}

.service-detail-page .service-package-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-detail-page .service-package-card li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.service-detail-page .service-package-card .site-button {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  border-radius: 12px;
  font-size: 18px;
}

.service-detail-page .service-package-basic .site-button,
.service-detail-page .service-package-custom .site-button {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
}

.service-detail-page .service-package-featured .site-button {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.28);
}

@media (min-width: 1281px) {
  .service-detail-page .service-core-section .site-shell {
    width: min(calc(100% - 160px), 1152px);
  }

  .service-detail-page .service-packages-section > .service-packages-inner > p {
    font-size: 20px;
    line-height: 30px;
  }

  .service-detail-page .service-package-grid {
    margin-top: 64px;
  }
}

@media (max-width: 1120px) {
  .service-detail-page .service-core-section,
  .service-detail-page .service-packages-section {
    height: auto;
    min-height: 0;
  }

  .service-detail-page .service-detail-banner {
    width: 100%;
  }

  .service-detail-page .service-package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .service-detail-page .service-package-card {
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .reference-hero-page .page-hero h1 {
    font-size: 40px;
  }

  .service-detail-page .page-hero h2 {
    font-size: 32px;
  }

  .service-detail-page .service-core-section {
    height: 2042px;
    padding: 80px 0 0;
  }

  .service-detail-page .service-core-section .site-shell {
    width: calc(100% - 48px);
  }

  .service-detail-page .service-core-section h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .service-detail-page .service-core-subtitle {
    margin-top: 24px;
    font-size: 15px;
  }

  .service-detail-page .service-detail-banner {
    width: 342px;
    height: auto;
    margin-top: 70px;
  }

  .service-detail-page .service-capability-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .service-detail-page .service-capability-card {
    height: 170px;
  }

  .service-detail-page .service-benefits-rail {
    display: grid;
    height: 244px;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    gap: 26px 0;
    margin-top: 26px;
    padding: 28px 0;
  }

  .service-detail-page .service-benefit-item {
    padding: 0 10px 0 42px;
  }

  .service-detail-page .service-benefit-item + .service-benefit-item::before {
    display: none;
  }

  .service-detail-page .service-benefit-item::after {
    left: 14px;
  }

  .service-detail-page .service-benefit-item:last-child {
    grid-column: 1 / -1;
    width: 58%;
    justify-self: center;
  }

  .service-detail-page .service-benefit-item strong {
    font-size: 14px;
  }

  .service-detail-page .service-benefit-item span {
    font-size: 11px;
  }

  .service-detail-page .service-packages-section {
    height: 1874px;
    padding: 56px 0 0;
    background-position: center;
  }

  .service-detail-page .service-packages-inner {
    width: calc(100% - 48px);
  }

  .service-detail-page .service-packages-section h2 {
    font-size: 40px;
    line-height: 1.5;
  }

  .service-detail-page .service-packages-section > .service-packages-inner > p {
    margin-top: 12px;
    font-size: 15px;
  }

  .service-detail-page .service-package-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 99px;
  }

  .service-detail-page .service-package-card,
  .service-detail-page .service-package-basic,
  .service-detail-page .service-package-featured,
  .service-detail-page .service-package-custom {
    width: 342px;
    margin-top: 0;
    padding: 28px;
  }

  .service-detail-page .service-package-card {
    height: 500px;
  }

  .service-detail-page .service-package-featured {
    height: 518px;
  }

  .service-detail-page .service-package-custom {
    height: 532px;
  }

  .service-detail-page .service-package-card h3 {
    font-size: 24px;
  }

  .service-detail-page .service-package-card .site-button {
    min-height: 56px;
  }
}

/* Reference pricing page */
.pricing-detail-page {
  overflow: hidden;
  background: #fff;
}

.pricing-detail-page .pricing-title-section {
  display: grid;
  height: 250px;
  place-items: center;
  padding: 0 24px;
  text-align: center;
}

.pricing-detail-page .pricing-title-section > div {
  transform: translateY(-5px);
}

.pricing-detail-page .pricing-title-section h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 760;
  line-height: 1.1;
}

.pricing-detail-page .pricing-title-section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.pricing-detail-page .pricing-matrix-section {
  height: 1599px;
  margin-bottom: 96px;
}

.pricing-detail-page .pricing-matrix-scroll {
  width: min(100%, 1280px);
  height: 100%;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 24px 0;
  scrollbar-width: thin;
}

.pricing-detail-page .pricing-matrix {
  width: 1231px;
  min-width: 1231px;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--text);
  font-size: 13px;
}

.pricing-detail-page .pricing-matrix col.pricing-module-column {
  width: 148px;
}

.pricing-detail-page .pricing-matrix col.pricing-feature-column {
  width: 246px;
}

.pricing-detail-page .pricing-matrix col:not(.pricing-module-column):not(.pricing-feature-column) {
  width: 209.5px;
}

.pricing-detail-page .pricing-matrix th,
.pricing-detail-page .pricing-matrix td {
  border: 1px solid var(--line-strong);
  padding: 0 16px;
  text-align: center;
  vertical-align: middle;
}

.pricing-detail-page .pricing-matrix th {
  color: var(--ink);
  font-weight: 650;
}

.pricing-detail-page .pricing-matrix thead tr {
  height: 98px;
}

.pricing-detail-page .pricing-matrix thead th {
  position: relative;
  background: #fff;
  font-size: 14px;
}

.pricing-detail-page .pricing-plan-column strong,
.pricing-detail-page .pricing-plan-column span,
.pricing-detail-page .pricing-plan-column small {
  display: block;
}

.pricing-detail-page .pricing-plan-column strong {
  font-size: 15px;
}

.pricing-detail-page .pricing-plan-column span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-detail-page .pricing-plan-column small {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 76px;
  height: 23px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 11px;
  line-height: 23px;
  transform: translateX(-50%);
}

.pricing-detail-page .pricing-matrix tbody tr {
  height: 44.5px;
}

.pricing-detail-page .pricing-matrix tbody tr.pricing-capability-row-tall {
  height: 64px;
}

.pricing-detail-page .pricing-matrix tbody th:not(.pricing-module-cell) {
  padding-left: 20px;
  font-weight: 600;
  text-align: left;
}

.pricing-detail-page .pricing-matrix .pricing-module-cell {
  color: var(--ink);
  background: #f5f6f8;
  font-weight: 700;
}

.pricing-detail-page .pricing-matrix tr > :nth-child(5),
.pricing-detail-page .pricing-matrix tr > :nth-child(5):last-child {
  background: rgba(124, 58, 237, 0.08);
}

.pricing-detail-page .pricing-matrix tr > :nth-child(6) {
  background: #fff;
}

.pricing-detail-page .pricing-category-row > th:not(.pricing-module-cell) {
  border-top-color: var(--line-strong);
}

.pricing-detail-page .pricing-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.pricing-detail-page .pricing-matrix tfoot tr {
  height: 81px;
}

.pricing-detail-page .pricing-matrix tfoot button {
  display: inline-flex;
  width: 132px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: var(--brand);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.pricing-detail-page .pricing-matrix tfoot td:nth-child(4) button {
  color: var(--ink);
  background: #fff;
}

.pricing-detail-page .pricing-matrix tfoot button svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.pricing-detail-page .pricing-results-section {
  height: 277px;
  margin-bottom: 95px;
}

.pricing-detail-page .pricing-results-inner {
  width: min(calc(100% - 48px), 1152px);
  height: 100%;
  margin-inline: auto;
  padding: 0 24px;
}

.pricing-detail-page .pricing-results-heading h2,
.pricing-detail-page .pricing-narrow-inner > h2,
.pricing-detail-page .pricing-closing-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
}

.pricing-detail-page .pricing-results-heading p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.pricing-detail-page .pricing-result-grid {
  display: grid;
  height: 166px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.pricing-detail-page .pricing-result-card {
  display: grid;
  place-content: center;
  border-radius: 12px;
  padding: 20px;
  background: var(--surface-soft);
  text-align: center;
}

.pricing-detail-page .pricing-result-card strong,
.pricing-detail-page .pricing-result-card span {
  display: block;
}

.pricing-detail-page .pricing-result-card strong {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 23px;
  line-height: 1.2;
}

.pricing-detail-page .pricing-result-card span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-detail-page .pricing-comparison-section {
  height: 311px;
  margin-bottom: 96px;
}

.pricing-detail-page .pricing-narrow-inner {
  width: min(calc(100% - 48px), 720px);
  height: 100%;
  margin-inline: auto;
  padding-top: 24px;
}

.pricing-detail-page .pricing-comparison-table {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-soft);
}

.pricing-detail-page .pricing-comparison-table > div {
  display: grid;
  min-height: 47px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 0 20px;
  font-size: 13px;
}

.pricing-detail-page .pricing-comparison-table > div:first-child {
  border-top: 0;
}

.pricing-detail-page .pricing-comparison-table .is-head {
  min-height: 38px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pricing-detail-page .pricing-comparison-table span {
  color: var(--muted);
}

.pricing-detail-page .pricing-comparison-table b {
  color: var(--brand);
}

.pricing-detail-page .pricing-faq-section {
  height: 593px;
  margin-bottom: 96px;
}

.pricing-detail-page .pricing-faq-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.pricing-detail-page .pricing-faq-item {
  height: 116px;
  border-radius: 12px;
  padding: 20px;
  background: var(--surface-soft);
}

.pricing-detail-page .pricing-faq-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-detail-page .pricing-faq-item h3 span {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  font-size: 10px;
}

.pricing-detail-page .pricing-faq-item p {
  margin: 8px 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.pricing-detail-page .pricing-closing-section {
  width: min(calc(100% - 48px), 720px);
  height: 252px;
  margin: 0 auto 96px;
}

.pricing-detail-page .pricing-closing-card {
  display: grid;
  height: 252px;
  align-content: start;
  border-radius: 12px;
  padding: 72px 32px 32px;
  background: var(--surface-soft);
  text-align: center;
}

.pricing-detail-page .pricing-closing-card h2 {
  font-size: 26px;
}

.pricing-detail-page .pricing-closing-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-detail-page .pricing-closing-card > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.pricing-detail-page .pricing-closing-card .site-button {
  min-width: 132px;
  min-height: 52px;
}

@media (max-width: 760px) {
  .pricing-detail-page .pricing-title-section {
    height: 195px;
    padding-top: 0;
  }

  .pricing-detail-page .pricing-title-section > div {
    transform: translateY(-8px);
  }

  .pricing-detail-page .pricing-title-section h1 {
    font-size: 36px;
  }

  .pricing-detail-page .pricing-title-section p {
    margin-top: 16px;
    font-size: 16px;
  }

  .pricing-detail-page .pricing-matrix-section {
    height: 1735px;
    margin-bottom: 82px;
  }

  .pricing-detail-page .pricing-matrix-scroll {
    width: 100%;
    padding: 20px 24px 0;
  }

  .pricing-detail-page .pricing-matrix {
    width: 979px;
    min-width: 979px;
    font-size: 12px;
  }

  .pricing-detail-page .pricing-matrix col.pricing-module-column {
    width: 118px;
  }

  .pricing-detail-page .pricing-matrix col.pricing-feature-column {
    width: 196px;
  }

  .pricing-detail-page .pricing-matrix col:not(.pricing-module-column):not(.pricing-feature-column) {
    width: 166.5px;
  }

  .pricing-detail-page .pricing-matrix th,
  .pricing-detail-page .pricing-matrix td {
    padding: 0 12px;
  }

  .pricing-detail-page .pricing-matrix thead tr {
    height: 98px;
  }

  .pricing-detail-page .pricing-matrix tbody tr {
    height: 49px;
  }

  .pricing-detail-page .pricing-matrix tbody tr.pricing-capability-row-tall {
    height: 64px;
  }

  .pricing-detail-page .pricing-matrix tfoot tr {
    height: 81px;
  }

  .pricing-detail-page .pricing-matrix tfoot button {
    width: 112px;
  }

  .pricing-detail-page .pricing-results-section {
    height: 440px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-results-inner {
    width: 100%;
    padding: 0 24px;
  }

  .pricing-detail-page .pricing-results-heading h2,
  .pricing-detail-page .pricing-narrow-inner > h2 {
    font-size: 24px;
  }

  .pricing-detail-page .pricing-result-grid {
    height: 335px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 37px;
  }

  .pricing-detail-page .pricing-result-card {
    padding: 16px;
  }

  .pricing-detail-page .pricing-result-card strong {
    font-size: 18px;
  }

  .pricing-detail-page .pricing-comparison-section {
    height: 305px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-narrow-inner {
    width: calc(100% - 48px);
    padding-top: 24px;
  }

  .pricing-detail-page .pricing-comparison-table {
    margin-top: 8px;
  }

  .pricing-detail-page .pricing-comparison-table > div {
    min-height: 45px;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    padding: 0 12px;
    font-size: 12px;
  }

  .pricing-detail-page .pricing-faq-section {
    height: 728px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-faq-list {
    gap: 16px;
    margin-top: 16px;
  }

  .pricing-detail-page .pricing-faq-item {
    height: 151px;
    padding: 20px;
  }

  .pricing-detail-page .pricing-faq-item p {
    font-size: 12px;
    line-height: 1.75;
  }

  .pricing-detail-page .pricing-closing-section {
    width: calc(100% - 48px);
    height: 268px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-closing-card {
    height: 268px;
    padding: 56px 32px 32px;
  }

  .pricing-detail-page .pricing-closing-card h2 {
    font-size: 22px;
  }

  .pricing-detail-page .pricing-closing-card > div {
    margin-top: 24px;
  }

  .pricing-detail-page .pricing-closing-card .site-button {
    min-width: 0;
    flex: 1;
    padding: 0 16px;
  }
}

/* Live reference calibration.
   These desktop values come from the rendered g1geo.com composition rather
   than section-height approximations. Product branding and CTA copy remain
   intentionally local. */
@media (min-width: 1121px) {
  .home-page .engine-section {
    height: 737.203125px;
    min-height: 737.203125px;
  }

  .home-page .citation-section {
    height: 901.390625px;
    min-height: 901.390625px;
    padding: 80px 0;
  }

  .home-page .start-section {
    height: 874.390625px;
    min-height: 874.390625px;
  }

  .home-page .services-section {
    height: 959.5px;
    min-height: 959.5px;
  }

  .home-page .why-section {
    height: 859.5px;
    min-height: 859.5px;
    padding: 80px 0;
  }

  .home-page .insights-copy .section-heading em {
    display: block;
  }

  .home-page .insights-copy .section-description,
  .home-page .start-heading .section-description,
  .home-page .services-heading .section-description,
  .home-page .cases-heading .section-description,
  .home-page .faq-layout .section-description {
    letter-spacing: -0.375px;
  }

  .home-page .start-grid {
    margin-top: 48px;
  }

  .home-page .services-grid {
    margin-top: 32px;
  }

  .home-page .service-card {
    height: 622.5px;
    min-height: 622.5px;
    padding-bottom: 28px;
  }

  .home-page .cases-heading {
    width: 1280px;
    max-width: 100%;
    padding-inline: 48px;
  }

  .home-page .cases-heading .section-description {
    font-size: 16px;
  }

  .home-page .why-section > .site-shell {
    width: min(calc(100% - 160px), 1160px);
  }

  .home-page .why-heading {
    max-width: 860px;
  }

  .home-page .why-heading .section-heading {
    font-size: 42px;
    line-height: 52.5px;
    letter-spacing: -1.05px;
  }

  .home-page .why-comparison {
    width: 100%;
    max-width: 1120px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr);
    margin-top: 56px;
  }

  .home-page .why-panel-weak {
    height: 442px;
    min-height: 442px;
    margin-top: 53px;
    padding: 40px 40px 24px 24px;
  }

  .home-page .why-panel-complete {
    height: 548px;
    min-height: 548px;
    margin-left: -32px;
  }

  .home-page .faq-section {
    padding: 64px 0;
  }

  .home-page .faq-layout > div:first-child {
    position: sticky;
    top: 96px;
    align-self: start;
  }

  .home-page .faq-layout .section-heading {
    margin-bottom: 8px;
    letter-spacing: -2.2px;
  }

  .home-page .faq-layout .section-description {
    margin-top: 0;
  }

  .home-page .faq-question {
    line-height: 24px;
  }

  .home-page .faq-answer,
  .home-page .faq-answer p {
    line-height: 25.2px;
  }

  .home-page .faq-answer {
    padding-right: 0;
  }
}

/* Final measured overrides. Keep these last so the reference geometry is not
   shadowed by the older responsive and composition passes above. */
@media (min-width: 1121px) {
  .home-page .hero-stats {
    width: 600px;
    max-width: none;
    flex-wrap: nowrap;
  }

  .lobster-container,
  .academy-container,
  .partner-container {
    width: min(calc(100% - 160px), 1120px);
  }

  .lobster-hero-grid {
    grid-template-columns: minmax(0, 531px) minmax(0, 624px);
    gap: 77px;
  }

  .lobster-hero-copy h1 {
    max-width: 531px;
    font-size: 83.2px;
    line-height: 0.94;
  }

  .lobster-hero-agent {
    top: 75px;
    width: 512px;
  }

  .lobster-hero-terminal {
    bottom: 35px;
    width: 420px;
  }

  .lobster-hero-result {
    top: 15px;
  }

  .lobster-capability-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .academy-hero h1,
  .partner-hero h1 {
    margin-top: 0;
    font-size: 64px;
  }

  .academy-hero h2 {
    max-width: 900px;
    margin-top: 8px;
    font-size: 48px;
    line-height: 1.1;
  }

  .partner-hero h1 {
    font-size: 60px;
  }

  .partner-hero h2 {
    max-width: 1000px;
    margin-top: 8px;
    font-size: 44px;
    line-height: 1.1;
  }

  .partner-rights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* The reference academy and partner pages keep the 58px header in flow and
   use a measured 560px first viewport on desktop. */
@media (min-width: 761px) {
  .academy-reference-page .academy-hero,
  .partner-reference-page .partner-hero {
    height: 560px;
  }
}

/* Industry solution pages follow the reference site's long-form geometry.
   Content and imagery stay brand-owned, while the section rhythm remains
   comparable across every industry entry. */
.industry-reference-page {
  --industry-ink: #171b27;
  --industry-muted: #6f7580;
  --industry-line: #e7e8ee;
  --industry-soft: #f7f5ff;
  color: var(--industry-ink);
  background: #fff;
}

.industry-reference-page .site-footer {
  height: 649.5px;
  min-height: 649.5px;
}

.industry-main {
  overflow: hidden;
}

.industry-noscript-title {
  display: none;
}

.industry-noscript-cta {
  display: none;
}

.industry-section {
  position: relative;
  overflow: hidden;
}

.industry-shell {
  width: min(calc(100% - 160px), 1120px);
  height: 100%;
  margin-inline: auto;
}

.industry-kicker,
.industry-eyebrow,
.industry-panel-label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.industry-kicker::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-right: 9px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.industry-section h2,
.industry-section h3,
.industry-section h4,
.industry-section p {
  margin-top: 0;
}

.industry-section h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 760;
  letter-spacing: -1.2px;
  line-height: 1.16;
}

.industry-section-heading {
  max-width: 820px;
}

.industry-section-heading p,
.industry-about-layout p,
.industry-delivery-copy > p,
.industry-faq-layout > div:first-child p,
.industry-cta-section .industry-section-heading p {
  color: var(--industry-muted);
  font-size: 16px;
  line-height: 1.85;
}

.industry-hero-section {
  height: 905.9px;
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 58, 237, 0.09), transparent 330px),
    linear-gradient(135deg, #fff 0%, #fbfaff 55%, #f1efff 100%);
}

.industry-enterprise-services .industry-hero-section,
.industry-artificial-intelligence .industry-hero-section {
  height: 1105.5px;
}

.industry-factory-manufacturing .industry-hero-section {
  height: 1043.8px;
}

.industry-local-chain .industry-hero-section {
  height: 859.1px;
}

.industry-smart-home .industry-hero-section {
  height: 891.5px;
}

.industry-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: 74px;
}

.industry-hero-copy {
  padding-top: 16px;
}

.industry-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.industry-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--industry-ink);
  font-size: 61px;
  font-weight: 760;
  letter-spacing: -2px;
  line-height: 1.1;
}

.industry-hero-copy h1 em {
  color: var(--brand);
  font-style: normal;
}

.industry-hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--industry-muted);
  font-size: 17px;
  line-height: 1.85;
}

.industry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin-top: 34px;
}

.industry-actions .site-button {
  min-width: 148px;
  min-height: 50px;
}

.industry-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  color: var(--industry-ink);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.industry-text-link svg,
.industry-map-card-top button svg,
.industry-step-list svg,
.industry-path svg,
.industry-network-grid article > b svg {
  width: 17px;
  height: 17px;
}

.industry-metrics {
  display: flex;
  gap: 42px;
  margin-top: 55px;
}

.industry-metrics div {
  display: grid;
  gap: 3px;
}

.industry-metrics strong {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 29px;
  line-height: 1.1;
}

.industry-metrics span {
  color: var(--industry-muted);
  font-size: 12px;
}

.industry-radar {
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 80px rgba(70, 47, 146, 0.14);
  transform: rotate(1.5deg);
}

.industry-radar-top,
.industry-radar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--industry-line);
  padding: 0 20px;
  color: var(--industry-muted);
  font-size: 12px;
}

.industry-radar-top b {
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
}

.industry-radar-screen {
  position: relative;
  height: 450px;
  padding: 30px;
  background:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    #fcfbff;
  background-size: 34px 34px;
}

.industry-radar-title {
  color: var(--industry-ink);
  font-size: 18px;
  font-weight: 750;
}

.industry-radar-lines {
  position: absolute;
  inset: 106px 50px 78px;
  border: 1px solid rgba(124, 58, 237, 0.26);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.industry-radar-lines::before,
.industry-radar-lines::after {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  content: "";
}

.industry-radar-lines::after {
  inset: 86px;
  border-color: rgba(124, 58, 237, 0.2);
}

.industry-radar-lines i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(124, 58, 237, 0.22);
}

.industry-radar-lines i:nth-child(2) {
  transform: rotate(60deg);
}

.industry-radar-lines i:nth-child(3) {
  transform: rotate(-60deg);
}

.industry-radar-lines i:nth-child(4) {
  width: 52%;
  left: 24%;
  transform: rotate(25deg);
}

.industry-radar-nodes {
  position: absolute;
  inset: 155px 100px 127px;
}

.industry-radar-nodes b {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 7px 20px rgba(124, 58, 237, 0.28);
  font-family: var(--font-data);
}

.industry-radar-nodes b:nth-child(1) { top: 28px; left: 20px; }
.industry-radar-nodes b:nth-child(2) { top: 90px; right: 26px; background: var(--data); }
.industry-radar-nodes b:nth-child(3) { right: 90px; bottom: 18px; background: #db2777; }
.industry-radar-nodes b:nth-child(4) { bottom: 58px; left: 70px; background: #0f766e; }

.industry-radar-bottom {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-radar-footer {
  border-top: 1px solid var(--industry-line);
  border-bottom: 0;
}

.industry-radar-footer strong {
  color: var(--brand);
  font-size: 12px;
}

.industry-about-section {
  height: 853.9px;
  background: #fff;
}

.industry-enterprise-services .industry-about-section,
.industry-factory-manufacturing .industry-about-section {
  height: 908.6px;
}

.industry-local-chain .industry-about-section,
.industry-smart-home .industry-about-section,
.industry-artificial-intelligence .industry-about-section {
  height: 883.4px;
}

.industry-about-layout {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.industry-vertical-title {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  min-height: 240px;
  color: var(--brand);
  writing-mode: vertical-rl;
}

.industry-vertical-title span {
  font-size: 18px;
  font-weight: 800;
}

.industry-vertical-title b {
  color: var(--industry-ink);
  font-size: 46px;
  font-weight: 760;
}

.industry-about-layout > div:last-child {
  max-width: 820px;
}

.industry-about-layout h2 {
  margin-top: 18px;
}

.industry-about-layout .industry-large-copy {
  max-width: 770px;
  color: var(--industry-ink);
  font-size: 19px;
  line-height: 1.85;
}

.industry-question-chips {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px minmax(0, 1fr);
  gap: 14px 20px;
  margin-top: 36px;
  color: var(--industry-muted);
  font-size: 13px;
}

.industry-question-chips span {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 11px;
}

.industry-question-chips b {
  color: var(--industry-ink);
  font-weight: 650;
}

.industry-fit-section {
  height: 814.1px;
  background: linear-gradient(180deg, #f7f4ff 0%, #fbfaff 52%, #f4f1ff 100%);
}

.industry-enterprise-services .industry-fit-section {
  height: 1132.2px;
}

.industry-factory-manufacturing .industry-fit-section {
  height: 1153.2px;
}

.industry-local-chain .industry-fit-section,
.industry-smart-home .industry-fit-section {
  height: 1101px;
}

.industry-artificial-intelligence .industry-fit-section {
  height: 909px;
}

.industry-fit-section .industry-shell,
.industry-map-section .industry-shell,
.industry-network-section .industry-shell,
.industry-case-section .industry-shell,
.industry-team-section .industry-shell,
.industry-faq-section .industry-shell,
.industry-cta-section .industry-shell {
  padding-top: 76px;
}

.industry-section-heading h2 {
  margin-top: 17px;
}

.industry-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  margin-top: 50px;
}

.industry-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}

.industry-category {
  display: flex;
  min-height: 106px;
  align-items: flex-end;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 8px;
  padding: 17px;
  color: var(--industry-ink);
  background: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 700;
}

.industry-category:nth-child(2n) {
  transform: translateY(14px);
}

.industry-focus-panel {
  min-height: 300px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(83, 73, 180, 0.1);
}

.industry-focus-panel h3 {
  margin: 18px 0 8px;
  font-size: 25px;
}

.industry-focus-panel p {
  margin-bottom: 18px;
  color: var(--industry-muted);
  font-size: 14px;
  line-height: 1.7;
}

.industry-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tag {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 11px;
}

.industry-focus-panel small {
  display: block;
  margin: 22px 0;
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-focus-panel .site-button {
  min-height: 42px;
  padding-inline: 18px;
}

.industry-map-section {
  height: 1099.3px;
  background: #fff;
}

.industry-enterprise-services .industry-map-section {
  height: 1188.1px;
}

.industry-factory-manufacturing .industry-map-section {
  height: 1207.9px;
}

.industry-local-chain .industry-map-section,
.industry-smart-home .industry-map-section {
  height: 1126.3px;
}

.industry-artificial-intelligence .industry-map-section {
  height: 1219.5px;
}

.industry-map-heading {
  max-width: 760px;
}

.industry-map-card {
  margin-top: 42px;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(28, 31, 49, 0.08);
}

.industry-map-card-top {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--industry-line);
  padding: 0 22px;
}

.industry-map-card-top strong {
  font-size: 17px;
}

.industry-map-card-top span {
  flex: 1;
  color: var(--industry-muted);
  font-size: 12px;
}

.industry-map-card-top button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: var(--brand);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.industry-table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 1.6fr 0.45fr;
  gap: 12px;
  align-items: center;
  min-height: 65px;
  border-bottom: 1px solid var(--industry-line);
  padding: 0 22px;
  color: var(--industry-muted);
  font-size: 13px;
}

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

.industry-table-head {
  min-height: 48px;
  color: var(--industry-ink);
  background: #fafafa;
  font-size: 11px;
  font-weight: 750;
}

.industry-table-row span:first-child {
  color: var(--brand);
  font-weight: 750;
}

.industry-table-row b {
  justify-self: start;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-size: 10px;
}

.industry-delivery-section {
  height: 1023.2px;
  background: #fff;
}

.industry-enterprise-services .industry-delivery-section {
  height: 1060.2px;
}

.industry-factory-manufacturing .industry-delivery-section {
  height: 1087.5px;
}

.industry-local-chain .industry-delivery-section {
  height: 1060.5px;
}

.industry-smart-home .industry-delivery-section {
  height: 1055.1px;
}

.industry-artificial-intelligence .industry-delivery-section {
  height: 1122.3px;
}

.industry-delivery-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 74px;
}

.industry-delivery-copy h2 {
  max-width: 560px;
  margin-top: 18px;
}

.industry-step-list {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.industry-step-list button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid var(--industry-line);
  padding: 0 0 0 2px;
  color: var(--industry-muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.industry-step-list button b {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 11px;
}

.industry-step-list button span {
  flex: 1;
  font-size: 13px;
}

.industry-step-list button svg {
  opacity: 0.55;
}

.industry-step-list button.is-active span,
.industry-step-list button:hover span {
  color: var(--industry-ink);
  font-weight: 750;
}

.industry-delivery-card {
  min-height: 520px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 12px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 255, 0.94)),
    url("/assets/image2-site/audit-report-image2-20260630-ai2-light.webp") center / cover;
  box-shadow: 0 22px 62px rgba(83, 73, 180, 0.1);
}

.industry-delivery-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.industry-delivery-card > p {
  max-width: 530px;
  color: var(--industry-muted);
  font-size: 14px;
  line-height: 1.8;
}

.industry-delivery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.industry-delivery-stats div {
  display: grid;
  gap: 5px;
  border-left: 2px solid var(--brand);
  padding-left: 11px;
}

.industry-delivery-stats strong {
  font-size: 13px;
}

.industry-delivery-stats span {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-delivery-console {
  display: grid;
  gap: 10px;
  margin-top: 56px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--industry-muted);
  font-family: var(--font-data);
  font-size: 11px;
}

.industry-delivery-console b {
  color: var(--brand-dark);
  font-size: 13px;
}

.industry-delivery-console i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.industry-delivery-console i:nth-child(3) { width: 88%; background: #ddd6fe; }
.industry-delivery-console i:nth-child(4) { width: 64%; background: #bfdbfe; }
.industry-delivery-console i:nth-child(5) { width: 42%; background: #fbcfe8; }

.industry-network-section {
  height: 962.1px;
  background: #fff;
}

.industry-enterprise-services .industry-network-section {
  height: 989.1px;
}

.industry-factory-manufacturing .industry-network-section {
  height: 1172.5px;
}

.industry-local-chain .industry-network-section,
.industry-smart-home .industry-network-section {
  height: 989.1px;
}

.industry-artificial-intelligence .industry-network-section {
  height: 1018.7px;
}

.industry-network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.industry-network-grid article {
  position: relative;
  min-height: 242px;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.industry-network-grid article > span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 750;
}

.industry-network-grid article h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.industry-network-grid article p {
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.75;
}

.industry-network-grid article > b {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--brand);
}

.industry-weight-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 48px;
  color: var(--industry-muted);
  font-size: 12px;
}

.industry-weight-row strong {
  color: var(--industry-ink);
  font-size: 14px;
}

.industry-weight-row span {
  display: grid;
  gap: 7px;
}

.industry-weight-row i {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), #c4b5fd);
}

.industry-case-section {
  height: 1202.7px;
  background: #fff;
}

.industry-enterprise-services .industry-case-section {
  height: 1239.4px;
}

.industry-factory-manufacturing .industry-case-section {
  height: 1319.7px;
}

.industry-local-chain .industry-case-section {
  height: 1301.4px;
}

.industry-smart-home .industry-case-section {
  height: 1257.8px;
}

.industry-artificial-intelligence .industry-case-section {
  height: 1170.2px;
}

.industry-case-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.25fr 0.7fr;
  gap: 20px;
  margin-top: 44px;
}

.industry-case-profile,
.industry-case-actions,
.industry-case-result {
  min-height: 620px;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
}

.industry-case-profile {
  display: grid;
  align-content: start;
  gap: 23px;
  background: #fafafa;
}

.industry-case-profile > div {
  display: grid;
  gap: 5px;
}

.industry-case-profile small {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-case-profile strong {
  font-size: 15px;
}

.industry-case-profile p {
  margin: 0;
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.7;
}

.industry-case-actions h3 {
  margin-bottom: 28px;
  font-size: 22px;
}

.industry-case-actions article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  min-height: 106px;
  border-bottom: 1px solid var(--industry-line);
  padding: 0 0 22px;
  margin-bottom: 22px;
}

.industry-case-actions article > b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-size: 11px;
}

.industry-case-actions h4 {
  margin: 3px 0 6px;
  font-size: 15px;
}

.industry-case-actions p {
  margin: 0;
  color: var(--industry-muted);
  font-size: 12px;
  line-height: 1.7;
}

.industry-case-result {
  display: grid;
  align-content: start;
  gap: 7px;
  background: #19152d;
  color: #fff;
}

.industry-case-result > span {
  margin-bottom: 28px;
  color: #c4b5fd;
  font-size: 11px;
}

.industry-case-result strong {
  margin-top: 16px;
  color: #fff;
  font-family: var(--font-data);
  font-size: 38px;
}

.industry-case-result small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.industry-path-section {
  height: 358.2px;
  background: #fff;
}

.industry-artificial-intelligence .industry-path-section {
  height: 386.8px;
}

.industry-path-section .industry-shell {
  padding-top: 76px;
}

.industry-path-section h2 {
  display: inline-block;
  margin: 17px 20px 0 0;
  font-size: 30px;
}

.industry-path-section > .industry-shell > p {
  display: inline-block;
  max-width: 620px;
  margin: 0;
  color: var(--industry-muted);
  font-size: 13px;
}

.industry-path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.industry-path div {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  color: var(--industry-ink);
  font-size: 12px;
  font-weight: 700;
}

.industry-path b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-size: 10px;
}

.industry-path svg {
  color: var(--brand);
}

.industry-team-section {
  height: 1289.8px;
  background: linear-gradient(180deg, #fbfaff 0%, #f7f4ff 48%, #fff 100%);
}

.industry-enterprise-services .industry-team-section,
.industry-factory-manufacturing .industry-team-section,
.industry-local-chain .industry-team-section {
  height: 1348.1px;
}

.industry-smart-home .industry-team-section {
  height: 1360.2px;
}

.industry-artificial-intelligence .industry-team-section {
  height: 1477.5px;
}

.industry-team-topline {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.industry-team-topline div {
  display: grid;
  gap: 4px;
}

.industry-team-topline strong {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 28px;
}

.industry-team-topline span {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-team-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  margin-top: 42px;
}

.industry-team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.industry-team-cards article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  min-height: 165px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.industry-team-cards article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 18px;
  font-weight: 800;
}

.industry-team-cards h3 {
  margin: 2px 0 3px;
  font-size: 15px;
}

.industry-team-cards strong {
  color: var(--brand);
  font-size: 11px;
}

.industry-team-cards p {
  margin: 10px 0 0;
  color: var(--industry-muted);
  font-size: 12px;
  line-height: 1.65;
}

.industry-assets {
  min-height: 345px;
  border: 1px solid rgba(124, 58, 237, 0.13);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.industry-assets > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.industry-assets b {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 11px;
}

.industry-assets img {
  display: block;
  width: 100%;
  height: 178px;
  border-radius: 6px;
  object-fit: cover;
}

.industry-faq-section {
  height: 771.4px;
  background: #fff;
}

.industry-faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 76px;
}

.industry-faq-layout > div:first-child h2 {
  margin-top: 18px;
}

.industry-faq-layout > div:first-child p {
  max-width: 340px;
  margin-top: 24px;
}

.industry-faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--industry-line);
}

.industry-faq-list details {
  border-bottom: 1px solid var(--industry-line);
}

.industry-faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--industry-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

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

.industry-faq-list summary span {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.industry-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.industry-faq-list details p {
  max-width: 680px;
  margin: -2px 0 20px;
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.75;
}

.industry-cta-section {
  height: 1101.9px;
  background: #fff;
}

.industry-enterprise-services .industry-cta-section,
.industry-factory-manufacturing .industry-cta-section,
.industry-local-chain .industry-cta-section,
.industry-smart-home .industry-cta-section {
  height: 1139.1px;
}

.industry-artificial-intelligence .industry-cta-section {
  height: 1106.3px;
}

.industry-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.industry-cta-grid article {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(83, 73, 180, 0.1);
}

.industry-cta-grid article > b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  font-family: var(--font-data);
}

.industry-cta-grid h3 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.35;
}

.industry-cta-grid p {
  min-height: 43px;
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.65;
}

.industry-cta-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 22px;
  padding: 0;
  color: var(--industry-ink);
  font-size: 12px;
  list-style: none;
}

.industry-cta-grid li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "✓";
}

.industry-cta-grid .site-button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding-inline: 14px;
  font-size: 13px;
}

.industry-final-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 26px;
  color: #fff;
  background: #111827;
}

.industry-final-banner span {
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 750;
}

.industry-final-banner h3 {
  max-width: 700px;
  margin: 15px 0 8px;
  font-size: 26px;
  line-height: 1.25;
}

.industry-final-banner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.7;
}

.industry-final-banner img {
  width: 100%;
  height: 168px;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 760px) {
  .industry-reference-page .site-footer {
    height: 954px;
    min-height: 954px;
  }

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

  .industry-section {
    height: auto !important;
    min-height: 0;
  }

  .industry-hero-section {
    min-height: 890px;
  }

  .industry-hero-layout,
  .industry-about-layout,
  .industry-delivery-layout,
  .industry-case-layout,
  .industry-team-layout,
  .industry-faq-layout {
    display: block;
  }

  .industry-hero-layout {
    padding: 76px 0 70px;
  }

  .industry-hero-copy h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .industry-hero-copy > p {
    font-size: 15px;
  }

  .industry-actions {
    align-items: stretch;
  }

  .industry-actions .site-button {
    width: 100%;
  }

  .industry-text-link {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .industry-metrics {
    justify-content: space-between;
    gap: 12px;
    margin-top: 40px;
  }

  .industry-metrics strong {
    font-size: 22px;
  }

  .industry-radar {
    margin-top: 55px;
    transform: none;
  }

  .industry-radar-screen {
    height: 300px;
  }

  .industry-radar-lines {
    inset: 80px 28px 60px;
  }

  .industry-radar-nodes {
    inset: 105px 66px 85px;
  }

  .industry-about-layout,
  .industry-fit-section .industry-shell,
  .industry-map-section .industry-shell,
  .industry-network-section .industry-shell,
  .industry-case-section .industry-shell,
  .industry-team-section .industry-shell,
  .industry-faq-section .industry-shell,
  .industry-cta-section .industry-shell {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .industry-vertical-title {
    display: none;
  }

  .industry-section h2 {
    font-size: 32px;
  }

  .industry-about-layout .industry-large-copy {
    font-size: 17px;
  }

  .industry-question-chips {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .industry-fit-layout,
  .industry-network-grid,
  .industry-cta-grid {
    grid-template-columns: 1fr;
  }

  .industry-fit-layout {
    margin-top: 30px;
  }

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

  .industry-category:nth-child(2n) {
    transform: none;
  }

  .industry-focus-panel {
    margin-top: 16px;
  }

  .industry-map-card {
    overflow-x: auto;
  }

  .industry-map-card-top {
    min-width: 690px;
  }

  .industry-table {
    min-width: 690px;
  }

  .industry-table-row {
    grid-template-columns: 0.8fr 1.25fr 1.6fr 0.45fr;
  }

  .industry-delivery-card {
    min-height: 480px;
    margin-top: 36px;
    padding: 24px;
  }

  .industry-delivery-stats {
    gap: 8px;
  }

  .industry-network-grid {
    margin-top: 30px;
  }

  .industry-network-grid article {
    min-height: 190px;
  }

  .industry-weight-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .industry-weight-row strong {
    grid-column: 1 / -1;
  }

  .industry-case-profile,
  .industry-case-actions,
  .industry-case-result {
    min-height: 0;
    margin-top: 16px;
  }

  .industry-case-profile {
    gap: 16px;
  }

  .industry-case-result {
    min-height: 330px;
  }

  .industry-path-section .industry-shell {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .industry-path-section h2,
  .industry-path-section > .industry-shell > p {
    display: block;
  }

  .industry-path-section > .industry-shell > p {
    margin-top: 12px;
  }

  .industry-path {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .industry-path div {
    grid-template-columns: 35px minmax(0, 1fr);
    min-height: 42px;
  }

  .industry-path svg {
    display: none;
  }

  .industry-team-topline {
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
  }

  .industry-team-topline strong {
    font-size: 23px;
  }

  .industry-team-cards {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .industry-assets {
    margin-top: 16px;
  }

  .industry-faq-layout > div:first-child p {
    max-width: none;
    margin-bottom: 36px;
  }

  .industry-faq-list summary {
    min-height: 58px;
    font-size: 13px;
  }

  .industry-cta-grid {
    margin-top: 30px;
  }

  .industry-cta-grid article {
    min-height: 380px;
  }

  .industry-final-banner {
    display: block;
  }

  .industry-final-banner img {
    height: 160px;
    margin-top: 20px;
  }
}

/* Keep the desktop reference viewport authoritative after all responsive
   overrides. Mobile remains governed by the natural-flow rules above. */
@media (min-width: 761px) {
  .academy-reference-page .academy-hero,
  .partner-reference-page .partner-hero {
    height: 630px;
    min-height: 630px;
  }

  .partner-reference-page .partner-hero-copy {
    min-height: 630px;
  }
}

@media (max-width: 1120px) {
  .home-page .hero-stats {
    width: 100%;
    max-width: 600px;
  }
}

@media (min-width: 1121px) {
  .partner-rights-section .partner-container {
    grid-template-columns: 486px 594px;
    gap: 40px;
  }

  .partner-rights-intro-card {
    min-height: 605px;
  }
}

@media (max-width: 760px) {
  .partner-rights-section .partner-container {
    display: block;
  }

  .partner-rights-intro-card {
    min-height: 0;
  }

  .partner-rights-grid {
    grid-template-columns: 1fr;
  }

  .partner-action-grid {
    grid-template-columns: 1fr;
  }

  .partner-action-grid b:last-child {
    grid-column: auto;
  }
}

/* Final reference geometry pass. These selectors intentionally come last so
   the long-form pages use the same composition as the reference site. */
.academy-reference-page .site-header,
.partner-reference-page .site-header,
.reference-hero-page .site-header,
.reference-pricing-page .site-header,
.about-page.reference-about-page .site-header {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.academy-reference-page .site-header,
.partner-reference-page .site-header {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
}

.academy-reference-page .academy-main,
.partner-reference-page .partner-main {
  padding-top: 0;
}

.academy-reference-page .site-header.is-scrolled,
.partner-reference-page .site-header.is-scrolled,
.reference-hero-page .site-header.is-scrolled,
.reference-pricing-page .site-header.is-scrolled,
.about-page.reference-about-page .site-header.is-scrolled {
  border-bottom-color: rgba(18, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.academy-section-title.is-centered,
.partner-section-title.is-centered {
  width: 100%;
  max-width: none;
  text-align: center;
}

.academy-section-title.is-centered h2,
.partner-section-title.is-centered h2 {
  margin: 0;
  font-size: 36px;
  line-height: 54px;
}

.academy-section-title.is-centered p {
  margin: 16px 0 0;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 24px;
}

.academy-course-section {
  padding: 112px 0;
}

.academy-course-grid {
  gap: 24px;
  margin-top: 56px;
}

.academy-course-card {
  min-height: 466.234375px;
  height: 466.234375px;
  border-radius: 12px;
  padding: 32px;
}

.academy-card-index {
  display: none;
}

.academy-course-card::before {
  width: 24px;
  height: 18px;
  margin-bottom: 16px;
  border: 2px solid var(--reference-accent);
  border-radius: 3px;
  content: "";
  box-shadow: inset 0 -4px 0 var(--brand-soft);
}

.academy-course-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 30px;
}

.academy-course-card > strong {
  font-size: 13px;
  line-height: 20px;
}

.academy-course-card > p {
  min-height: 0;
  margin: 4px 0 20px;
  font-size: 14px;
  line-height: 21px;
}

.academy-course-card ul {
  gap: 10px;
  margin: 0 0 32px;
  font-size: 13px;
  line-height: 20px;
}

.academy-course-card button {
  min-height: 36px;
  border-radius: 999px;
  font-size: 14px;
}

.academy-mentor-section {
  padding: 112px 0;
}

.academy-mentor-layout {
  display: block;
  width: min(calc(100% - 256px), 1024px);
  margin-inline: auto;
}

.academy-mentor-layout > .academy-section-title {
  width: 100%;
  max-width: none;
  margin-bottom: 56px;
  text-align: center;
}

.academy-mentor-stage {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: none;
}

.academy-mentor-stage img {
  aspect-ratio: 16 / 9;
}

.academy-mentor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.academy-mentor-card {
  display: block;
  min-height: 224px;
  height: 224px;
  border-top: 0;
  padding: 0;
  text-align: center;
}

.academy-mentor-card > span {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--reference-accent);
  background: var(--brand-soft);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
}

.academy-mentor-card > div {
  display: block;
}

.academy-mentor-card h3 {
  margin: 0 0 2px;
  font-size: 18px;
  line-height: 27px;
}

.academy-mentor-card strong {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
}

.academy-mentor-card small {
  display: block;
  margin-top: 2px;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 20px;
}

.academy-mentor-card p {
  margin: 8px 0 0;
  color: var(--reference-ink);
  font-size: 14px;
  line-height: 1.7;
}

.academy-benefit-section {
  padding: 80px 0;
}

.academy-benefit-layout {
  display: block;
  width: min(calc(100% - 384px), 896px);
  margin-inline: auto;
}

.academy-benefit-layout > .academy-section-title {
  width: 100%;
  max-width: none;
  margin-bottom: 48px;
  text-align: center;
}

.academy-benefit-list {
  display: block;
  width: 100%;
}

.academy-benefit-list p {
  display: flex;
  height: 63px;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  border: 0;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  font-size: 15px;
  line-height: 23px;
}

.academy-benefit-list p:last-child {
  margin-bottom: 0;
}

.academy-benefit-list b {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--reference-accent);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
}

.partner-rights-intro-card .partner-section-title h2 {
  margin-top: 12px;
  font-size: 42px;
  line-height: 46px;
}

.partner-metrics-section {
  color: var(--reference-ink);
  background: #fff;
}

.partner-metrics strong {
  color: var(--reference-accent);
}

.partner-advantage-section {
  padding: 112px 0;
  background: #fff;
}

.partner-advantage-layout {
  display: block;
  width: min(calc(100% - 160px), 1120px);
  margin-inline: auto;
}

.partner-advantage-layout > .partner-section-title,
.partner-process-section > .partner-container > .partner-section-title,
.partner-condition-layout > .partner-section-title {
  width: 100%;
  max-width: none;
  text-align: center;
}

.partner-advantage-layout > .partner-section-title h2,
.partner-process-section > .partner-container > .partner-section-title h2,
.partner-condition-layout > .partner-section-title h2 {
  margin: 0;
  font-size: 36px;
  line-height: 54px;
}

.partner-advantage-layout > .partner-section-title p,
.partner-process-section > .partner-container > .partner-section-title p {
  margin: 4px 0 0;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 24px;
}

.partner-advantage-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.partner-advantage-grid article {
  min-height: 170px;
  height: 170px;
  border: 0;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 23, 34, 0.05);
}

.partner-advantage-grid i {
  display: block;
  font-size: 0;
}

.partner-advantage-grid i::before {
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--reference-accent);
  border-radius: 50%;
  content: "";
}

.partner-advantage-grid h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  line-height: 24px;
}

.partner-advantage-grid p {
  font-size: 14px;
  line-height: 1.7;
}

.partner-process-section {
  padding: 112px 0;
}

.partner-process-section > .partner-container {
  width: min(calc(100% - 512px), 768px);
  margin-inline: auto;
}

.partner-process-section .partner-section-title > span,
.partner-condition-layout .partner-section-title > span,
.partner-advantage-layout .partner-section-title > span {
  display: none;
}

.partner-process-grid {
  display: block;
  width: 100%;
  margin-top: 56px;
}

.partner-process-grid article {
  position: relative;
  display: grid;
  min-height: 87px;
  height: 87px;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 24px;
  border: 0;
  padding: 0 0 32px;
}

.partner-process-grid article::after {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 19px;
  width: 1px;
  background: var(--reference-line);
  content: "";
}

.partner-process-grid article:last-child::after {
  display: none;
}

.partner-process-grid b {
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  grid-column: 1;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 50%;
  color: var(--reference-accent);
  background: var(--brand-soft);
  font-size: 13px;
  line-height: 1;
}

.partner-process-grid h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 6px 0 4px;
  font-size: 16px;
  line-height: 24px;
}

.partner-process-grid p {
  grid-column: 2;
  grid-row: 2;
  font-size: 14px;
  line-height: 21px;
}

.partner-condition-section {
  padding: 80px 0;
}

.partner-condition-layout {
  display: block;
  width: min(calc(100% - 512px), 768px);
  margin-inline: auto;
}

.partner-condition-layout > .partner-section-title {
  margin-bottom: 40px;
}

.partner-condition-list {
  display: grid;
  gap: 16px;
}

.partner-condition-list p {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  font-size: 15px;
  line-height: 24px;
}

.partner-condition-list p:not(.partner-condition-note)::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--reference-accent);
  content: "";
}

.partner-condition-list .partner-condition-note {
  display: block;
  min-height: 0;
  padding: 8px 0 0;
  color: var(--reference-muted);
  background: transparent;
  font-size: 14px;
  line-height: 1.7;
}

.partner-condition-list .site-button {
  width: 164px;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .academy-section-title.is-centered h2,
  .partner-advantage-layout > .partner-section-title h2,
  .partner-process-section > .partner-container > .partner-section-title h2,
  .partner-condition-layout > .partner-section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .academy-course-grid {
    margin-top: 40px;
  }

  .academy-course-card {
    height: auto;
    min-height: 443px;
  }

  .academy-mentor-layout,
  .academy-benefit-layout,
  .partner-advantage-layout,
  .partner-process-section > .partner-container,
  .partner-condition-layout {
    width: calc(100% - 32px);
  }

  .academy-reference-page .academy-main,
  .partner-reference-page .partner-main {
    padding-top: 0;
  }

  .academy-mentor-cards,
  .partner-advantage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .academy-mentor-card {
    height: auto;
    min-height: 224px;
  }

  .academy-benefit-list p {
    height: auto;
    min-height: 63px;
  }

  .partner-advantage-grid article {
    height: auto;
    min-height: 170px;
  }
}

/* Strict visual parity for the reference card compositions. */
.academy-course-card,
.academy-course-card.is-featured {
  border-radius: 12px;
  box-shadow: none;
}

.academy-course-card::before {
  display: none;
}

.academy-course-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0 16px;
  color: var(--reference-accent);
}

.academy-course-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.academy-course-card ul {
  gap: 10px;
}

.academy-course-card li {
  align-items: flex-start;
  gap: 8px;
}

.academy-course-card li::before {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  margin-top: 8px;
  border-radius: 50%;
  color: transparent;
  background: var(--reference-accent);
  content: "";
}

.academy-benefit-list p {
  box-shadow: none;
}

.academy-benefit-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--reference-accent);
}

.academy-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.partner-advantage-grid article {
  min-height: 0;
  height: auto;
  border: 0;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: none;
}

.partner-advantage-grid i {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0 16px;
  color: var(--reference-accent);
  font-size: 0;
  font-style: normal;
}

.partner-advantage-grid i::before {
  display: none;
  content: none;
}

.partner-advantage-grid i svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.partner-advantage-grid h3 {
  margin: 0 0 8px;
}

.partner-advantage-grid p {
  margin: 0;
}

/* Final homepage parity pass: keep the service cards in natural document flow. */
.home-page .principle-intro .section-heading,
.home-page .insights-copy .section-heading,
.home-page .engine-copy .section-heading,
.home-page .citation-layout .section-heading,
.home-page .start-heading .section-heading,
.home-page .services-heading .section-heading,
.home-page .cases-heading .section-heading,
.home-page .why-heading .section-heading {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -2.2px;
}

.home-page .services-heading .section-description {
  width: 900px;
  max-width: 100%;
}

.home-page .start-heading {
  max-width: 896px;
}

.home-page .service-card {
  display: flex;
  height: 623px;
  min-height: 623px;
  flex-direction: column;
  padding: 0 40px 30px;
}

.home-page .service-card img {
  position: static;
  width: calc(100% + 80px);
  height: 300px;
  flex: 0 0 300px;
  margin: 0 -40px;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: normal;
}

.home-page .service-card-body {
  flex: 1 1 auto;
  padding: 0;
}

.home-page .service-card h3 {
  margin: 4px 0 6px;
  font-size: 26px;
}

.home-page .service-card ul {
  margin-top: 12px;
  gap: 8px;
}

.home-page .service-card > a {
  flex: 0 0 40px;
  min-height: 40px;
  margin: 24px 0 0;
}

.home-page .service-card::after {
  height: 4px;
}

@media (min-width: 1121px) {
  .site-footer-cta-strip-inner {
    line-height: 0;
  }

  .site-footer-cta-button {
    margin: 0 0 0 32px;
  }
}

@media (max-width: 1120px) {
  .home-page .service-card {
    height: auto;
    min-height: 0;
    padding: 0 32px 24px;
  }

.home-page .service-card img {
  width: calc(100% + 64px);
  height: 285px;
  flex-basis: 285px;
  margin-inline: -32px;
  }
}

@media (max-width: 760px) {
  .home-page .service-card {
    min-height: 590px;
    padding: 0 24px 24px;
  }

  .home-page .service-card img {
    width: calc(100% + 48px);
    height: 260px;
    flex-basis: 260px;
    margin-inline: -24px;
  }
}

@media (max-width: 760px) {
  .partner-reference-page .site-header {
    position: relative;
  }

  .partner-reference-page .partner-main {
    padding-top: 0;
  }

  .partner-reference-page .partner-hero {
    height: auto;
    min-height: 504px;
  }

  .partner-reference-page .partner-hero-copy {
    min-height: 504px;
    padding: 48px 20px 32px;
  }

  .partner-reference-page .partner-hero h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: 42px;
    line-height: 1.08;
  }

  .partner-reference-page .partner-hero h2 {
    max-width: 100%;
    margin-top: 8px;
    font-size: 32px;
    line-height: 1.2;
  }

  .partner-reference-page .partner-hero p {
    margin-top: 18px;
    font-size: 15px;
  }

  .partner-reference-page .partner-hero-actions {
    margin-top: 28px;
  }

  .partner-reference-page .partner-match-banner {
    margin-top: 42px;
  }
}

/* Last parity correction: the reference homepage intentionally wraps the
   third hero metric below the first two on desktop. */
@media (min-width: 1121px) {
  .home-page .hero-stats {
    display: flex;
    width: 418px;
    max-width: 418px;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 40px;
  }

  .home-page .hero-stat {
    flex: 0 0 153px;
  }

  .home-page .hero-stat:nth-child(3) {
    flex-basis: 133px;
  }
}

/* The partner page uses the reference site's natural mobile flow. The
   desktop section heights remain fixed to preserve the desktop composition. */
@media (max-width: 760px) {
  .partner-reference-page .partner-rights-section,
  .partner-reference-page .partner-metrics-section,
  .partner-reference-page .partner-showcase-section,
  .partner-reference-page .partner-advantage-section,
  .partner-reference-page .partner-process-section,
  .partner-reference-page .partner-condition-section {
    height: auto;
    min-height: 0;
  }

  .partner-reference-page .partner-rights-section {
    padding: 64px 0;
  }

  .partner-reference-page .partner-metrics-section {
    min-height: 225px;
  }

  .partner-reference-page .partner-showcase-section {
    padding: 0 16px 64px;
  }

  .partner-reference-page .partner-showcase-section img {
    width: 100%;
    height: auto;
  }

  .partner-reference-page .partner-advantage-section,
  .partner-reference-page .partner-process-section,
  .partner-reference-page .partner-condition-section {
    padding: 64px 0;
  }
}

/* Final mobile reference pass.
   The source site keeps a 58px header and a 24px content rail on phones.
   These rules intentionally come last so older desktop parity overrides
   cannot leak into the mobile composition. */
@media (max-width: 760px) {
  .home-page .site-header,
  .home-page .site-nav-inner,
  .reference-hero-page .site-header,
  .reference-hero-page .site-nav-inner,
  .reference-pricing-page .site-header,
  .reference-pricing-page .site-nav-inner,
  .reference-about-page .site-header,
  .reference-about-page .site-nav-inner,
  .reference-partner-page .site-header,
  .reference-partner-page .site-nav-inner {
    height: 58px;
  }

  .home-page .site-nav-inner,
  .reference-hero-page .site-nav-inner,
  .reference-pricing-page .site-nav-inner,
  .reference-about-page .site-nav-inner,
  .reference-partner-page .site-nav-inner {
    width: calc(100% - 48px);
  }

  .home-page .site-brand,
  .reference-hero-page .site-brand,
  .reference-pricing-page .site-brand,
  .reference-about-page .site-brand,
  .reference-partner-page .site-brand {
    width: auto;
    max-width: 180px;
    font-size: 14px;
  }

  .home-page .site-brand img,
  .reference-hero-page .site-brand img,
  .reference-pricing-page .site-brand img,
  .reference-about-page .site-brand img,
  .reference-partner-page .site-brand img {
    width: 25px;
    height: 25px;
  }

  .home-page .site-menu-button,
  .reference-hero-page .site-menu-button,
  .reference-pricing-page .site-menu-button,
  .reference-about-page .site-menu-button,
  .reference-partner-page .site-menu-button {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .home-page .site-menu-button svg,
  .reference-hero-page .site-menu-button svg,
  .reference-pricing-page .site-menu-button svg,
  .reference-about-page .site-menu-button svg,
  .reference-partner-page .site-menu-button svg {
    width: 22px;
    height: 22px;
  }

  .home-page .site-mobile-menu,
  .reference-hero-page .site-mobile-menu,
  .reference-pricing-page .site-mobile-menu,
  .reference-about-page .site-mobile-menu,
  .reference-partner-page .site-mobile-menu {
    top: 58px;
  }

  .home-page .hero-main {
    width: calc(100% - 48px);
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
    padding: 30px 0 500px;
    transform: none;
  }

  .home-page .hero-copy {
    width: 100%;
    max-width: none;
    transform: none;
  }

  .home-page .hero-copy h1 {
    width: 100%;
    max-width: none;
    font-size: 42px;
    line-height: 1.1;
    overflow-wrap: normal;
  }

  .home-page .hero-lead {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.25;
  }

  .home-page .hero-description {
    width: 100%;
    max-width: none;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.9;
  }

  .home-page .hero-actions {
    gap: 16px;
    margin-top: 30px;
  }

  .home-page .hero-actions .site-button,
  .home-page .hero-actions .site-button-primary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .home-page .hero-stats {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-top: 32px;
  }

  .home-page .hero-stat {
    min-width: 0;
  }

  .home-page .hero-stat strong {
    font-size: 30px;
  }

  .home-page .hero-stat span {
    margin-top: 7px;
    font-size: 12px;
  }

  .home-page .hero-audit {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 44px;
    padding: 24px 18px;
    border-radius: 18px;
    transform: none;
  }

  .home-page .hero-audit-head strong {
    max-width: 220px;
    font-size: 15px;
    line-height: 1.5;
  }

  .home-page .platform-pills {
    gap: 7px;
    margin-top: 14px;
    padding-bottom: 18px;
  }

  .home-page .platform-pill {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .home-page .audit-input,
  .home-page .audit-brand {
    min-height: 52px;
    font-size: 12px;
  }

  .home-page .hero-audit > .site-button {
    width: 140px;
    min-width: 140px;
    min-height: 48px;
    margin: 16px 0 0 auto;
  }

  .home-page .hero-capabilities {
    position: static;
    height: auto;
    min-height: 108px;
    margin-top: 24px;
    overflow-x: auto;
  }

  .home-page .hero-capabilities-inner {
    width: max-content;
    min-width: 100%;
    height: 108px;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    padding: 22px 0;
  }

  .home-page .hero-capability {
    min-width: 150px;
    padding: 14px;
  }
}

/* Final secondary-page mobile calibration.
   Keep the reference geometry while retaining the product's existing logo,
   copy, routes, and application flow. */
@media (max-width: 760px) {
  /* The engine hero keeps both actions on one line on the reference site. */
  .engine-detail-page .page-hero h1,
  .service-detail-page .page-hero h1 {
    line-height: 1.1;
  }

  .engine-detail-page .page-hero-grid {
    transform: translateY(-44px);
  }

  .engine-detail-page .page-hero h2 {
    max-width: 342px;
    font-size: 28px;
    line-height: 1.1;
  }

  .service-detail-page .page-hero .site-shell {
    width: calc(100% - 48px);
  }

  .service-detail-page .page-hero-grid {
    transform: translateY(-44px);
  }

  .service-detail-page .page-hero h2 {
    margin-top: 3px;
    line-height: 1.1;
  }

  .service-detail-page .page-hero p {
    margin-top: 24px;
  }

  .service-detail-page .page-hero h1 {
    position: relative;
    max-width: 297px;
    margin-inline: auto;
    white-space: nowrap;
    transform: translateY(18px);
  }

  .service-detail-page .page-hero h2 {
    position: relative;
    max-width: 328px;
    margin-inline: auto;
    transform: translateY(23px);
    white-space: nowrap;
  }

  .service-detail-page .page-hero p {
    position: relative;
    transform: translateY(23px);
  }

  .engine-detail-page .page-hero-actions,
  .service-detail-page .page-hero-actions {
    display: flex;
    width: max-content;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 15px;
    margin-inline: auto;
  }

  .engine-detail-page .page-hero-actions {
    margin-top: 49px;
  }

  .service-detail-page .page-hero-actions {
    margin-top: 43px;
  }

  .engine-detail-page .page-hero-actions .site-button,
  .service-detail-page .page-hero-actions .site-button {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }

  .engine-detail-page .page-hero-actions .site-button:first-child {
    width: 126px;
  }

  .engine-detail-page .page-hero-actions .site-button:nth-child(2) {
    width: 156px;
  }

  /* The service page uses the same compact two-button hero rhythm. */
  .service-detail-page .page-hero-actions .site-button:first-child {
    width: 166px;
  }

  .service-detail-page .page-hero-actions .site-button:nth-child(2) {
    width: 156px;
  }

  /* The comparison table starts slightly lower than the title block. */
  .pricing-detail-page .pricing-title-section > div {
    transform: translateY(-20px);
  }

  .pricing-detail-page .pricing-title-section h1 {
    width: 342px;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .pricing-detail-page .pricing-matrix-scroll {
    padding-top: 13px;
  }

  /* About uses the reference document's narrower phone rail and smaller
     editorial type scale. */
  .reference-about-page .reference-content-shell {
    width: calc(100% - 48px);
  }

  body.reference-about-page .reference-subpage-title h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  body.reference-about-page .reference-about-content {
    padding-top: 23px;
  }

  body.reference-about-page .reference-document h2 {
    font-size: 24px;
    line-height: 1.5;
  }

  body.reference-about-page .reference-document h3 {
    font-size: 18px;
  }

  /* Partner hero: preserve the reference's 24px rail, compact type, and
     wide CTA pair without changing the partner copy. */
  .partner-reference-page .partner-hero {
    min-height: 0;
  }

  .partner-reference-page .partner-hero-copy {
    display: block;
    min-height: 0;
    padding: 78px 24px 48px;
  }

  .partner-reference-page .partner-hero h1 {
    max-width: 342px;
    margin: 0;
    font-size: 36px;
    line-height: 1.1;
  }

  .partner-reference-page .partner-hero h2 {
    max-width: 342px;
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.1;
  }

  .partner-reference-page .partner-hero p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .partner-reference-page .partner-hero-actions {
    display: flex;
    width: 327px;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 47px;
  }

  .partner-reference-page .partner-hero-actions .site-button {
    width: 156px;
    min-width: 0;
    flex: 0 0 156px;
  }

  .partner-reference-page .partner-match-banner {
    display: flex;
    width: 327px;
    min-width: 0;
    min-height: 91px;
    margin: 64px 0 0;
    padding: 14px 18px;
    line-height: 1.5;
    text-align: center;
  }
}

/* Desktop reference geometry lock.
   Keep the existing product mark and copy, while matching the reference
   header rail and the measured desktop section coordinates. */
@media (min-width: 1121px) {
  .home-page .site-nav-inner,
  .reference-hero-page .site-nav-inner,
  .reference-pricing-page .site-nav-inner,
  .reference-about-page .site-nav-inner,
  .reference-partner-page .site-nav-inner,
  .partner-reference-page .site-nav-inner,
  .academy-reference-page .site-nav-inner {
    position: relative;
    width: calc(100% - 48px);
    max-width: none;
    gap: 0;
  }

  .home-page .site-brand,
  .reference-hero-page .site-brand,
  .reference-pricing-page .site-brand,
  .reference-about-page .site-brand,
  .reference-partner-page .site-brand,
  .partner-reference-page .site-brand,
  .academy-reference-page .site-brand {
    position: absolute;
    left: 0;
  }

  .home-page .site-nav-links,
  .reference-hero-page .site-nav-links,
  .reference-pricing-page .site-nav-links,
  .reference-about-page .site-nav-links,
  .reference-partner-page .site-nav-links,
  .partner-reference-page .site-nav-links,
  .academy-reference-page .site-nav-links {
    position: absolute;
    top: 0;
    left: 204px;
    display: flex;
    height: 58px;
    width: 848px;
    flex: 0 0 848px;
    justify-content: space-between;
    gap: 0;
    margin-left: 0;
  }

  .home-page .site-nav-actions,
  .reference-hero-page .site-nav-actions,
  .reference-pricing-page .site-nav-actions,
  .reference-about-page .site-nav-actions,
  .reference-partner-page .site-nav-actions,
  .partner-reference-page .site-nav-actions,
  .academy-reference-page .site-nav-actions {
    position: absolute;
    right: 0;
    margin-left: 0;
  }

  .home-page .site-nav-cta,
  .reference-hero-page .site-nav-cta,
  .reference-pricing-page .site-nav-cta,
  .reference-about-page .site-nav-cta,
  .reference-partner-page .site-nav-cta,
  .partner-reference-page .site-nav-cta,
  .academy-reference-page .site-nav-cta {
    height: 36px;
    min-height: 36px;
    width: 84px;
    min-width: 84px;
    padding-inline: 0;
    font-size: 13px;
  }

  .home-page .hero-main {
    width: calc(100% - 128px);
    margin-right: 64px;
    margin-left: 64px;
    transform: translateY(-68px);
  }

  .home-page .hero-copy {
    transform: none;
  }

  .home-page .insights-section {
    height: 1355px;
    min-height: 1355px;
  }

  .home-page .start-section {
    height: 874px;
    min-height: 874px;
  }

  .home-page .services-section {
    height: 960px;
    min-height: 960px;
  }

  .partner-reference-page .partner-hero {
    height: 630px;
    min-height: 630px;
  }

  .partner-reference-page .partner-hero-copy {
    min-height: 630px;
    transform: translateY(6px);
  }

  .service-detail-page .service-core-section {
    height: auto;
    min-height: 0;
    padding-bottom: 112px;
  }

  .service-detail-page .service-capability-card {
    height: 170.375px;
  }
}

@media (min-width: 761px) {
  .academy-reference-page .academy-course-section {
    height: 840.234375px;
  }
}

/* Mobile parity lock.
   Keep the product logo untouched while preventing desktop composition rules
   from collapsing the phone layouts into fixed-width overflow columns. */
@media (max-width: 760px) {
  .home-page .site-header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
  }

  .home-page .home-hero {
    height: 1572px;
    min-height: 1572px;
  }

  .home-page .principle-section {
    height: 773px;
    min-height: 773px;
  }

  .home-page .insights-section {
    height: 1924px;
    min-height: 1924px;
  }

  .home-page .engine-section {
    height: 862px;
    min-height: 862px;
  }

  .home-page .citation-section {
    height: 1965px;
    min-height: 1965px;
  }

  .home-page .start-section {
    height: 1924px;
    min-height: 1924px;
  }

  .home-page .services-section {
    height: 2185px;
    min-height: 2185px;
  }

  .home-page .cases-section {
    height: 857px;
    min-height: 857px;
  }

  .home-page .why-section {
    height: 1416px;
    min-height: 1416px;
  }

  .home-page .faq-section {
    height: 626px;
    min-height: 626px;
  }

  .home-page .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .hero-actions .site-button,
  .home-page .hero-actions .site-button-primary {
    width: auto;
    min-width: 0;
  }

  .home-page .hero-actions .site-button-primary {
    width: 204px;
  }

  .home-page .hero-actions .site-button-secondary {
    width: 190px;
  }

  .home-page .insights-layout {
    display: block;
    width: calc(100% - 48px);
    height: auto;
    margin-inline: auto;
  }

  .home-page .insights-section .site-shell.insights-layout {
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .insights-copy {
    position: static;
    top: auto;
  }

  .home-page .insight-timeline {
    display: grid;
    width: 100%;
    height: auto;
    gap: 32px;
    padding: 40px 0 0 56px;
  }

  .home-page .insight-card,
  .home-page .insight-card:nth-child(even),
  .home-page .insight-card:nth-child(odd) {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 236px;
    margin-left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    border-radius: 14px;
    padding: 20px 24px;
  }

  .home-page .insight-card::before,
  .home-page .insight-card:nth-child(odd)::before,
  .home-page .insight-card:nth-child(even)::before {
    top: 32px;
    left: -48px;
    width: 32px;
    height: 32px;
    border: 0;
    background: #fff;
    box-shadow: 0 0 0 1px var(--line);
  }

  .home-page .insight-card:nth-child(even)::before {
    left: -48px;
  }

  .home-page .insight-card-copy {
    min-width: 0;
    padding: 0 43% 0 0;
  }

  .home-page .insight-card-num {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .home-page .insight-card h3 {
    font-size: 17px;
    line-height: 1.35;
  }

  .home-page .insight-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .home-page .insight-card img {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    width: 43%;
    height: auto;
    border: 0;
    border-radius: 10px;
    object-fit: cover;
  }

  .partner-reference-page .partner-container,
  .partner-reference-page .partner-advantage-layout,
  .partner-reference-page .partner-process-section > .partner-container,
  .partner-reference-page .partner-condition-layout {
    width: calc(100% - 48px);
  }

  .partner-reference-page .partner-hero {
    height: 591px;
    min-height: 591px;
  }

  .partner-reference-page .partner-hero-copy {
    min-height: 591px;
  }

  .partner-reference-page .partner-rights-section {
    height: 1972px;
    min-height: 1972px;
  }

  .partner-reference-page .partner-metrics-section {
    height: 181px;
    min-height: 181px;
  }

  .partner-reference-page .partner-showcase-section {
    height: 264px;
    min-height: 264px;
    padding: 0 24px 80px;
  }

  .partner-reference-page .partner-showcase-section img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 576;
    object-fit: contain;
  }

  .partner-reference-page .partner-advantage-section {
    height: 1206px;
    min-height: 1206px;
  }

  .partner-reference-page .partner-process-section {
    height: 822px;
    min-height: 822px;
  }

  .partner-reference-page .partner-condition-section {
    height: 744px;
    min-height: 744px;
  }
}

/* Final homepage phone calibration.
   The source homepage uses a natural one-column hero on mobile:
   88px top rail, a 483px audit panel, then a five-row capability list. */
@media (max-width: 760px) {
  .home-page .hero-main {
    padding: 88px 0 0;
  }

  .home-page .hero-lead {
    margin-top: 24px;
  }

  .home-page .hero-description {
    margin-top: 12px;
    line-height: 1.8;
  }

  .home-page .hero-actions {
    margin-top: 32px;
  }

  .home-page .hero-stats {
    row-gap: 32.5px;
    margin-top: 36px;
  }

  .home-page .hero-audit {
    min-height: 483px;
    margin-top: 40px;
    padding: 20px;
    border-radius: 20px;
  }

  .home-page .hero-audit-head strong {
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-page .platform-pills {
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 24px;
  }

  .home-page .platform-pill {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .home-page .platform-pill img {
    width: 20px;
    height: 20px;
  }

  .home-page .audit-input {
    min-height: 60px;
    padding-inline: 16px;
    font-size: 15px;
    line-height: 1.5;
  }

  .home-page .audit-brand {
    min-height: 56px;
    grid-template-columns: 45px 1fr;
    gap: 12px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .home-page .audit-brand strong {
    padding-right: 12px;
    border-right: 1px solid var(--line);
  }

  .home-page .audit-brand span {
    font-size: 14px;
    line-height: 20px;
  }

  .home-page .hero-audit > .site-button {
    margin: 16px 0 0 40px;
  }

  .home-page .hero-capabilities {
    height: 388px;
    min-height: 388px;
    margin-top: 32px;
    grid-template-columns: 1fr;
    grid-template-rows: 43px repeat(4, 60px);
    gap: 16px;
    padding: 20px 0;
    overflow: visible;
  }

  .home-page .hero-capability,
  .home-page .hero-capability:first-child {
    min-width: 0;
    min-height: 43px;
    grid-template-columns: none;
    display: flex;
    gap: 12px;
    padding: 0 24px;
    border-right: 0;
  }

  .home-page .hero-capability:not(:first-child) {
    min-height: 60px;
  }

  .home-page .hero-capability > img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .home-page .hero-capability > div {
    min-width: 0;
  }

  .home-page .hero-capability strong,
  .home-page .hero-capability span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Final desktop lock: the reference partner hero is 504px below its 58px
   header. Keep this after the historical geometry overrides above. */
@media (min-width: 1121px) {
  .partner-reference-page .partner-hero {
    height: 630px;
    min-height: 630px;
  }

  .partner-reference-page .partner-hero-copy {
    min-height: 630px;
  }
}

/* Desktop content rails measured from the source pages. Keep the product
   copy and theme tokens, but use the same inner widths and type rhythm. */
@media (min-width: 1121px) {
  .engine-detail-page .engine-features-section .site-shell,
  .engine-detail-page .engine-source-section .site-shell,
  .engine-detail-page .engine-editions-section .site-shell,
  .service-detail-page .service-core-section .site-shell {
    width: min(calc(100% - 160px), 1152px);
  }

  .engine-detail-page .engine-section-heading h2,
  .engine-detail-page .engine-editions-section h2,
  .engine-detail-page .engine-compare-section h2 {
    font-size: 36px;
    line-height: 54px;
  }

  .engine-detail-page .engine-source-row,
  .engine-detail-page .engine-source-row-reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engine-detail-page .engine-source-copy h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .engine-detail-page .engine-compare-section .site-shell {
    width: min(calc(100% - 384px), 896px);
  }

  .reference-hero-page .page-hero h1,
  .reference-hero-page .page-hero h2 {
    width: fit-content;
    max-width: 100%;
  }
}

/* Final reference alignment for the three pages that keep the source
   site's long-form module geometry. */
.engine-detail-page .page-hero::before {
  background-image: url("/assets/reference/engine-hero-bg.webp");
}

.reference-hero-bg-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
}

.service-packages-bg-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
}

.service-detail-page .service-packages-inner {
  position: relative;
  z-index: 1;
}

.engine-detail-page .page-hero-grid {
  grid-template-columns: 1fr;
}

.engine-detail-page .page-hero-grid > div:first-child {
  width: 100%;
  max-width: 1080px;
}

.engine-detail-page .engine-showcase-section {
  height: 688px;
  padding: 0 24px 80px;
  background: #fff;
}

.engine-detail-page .engine-showcase-section .site-shell {
  width: min(100%, 1152px);
  height: 100%;
}

.engine-detail-page .engine-showcase {
  width: min(1024px, 100%);
  height: 576px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 12px;
}

.engine-detail-page .engine-showcase img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.engine-detail-page .engine-showcase:hover img {
  transform: scale(1.05);
}

.partner-reference-page .partner-showcase-section {
  display: block;
  height: 688px;
  padding: 0 24px 80px;
  background: #fff;
}

.partner-reference-page .partner-showcase-section img {
  width: min(1024px, 100%);
  height: 576px;
  margin-inline: auto;
  border-radius: 12px;
  object-fit: cover;
}

.partner-reference-page .partner-condition-section {
  height: 660px;
  padding: 80px 0;
  background: #f7f8fa;
}

.partner-reference-page .partner-condition-layout {
  display: block;
  width: min(calc(100% - 512px), 768px);
  margin-inline: auto;
}

.partner-reference-page .partner-condition-layout > .partner-section-title {
  width: 100%;
  max-width: none;
  margin-bottom: 40px;
  text-align: center;
}

.partner-reference-page .partner-condition-layout > .partner-section-title h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}

.partner-reference-page .partner-condition-list {
  display: grid;
  gap: 16px;
}

.partner-reference-page .partner-condition-item {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.partner-reference-page .partner-condition-item > span {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--reference-accent);
}

.partner-reference-page .partner-condition-item p {
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--reference-ink);
  font-size: 15px;
}

.partner-reference-page .partner-condition-contact {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  border: 1px solid rgba(126, 87, 255, 0.16);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(92, 65, 180, 0.08);
}

.partner-reference-page .partner-condition-contact h3 {
  margin: 0;
  color: var(--reference-ink);
  font-size: 24px;
  line-height: 1.35;
}

.partner-reference-page .partner-condition-contact p {
  max-width: 500px;
  margin: 8px 0 0;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.7;
}

.partner-reference-page .partner-condition-contact img {
  width: 128px;
  height: 128px;
  flex: 0 0 128px;
  border: 1px solid var(--reference-line);
  border-radius: 8px;
  object-fit: cover;
}

main[data-reference-contact-page] .reference-contact-grid {
  display: grid;
  grid-template-columns: 464px 536px;
  gap: 64px;
  width: min(calc(100% - 160px), 1105px);
}

main[data-reference-contact-page] .reference-contact-details {
  min-width: 0;
}

body.contact-page.reference-partner-page {
  --reference-accent: #7c3aed;
  --reference-ink: #171b27;
  --reference-muted: #6f7580;
  --reference-line: #e8e9ee;
}

.reference-contact-stack {
  display: grid;
  gap: 40px;
}

.reference-contact-stack h3,
.reference-contact-form-intro h3 {
  margin: 0;
  color: var(--reference-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.reference-contact-stack > div:first-child p,
.reference-contact-form-intro p {
  margin: 8px 0 0;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.8;
}

.reference-contact-info-list {
  display: grid;
  gap: 20px;
}

.reference-contact-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.reference-contact-info-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--reference-accent);
  background: color-mix(in srgb, var(--reference-accent) 12%, #fff);
}

.reference-contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reference-contact-info p {
  margin: 0;
}

.reference-contact-info p:first-child {
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 16px;
}

.reference-contact-info p:last-child {
  margin-top: 2px;
  color: var(--reference-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.reference-contact-divider {
  height: 1px;
  background: var(--reference-line);
}

.reference-contact-action h4 {
  margin: 0 0 16px;
  color: var(--reference-ink);
  font-size: 18px;
  line-height: 1.3;
}

.reference-contact-action > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  padding: 24px;
  background: #f7f8fa;
}

.reference-contact-action p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 16px;
}

.reference-contact-apply-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  padding: 24px;
  color: var(--reference-muted);
  background: #f7f8fa;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  line-height: 16px;
}

.reference-contact-apply-mark {
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(145deg, #f4f0ff, #e9e3ff);
}

.reference-contact-apply-mark img {
  display: block;
  width: 64px;
  height: 64px;
}

.reference-contact-form-card {
  height: 720px;
  padding: 32px 40px;
  border: 1px solid var(--reference-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.reference-contact-form {
  display: grid;
  gap: 24px;
  margin: 0;
}

.reference-contact-form-intro {
  margin-bottom: 2px;
}

.reference-contact-form-intro h3 {
  font-size: 20px;
}

.reference-contact-form-intro p {
  font-size: 14px;
}

.reference-contact-topic-group > label,
.reference-contact-form > label,
.reference-contact-row label {
  display: block;
  color: var(--reference-ink);
  font-size: 14px;
  font-weight: 600;
}

.reference-contact-topic-group > label {
  margin-bottom: 12px;
}

.reference-contact-topic-group > label span,
.reference-contact-form > label > span,
.reference-contact-row label > span {
  color: var(--reference-accent);
}

.reference-contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.reference-contact-topic {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  min-height: 66px;
  align-items: center;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  padding: 14px;
  color: var(--reference-ink);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.reference-contact-topic.is-active {
  border-color: color-mix(in srgb, var(--reference-accent) 42%, var(--reference-line));
  background: color-mix(in srgb, var(--reference-accent) 5%, #fff);
}

.reference-contact-topic > span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 8px;
  color: var(--reference-muted);
  background: #f7f8fa;
}

.reference-contact-topic.is-active > span {
  color: var(--reference-accent);
}

.reference-contact-topic svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reference-contact-topic b,
.reference-contact-topic small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reference-contact-topic b {
  font-size: 14px;
  line-height: 16px;
}

.reference-contact-topic small {
  margin-top: 2px;
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 14px;
}

.reference-contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reference-contact-form input[type="text"],
.reference-contact-form input[type="tel"],
.reference-contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--reference-line);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--reference-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}

.reference-contact-form input[type="text"],
.reference-contact-form input[type="tel"] {
  height: 42px;
}

.reference-contact-form textarea {
  height: 102px;
  resize: none;
}

.reference-contact-form > .site-button {
  width: 100%;
  min-height: 36px;
  height: 36px;
}

.reference-contact-status {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  margin: 0;
  color: #b42318;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.reference-contact-success {
  position: absolute;
  inset: 40px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.reference-contact-success[hidden] {
  display: none;
}

.reference-contact-success > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--reference-accent);
  font-size: 24px;
  font-weight: 700;
}

.reference-contact-success h3 {
  margin: 20px 0 8px;
  color: var(--reference-ink);
  font-size: 22px;
  line-height: 1.4;
}

.reference-contact-success p {
  max-width: 360px;
  margin: 0 0 24px;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.8;
}

.reference-contact-success .site-button {
  min-width: 120px;
}

@media (max-width: 760px) {
  .engine-detail-page .engine-showcase-section {
    height: 272px;
    padding: 0 24px 80px;
  }

  .engine-detail-page .engine-showcase-section .site-shell {
    width: 100%;
  }

  .engine-detail-page .engine-showcase {
    width: 100%;
    height: 192px;
  }

  .partner-reference-page .partner-showcase-section {
    height: 264px;
    padding: 0 24px 80px;
  }

  .partner-reference-page .partner-showcase-section img {
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 576;
    object-fit: contain;
  }

  .partner-reference-page .partner-condition-section {
    height: auto;
    min-height: 744px;
    padding: 80px 0;
  }

  .partner-reference-page .partner-condition-layout {
    width: calc(100% - 48px);
  }

  .partner-reference-page .partner-condition-layout > .partner-section-title h2 {
    font-size: 30px;
  }

  .partner-reference-page .partner-condition-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-reference-page .partner-condition-contact img {
    width: 128px;
    height: 128px;
    align-self: center;
  }

  main[data-reference-contact-page] .reference-contact-grid {
    display: grid;
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reference-contact-form-card {
    height: auto;
    padding: 24px;
  }

  .reference-contact-stack {
    gap: 32px;
  }

  .reference-contact-topic-grid,
  .reference-contact-row {
    grid-template-columns: 1fr;
  }
}

/* Industry pages: reference-accurate long-form composition. */
.industry-reference-page {
  --industry-ink: #171b27;
  --industry-muted: #6f7580;
  --industry-line: #e7e8ee;
  --industry-soft: #f7f5ff;
  color: var(--industry-ink);
  background: #fff;
}

.industry-reference-page .industry-shell {
  width: min(calc(100% - 128px), 1152px);
}

.industry-reference-page .industry-section {
  overflow: hidden;
}

.industry-reference-page .industry-section h2 {
  margin: 16px 0 18px;
  color: var(--industry-ink);
  font-size: 40px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
}

.industry-reference-page .industry-section-heading p,
.industry-reference-page .industry-delivery-copy > p,
.industry-reference-page .industry-faq-layout > div:first-child p,
.industry-reference-page .industry-cta-section .industry-section-heading p {
  color: var(--industry-muted);
  font-size: 15px;
  line-height: 1.75;
}

.industry-reference-page .industry-kicker,
.industry-reference-page .industry-panel-label {
  letter-spacing: 0.08em;
}

.industry-reference-page .industry-kicker::before {
  width: 20px;
  height: 2px;
  margin-right: 8px;
}

.industry-reference-page .industry-hero-section {
  height: 905.9px;
  background:
    radial-gradient(circle at 78% 30%, rgba(124, 58, 237, 0.12), transparent 300px),
    linear-gradient(180deg, #fff 0%, #fbfaff 58%, #f5f1ff 100%);
}

.industry-reference-page.industry-enterprise-services .industry-hero-section,
.industry-reference-page.industry-artificial-intelligence .industry-hero-section {
  height: 1105.5px;
}

.industry-reference-page.industry-factory-manufacturing .industry-hero-section {
  height: 1043.8px;
}

.industry-reference-page.industry-local-chain .industry-hero-section {
  height: 859.1px;
}

.industry-reference-page.industry-smart-home .industry-hero-section {
  height: 891.5px;
}

.industry-reference-page .industry-hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: 66px;
}

.industry-reference-page .industry-hero-copy {
  padding-top: 0;
}

.industry-reference-page .industry-eyebrow {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
}

.industry-reference-page .industry-hero-copy h1 {
  max-width: 650px;
  font-size: 60px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

.industry-reference-page .industry-hero-copy h1 em {
  display: inline-block;
  color: var(--brand);
  font-style: normal;
}

.industry-reference-page .industry-hero-copy > p {
  max-width: 620px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.85;
}

.industry-reference-page .industry-actions {
  gap: 14px;
  margin-top: 30px;
}

.industry-reference-page .industry-actions .site-button {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 25px;
  font-size: 14px;
}

.industry-reference-page .industry-text-link {
  min-height: 52px;
  padding-inline: 6px;
}

.industry-reference-page .industry-metrics {
  max-width: 700px;
  gap: 0;
  margin-top: 38px;
}

.industry-reference-page .industry-metrics div {
  min-width: 150px;
  border-left: 1px solid var(--industry-line);
  padding-left: 15px;
}

.industry-reference-page .industry-metrics strong {
  font-size: 30px;
}

.industry-reference-page .industry-metrics span {
  margin-top: 5px;
  color: var(--industry-ink);
  font-size: 13px;
  font-weight: 650;
}

.industry-hero-visual {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.industry-hero-visual-backdrop {
  position: absolute;
  inset: 40px 14px 20px 12px;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 45%, rgba(124, 58, 237, 0.21), transparent 53%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(233, 225, 255, 0.8));
  filter: blur(1px);
}

.industry-hero-visual > img {
  display: block;
  width: min(100%, 570px);
  height: 570px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(84, 66, 177, 0.16));
}

.industry-hero-visual-card {
  position: absolute;
  display: grid;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(83, 73, 180, 0.14);
  backdrop-filter: blur(16px);
}

.industry-hero-visual-card-top {
  top: 72px;
  right: -8px;
  width: 222px;
  gap: 7px;
  padding: 18px;
}

.industry-hero-visual-card-top span,
.industry-hero-visual-card-top small {
  color: var(--industry-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.industry-hero-visual-card-top strong {
  color: var(--industry-ink);
  font-size: 16px;
}

.industry-hero-visual-card-bottom {
  right: 28px;
  bottom: 44px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 9px;
  min-width: 250px;
  padding: 16px 18px;
}

.industry-hero-visual-card-bottom b {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 22px;
}

.industry-hero-visual-card-bottom span {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-hero-visual-card-bottom i {
  grid-column: 1 / -1;
  height: 1px;
  margin: 5px 0;
  background: var(--industry-line);
}

.industry-reference-page .industry-about-section {
  height: 853.9px;
  background: #fff;
}

.industry-reference-page.industry-enterprise-services .industry-about-section,
.industry-reference-page.industry-factory-manufacturing .industry-about-section {
  height: 908.6px;
}

.industry-reference-page.industry-local-chain .industry-about-section,
.industry-reference-page.industry-smart-home .industry-about-section,
.industry-reference-page.industry-artificial-intelligence .industry-about-section {
  height: 883.4px;
}

.industry-about-section > .industry-shell {
  padding-top: 92px;
}

.industry-about-intro {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.industry-about-intro h2 {
  margin-bottom: 13px;
}

.industry-about-intro .industry-large-copy {
  max-width: 860px;
  margin: 0 auto;
  color: var(--industry-muted);
  font-size: 16px;
  line-height: 1.85;
}

.industry-about-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(83, 73, 180, 0.08);
}

.industry-about-note-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
}

.industry-about-note-icon svg {
  width: 32px;
  height: 32px;
}

.industry-about-note p {
  margin: 0;
  color: var(--industry-muted);
  font-size: 14px;
  line-height: 1.75;
}

.industry-question-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.industry-question-grid article {
  display: grid;
  min-height: 128px;
  align-content: start;
  justify-items: center;
  gap: 7px;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  padding: 14px 10px 11px;
  text-align: center;
  background: #fff;
  box-shadow: 0 18px 44px rgba(83, 73, 180, 0.1);
}

.industry-question-grid article span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.industry-question-grid article strong {
  min-height: 39px;
  color: var(--industry-ink);
  font-size: 12px;
  line-height: 1.65;
}

.industry-question-grid article svg {
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--brand);
}

.industry-growth-loop {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.industry-outcome-row {
  display: grid;
  grid-template-columns: 52px 86px minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-left: calc(var(--row-index) * 26px);
  margin-right: calc((4 - var(--row-index)) * 26px);
  border-radius: 8px;
  padding: 9px 24px;
  color: #fff;
  background: linear-gradient(96deg, #9f7af7 0%, #7b4ce7 100%);
  clip-path: polygon(2% 0, 98% 0, 94% 100%, 6% 100%);
  box-shadow: 0 14px 34px rgba(83, 73, 180, 0.16);
}

.industry-outcome-row:nth-child(2) { opacity: 0.92; }
.industry-outcome-row:nth-child(3) { opacity: 0.84; }
.industry-outcome-row:nth-child(4) { opacity: 0.76; }
.industry-outcome-row:nth-child(5) { opacity: 0.66; }

.industry-outcome-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
}

.industry-outcome-icon svg {
  width: 19px;
  height: 19px;
}

.industry-outcome-row strong {
  font-size: 18px;
}

.industry-outcome-row p {
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.industry-reference-page .industry-fit-section {
  height: 814.1px;
  background: linear-gradient(180deg, #f7f4ff 0%, #fbfaff 54%, #f3f0ff 100%);
}

.industry-reference-page.industry-enterprise-services .industry-fit-section {
  height: 1132.2px;
}

.industry-reference-page.industry-factory-manufacturing .industry-fit-section {
  height: 1153.2px;
}

.industry-reference-page.industry-local-chain .industry-fit-section,
.industry-reference-page.industry-smart-home .industry-fit-section {
  height: 1101px;
}

.industry-reference-page.industry-artificial-intelligence .industry-fit-section {
  height: 909px;
}

.industry-fit-section > .industry-shell,
.industry-map-section > .industry-shell,
.industry-network-section > .industry-shell,
.industry-case-section > .industry-shell,
.industry-team-section > .industry-shell,
.industry-cta-section > .industry-shell {
  padding-top: 78px;
}

.industry-section-heading-centered {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.industry-section-heading-centered h2 span {
  color: var(--brand);
}

.industry-section-heading-centered p {
  max-width: 840px;
  margin-inline: auto;
}

.industry-fit-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px;
  margin-top: 28px;
  border: 1px solid #e7e2ff;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(91, 75, 255, 0.12);
}

.industry-fit-sidebar {
  display: flex;
  flex-direction: column;
  border: 1px solid #ece8ff;
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}

.industry-fit-sidebar > button {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid #eef0f6;
  border-radius: 12px;
  padding: 0 12px;
  color: var(--industry-ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.industry-fit-sidebar > button:hover,
.industry-fit-sidebar > button.is-active {
  color: var(--brand);
  background: linear-gradient(90deg, #f3efff, #fff);
}

.industry-fit-sidebar > button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.industry-fit-sidebar > button span svg,
.industry-fit-sidebar > button > svg {
  width: 20px;
  height: 20px;
}

.industry-fit-sidebar > button b {
  flex: 1;
  font-size: 13px;
}

.industry-fit-sidebar-note {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding: 18px 12px 8px;
}

.industry-fit-sidebar-note span {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-fit-sidebar-note strong {
  font-size: 13px;
}

.industry-fit-sidebar-note button,
.industry-map-card-footer button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 8px;
  border: 0;
  padding: 0;
  color: var(--brand);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.industry-fit-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 274px;
  gap: 18px;
  min-width: 0;
  border: 1px solid #ece8ff;
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.industry-fit-detail-main h3 {
  margin: 12px 0 8px;
  font-size: 27px;
}

.industry-fit-detail-main > p:not(.industry-panel-label) {
  margin: 0;
  color: var(--industry-muted);
  font-size: 14px;
  line-height: 1.7;
}

.industry-fit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.industry-fit-pills .industry-tag {
  border-radius: 999px;
  padding: 6px 10px;
}

.industry-panel-label-muted {
  margin: 0 0 10px;
  color: var(--industry-muted);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.industry-fit-dimensions {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.industry-fit-dimensions div {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--industry-line);
  padding-bottom: 8px;
}

.industry-fit-dimensions strong {
  font-size: 12px;
}

.industry-fit-dimensions span {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-example-questions {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--industry-muted);
  font-size: 12px;
  line-height: 1.6;
  list-style: none;
}

.industry-example-questions li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "•";
}

.industry-fit-detail-main .site-button {
  min-height: 42px;
  border-radius: 999px;
}

.industry-fit-reasons {
  border-left: 1px solid var(--industry-line);
  padding-left: 18px;
}

.industry-fit-reasons article {
  border-bottom: 1px solid var(--industry-line);
  padding: 12px 0;
}

.industry-fit-reasons article strong {
  font-size: 13px;
}

.industry-fit-reasons article p {
  margin: 5px 0 0;
  color: var(--industry-muted);
  font-size: 11px;
  line-height: 1.65;
}

.industry-reference-page .industry-map-section {
  height: 1099.3px;
  background: #fff;
}

.industry-reference-page.industry-enterprise-services .industry-map-section {
  height: 1188.1px;
}

.industry-reference-page.industry-factory-manufacturing .industry-map-section {
  height: 1207.9px;
}

.industry-reference-page.industry-local-chain .industry-map-section,
.industry-reference-page.industry-smart-home .industry-map-section {
  height: 1126.3px;
}

.industry-reference-page.industry-artificial-intelligence .industry-map-section {
  height: 1219.5px;
}

.industry-map-heading {
  max-width: 760px;
}

.industry-map-card {
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(28, 31, 49, 0.08);
}

.industry-map-card-top {
  min-height: 84px;
  padding: 17px 22px;
}

.industry-map-card-top > div {
  display: grid;
  flex: 1;
  gap: 4px;
}

.industry-map-card-top strong {
  font-size: 17px;
}

.industry-map-card-top span {
  color: var(--industry-muted);
  font-size: 12px;
}

.industry-map-card-top button {
  min-height: 34px;
  border: 1px solid var(--brand-soft);
  border-radius: 999px;
  padding: 0 13px;
  background: #fff;
}

.industry-reference-page .industry-table-row {
  grid-template-columns: 0.75fr 1.35fr 1.55fr 0.5fr;
  min-height: 61px;
}

.industry-reference-page .industry-table-row b {
  border-radius: 5px;
  padding: 4px 8px;
}

.industry-map-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  border-top: 1px solid var(--industry-line);
  padding: 0 22px;
}

.industry-map-card-footer span {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-map-card-footer button {
  flex: 0 0 auto;
}

.industry-reference-page .industry-delivery-section {
  height: 1023.2px;
}

.industry-reference-page.industry-enterprise-services .industry-delivery-section {
  height: 1060.2px;
}

.industry-reference-page.industry-factory-manufacturing .industry-delivery-section {
  height: 1087.5px;
}

.industry-reference-page.industry-local-chain .industry-delivery-section {
  height: 1060.5px;
}

.industry-reference-page.industry-smart-home .industry-delivery-section {
  height: 1055.1px;
}

.industry-reference-page.industry-artificial-intelligence .industry-delivery-section {
  height: 1122.3px;
}

.industry-delivery-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 62px;
}

.industry-delivery-copy h2 {
  max-width: 580px;
}

.industry-delivery-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.78fr);
  gap: 20px;
  min-height: 570px;
  border: 1px solid rgba(124, 58, 237, 0.13);
  border-radius: 14px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 255, 0.96)),
    url("/assets/image2-site/audit-report-image2-20260630-ai2-light.webp") center / cover;
  box-shadow: 0 22px 62px rgba(83, 73, 180, 0.1);
}

.industry-delivery-card h3 {
  margin: 12px 0 10px;
  font-size: 26px;
}

.industry-delivery-card-copy > p:not(.industry-panel-label) {
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.75;
}

.industry-delivery-actions {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--industry-muted);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.industry-delivery-actions li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "•";
}

.industry-delivery-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.industry-delivery-deliverables span {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 10px;
}

.industry-workbench {
  align-self: center;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(83, 73, 180, 0.09);
}

.industry-workbench-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  border-bottom: 1px solid var(--industry-line);
  padding-bottom: 14px;
}

.industry-workbench-head span {
  color: var(--industry-muted);
  font-size: 10px;
}

.industry-workbench-head strong {
  grid-column: 1 / -1;
  font-size: 16px;
}

.industry-workbench-head em {
  grid-row: 1 / span 2;
  align-self: center;
  border-radius: 999px;
  padding: 5px 7px;
  color: #15803d;
  background: #dcfce7;
  font-size: 10px;
  font-style: normal;
}

.industry-workbench-task {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  border-bottom: 1px solid var(--industry-line);
  font-size: 11px;
}

.industry-workbench-task b {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-family: var(--font-data);
}

.industry-workbench-task em {
  color: var(--industry-muted);
  font-size: 10px;
  font-style: normal;
}

.industry-workbench-task:first-of-type em {
  color: #15803d;
}

.industry-workbench-metrics {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.industry-workbench-metrics span {
  display: grid;
  gap: 3px;
  color: var(--industry-muted);
  font-size: 10px;
}

.industry-workbench-metrics strong {
  color: var(--industry-ink);
  font-size: 12px;
}

.industry-reference-page .industry-network-section {
  height: 962.1px;
  background: #fff;
}

.industry-reference-page.industry-enterprise-services .industry-network-section,
.industry-reference-page.industry-local-chain .industry-network-section,
.industry-reference-page.industry-smart-home .industry-network-section {
  height: 989.1px;
}

.industry-reference-page.industry-factory-manufacturing .industry-network-section {
  height: 1172.5px;
}

.industry-reference-page.industry-artificial-intelligence .industry-network-section {
  height: 1018.7px;
}

.industry-subheading {
  margin: 42px 0 16px;
  color: var(--industry-ink);
  font-size: 20px;
}

.industry-network-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
}

.industry-network-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 222px;
  gap: 11px;
  padding: 20px;
}

.industry-network-grid article > div {
  min-width: 0;
}

.industry-network-index {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 800;
}

.industry-network-grid article small {
  color: var(--industry-muted);
  font-size: 11px;
}

.industry-network-grid article h3 {
  margin: 18px 0 9px;
  font-size: 18px;
}

.industry-network-grid article p {
  margin: 0;
}

.industry-network-grid article > svg {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.industry-weight-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
}

.industry-weight-heading h3 {
  margin: 0;
  font-size: 20px;
}

.industry-weight-heading p {
  max-width: 500px;
  margin: 0;
  color: var(--industry-muted);
  font-size: 12px;
  line-height: 1.65;
}

.industry-weight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.industry-weight-grid article {
  border: 1px solid var(--industry-line);
  border-radius: 8px;
  padding: 15px;
  background: #fff;
}

.industry-weight-grid strong {
  display: block;
  font-size: 13px;
}

.industry-weight-grid span {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
}

.industry-weight-grid p {
  margin: 8px 0 0;
  color: var(--industry-muted);
  font-size: 11px;
  line-height: 1.65;
}

.industry-reference-page .industry-case-section {
  height: 1202.7px;
}

.industry-reference-page.industry-enterprise-services .industry-case-section {
  height: 1239.4px;
}

.industry-reference-page.industry-factory-manufacturing .industry-case-section {
  height: 1319.7px;
}

.industry-reference-page.industry-local-chain .industry-case-section {
  height: 1301.4px;
}

.industry-reference-page.industry-smart-home .industry-case-section {
  height: 1257.8px;
}

.industry-reference-page.industry-artificial-intelligence .industry-case-section {
  height: 1170.2px;
}

.industry-case-layout {
  grid-template-columns: minmax(225px, 0.76fr) minmax(0, 1.32fr) minmax(260px, 0.86fr);
  gap: 16px;
  margin-top: 38px;
}

.industry-case-profile,
.industry-case-actions,
.industry-case-result {
  min-height: 680px;
  border-radius: 8px;
  padding: 22px;
}

.industry-case-profile h3,
.industry-case-actions h3,
.industry-case-result h3 {
  margin: 0 0 24px;
  font-size: 21px;
}

.industry-case-profile {
  gap: 17px;
}

.industry-case-profile > div {
  gap: 4px;
}

.industry-case-profile strong {
  font-size: 14px;
}

.industry-case-actions article {
  min-height: 90px;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.industry-case-actions article > b {
  width: 32px;
  height: 32px;
}

.industry-case-actions h4 {
  margin-top: 1px;
  font-size: 14px;
}

.industry-case-result {
  display: block;
  color: #fff;
  background: #19152d;
}

.industry-case-result h3 {
  color: #fff;
}

.industry-case-result > p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.65;
}

.industry-result-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.industry-result-row span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.industry-result-row small {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-data);
  font-size: 12px;
  text-decoration: line-through;
}

.industry-result-row strong {
  color: #fff;
  font-family: var(--font-data);
  font-size: 24px;
}

.industry-result-row b {
  border-radius: 999px;
  padding: 4px 7px;
  color: #d8c8ff;
  background: rgba(196, 181, 253, 0.16);
  font-family: var(--font-data);
  font-size: 10px;
}

.industry-case-conclusion {
  max-width: 860px;
  margin: 28px auto 0;
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.75;
  text-align: center;
}

.industry-reference-page .industry-path-section {
  height: 358.2px;
}

.industry-reference-page.industry-artificial-intelligence .industry-path-section {
  height: 386.8px;
}

.industry-reference-page .industry-team-section {
  height: 1289.8px;
  background: linear-gradient(180deg, #fbfaff 0%, #f7f4ff 48%, #fff 100%);
}

.industry-reference-page.industry-enterprise-services .industry-team-section,
.industry-reference-page.industry-factory-manufacturing .industry-team-section,
.industry-reference-page.industry-local-chain .industry-team-section {
  height: 1348.1px;
}

.industry-reference-page.industry-smart-home .industry-team-section {
  height: 1360.2px;
}

.industry-reference-page.industry-artificial-intelligence .industry-team-section {
  height: 1477.5px;
}

.industry-team-topline {
  gap: 52px;
  margin-top: 44px;
}

.industry-team-topline strong {
  font-size: 28px;
}

.industry-team-layout {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  margin-top: 42px;
}

.industry-team-layout > div > .industry-subheading {
  margin-top: 0;
}

.industry-team-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-team-cards article {
  min-height: 150px;
  padding: 17px;
}

.industry-team-cards article > span {
  width: 40px;
  height: 40px;
}

.industry-team-cards h3 {
  font-size: 14px;
}

.industry-team-cards p {
  margin-top: 8px;
}

.industry-schedule {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--industry-line);
}

.industry-schedule article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--industry-line);
  padding: 14px 0;
}

.industry-schedule article > b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-family: var(--font-data);
  font-size: 11px;
}

.industry-schedule article strong,
.industry-schedule article span,
.industry-schedule article p {
  display: block;
}

.industry-schedule article strong {
  font-size: 13px;
}

.industry-schedule article span,
.industry-schedule article p {
  margin-top: 4px;
  color: var(--industry-muted);
  font-size: 11px;
  line-height: 1.6;
}

.industry-schedule article p {
  margin-bottom: 0;
}

.industry-assets {
  min-height: 0;
  margin-top: 34px;
  padding: 22px;
}

.industry-assets h3 {
  margin: 12px 0 6px;
  font-size: 20px;
}

.industry-assets > p {
  max-width: 670px;
  margin: 0;
  color: var(--industry-muted);
  font-size: 12px;
  line-height: 1.7;
}

.industry-assets > div {
  margin: 16px 0;
}

.industry-assets img {
  height: 150px;
}

.industry-reference-page .industry-faq-section {
  height: 771.4px;
}

.industry-reference-page .industry-cta-section {
  height: 1101.9px;
}

.industry-reference-page.industry-enterprise-services .industry-cta-section,
.industry-reference-page.industry-factory-manufacturing .industry-cta-section,
.industry-reference-page.industry-local-chain .industry-cta-section,
.industry-reference-page.industry-smart-home .industry-cta-section {
  height: 1139.1px;
}

.industry-reference-page.industry-artificial-intelligence .industry-cta-section {
  height: 1106.3px;
}

.industry-cta-grid {
  gap: 16px;
  margin-top: 38px;
}

.industry-cta-grid article {
  min-height: 380px;
  border-radius: 8px;
  padding: 24px;
}

.industry-cta-grid article > b {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.industry-cta-grid h3 {
  min-height: 50px;
  margin-bottom: 8px;
  font-size: 18px;
}

.industry-cta-grid p {
  min-height: 42px;
  margin-top: 0;
}

.industry-cta-grid ul {
  margin-top: 17px;
}

.industry-cta-grid .site-button {
  border-radius: 999px;
}

.industry-final-banner {
  min-height: 230px;
  margin-top: 40px;
  border-radius: 8px;
  padding: 28px;
  background:
    #111827
    url("/assets/reference/footer-cta-bg.webp") center / cover no-repeat;
}

.industry-final-banner h3 {
  font-size: 26px;
}

.industry-final-banner img {
  height: 44px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .industry-reference-page .industry-shell {
    width: calc(100% - 32px);
  }

  .industry-reference-page .industry-section {
    height: auto !important;
    min-height: 0;
  }

  .industry-reference-page .industry-hero-section {
    min-height: 0;
  }

  .industry-reference-page .industry-hero-layout {
    display: block;
    padding: 78px 0 64px;
  }

  .industry-reference-page .industry-hero-copy h1 {
    font-size: 42px;
    letter-spacing: 0;
  }

  .industry-reference-page .industry-hero-copy > p {
    font-size: 15px;
  }

  .industry-reference-page .industry-actions {
    display: grid;
    align-items: stretch;
  }

  .industry-reference-page .industry-actions .site-button,
  .industry-reference-page .industry-text-link {
    width: 100%;
  }

  .industry-reference-page .industry-text-link {
    justify-content: center;
  }

  .industry-reference-page .industry-metrics {
    justify-content: space-between;
    gap: 8px;
    margin-top: 34px;
  }

  .industry-reference-page .industry-metrics div {
    min-width: 0;
    padding-left: 9px;
  }

  .industry-reference-page .industry-metrics strong {
    font-size: 21px;
  }

  .industry-reference-page .industry-metrics span {
    font-size: 10px;
  }

  .industry-hero-visual {
    min-height: 360px;
    margin-top: 42px;
  }

  .industry-hero-visual > img {
    width: 100%;
    height: 350px;
  }

  .industry-hero-visual-card-top {
    top: 8px;
    right: 0;
    width: 175px;
    padding: 12px;
  }

  .industry-hero-visual-card-bottom {
    right: 0;
    bottom: 5px;
    min-width: 200px;
    padding: 12px;
  }

  .industry-about-section > .industry-shell,
  .industry-fit-section > .industry-shell,
  .industry-map-section > .industry-shell,
  .industry-network-section > .industry-shell,
  .industry-case-section > .industry-shell,
  .industry-team-section > .industry-shell,
  .industry-faq-section > .industry-shell,
  .industry-cta-section > .industry-shell {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .industry-reference-page .industry-section h2 {
    font-size: 32px;
  }

  .industry-about-note {
    align-items: flex-start;
    padding: 16px;
  }

  .industry-about-note-icon {
    width: 54px;
    height: 54px;
  }

  .industry-about-note-icon svg {
    width: 25px;
    height: 25px;
  }

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

  .industry-question-grid article:last-child {
    grid-column: 1 / -1;
  }

  .industry-growth-loop {
    gap: 8px;
  }

  .industry-outcome-row {
    grid-template-columns: 34px 68px minmax(0, 1fr);
    min-height: 72px;
    margin-inline: 0;
    padding: 8px 14px;
    clip-path: polygon(1% 0, 99% 0, 96% 100%, 4% 100%);
  }

  .industry-outcome-icon {
    width: 28px;
    height: 28px;
  }

  .industry-outcome-icon svg {
    width: 16px;
    height: 16px;
  }

  .industry-outcome-row strong {
    font-size: 14px;
  }

  .industry-outcome-row p {
    grid-column: 3;
    border: 0;
    padding-left: 0;
    font-size: 10px;
  }

  .industry-outcome-row p:last-child {
    display: none;
  }

  .industry-fit-layout {
    display: block;
    border-radius: 16px;
    padding: 10px;
  }

  .industry-fit-sidebar {
    border-radius: 12px;
  }

  .industry-fit-detail {
    display: block;
    margin-top: 12px;
    padding: 16px;
  }

  .industry-fit-reasons {
    margin-top: 26px;
    border-top: 1px solid var(--industry-line);
    border-left: 0;
    padding: 16px 0 0;
  }

  .industry-map-card {
    overflow-x: auto;
  }

  .industry-map-card-top {
    min-width: 720px;
  }

  .industry-table {
    min-width: 720px;
  }

  .industry-map-card-footer {
    min-width: 720px;
  }

  .industry-delivery-layout {
    display: block;
  }

  .industry-delivery-card {
    display: block;
    min-height: 0;
    margin-top: 34px;
    padding: 20px;
  }

  .industry-workbench {
    margin-top: 22px;
  }

  .industry-network-grid,
  .industry-weight-grid {
    grid-template-columns: 1fr;
  }

  .industry-weight-heading {
    display: block;
  }

  .industry-weight-heading p {
    margin-top: 8px;
  }

  .industry-case-layout,
  .industry-team-layout,
  .industry-faq-layout {
    display: block;
  }

  .industry-case-profile,
  .industry-case-actions,
  .industry-case-result {
    min-height: 0;
    margin-top: 14px;
  }

  .industry-case-profile {
    margin-top: 0;
  }

  .industry-case-result {
    min-height: 450px;
  }

  .industry-team-topline {
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
  }

  .industry-team-topline strong {
    font-size: 22px;
  }

  .industry-team-topline span {
    font-size: 9px;
  }

  .industry-team-layout > div + div {
    margin-top: 30px;
  }

  .industry-team-cards {
    grid-template-columns: 1fr;
  }

  .industry-assets {
    margin-top: 28px;
  }

  .industry-faq-layout > div:first-child p {
    max-width: none;
    margin-bottom: 32px;
  }

  .industry-cta-grid {
    grid-template-columns: 1fr;
  }

  .industry-final-banner {
    display: block;
  }

  .industry-final-banner img {
    width: auto;
    height: 40px;
    margin-top: 22px;
  }
}

/* Last desktop homepage correction: keep the case intro on the reference
   section's measured 96px top rhythm without changing the section height. */
@media (min-width: 1121px) {
  .home-page .cases-section {
    padding-top: 96px;
  }

  .home-page .cases-heading {
    width: min(calc(100% - 96px), 1184px);
  }

  .home-page .cases-heading .section-heading {
    margin: 0 0 12px;
    line-height: 55px;
  }

  .home-page .cases-heading .section-description {
    width: 760px;
    max-width: 100%;
    margin: 16px auto 0;
    line-height: 27px;
  }
}

/* Citation module parity: preserve the reference site's nested cards,
   compact dashboard columns, donut label, ranking tracks, and note row. */
.home-page .citation-content-grid .platform-strategies {
  margin: 0;
  gap: 8px;
}

.home-page .platform-strategies::before {
  top: 16px;
  bottom: 16px;
  left: 18px;
  background: var(--line);
}

.home-page .platform-strategy {
  display: grid;
  width: 430px;
  min-height: 92px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .platform-strategy.is-active {
  min-height: 104px;
}

.home-page .platform-strategy::after {
  display: none;
}

.home-page .platform-strategy-index {
  position: relative;
  top: 14px;
  left: auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  color: var(--brand);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-page .platform-strategy.is-active .platform-strategy-index {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.18);
}

.home-page .platform-strategy-card {
  display: block;
  min-width: 0;
  min-height: 92px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
}

.home-page .platform-strategy.is-active .platform-strategy-card {
  min-height: 104px;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.12);
}

.home-page .platform-strategy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.home-page .platform-strategy-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.home-page .platform-strategy-title strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .platform-strategy-mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--brand-soft);
}

.home-page .platform-strategy-tag {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}

.home-page .platform-strategy-note {
  display: block;
  min-width: 0;
  margin-top: 4px;
  padding-left: 52px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  white-space: nowrap;
}

.home-page .platform-strategy.is-active .platform-strategy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 10px;
  color: var(--brand);
  background: linear-gradient(90deg, var(--brand-soft), rgba(124, 58, 237, 0.04));
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  white-space: nowrap;
}

.home-page .platform-strategy-note svg {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-page .citation-dashboard-wrap {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.home-page .citation-dashboard {
  display: flex;
  height: 570px;
  min-height: 570px;
  flex-direction: column;
  gap: 0;
  margin: 0;
  border-radius: 30px;
  padding: 28px;
}

.home-page .citation-dashboard-head {
  flex: 0 0 59px;
  min-width: 0;
  margin: 0 0 20px;
  padding: 0 0 18px;
  border: 0;
}

.home-page .citation-dashboard-head h3 {
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 40px;
  white-space: nowrap;
}

.home-page .citation-dashboard-head h3 > span:not(.citation-platform-mark) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-page .citation-dashboard-head h3 > span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.home-page .citation-dashboard-head button {
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  font-size: 13px;
  line-height: 19.5px;
}

.home-page .citation-dashboard-body {
  display: grid;
  min-height: 0;
  flex: 1 1 auto;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: 20px;
}

.home-page .citation-chart,
.home-page .citation-ranking {
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
}

.home-page .citation-chart {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-items: initial;
  border-right: 1px solid var(--line-strong);
}

.home-page .citation-chart > h4 {
  width: auto;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}

.home-page .citation-donut {
  display: grid;
  width: 220px;
  height: 220px;
  flex: 1 1 auto;
  place-items: center;
  align-self: center;
  margin: 0 auto;
  background:
    conic-gradient(
      from -42deg,
      var(--brand) 0 15.2%,
      #fff 15.2% 15.9%,
      #9b63ee 15.9% 30.4%,
      #fff 30.4% 31.1%,
      #ae7af1 31.1% 44.2%,
      #fff 44.2% 44.9%,
      #c29af4 44.9% 56.4%,
      #fff 56.4% 57.1%,
      #8aa0c8 57.1% 68.4%,
      #fff 68.4% 69.1%,
      #d8e0ec 69.1% 100%
    );
}

.home-page .citation-donut::before {
  width: 142px;
  height: 142px;
}

.home-page .citation-donut-label {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 140px;
  flex-direction: column;
  align-items: center;
  color: var(--muted);
  text-align: center;
}

.home-page .citation-donut-label span,
.home-page .citation-donut-label small {
  overflow: hidden;
  max-width: 140px;
  font-size: 12px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .citation-donut-label span {
  margin-bottom: 4px;
  font-weight: 600;
}

.home-page .citation-donut-label strong {
  position: static;
  color: var(--ink);
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.home-page .citation-donut-label small {
  margin-top: 4px;
  font-weight: 500;
}

.home-page .citation-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  width: 100%;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

.home-page .citation-legend span {
  white-space: nowrap;
}

.home-page .citation-legend span::before {
  width: 8px;
  height: 8px;
  margin-right: 6px;
}

.home-page .citation-legend span:nth-child(2)::before { background: #9b63ee; }
.home-page .citation-legend span:nth-child(3)::before { background: #ae7af1; }
.home-page .citation-legend span:nth-child(4)::before { background: #c29af4; }
.home-page .citation-legend span:nth-child(5)::before { background: #8aa0c8; }

.home-page .citation-ranking {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
}

.home-page .citation-ranking-head {
  flex: 0 0 auto;
  margin: 0 0 8px;
}

.home-page .citation-ranking-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 28px;
}

.home-page .citation-ranking-head span {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 18px;
}

.home-page .citation-source {
  display: grid;
  min-height: 25px;
  grid-template-columns: 30px minmax(96px, 128px) minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 22.5px;
}

.home-page .citation-rank {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  justify-self: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.home-page .citation-source:nth-of-type(2) .citation-rank,
.home-page .citation-source:nth-of-type(3) .citation-rank,
.home-page .citation-source:nth-of-type(4) .citation-rank {
  color: var(--brand);
}

.home-page .citation-source-name {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .citation-source-track {
  display: block;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.home-page .citation-source-track > span {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c39bf4, var(--brand));
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.22);
}

.home-page .citation-source b {
  color: var(--ink);
  font-size: 15px;
  line-height: 22.5px;
  text-align: right;
}

.home-page .citation-dashboard-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 20px;
  margin-top: 20px;
  color: var(--brand);
}

.home-page .citation-dashboard-note > span {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--brand);
}

.home-page .citation-dashboard-note p {
  margin: 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

@media (max-width: 1120px) {
  .home-page .citation-content-grid .platform-strategies {
    margin: 0;
  }

  .home-page .citation-dashboard-wrap {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .home-page .platform-strategies,
  .home-page .platform-strategy {
    width: 100%;
  }

  .home-page .platform-strategy-note {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-page .platform-strategy.is-active .platform-strategy-note {
    white-space: normal;
  }

  .home-page .citation-dashboard {
    height: auto;
    min-height: 0;
    padding: 18px;
  }

  .home-page .citation-dashboard-head {
    flex-basis: auto;
    min-height: 59px;
    margin-bottom: 20px;
  }

  .home-page .citation-dashboard-head h3 {
    font-size: 20px;
  }

  .home-page .citation-dashboard-body {
    grid-template-columns: 1fr;
  }

  .home-page .citation-chart,
  .home-page .citation-ranking {
    min-height: 420px;
  }

  .home-page .citation-source {
    grid-template-columns: 24px minmax(80px, 112px) minmax(0, 1fr) 48px;
    gap: 8px;
    font-size: 13px;
  }

  .home-page .citation-source-name,
  .home-page .citation-source b {
    font-size: 13px;
  }

  .home-page .citation-dashboard-note {
    height: auto;
    min-height: 20px;
    margin-top: 16px;
  }

  .home-page .citation-dashboard-note p {
    font-size: 12px;
  }
}

@media (min-width: 1121px) {
  .home-page .citation-heading-block {
    margin: 0 0 40px;
  }

  .home-page .citation-content-grid .citation-dashboard {
    margin-top: 0;
  }

  .home-page .platform-strategy,
  .home-page .platform-strategy-card {
    height: 92px;
    min-height: 92px;
    box-sizing: border-box;
  }

  .home-page .platform-strategy.is-active,
  .home-page .platform-strategy.is-active .platform-strategy-card {
    height: 104px;
    min-height: 104px;
  }

  .home-page .platform-strategy.is-active .platform-strategy-note {
    display: flex !important;
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .home-page .citation-dashboard-head {
    flex-basis: 48px;
    height: 48px;
    padding: 0;
  }

  .home-page .citation-dashboard-head h3 {
    line-height: 48px;
  }

  .home-page .citation-platform-mark {
    width: 48px;
    height: 48px;
  }

  .home-page .citation-platform-mark img {
    width: 28px;
    height: 28px;
  }
}

/* Final desktop parity corrections for the two measured reference layouts.
   The product logo and all application entry points remain untouched. */
@media (min-width: 1121px) {
  .home-page .hero-main {
    width: min(calc(100% - 128px), 1300px);
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(620px, 690px);
    gap: 44px;
    margin-inline: auto;
    padding: 92px 0 0;
    transform: translateY(-68px);
  }

  .home-page .hero-copy h1 {
    width: 100%;
    max-width: none;
    line-height: 1.1;
  }

  .home-page .hero-copy h1 span,
  .home-page .hero-copy h1 em {
    max-width: none;
  }

  .home-page .hero-copy,
  .home-page .hero-audit {
    align-self: auto;
  }

  .home-page .hero-audit {
    transform: none;
  }

  .home-page .hero-description {
    max-width: 520px;
  }

  .home-page .hero-stats {
    width: 100%;
    max-width: none;
    flex-wrap: wrap;
  }

  .home-page .hero-stat {
    position: relative;
  }

  .home-page .hero-stat strong {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
  }

  .home-page .hero-stat span {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }

  .home-page .hero-stat:nth-child(-n + 2)::after {
    position: absolute;
    top: 6.5px;
    right: 0;
    width: 1px;
    height: 48px;
    background: rgb(230, 232, 239);
    content: "";
  }

  .skill-lobster-page .lobster-container {
    width: min(calc(100% - 48px), 1232px);
  }

  .skill-lobster-page .lobster-install-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 58px 0 80px;
  }

  .skill-lobster-page .lobster-install-card {
    display: flex;
    width: 880px;
    height: 365px;
    box-sizing: border-box;
    flex-direction: column;
    margin-inline: auto;
    border-radius: 24px;
    padding: 48px;
  }

  .skill-lobster-page .lobster-copy-block {
    position: relative;
    display: block;
    height: 82.5px;
    box-sizing: border-box;
    margin-top: 0;
    border-radius: 15.2px;
    padding: 20.8px 112px 18.4px 32px;
  }

  .skill-lobster-page .lobster-copy-quote {
    position: absolute;
    top: -8px;
    left: 18px;
    font-size: 25px;
    line-height: 24px;
  }

  .skill-lobster-page .lobster-copy-block code {
    display: block;
    width: 636px;
    max-width: 100%;
    font-size: 12.16px;
    line-height: 20.672px;
  }

  .skill-lobster-page .lobster-copy-button {
    position: absolute;
    top: 20px;
    right: 12px;
    width: 112px;
    height: 36px;
    box-sizing: border-box;
    padding: 0 12px;
    font-size: 10.72px;
  }

  .skill-lobster-page .lobster-env-heading {
    margin-top: 18px;
  }

  .skill-lobster-page .lobster-env-rail {
    gap: 18.4px;
    margin-top: 8px;
  }

  .skill-lobster-page .lobster-env-item {
    display: grid;
    min-height: 276px;
    height: 276px;
    grid-template-rows: 60px 102.031px 65.594px;
    border-radius: 21.6px;
    padding: 23.2px;
  }
}

/* Measured reference locks for the final desktop parity pass. These rules
   intentionally preserve the existing product logo, copy, and entry routes. */
@media (min-width: 1121px) {
  main[data-reference-contact-page] .reference-subpage-tabs {
    padding-bottom: 8px;
  }

  main[data-reference-contact-page] .reference-subpage-tabs nav {
    height: 35.5px;
    gap: 32px;
  }

  main[data-reference-contact-page] .reference-subpage-tabs a {
    height: 34.5px;
    padding-bottom: 12px;
    font-size: 15px;
    line-height: 22.5px;
  }

  main[data-reference-contact-page] .reference-contact-grid {
    width: min(calc(100% - 160px), 1105px);
    grid-template-columns: minmax(0, 423px) minmax(0, 618px);
    gap: 64px;
  }

  main[data-reference-contact-page] .reference-contact-form-card {
    width: 618px;
    height: 720px;
    padding: 40px;
  }

  main[data-reference-contact-page] .reference-contact-form {
    display: block;
    width: 536px;
    height: 638px;
    line-height: 24px;
  }

  main[data-reference-contact-page] .reference-contact-form-intro {
    height: 52px;
    margin: 0 0 8px;
  }

  main[data-reference-contact-page] .reference-contact-form-intro h3 {
    line-height: 24px;
  }

  main[data-reference-contact-page] .reference-contact-form-intro p {
    margin-top: 4px;
    line-height: 20px;
  }

  main[data-reference-contact-page] .reference-contact-topic-group {
    height: 176px;
    margin-bottom: 24px;
  }

  main[data-reference-contact-page] .reference-contact-row {
    height: 68px;
    grid-template-columns: repeat(2, minmax(0, 260px));
    gap: 16px;
    margin-bottom: 24px;
  }

  main[data-reference-contact-page] .reference-contact-form > label {
    height: 68px;
    margin-bottom: 24px;
    line-height: 20px;
  }

  main[data-reference-contact-page] .reference-contact-form > label:has(textarea) {
    height: 134px;
  }

  main[data-reference-contact-page] .reference-contact-row label {
    line-height: 20px;
  }

  main[data-reference-contact-page] .reference-contact-form input[type="text"],
  main[data-reference-contact-page] .reference-contact-form input[type="tel"],
  main[data-reference-contact-page] .reference-contact-form textarea {
    margin-top: 6px;
    line-height: 20px;
  }

  main[data-reference-contact-page] .reference-contact-form > .site-button {
    width: 536px;
    gap: 6px;
    padding-inline: 12px;
    font-size: 14px;
    line-height: 20px;
  }

  .engine-detail-page .page-hero-actions {
    width: 298px;
    justify-content: flex-start;
    gap: 16px;
    margin-inline: auto;
  }

  .engine-detail-page .page-hero-actions .site-button:first-child {
    width: 126px;
    min-width: 126px;
  }

  .engine-detail-page .page-hero-actions .site-button:nth-child(2) {
    width: 156px;
    min-width: 156px;
  }

  .engine-detail-page .page-hero-actions .site-button,
  .service-detail-page .page-hero-actions .site-button,
  .partner-reference-page .partner-hero-actions .site-button,
  .academy-reference-page .academy-hero-actions .site-button {
    padding-inline: 32px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .service-detail-page .page-hero-actions {
    width: 338px;
    justify-content: flex-start;
    gap: 16px;
    margin-inline: auto;
  }

  .service-detail-page .page-hero-actions .site-button:first-child {
    width: 166px;
    min-width: 166px;
  }

  .service-detail-page .page-hero-actions .site-button:nth-child(2) {
    width: 156px;
    min-width: 156px;
  }

  .partner-reference-page .partner-hero h1 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0;
    transform: scaleX(0.975);
    transform-origin: center;
  }

  .partner-reference-page .partner-hero h2 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0;
    transform: scaleX(0.975);
    transform-origin: center;
  }

  .partner-reference-page .partner-match-banner {
    margin-top: 64px;
    padding: 20px 40px;
    line-height: 24px;
  }

  .partner-reference-page .partner-hero-copy {
    transform: translateY(4.25px);
  }

  .academy-reference-page .academy-hero h1 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0;
    line-height: 1.1;
    transform: scaleX(0.975);
    transform-origin: center;
  }

  .academy-reference-page .academy-hero h2 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0;
    line-height: 1.1;
    transform: scaleX(0.975);
    transform-origin: center;
  }

  .skill-lobster-page .lobster-hero {
    display: flex;
    align-items: center;
    padding: 136px 0 104px;
  }

  .skill-lobster-page .lobster-hero-grid {
    height: 600px;
    grid-template-columns: 524.906px minmax(0, 1fr);
    gap: 76px;
  }

  .skill-lobster-page .lobster-hero-copy h1 {
    width: 518.142px;
    height: 241.703px;
    max-width: 518.142px;
    font-size: 82.225px;
    font-weight: 720;
    letter-spacing: 0;
    line-height: 77.2915px;
  }

  .skill-lobster-page .lobster-hero-description {
    width: 524.906px;
    max-width: 524.906px;
    margin-top: 32px;
    font-size: 16.445px;
    line-height: 30.4233px;
  }

  .skill-lobster-page .lobster-hero-actions {
    width: 524.906px;
    margin-top: 36px;
  }

  .skill-lobster-page .lobster-hero-actions .site-button {
    width: 155.5px;
    min-width: 155.5px;
    padding-inline: 32px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .skill-lobster-page .lobster-text-action {
    height: 44px;
    font-size: 14.72px;
    line-height: 22.08px;
  }

  .skill-lobster-page .lobster-hero-proof {
    width: 524.906px;
    margin-top: 36.8px;
    font-size: 12.16px;
    line-height: 18.24px;
  }

  .skill-lobster-page .lobster-install-section {
    height: 1312.484px;
    padding: 128px 0 144px;
    background: #f5f6f8;
  }

  .skill-lobster-page .lobster-section-intro {
    width: 760px;
    max-width: 760px;
    margin-bottom: 64px;
  }

  .skill-lobster-page .lobster-section-intro h2 {
    font-size: 56.925px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 58.0635px;
  }

  .skill-lobster-page .lobster-section-intro p {
    max-width: 660.75px;
    font-size: 16px;
    line-height: 28.8px;
  }

  .skill-lobster-page .lobster-install-grid {
    margin: 0 0 80px;
  }

  .skill-lobster-page .lobster-install-card {
    height: 364.328px;
    border-color: color-mix(in srgb, var(--brand) 16%, var(--reference-line));
    background: radial-gradient(circle at 92% 5%, color-mix(in srgb, var(--brand-soft) 74%, transparent), transparent 260px), #fff;
    text-align: center;
  }

  .skill-lobster-page .lobster-install-card-heading {
    flex: 0 0 auto;
  }

  .skill-lobster-page .lobster-install-card-heading > span {
    font-size: 11.52px;
    line-height: 17.28px;
  }

  .skill-lobster-page .lobster-install-card-heading h3 {
    margin-top: 17.6px;
    font-size: 37.95px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 40.986px;
  }

  .skill-lobster-page .lobster-install-card-heading p {
    max-width: 417.469px;
    margin: 16px auto 36px;
    font-size: 14.08px;
    line-height: 24.64px;
  }

  .skill-lobster-page .lobster-env-heading {
    margin-top: 0;
    margin-bottom: 25.6px;
  }

  .skill-lobster-page .lobster-env-heading h3 {
    font-size: 34.155px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 36.8874px;
  }

  .skill-lobster-page .lobster-env-item > a {
    min-height: 44px;
    margin-top: 0;
    padding-inline: 13.6px;
    border-radius: 12px;
    font-size: 11.52px;
    font-weight: 680;
  }

  .skill-lobster-page .lobster-env-item h3 {
    font-size: 16.8px;
    line-height: 24px;
  }

  .skill-lobster-page .lobster-env-item p {
    margin-top: 9.6px;
    font-size: 12.16px;
    line-height: 20.672px;
  }

  .skill-lobster-page .lobster-execution-section {
    height: 697.359px;
    padding: 128px 0 144px;
  }

  .skill-lobster-page .lobster-execution-flow {
    display: grid;
    min-height: 167.672px;
    box-sizing: border-box;
    align-items: center;
    grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    gap: 12px;
    margin-top: 0;
    border: 1px solid var(--reference-line);
    border-radius: 21.6px;
    padding: 33.6px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .skill-lobster-page .lobster-execution-flow > div {
    min-height: 98.484px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .skill-lobster-page .lobster-execution-flow > div > span {
    width: 44.8px;
    height: 44.8px;
    margin: 0 auto 13.6px;
    border-radius: 12.8px;
  }

  .skill-lobster-page .lobster-execution-flow strong {
    margin-top: 0;
    font-size: 13.12px;
    font-weight: 680;
    line-height: 19.68px;
  }

  .skill-lobster-page .lobster-execution-flow small {
    margin-top: 4.8px;
    font-size: 10.4px;
    line-height: 15.6px;
  }

  .skill-lobster-page .lobster-execution-flow > i {
    font-size: 0;
  }

  .skill-lobster-page .lobster-execution-flow > i::before {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 1.5px solid var(--brand);
    border-top: 1.5px solid var(--brand);
    content: "";
    transform: rotate(45deg) scale(.55);
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: 1460.938px;
    padding: 136px 0 160px;
    background: #f5f6f8;
  }

  .skill-lobster-page .lobster-capability-explorer-section .lobster-section-intro {
    margin-bottom: 64px;
  }

  .skill-lobster-page .lobster-capability-explorer {
    display: grid;
    height: 907.25px;
    min-height: 907.25px;
    grid-template-columns: 320px minmax(0, 1fr);
    margin-top: 0;
    overflow: hidden;
    border: 1px solid var(--reference-line);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .skill-lobster-page .lobster-capability-tabs {
    display: grid;
    align-content: start;
    gap: 5.6px;
    height: 905.25px;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 62.203px);
    padding: 16px;
    border-right: 1px solid var(--reference-line);
    background: radial-gradient(circle at 0 0, color-mix(in srgb, var(--brand-soft) 58%, transparent), transparent 288px), #f7f8fa;
  }

  .skill-lobster-page .lobster-capability-tabs button {
    display: grid;
    min-width: 0;
    min-height: 62.203px;
    box-sizing: border-box;
    align-items: center;
    grid-template-columns: 34.391px minmax(0, 1fr) 10.797px;
    gap: 11.52px;
    border: 1px solid transparent;
    border-radius: 13.6px;
    padding: 12.48px;
    color: var(--reference-muted);
    background: transparent;
    text-align: left;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .skill-lobster-page .lobster-capability-tabs button:hover {
    border-color: color-mix(in srgb, var(--brand) 14%, var(--reference-line));
    background: color-mix(in srgb, #fff 76%, transparent);
    color: var(--reference-ink);
    transform: translateX(2px);
  }

  .skill-lobster-page .lobster-capability-tabs button.is-active {
    border-color: color-mix(in srgb, var(--brand) 18%, var(--reference-line));
    background: #fff;
    color: var(--reference-ink);
    box-shadow: 0 10px 28px rgba(23, 36, 46, 0.07);
  }

  .skill-lobster-page .lobster-capability-tab-icon {
    display: inline-flex;
    width: 34.391px;
    height: 34.391px;
    align-items: center;
    justify-content: center;
    border-radius: 10.4px;
    background: color-mix(in srgb, var(--reference-line) 56%, transparent);
    color: var(--reference-muted);
  }

  .skill-lobster-page .lobster-capability-tabs button.is-active .lobster-capability-tab-icon {
    background: var(--brand-soft);
    color: var(--brand);
  }

  .skill-lobster-page .lobster-capability-tab-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .skill-lobster-page .lobster-capability-tabs strong,
  .skill-lobster-page .lobster-capability-tabs small {
    display: block;
  }

  .skill-lobster-page .lobster-capability-tabs strong {
    font-size: 12.64px;
    font-weight: 680;
    line-height: 18.96px;
  }

  .skill-lobster-page .lobster-capability-tabs small {
    margin-top: 2.4px;
    color: inherit;
    font-size: 10.08px;
    font-weight: 520;
    line-height: 16.128px;
  }

  .skill-lobster-page .lobster-capability-tabs i {
    position: static;
    color: color-mix(in srgb, var(--brand) 56%, var(--reference-muted));
    font-family: var(--font-data);
    font-size: 10.24px;
    font-style: normal;
    font-weight: 700;
  }

  .skill-lobster-page .lobster-capability-panels {
    min-width: 0;
    height: 905.25px;
  }

  .skill-lobster-page .lobster-capability-panel {
    display: none;
    height: 905.25px;
    min-height: 905.25px;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 56.925px;
    background: #fff;
    box-shadow: none;
  }

  .skill-lobster-page .lobster-capability-panel.is-active {
    display: block;
    animation: lobster-capability-enter 220ms ease both;
  }

  .skill-lobster-page .lobster-capability-panel[hidden] {
    display: none;
  }

  .skill-lobster-page .lobster-capability-panel-heading {
    width: 720px;
    max-width: 100%;
    height: 167.813px;
  }

  .skill-lobster-page .lobster-capability-panel-heading h3 {
    width: 444.578px;
    max-width: 100%;
    margin: 0;
    font-size: 50.6px;
    font-weight: 710;
    letter-spacing: 0;
    line-height: 51.612px;
  }

  .skill-lobster-page .lobster-capability-panel-heading p {
    width: 540.078px;
    max-width: 100%;
    margin: 17.6px 0 0;
    font-size: 13.44px;
    font-weight: 520;
    line-height: 23.52px;
  }

  .skill-lobster-page .lobster-capability-shell {
    width: 781.156px;
    height: 590px;
    min-height: 590px;
    margin-top: 33.6px;
  }

  .skill-lobster-page .lobster-capability-shell > .lobster-agent-window {
    top: 0;
    left: 0;
    width: 749.156px;
    height: 333.266px;
    border-radius: 20px;
  }

  .skill-lobster-page .lobster-capability-shell > .lobster-agent-window .lobster-window-header {
    height: 49.594px;
    min-height: 49.594px;
    box-sizing: border-box;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 16px;
  }

  .skill-lobster-page .lobster-capability-shell > .lobster-agent-window .lobster-agent-body {
    height: 281.672px;
    box-sizing: border-box;
    padding: 23.2px;
  }

  .skill-lobster-page .lobster-capability-prompt-heading {
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .skill-lobster-page .lobster-capability-prompt-heading span {
    color: var(--reference-muted);
    font-size: 9.76px;
    font-weight: 650;
    line-height: 14.64px;
  }

  .skill-lobster-page .lobster-capability-prompt-heading button {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--reference-line);
    border-radius: 8px;
    color: var(--reference-muted);
    background: #fff;
    cursor: pointer;
  }

  .skill-lobster-page .lobster-capability-prompt-heading svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .skill-lobster-page .lobster-capability-shell .lobster-chat-message {
    gap: 10.4px;
  }

  .skill-lobster-page .lobster-capability-shell .lobster-chat-message.is-agent {
    margin-top: 18.4px;
  }

  .skill-lobster-page .lobster-capability-shell .lobster-chat-bubble {
    max-width: 87%;
    padding: 14.4px 16px;
    border-radius: 13.6px 13.6px 3.52px 13.6px;
    font-size: 12.64px;
    font-weight: 520;
    line-height: 20.856px;
  }

  .skill-lobster-page .lobster-capability-shell .lobster-chat-message.is-agent .lobster-chat-bubble {
    border-radius: 13.6px 13.6px 13.6px 3.52px;
  }

  .skill-lobster-page .lobster-capability-shell .lobster-agent-mark {
    width: 28px;
    height: 28px;
    border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
    border-radius: 8.8px;
    color: var(--brand);
    background: var(--brand-soft);
  }

  .skill-lobster-page .lobster-capability-step-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7.68px 16px;
    margin-top: 14.4px;
    color: var(--reference-muted);
    font-size: 10.24px;
    font-weight: 520;
    line-height: 16.896px;
  }

  .skill-lobster-page .lobster-capability-terminal {
    right: 0;
    bottom: 76.406px;
    width: 656.156px;
    height: 187.594px;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 18.4px;
    background: #10131b;
  }

  .skill-lobster-page .lobster-capability-terminal .lobster-terminal-body {
    min-height: 136px;
    box-sizing: border-box;
    padding: 18.4px 20.8px 20.8px;
    color: rgba(255, 255, 255, 0.78);
    background: #10131b;
    font-size: 10.72px;
    line-height: 16.616px;
  }

  .skill-lobster-page .lobster-capability-results {
    position: absolute;
    bottom: 0;
    left: 17.594px;
    display: grid;
    width: 593.672px;
    height: 84.797px;
    box-sizing: border-box;
    grid-template-columns: 50.859px repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
    border: 1px solid var(--reference-line);
    border-radius: 16px;
    padding: 12.8px 16px;
    background: rgba(255, 255, 255, 0.94);
  }

  .skill-lobster-page .lobster-capability-results .demo-badge {
    display: inline-flex;
    width: 50.859px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 9.76px;
    font-weight: 650;
    white-space: nowrap;
  }

  .skill-lobster-page .lobster-capability-results > div {
    display: grid;
    gap: 3.2px;
    min-width: 0;
    padding-left: 16px;
    border-left: 1px solid var(--reference-line);
  }

  .skill-lobster-page .lobster-capability-results small {
    color: var(--reference-muted);
    font-size: 9.76px;
    line-height: 14.64px;
  }

  .skill-lobster-page .lobster-capability-results strong {
    overflow: hidden;
    color: var(--reference-ink);
    font-size: 11.52px;
    font-weight: 690;
    line-height: 17.28px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .skill-lobster-page .capability-empty {
    min-height: 792px;
    place-content: center;
  }

  .skill-lobster-page .lobster-final-cta {
    height: 615.859px;
    padding: 128px 0 112px;
    background: radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--brand-soft) 86%, transparent), transparent 400px), #eef0f5;
  }

  .skill-lobster-page .lobster-final-cta-inner {
    height: 222.938px;
    grid-template-columns: minmax(0, 1fr) 221.25px;
    gap: 48px;
    align-items: start;
  }

  .skill-lobster-page .lobster-final-copy h2 {
    max-width: 10ch;
    color: var(--reference-ink);
    font-size: 56.925px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 58.0635px;
  }

  .skill-lobster-page .lobster-final-copy p {
    margin-top: 20px;
    color: var(--reference-muted);
    font-size: 16px;
    line-height: 28.8px;
  }

  .skill-lobster-page .lobster-final-actions {
    gap: 16px;
  }

  .skill-lobster-page .lobster-final-actions span {
    color: var(--reference-muted);
    font-size: 10.88px;
    font-weight: 600;
    line-height: 17.408px;
  }

  .skill-lobster-page .lobster-capability-marquee {
    width: max-content;
    height: auto;
    gap: 33.6px;
    margin-top: 96px;
    border: 0;
    padding: 0;
    color: color-mix(in srgb, var(--reference-ink) 28%, transparent);
    font-size: 33.28px;
    line-height: 49.92px;
  }

  .skill-lobster-page .lobster-capability-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 33.6px;
    color: inherit;
    font-size: inherit;
    font-weight: 680;
    letter-spacing: 0;
  }

  .skill-lobster-page .lobster-capability-marquee i {
    width: 6.08px;
    height: 6.08px;
    flex: 0 0 auto;
    background: var(--brand);
  }
}

.blog-page .blog-card-meta span.blog-meta-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: #858a93;
  background: transparent;
}

@media (min-width: 1121px) {
  .blog-page .blog-list-main {
    min-height: 2113px;
    padding-top: 56px;
  }

  .blog-page .blog-list-head h1 {
    width: max-content;
    font-size: 22px;
    line-height: 33px;
    transform: scaleX(0.975);
    transform-origin: left;
  }

  .blog-page .blog-filters {
    grid-template-columns: 160px 130px 240px;
    align-items: center;
    gap: 12px;
  }

  .blog-page .blog-filters select {
    height: 36px;
    appearance: none;
    border-radius: 12px;
    padding: 0 34px 0 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 14px;
    font-size: 13px;
    font-weight: 500;
  }

  .blog-page .blog-filters input {
    height: 40px;
    border-radius: 16px;
    padding: 0 40px 0 16px;
    font-size: 13px;
  }

  .blog-page .blog-card-list {
    gap: 20px;
    margin-top: 32px;
  }

  .blog-page .blog-card {
    height: 164px;
    min-height: 164px;
    border: 0;
    border-radius: 12px;
    padding: 24px 20px 16px;
  }

  .blog-page .blog-card h2 {
    font-size: 18px;
    line-height: 22.5px;
  }

  .blog-page .blog-card p {
    height: 46.8px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 23.4px;
  }

  .blog-page .blog-card-meta {
    height: 22.5px;
    gap: 8px 12px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 18px;
  }

  .blog-page .blog-card-meta > span {
    height: 20.5px;
    border-radius: 8px;
    padding: 2px 6px;
    color: #1f9d55;
    background: #e8f7ef;
    font-size: 11px;
    line-height: 16.5px;
  }

  .blog-page .blog-card-meta > span:first-child {
    width: 58px;
    height: 22.5px;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 8%, #fff);
    font-weight: 600;
  }

  .blog-page .blog-card-meta > span:nth-child(3),
  .blog-page .blog-card-meta > span:nth-child(4) {
    margin-left: -6px;
  }

  .blog-page .blog-card-meta span.blog-meta-stat {
    height: 18px;
    gap: 4px;
    margin-left: 0;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
  }

  .blog-page .blog-card-meta span.blog-meta-time {
    width: 93.8px;
  }

  .blog-page .blog-card-meta span.blog-meta-views,
  .blog-page .blog-card-meta span.blog-meta-likes {
    width: 23.8px;
  }

  .blog-page .blog-card-meta span.blog-meta-stat::before {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
}

.blog-page .blog-card-meta span.blog-meta-stat::before {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: currentColor;
  content: "";
  opacity: 0.82;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.blog-page .blog-card-meta span.blog-meta-time::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.blog-page .blog-card-meta span.blog-meta-views::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E");
}

.blog-page .blog-card-meta span.blog-meta-likes::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10v10H3V10h4Zm0 9c5 2 9 2 11 0l2-7c.3-1.1-.5-2-1.6-2H14l.7-3.1A2.4 2.4 0 0 0 12.4 4L7 10'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10v10H3V10h4Zm0 9c5 2 9 2 11 0l2-7c.3-1.1-.5-2-1.6-2H14l.7-3.1A2.4 2.4 0 0 0 12.4 4L7 10'/%3E%3C/svg%3E");
}

/* Stable mobile homepage geometry measured against the reference site. */
@media (max-width: 760px) {
  .home-page .hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 32px;
    row-gap: 32px;
    margin-top: 36px;
  }

  .home-page .hero-stat {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
  }

  .home-page .hero-stat strong {
    font-family: var(--font-sans);
    font-size: 28px;
    line-height: 1;
  }

  .home-page .hero-stat span {
    margin-top: 8px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .home-page .hero-audit-head button {
    border: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
  }

  .home-page .hero-actions .site-button {
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
  }
}

/* Desktop homepage sections follow the reference viewport-driven geometry. */
@media (min-width: 1121px) {
  .home-page .home-hero {
    height: auto;
    min-height: 100vh;
  }

  .home-page .insights-section {
    height: calc(166vh + 160px);
    min-height: calc(166vh + 160px);
  }

  .home-page .insights-copy {
    transform: none;
  }

  .home-page .insights-copy .section-description {
    max-width: none;
  }

  .home-page .insight-timeline {
    height: 166vh;
  }
}

/* Measured mobile geometry for the reference engine-service and pricing pages. */
@media (max-width: 760px) {
  .service-detail-page .page-hero-grid {
    transform: translateY(-38px);
  }

  .service-detail-page .page-hero h1 {
    letter-spacing: -1px;
    transform: none;
  }

  .service-detail-page .page-hero h2 {
    transform: translateY(5px);
  }

  .service-detail-page .page-hero p {
    transform: translateY(5px);
  }

  .service-detail-page .page-hero-actions {
    margin-top: 45px;
  }

  .pricing-detail-page .pricing-title-section {
    height: 205.59375px;
  }

  .pricing-detail-page .pricing-title-section > div {
    width: 327px;
    max-width: 100%;
    transform: translateY(-13px);
  }

  .pricing-detail-page .pricing-title-section h1 {
    width: 100%;
    font-weight: 700;
    letter-spacing: -1.8px;
    text-align: center;
  }

  .pricing-detail-page .pricing-matrix-section {
    height: 1750px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-matrix-scroll {
    padding-top: 20px;
  }

  .pricing-detail-page .pricing-closing-card .site-button {
    flex: 0 0 auto;
    padding-inline: 32px;
  }

  .pricing-detail-page .pricing-closing-card .site-button:first-child {
    width: 150px;
  }

  .pricing-detail-page .pricing-closing-card .site-button:nth-child(2) {
    width: 126px;
  }
}

/* Measured phone geometry for the remaining reference page families.
   Brand copy, routes, and the original product logo stay unchanged. */
@media (max-width: 760px) {
  .academy-reference-page .academy-hero {
    height: 590.796875px;
    min-height: 590.796875px;
  }

  .academy-reference-page .academy-hero-copy {
    display: grid;
    height: 100%;
    place-content: center;
    justify-items: center;
    padding: 0 24px;
  }

  .academy-reference-page .academy-hero h1 {
    width: auto;
    max-width: 327px;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 44px;
    white-space: normal;
  }

  .academy-reference-page .academy-hero h2 {
    width: 327px;
    max-width: 100%;
    margin: 8px 0 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.7px;
    line-height: 30.8px;
    white-space: normal;
  }

  .academy-reference-page .academy-hero p {
    width: 327px;
    max-width: 100%;
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 24px;
  }

  .academy-reference-page .academy-hero-actions {
    display: flex;
    width: 268px;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 40px;
  }

  .academy-reference-page .academy-hero-actions .site-button {
    width: 126px;
    min-width: 126px;
    min-height: 52px;
    flex: 0 0 126px;
    padding-inline: 0;
  }

  .academy-reference-page .academy-course-section {
    height: 1649.640625px;
    min-height: 1649.640625px;
    box-sizing: border-box;
    padding: 80px 0;
  }

  .academy-reference-page .academy-course-grid {
    gap: 24px;
    margin-top: 40px;
  }

  .academy-reference-page .academy-course-card {
    height: 439.875px;
    min-height: 439.875px;
  }

  .academy-reference-page .academy-mentor-section {
    height: 1235.0625px;
    min-height: 1235.0625px;
    box-sizing: border-box;
    padding: 80px 0;
  }

  .academy-reference-page .academy-mentor-layout {
    display: block;
    width: calc(100% - 48px);
  }

  .academy-reference-page .academy-mentor-stage {
    margin-top: 0;
  }

  .academy-reference-page .academy-mentor-cards {
    gap: 24px;
    margin-top: 56px;
  }

  .academy-reference-page .academy-benefit-section {
    height: 521px;
    min-height: 521px;
    box-sizing: border-box;
    padding: 64px 0;
  }

  .academy-reference-page .academy-benefit-layout {
    display: block;
    width: calc(100% - 48px);
  }

  .partner-reference-page .partner-hero {
    height: 590.796875px;
    min-height: 590.796875px;
  }

  .partner-reference-page .partner-hero-copy {
    display: block;
    height: 590.796875px;
    min-height: 590.796875px;
    box-sizing: border-box;
    padding: 65.90625px 24px 0;
    transform: none;
  }

  .partner-reference-page .partner-hero h1 {
    width: 327px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.9px;
    line-height: 39.6px;
    white-space: normal;
    transform: none;
  }

  .partner-reference-page .partner-hero h2 {
    width: 327px;
    max-width: 100%;
    margin: 8px auto 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.6px;
    line-height: 26.4px;
    white-space: normal;
    transform: none;
  }

  .partner-reference-page .partner-hero p {
    width: 327px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
  }

  .partner-reference-page .partner-hero-actions {
    display: flex;
    width: 327px;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 64px auto 0;
  }

  .partner-reference-page .partner-hero-actions .site-button {
    width: 156px;
    min-width: 156px;
    min-height: 52px;
    flex: 0 0 156px;
    padding-inline: 0;
  }

  .partner-reference-page .partner-match-banner {
    display: flex;
    width: 327px;
    min-width: 0;
    min-height: 91px;
    margin: 64px auto 0;
    padding: 14px 18px;
    line-height: 1.5;
    text-align: center;
  }

  .partner-reference-page .partner-rights-section {
    height: 1971.796875px;
    min-height: 1971.796875px;
    box-sizing: border-box;
    padding: 64px 0;
  }

  .partner-reference-page .partner-rights-intro-card .partner-section-title h2 {
    width: max-content;
    max-width: 100%;
    margin-top: 12px;
    font-size: 28px;
    letter-spacing: -0.7px;
    line-height: 30.8px;
    white-space: nowrap;
  }

  .partner-reference-page .partner-condition-section {
    height: 743.875px;
    min-height: 743.875px;
    box-sizing: border-box;
    padding: 64px 0;
  }

  .partner-reference-page .partner-condition-contact .site-button {
    display: none;
  }

  .skill-lobster-page .lobster-hero {
    height: 1361.03125px;
    min-height: 1361.03125px;
    box-sizing: border-box;
    padding: 126px 0 80px;
  }

  .skill-lobster-page .lobster-container {
    width: calc(100% - 32px);
  }

  .skill-lobster-page .lobster-hero-grid {
    display: block;
    height: auto;
  }

  .skill-lobster-page .lobster-hero-copy h1 {
    width: 343px;
    max-width: 100%;
    height: auto;
    font-size: 58.5px;
    font-weight: 720;
    letter-spacing: -4.3875px;
    line-height: 54.99px;
  }

  .skill-lobster-page .lobster-hero-copy h1 > span {
    margin-top: 8px;
  }

  .skill-lobster-page .lobster-mobile-break {
    display: block;
  }

  .skill-lobster-page .lobster-desktop-break {
    display: none;
  }

  .skill-lobster-page .lobster-hero-description {
    width: 343px;
    max-width: 100%;
    margin-top: 32px;
    font-size: 16px;
    font-weight: 500;
    line-height: 29.6px;
  }

  .skill-lobster-page .lobster-hero-actions {
    width: 343px;
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 36px;
  }

  .skill-lobster-page .lobster-hero-actions .site-button {
    width: 155.5px;
    min-width: 155.5px;
    height: 52px;
    min-height: 52px;
    flex: 0 0 52px;
  }

  .skill-lobster-page .lobster-text-action {
    height: 44px;
    justify-content: flex-start;
  }

  .skill-lobster-page .lobster-hero-proof {
    display: grid;
    width: 343px;
    gap: 9.6px;
    margin-top: 36.8px;
    font-size: 12.16px;
    line-height: 18.24px;
  }

  .skill-lobster-page .lobster-hero-demo {
    width: 343px;
    margin-top: 47.14px;
  }

  .skill-lobster-page .lobster-hero-stage {
    width: 343px;
    height: 560px;
    min-height: 560px;
  }

  .skill-lobster-page .lobster-install-section {
    height: 1821.09375px;
    min-height: 1821.09375px;
    box-sizing: border-box;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-execution-section {
    height: 1034.375px;
    min-height: 1034.375px;
    box-sizing: border-box;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-execution-flow {
    display: grid;
    width: 343px;
    height: 563.9375px;
    min-height: 563.9375px;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: 98.484375px 16px 98.484375px 16px 98.484375px 16px 98.484375px;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    border: 1px solid var(--reference-line);
    border-radius: 21.6px;
    padding: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .skill-lobster-page .lobster-execution-flow > div {
    display: grid;
    height: 98.484375px;
    min-height: 98.484375px;
    place-content: center;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .skill-lobster-page .lobster-execution-flow > div > span {
    width: 44.8px;
    height: 44.8px;
    margin: 0 auto 13.6px;
    border-radius: 12.8px;
  }

  .skill-lobster-page .lobster-execution-flow strong {
    margin-top: 0;
    font-size: 13.12px;
    font-weight: 680;
    line-height: 19.68px;
  }

  .skill-lobster-page .lobster-execution-flow small {
    margin-top: 4.8px;
    font-size: 10.4px;
    line-height: 15.6px;
  }

  .skill-lobster-page .lobster-execution-flow > i {
    display: grid;
    width: 16px;
    height: 16px;
    place-self: center;
    place-content: center;
    font-size: 0;
    transform: rotate(90deg);
  }

  .skill-lobster-page .lobster-execution-flow > i::before {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 1.5px solid var(--brand);
    border-top: 1.5px solid var(--brand);
    content: "";
    transform: rotate(45deg) scale(.55);
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: 1706.15625px;
    min-height: 1706.15625px;
    box-sizing: border-box;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-final-cta {
    height: 600.359375px;
    min-height: 600.359375px;
    box-sizing: border-box;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-final-cta-inner {
    display: block;
    height: auto;
    padding: 0;
  }
}

/* Final secondary-page phone calibration. These are page-scoped so the
   existing desktop composition and product entry routes remain intact. */
@media (max-width: 760px) {
  body.reference-about-page .reference-subpage-title {
    height: 128.6px;
    box-sizing: border-box;
    padding: 64px 0 24px;
  }

  main[data-reference-contact-page] .reference-subpage-title {
    height: 128.6px;
    box-sizing: border-box;
    padding: 64px 0 24px;
  }

  body.reference-about-page .reference-subpage-title h1 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.1;
  }

  main[data-reference-contact-page] .reference-subpage-title h1 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.1;
  }

  body.reference-about-page .reference-content-shell {
    width: calc(100% - 48px);
  }

  main[data-reference-contact-page] .reference-content-shell {
    width: calc(100% - 48px);
  }

  body.reference-about-page .reference-subpage-tabs a,
  main[data-reference-contact-page] .reference-subpage-tabs a {
    padding-bottom: 12px;
    font-size: 15px;
    line-height: 22.5px;
  }

  body.reference-about-page .reference-about-content {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 40px 0 80px;
  }

  body.reference-about-page .reference-document {
    font-size: 16px;
    line-height: 1.8;
  }

  body.reference-about-page .reference-document h2 {
    font-size: 24px;
    line-height: 1.8;
  }

  body.reference-about-page .reference-document h3 {
    font-size: 18px;
  }

  body.reference-about-page .reference-document ul {
    display: block;
  }

  body.reference-about-page .reference-document ul:first-of-type {
    min-height: 335.96875px;
  }

  body.reference-about-page .reference-document ul:last-of-type {
    min-height: 319.96875px;
  }

  body.reference-about-page .reference-document table {
    display: table;
    width: 100%;
    table-layout: fixed;
    overflow: hidden;
    white-space: normal;
  }

  body.reference-about-page .reference-document th,
  body.reference-about-page .reference-document td {
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .reference-scale-table th:nth-child(1),
  .reference-scale-table td:nth-child(1) {
    width: 17%;
  }

  .reference-scale-table th:nth-child(2),
  .reference-scale-table td:nth-child(2) {
    width: 24%;
  }

  .reference-scale-table th:nth-child(3),
  .reference-scale-table td:nth-child(3) {
    width: 30%;
  }

  .reference-scale-table th:nth-child(4),
  .reference-scale-table td:nth-child(4) {
    width: 29%;
  }

  .reference-scale-table tbody tr:nth-child(2) {
    height: 121.75px;
  }

  .reference-capability-table tbody tr {
    height: 121.75px;
  }

  .reference-capability-table tbody tr:nth-child(2) {
    height: 146.9375px;
  }

  .reference-capability-table tbody tr:last-child {
    height: 120.75px;
  }

  body.reference-about-page .reference-about-image-grid {
    gap: 16px;
    margin: 20px 0 28px;
  }

  body.reference-about-page .reference-about-image-grid figure {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.reference-about-page .reference-about-image-grid img {
    height: 242.59375px;
    aspect-ratio: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  body.reference-about-page .reference-about-image-grid figcaption {
    margin-top: 8px;
    padding: 0;
  }

  .reference-cases-main {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 40px 0 64px;
  }

  .reference-cases-content {
    width: calc(100% - 48px);
  }

  .reference-cases-main h1 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.5;
  }

  .reference-case-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reference-case-group + .reference-case-group {
    margin-top: 56px;
  }

  main[data-reference-contact-page] .reference-contact-content {
    height: auto;
    min-height: 0;
    padding: 40px 0 80px;
  }

  main[data-reference-contact-page] .reference-contact-grid {
    display: grid;
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reference-contact-stack {
    gap: 40px;
  }

  .reference-contact-stack h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .reference-contact-info p:last-child {
    line-height: 20px;
  }

  .reference-contact-action h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .reference-contact-apply-card {
    height: 222px;
    padding: 24px;
  }

  .reference-contact-apply-mark {
    width: 144px;
    height: 144px;
  }

  .reference-contact-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reference-contact-topic {
    height: 89.15625px;
    min-height: 89.15625px;
  }

  .reference-contact-topic b,
  .reference-contact-topic small {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .reference-contact-row {
    grid-template-columns: 1fr;
  }

  .reference-contact-form-card {
    height: 834.3125px;
    box-sizing: border-box;
    padding: 32px;
  }

  .reference-contact-form {
    display: block;
    width: 276px;
    max-width: 100%;
    height: 768.3125px;
  }

  .reference-contact-form-intro {
    height: 52px;
    margin: 0 0 8px;
  }

  .reference-contact-form-intro h3 {
    line-height: 28px;
  }

  .reference-contact-form-intro p {
    margin-top: 4px;
    line-height: 20px;
  }

  .reference-contact-topic-group {
    height: 222.3125px;
    margin-bottom: 24px;
  }

  .reference-contact-topic-group > label {
    height: 20px;
    margin-bottom: 12px;
    line-height: 20px;
  }

  .reference-contact-topic-grid {
    height: 190.3125px;
  }

  .reference-contact-row {
    height: 152px;
    grid-template-rows: repeat(2, 68px);
    gap: 16px;
    margin-bottom: 24px;
  }

  .reference-contact-row label,
  .reference-contact-form > label {
    height: 68px;
    line-height: 20px;
  }

  .reference-contact-form > label {
    margin-bottom: 24px;
  }

  .reference-contact-form > label:has(textarea) {
    height: 134px;
  }

  .reference-contact-form input[type="text"],
  .reference-contact-form input[type="tel"],
  .reference-contact-form textarea {
    line-height: 20px;
  }

  .reference-contact-form > .site-button {
    font-size: 14px;
    line-height: 20px;
  }

  .auth-reference-shell {
    padding: 114px 20px 72px;
  }

  .auth-reference-content {
    row-gap: 0;
  }

  .auth-reference-form-panel h1 {
    font-size: 32px;
    line-height: 48px;
  }

  .auth-reference-subtitle {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .auth-reference-other {
    display: flex;
    height: 18px;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #6c7483;
    font-size: 12px;
    line-height: 18px;
  }

  .auth-reference-other span {
    height: 1px;
    flex: 1;
    background: #eceef2;
  }

  .auth-reference-other b {
    flex: 0 0 auto;
    font: inherit;
  }

  .auth-reference-register-desktop {
    display: none;
  }

  .auth-reference-register-mobile {
    display: block;
    width: 100%;
    margin: 16px 0 0;
  }

  .auth-reference-apply {
    display: block;
    width: 100%;
    height: 44px;
    min-height: 44px;
    margin: 0;
    border: 0;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
  }

  .auth-reference-apply .auth-apply-visual,
  .auth-reference-apply > strong,
  .auth-reference-apply > p {
    display: none;
  }

  .auth-reference-apply .auth-apply-link {
    display: flex;
    width: 100%;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    margin: 0;
    border: 1px solid #e1e4e9;
    border-radius: 8px;
    padding: 0;
    color: #252a35;
    background: #fff;
  }

  .auth-reference-legal {
    right: 32px;
    bottom: 32px;
    left: 32px;
    font-size: 11px;
    line-height: 16.5px;
  }

  body.reference-about-page .site-footer,
  body.reference-hero-page:has(main[data-reference-cases-page]) .site-footer,
  body.reference-partner-page .site-footer {
    height: auto;
    min-height: 954px;
    overflow: visible;
  }
}

/* Element-level mobile parity. The product copy and original logo remain
   local; these values only reproduce the reference page geometry. */
@media (max-width: 760px) {
  .service-detail-page .page-hero p {
    white-space: nowrap;
    transform: translateY(5px);
  }

  .pricing-detail-page .pricing-title-section {
    height: 181.78125px;
  }

  .pricing-detail-page .pricing-title-section > div {
    width: 342px;
    max-width: 100%;
    transform: translateY(-13px);
  }

  .pricing-detail-page .pricing-title-section p {
    white-space: nowrap;
  }

  .pricing-detail-page .pricing-matrix-section {
    height: 1734.8125px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-faq-section {
    height: 727.46875px;
  }

  .engine-detail-page .engine-source-section {
    height: 2811.1875px;
    min-height: 2811.1875px;
  }

  .academy-reference-page .academy-course-section {
    height: 1626.25px;
    min-height: 1626.25px;
    padding: 80px 0;
  }

  .academy-reference-page .academy-course-card:nth-child(1) {
    height: 466.234375px;
    min-height: 466.234375px;
  }

  .academy-reference-page .academy-course-card:nth-child(2) {
    height: 396.0625px;
    min-height: 396.0625px;
  }

  .academy-reference-page .academy-course-card:nth-child(3) {
    height: 419.453125px;
    min-height: 419.453125px;
  }

  .academy-reference-page .academy-mentor-section {
    height: 1193.125px;
    min-height: 1193.125px;
    padding: 80px 0;
  }

  .academy-reference-page .academy-mentor-card:first-child {
    height: 224.375px;
    min-height: 224.375px;
  }

  .academy-reference-page .academy-mentor-card:nth-child(n + 2) {
    height: 199.1875px;
    min-height: 199.1875px;
  }

  .partner-reference-page .partner-rights-section {
    height: 1944.796875px;
    min-height: 1944.796875px;
  }

  .partner-reference-page .partner-rights-intro-card {
    height: 600.796875px;
    min-height: 600.796875px;
    padding: 24px;
  }

  .partner-reference-page .partner-rights-grid {
    margin-top: 32px;
  }

  .partner-reference-page .partner-rights-grid article {
    height: 184px;
    min-height: 184px;
    padding: 20px;
  }

  .partner-reference-page .partner-metrics-section {
    height: 181px;
    min-height: 181px;
    box-sizing: border-box;
    padding: 48px 0;
  }

  .partner-reference-page .partner-metrics {
    height: 85px;
  }

  .partner-reference-page .partner-showcase-section {
    height: 272.375px;
    min-height: 272.375px;
  }

  .partner-reference-page .partner-showcase-section img {
    height: 192.375px;
  }

  .partner-reference-page .partner-advantage-section {
    height: 1205.875px;
    min-height: 1205.875px;
    box-sizing: border-box;
    padding: 80px 0;
  }

  .partner-reference-page .partner-process-section {
    height: 780px;
    min-height: 780px;
    box-sizing: border-box;
    padding: 80px 0;
  }

  .partner-reference-page .partner-condition-section {
    height: 698.875px;
    min-height: 698.875px;
    box-sizing: border-box;
    padding: 64px 0;
  }

  .partner-reference-page .partner-condition-layout > .partner-section-title {
    height: 42px;
    margin-bottom: 40px;
  }

  .partner-reference-page .partner-condition-layout > .partner-section-title h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .partner-reference-page .partner-condition-item {
    height: 54.5px;
    min-height: 54.5px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
  }

  .partner-reference-page .partner-condition-contact {
    height: 261.375px;
    min-height: 261.375px;
    margin-top: 16px;
  }

  .skill-lobster-page .lobster-section-intro {
    margin-bottom: 44.8px;
  }

  .skill-lobster-page .lobster-section-intro h2 {
    font-size: 42.9px;
    line-height: 43.758px;
  }

  .skill-lobster-page .lobster-install-section {
    height: 1777.34375px;
    min-height: 1777.34375px;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-install-grid {
    height: 395.078125px;
    margin: 0 0 60px;
  }

  .skill-lobster-page .lobster-install-card {
    height: 395.078125px;
    min-height: 395.078125px;
  }

  .skill-lobster-page .lobster-env-heading {
    height: 28.515625px;
    margin: 0 0 21.6px;
  }

  .skill-lobster-page .lobster-env-heading h3 {
    font-size: 25.6px;
    line-height: 28.515625px;
  }

  .skill-lobster-page .lobster-env-rail {
    height: 845.46875px;
    gap: 18.4px;
    margin-top: 0;
  }

  .skill-lobster-page .lobster-env-item {
    height: 269.5625px;
    min-height: 269.5625px;
    padding: 20px;
  }

  .skill-lobster-page .lobster-execution-section {
    height: 1034.375px;
    min-height: 1034.375px;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: 1630.5625px;
    min-height: 1630.5625px;
    padding: 88px 0 100px;
  }

  .skill-lobster-page .lobster-capability-explorer {
    display: block;
    height: 1175.078125px;
    min-height: 1175.078125px;
    margin-top: 0;
    overflow: hidden;
  }

  .skill-lobster-page .lobster-capability-tabs {
    display: flex;
    width: 100%;
    height: 85.578125px;
    box-sizing: border-box;
    gap: 5.6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 11.2px;
  }

  .skill-lobster-page .lobster-capability-tabs button {
    display: grid;
    width: 216px;
    min-width: 216px;
    height: 62.203125px;
    min-height: 62.203125px;
    grid-template-columns: 34.390625px 120.84375px 10.796875px;
    gap: 11.52px;
    padding: 12.48px;
  }

  .skill-lobster-page .lobster-capability-panel {
    height: 1087.5px;
    min-height: 1087.5px;
    margin-top: 0;
    padding: 20px;
  }

  .reference-case-card {
    height: 284.5px;
    min-height: 284.5px;
  }
}

/* Desktop Skill composition measured from the reference site's fluid layout. */
@media (min-width: 1121px) {
  .reference-cases-content {
    width: min(calc(100% - 160px), 1200px);
  }

  .reference-case-card {
    height: 306.625px;
  }

  .skill-lobster-page .lobster-hero {
    height: auto;
    min-height: max(100dvh, 840px);
  }

  .skill-lobster-page .lobster-container {
    width: min(calc(100% - 48px), 1240px);
  }

  .skill-lobster-page .lobster-hero-grid {
    width: min(calc(100% - 48px), 1320px);
    height: 600px;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: clamp(48px, 6vw, 112px);
  }

  .skill-lobster-page .lobster-hero-copy {
    transform: translateY(clamp(0px, calc(93.050675675676px - 6.461148648649vw), 4.78125px));
  }

  .skill-lobster-page .lobster-hero-copy h1 {
    width: auto;
    height: auto;
    max-width: 9.3ch;
    font-size: clamp(60.8px, 6.5vw, 110.4px);
    line-height: .94;
  }

  .skill-lobster-page .lobster-hero-copy h1 span {
    margin-top: .12em;
  }

  .skill-lobster-page .lobster-hero-description {
    width: auto;
    max-width: 560px;
    font-size: clamp(16px, 1.3vw, 18.56px);
    line-height: 1.85;
  }

  .skill-lobster-page .lobster-hero-actions,
  .skill-lobster-page .lobster-hero-proof {
    width: auto;
  }

  .skill-lobster-page .lobster-install-section {
    height: calc(1067.359866352201px + 19.329795597484vw);
  }

  .skill-lobster-page .lobster-execution-section {
    height: calc(581.250098270440px + 9.178459119497vw);
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: calc(713.711281446541px + 58.687106918239vw);
  }

  .skill-lobster-page .lobster-final-cta {
    height: calc(384.647110849057px + 18.278301886792vw);
  }
}

@media (min-width: 1281px) {
  .skill-lobster-page .lobster-install-section {
    height: calc(1118.502180232558px + 15.334302325581vw);
  }

  .skill-lobster-page .lobster-execution-section {
    height: calc(581.059956395349px + 9.193313953488vw);
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: calc(1147.696947674419px + 24.781976744186vw);
  }

  .skill-lobster-page .lobster-final-cta {
    height: calc(384.655886627907px + 18.277616279070vw);
  }
}

@media (min-width: 1367px) {
  .skill-lobster-page .lobster-install-section {
    height: calc(1118.280827702703px + 15.350506756757vw);
  }

  .skill-lobster-page .lobster-execution-section {
    height: calc(581.462415540541px + 9.163851351351vw);
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: calc(1249.706925675676px + 17.314189189189vw);
  }

  .skill-lobster-page .lobster-final-cta {
    height: calc(429.543496621622px + 14.991554054054vw);
  }
}

@media (min-width: 1441px) {
  .skill-lobster-page .lobster-install-section {
    height: 1339.328125px;
  }

  .skill-lobster-page .lobster-execution-section {
    height: 713.421875px;
  }

  .skill-lobster-page .lobster-capability-explorer-section {
    height: 1499.03125px;
  }

  .skill-lobster-page .lobster-final-cta {
    height: 645.421875px;
  }
}

/* Desktop Engine composition measured from the reference site. */
@media (min-width: 1121px) {
  .engine-detail-page .engine-showcase-section {
    transform: none;
  }

  .engine-detail-page .engine-features-section {
    height: 755.9375px;
    padding: 112px 0;
  }

  .engine-detail-page .engine-section-heading p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .engine-detail-page .engine-feature-grid {
    margin-top: 48px;
  }

  .engine-detail-page .engine-feature-item {
    min-height: 0;
  }

  .engine-detail-page .engine-feature-item:nth-child(-n + 3) {
    height: 195.5625px;
  }

  .engine-detail-page .engine-feature-item:nth-child(n + 4) {
    height: 170.375px;
  }

  .engine-detail-page .engine-feature-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .engine-detail-page .engine-source-section {
    height: 1471.5px;
  }

  .engine-detail-page .engine-compare-section {
    height: 702.5px;
  }
}

/* Desktop Pricing composition measured from the reference site. */
@media (min-width: 1121px) {
  .pricing-detail-page .pricing-title-section {
    height: 250.1875px;
  }

  .pricing-detail-page .pricing-title-section > div,
  .pricing-detail-page .pricing-title-section h1 {
    width: 100%;
  }

  .pricing-detail-page .pricing-matrix-section {
    height: 1598.5px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-matrix col:not(.pricing-module-column):not(.pricing-feature-column) {
    width: 209.25px;
  }

  .pricing-detail-page .pricing-matrix thead tr {
    height: 97.5px;
  }

  .pricing-detail-page .pricing-matrix tfoot button {
    width: 78px;
    height: 32px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-detail-page .pricing-matrix tfoot td:nth-child(4) button {
    width: 102px;
  }

  .pricing-detail-page .pricing-results-section {
    height: 276.5px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-narrow-inner {
    padding-top: 0;
  }

  .pricing-detail-page .pricing-comparison-table {
    margin-top: 32px;
  }

  .pricing-detail-page .pricing-faq-section {
    height: 593.125px;
  }

  .pricing-detail-page .pricing-faq-list {
    margin-top: 40px;
  }

  .pricing-detail-page .pricing-faq-item {
    height: 115.78125px;
  }

  .pricing-detail-page .pricing-closing-card {
    padding: 48px;
  }

  .pricing-detail-page .pricing-closing-card h2 {
    margin: 0 0 12px;
  }

  .pricing-detail-page .pricing-closing-card p {
    margin: 0 0 32px;
    line-height: 21px;
  }

  .pricing-detail-page .pricing-closing-card > div {
    margin-top: 0;
  }

  .pricing-detail-page .pricing-closing-card .site-button {
    width: auto;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    padding: 0 32px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .pricing-detail-page .pricing-closing-card .site-button:first-child {
    width: 150px;
  }

  .pricing-detail-page .pricing-closing-card .site-button:nth-child(2) {
    width: 126px;
  }
}

/* Desktop Academy and Partner heroes follow the reference 70vh rule. */
@media (min-width: 1121px) {
  .academy-reference-page .academy-hero,
  .partner-reference-page .partner-hero {
    height: 70vh;
    min-height: 0;
  }

  .academy-reference-page .academy-hero-copy,
  .partner-reference-page .partner-hero-copy {
    height: 100%;
    min-height: 0;
  }

.academy-reference-page .academy-course-section {
  height: 816.84375px;
}

  .academy-reference-page .academy-course-card {
    height: 442.84375px;
    min-height: 442.84375px;
  }

  .academy-reference-page .academy-mentor-section {
    height: 1190.375px;
  }

  .academy-reference-page .academy-mentor-card {
    height: 224.375px;
    min-height: 224.375px;
  }

.academy-reference-page .academy-benefit-section {
  height: 497.5px;
}

/* Final desktop partner section lock from the reference page measurements. */
  .partner-reference-page .partner-rights-section {
    height: 764.625px;
    min-height: 764.625px;
  }

  .partner-reference-page .partner-rights-intro-card {
    height: 604.625px;
    min-height: 604.625px;
    border-color: rgba(126, 87, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(92, 65, 180, 0.08);
  }

  .partner-reference-page .partner-rights-intro-card .partner-section-title > span {
    display: inline-flex;
    height: 26px;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    border: 1px solid rgba(126, 87, 255, 0.24);
    border-radius: 999px;
    padding: 4px 12px;
    color: var(--reference-accent);
    background: rgba(126, 87, 255, 0.06);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
  }

  .partner-reference-page .partner-rights-intro-card .partner-section-title > span svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
  }

  .partner-reference-page .partner-rights-intro-card .partner-section-title h2 {
    margin: 0;
    line-height: 46.2px;
  }

  .partner-reference-page .partner-rights-intro-card .partner-section-title p {
    font-size: 15px;
    line-height: 27px;
  }

  .partner-reference-page .partner-action-grid b {
    min-height: 46px;
    gap: 12px;
    border-color: rgba(126, 87, 255, 0.14);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--reference-ink);
    font-size: 14px;
    line-height: 20px;
  }

  .partner-reference-page .partner-action-grid b::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--reference-accent);
    content: "";
  }

  .partner-reference-page .partner-action-grid b:last-child {
    grid-column: auto;
  }

  .partner-reference-page .partner-rights-grid article {
    height: 190.875px;
    min-height: 190.875px;
    border-color: rgba(126, 87, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 52px rgba(37, 55, 113, 0.07);
  }

  .partner-reference-page .partner-rights-grid article > span {
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(126, 87, 255, 0.12), rgba(126, 87, 255, 0.05));
  }

  .partner-reference-page .partner-rights-grid h3 {
    margin: 0;
    line-height: 22.5px;
  }

  .partner-reference-page .partner-rights-grid p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 25.2px;
  }

  .partner-reference-page .partner-advantage-section {
    height: 698.75px;
    min-height: 698.75px;
  }

  .partner-reference-page .partner-condition-section {
    height: 659.5px;
    min-height: 659.5px;
  }
}

/* Shared shell parity. Keep the original product logo asset while matching
   the reference header and footer rails at desktop and phone sizes. */
@media (min-width: 1121px) {
  .site-nav-inner,
  .home-page .site-nav-inner,
  .reference-hero-page .site-nav-inner,
  .reference-pricing-page .site-nav-inner,
  .reference-about-page .site-nav-inner,
  .reference-partner-page .site-nav-inner,
  .lobster-page .site-nav-inner,
  .academy-reference-page .site-nav-inner,
  .partner-reference-page .site-nav-inner {
    position: static;
    width: 100%;
    max-width: none;
    height: 58px;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    padding: 0 24px;
  }

  .site-brand,
  .home-page .site-brand,
  .reference-hero-page .site-brand,
  .reference-pricing-page .site-brand,
  .reference-about-page .site-brand,
  .reference-partner-page .site-brand,
  .lobster-page .site-brand,
  .academy-reference-page .site-brand,
  .partner-reference-page .site-brand {
    position: static;
    gap: 8px;
    font-size: 14px;
    line-height: 21px;
  }

  .site-brand img,
  .home-page .site-brand img,
  .reference-hero-page .site-brand img,
  .reference-pricing-page .site-brand img,
  .reference-about-page .site-brand img,
  .reference-partner-page .site-brand img,
  .lobster-page .site-brand img,
  .academy-reference-page .site-brand img,
  .partner-reference-page .site-brand img {
    width: 28px;
    height: 28px;
  }

  .site-nav-links,
  .home-page .site-nav-links,
  .reference-hero-page .site-nav-links,
  .reference-pricing-page .site-nav-links,
  .reference-about-page .site-nav-links,
  .reference-partner-page .site-nav-links,
  .lobster-page .site-nav-links,
  .academy-reference-page .site-nav-links,
  .partner-reference-page .site-nav-links {
    position: static;
    width: auto;
    height: 58px;
    flex: 0 0 auto;
    align-self: auto;
    justify-content: flex-start;
    gap: 40px;
    margin: 0;
  }

  .site-nav-link {
    letter-spacing: -.025em;
  }

  .site-nav-link.is-current {
    font-weight: 600;
  }

  .site-nav-parent {
    gap: 4px;
  }

  .site-nav-parent svg {
    width: 13px;
    height: 13px;
  }

  .site-nav-actions,
  .home-page .site-nav-actions,
  .reference-hero-page .site-nav-actions,
  .reference-pricing-page .site-nav-actions,
  .reference-about-page .site-nav-actions,
  .reference-partner-page .site-nav-actions,
  .lobster-page .site-nav-actions,
  .academy-reference-page .site-nav-actions,
  .partner-reference-page .site-nav-actions {
    position: static;
    margin: 0;
  }

  .site-footer-main {
    width: min(100%, 1280px);
    height: 386.5px;
    min-height: 386.5px;
    box-sizing: border-box;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 40px;
    padding: 120px 80px 64px;
  }

  .site-footer-brand {
    grid-column: span 2;
  }

  .site-footer-bottom {
    width: min(calc(100% - 160px), 1120px);
  }

  .site-footer-cta-strip-inner {
    width: min(100%, 1280px);
    box-sizing: border-box;
    padding-right: 80px;
    padding-left: 80px;
  }

  .site-footer-cta-button {
    margin-left: 32px;
  }
}

@media (max-width: 760px) {
  .site-nav-inner,
  .home-page .site-nav-inner,
  .reference-hero-page .site-nav-inner,
  .reference-pricing-page .site-nav-inner,
  .reference-about-page .site-nav-inner,
  .reference-partner-page .site-nav-inner,
  .lobster-page .site-nav-inner,
  .academy-reference-page .site-nav-inner,
  .partner-reference-page .site-nav-inner {
    width: 100%;
    height: 58px;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    padding: 0 24px;
  }

  .site-brand,
  .home-page .site-brand,
  .reference-hero-page .site-brand,
  .reference-pricing-page .site-brand,
  .reference-about-page .site-brand,
  .reference-partner-page .site-brand,
  .lobster-page .site-brand,
  .academy-reference-page .site-brand,
  .partner-reference-page .site-brand {
    gap: 8px;
    font-size: 14px;
    line-height: 21px;
  }

  .site-brand img,
  .home-page .site-brand img,
  .reference-hero-page .site-brand img,
  .reference-pricing-page .site-brand img,
  .reference-about-page .site-brand img,
  .reference-partner-page .site-brand img,
  .lobster-page .site-brand img,
  .academy-reference-page .site-brand img,
  .partner-reference-page .site-brand img {
    width: 28px;
    height: 28px;
  }

  .site-nav-actions,
  .home-page .site-nav-actions,
  .reference-hero-page .site-nav-actions,
  .reference-pricing-page .site-nav-actions,
  .reference-about-page .site-nav-actions,
  .reference-partner-page .site-nav-actions,
  .lobster-page .site-nav-actions,
  .academy-reference-page .site-nav-actions,
  .partner-reference-page .site-nav-actions {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    gap: 0;
    margin: 0;
  }

  .site-menu-button,
  .home-page .site-menu-button,
  .reference-hero-page .site-menu-button,
  .reference-pricing-page .site-menu-button,
  .reference-about-page .site-menu-button,
  .reference-partner-page .site-menu-button,
  .lobster-page .site-menu-button,
  .academy-reference-page .site-menu-button,
  .partner-reference-page .site-menu-button {
    display: block;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .site-menu-button svg {
    width: 22px;
    height: 22px;
  }

  .site-footer-main {
    width: 100%;
    height: 690px;
    min-height: 690px;
    box-sizing: border-box;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin: 0;
    padding: 84px 24px 68px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer-bottom {
    width: calc(100% - 48px);
    margin-inline: auto;
  }

  .site-footer-cta-strip-inner {
    width: 100%;
    box-sizing: border-box;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-footer-cta-button {
    margin-left: 0;
  }
}

/* Skill shell parity. Keep Wence copy and routes while matching the reference
   card treatment and light closing composition. */
.skill-lobster-page .lobster-env-item {
  display: grid;
  grid-template-rows: 60px minmax(0, 1fr) 65.59375px;
  justify-content: stretch;
  justify-items: stretch;
  border-radius: 21.6px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.skill-lobster-page .lobster-env-item.is-openclaw {
  border-color: #ead8d2;
  background:
    radial-gradient(circle at 88% 8%, rgba(239, 88, 54, 0.22), transparent 160px),
    linear-gradient(145deg, #fff7f4, #f8f9fc);
}

.skill-lobster-page .lobster-env-item.is-qclaw {
  border-color: #d9e3f4;
  background:
    radial-gradient(circle at 88% 8%, rgba(52, 130, 246, 0.22), transparent 160px),
    linear-gradient(145deg, #f4f8ff, #f8f9fc);
}

.skill-lobster-page .lobster-env-item.is-codebuddy {
  border-color: #ddd9f5;
  background:
    radial-gradient(circle at 88% 8%, rgba(111, 91, 246, 0.22), transparent 160px),
    linear-gradient(145deg, #f7f5ff, #f8f9fc);
}

.skill-lobster-page .lobster-env-logo {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 10px 28px color-mix(in srgb, currentColor 12%, transparent);
  overflow: hidden;
}

.skill-lobster-page .is-openclaw .lobster-env-logo {
  color: #d9b7ad;
}

.skill-lobster-page .is-qclaw .lobster-env-logo {
  color: #b8cbea;
}

.skill-lobster-page .is-codebuddy .lobster-env-logo {
  color: #c5bdec;
}

.skill-lobster-page .lobster-env-logo img {
  width: 42.390625px;
  height: 42.390625px;
}

.skill-lobster-page .lobster-env-index {
  align-self: start;
  color: color-mix(in srgb, currentColor 58%, transparent);
  font-size: 10.24px;
  font-weight: 700;
  line-height: 15.36px;
}

.skill-lobster-page .lobster-env-item > a {
  display: flex;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  border: 1px solid color-mix(in srgb, currentColor 18%, var(--reference-line));
  border-radius: 12px;
  padding: 0 13.6px;
  color: var(--reference-ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 11.52px;
  line-height: 17.28px;
}

.skill-lobster-page .lobster-copy-button {
  display: inline-flex;
  width: 68.046875px;
  height: 36px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 5.6px;
  border: 1px solid var(--reference-line);
  border-radius: 10.4px;
  padding: 0;
  color: var(--reference-ink);
  background: #fff;
  font-size: 10.72px;
  line-height: 16.08px;
}

.skill-lobster-page .lobster-copy-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skill-lobster-page .lobster-final-cta {
  color: #111827;
  background:
    radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--brand-soft) 86%, transparent), transparent 400px),
    #fbf9ff;
}

.skill-lobster-page .lobster-final-copy h2 {
  color: #111827;
}

.skill-lobster-page .lobster-final-copy p,
.skill-lobster-page .lobster-final-actions span {
  color: var(--reference-muted);
}

.skill-lobster-page .lobster-capability-marquee {
  border: 0;
  color: color-mix(in srgb, var(--reference-ink) 28%, transparent);
}

.skill-lobster-page .lobster-install-title > span,
.skill-lobster-page .lobster-final-copy h2 > span {
  display: block;
  width: max-content;
  white-space: nowrap;
  transform-origin: left center;
}

@media (min-width: 1121px) {
  .skill-lobster-page .lobster-copy-block {
    padding-right: 92px;
  }

  .skill-lobster-page .lobster-copy-button {
    right: 16px;
    width: 68.046875px;
  }

  .skill-lobster-page .lobster-final-copy h2 {
    width: 388.28125px;
    max-width: 388.28125px;
    font-size: 57.6px;
    line-height: 58.752px;
  }
}

@media (max-width: 760px) {
  .skill-lobster-page .lobster-capability-explorer-section {
    line-height: 24px;
  }

  .skill-lobster-page .lobster-capability-tabs strong {
    font-size: 12px;
    line-height: 18px;
  }

  .skill-lobster-page .lobster-capability-tabs small {
    overflow: hidden;
    margin-top: 2.4px;
    font-size: 9.6px;
    line-height: 14.4px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .skill-lobster-page .lobster-copy-block {
    position: relative;
    display: block;
    width: 312px;
    height: 141.546875px;
    box-sizing: border-box;
    margin-top: 28px;
    padding: 19.2px 14.4px 58.4px 24.8px;
  }

  .skill-lobster-page .lobster-copy-block code {
    display: block;
    width: 272.8px;
    max-width: 100%;
  }

  .skill-lobster-page .lobster-copy-button {
    position: absolute;
    bottom: 12.8px;
    left: 14.4px;
    width: 68.046875px;
    height: 36px;
  }

  .skill-lobster-page .lobster-capability-shell {
    position: relative;
    display: grid;
    width: 316px;
    height: 847.859375px;
    min-height: 847.859375px;
    grid-template-rows: 460.734375px 209.625px 148.71875px;
    gap: 14.4px;
    margin-top: 24px;
  }

  .skill-lobster-page .lobster-capability-shell > .lobster-agent-window {
    position: static;
    width: 316px;
    height: 460.734375px;
    overflow: hidden;
  }

  .skill-lobster-page .lobster-capability-terminal {
    position: static;
    width: 316px;
    height: 209.625px;
    overflow: hidden;
  }

  .skill-lobster-page .lobster-capability-results {
    position: static;
    display: grid;
    width: 316px;
    height: 148.71875px;
    box-sizing: border-box;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    align-items: center;
    border: 1px solid var(--reference-line);
    border-radius: 16px;
    padding: 12.8px 16px;
    background: rgba(255, 255, 255, 0.94);
  }

  .skill-lobster-page .lobster-capability-results .demo-badge {
    display: inline-flex;
    width: 50.859375px;
    height: 20.71875px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    border-radius: 8px;
    padding: 3.52px 7.2px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 9.12px;
    font-weight: 650;
    line-height: 13.68px;
    white-space: nowrap;
  }

  .skill-lobster-page .lobster-capability-results > div {
    display: grid;
    min-width: 0;
    gap: 3.2px;
    padding-left: 0;
    border-left: 0;
  }

  .skill-lobster-page .lobster-capability-results > div:nth-of-type(2) {
    padding-left: 16px;
    border-left: 1px solid var(--reference-line);
  }

  .skill-lobster-page .lobster-capability-results small {
    overflow: hidden;
    color: var(--reference-muted);
    font-size: 8.96px;
    line-height: 13.44px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .skill-lobster-page .lobster-capability-results strong {
    overflow: hidden;
    color: var(--reference-ink);
    font-size: 11.52px;
    font-weight: 690;
    line-height: 17.28px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .skill-lobster-page .lobster-final-cta-inner {
    display: grid;
    height: 312.359375px;
    grid-template-columns: 1fr;
    grid-template-rows: 180.046875px 84.3125px;
    gap: 48px;
  }

  .skill-lobster-page .lobster-final-actions {
    width: 358px;
    margin: 0;
  }

  .skill-lobster-page .lobster-final-copy h2 {
    width: 289.1875px;
    max-width: 289.1875px;
    font-size: 42.9px;
    line-height: 43.758px;
  }

  .skill-lobster-page .lobster-install-title > span:first-child,
  .skill-lobster-page .lobster-final-copy h2 > span:first-child {
    transform: scaleX(.92);
  }
}

/* Citation source analysis */
.citation-sources-page {
  background: #fff;
}

.citation-sources-main {
  color: var(--text);
  background: #fff;
}

.citation-sources-shell {
  width: min(calc(100% - 160px), 1280px);
  margin-inline: auto;
}

.citation-sources-intro {
  height: 220.8px;
  padding: 56px 0 40px;
}

.citation-sources-intro h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 750;
  letter-spacing: -1.6px;
  line-height: 52.8px;
}

.citation-sources-intro h1 em {
  color: var(--brand);
  font-style: normal;
}

.citation-sources-intro p {
  max-width: 768px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.citation-platform-tabs {
  height: 66px;
  padding-bottom: 24px;
}

.citation-platform-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.citation-platform-list button {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.citation-platform-list button.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.citation-platform-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.citation-sources-content {
  min-height: 1038px;
  padding-bottom: 80px;
}

.citation-sources-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.citation-share-card,
.citation-ranking-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

.citation-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.citation-platform-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--brand);
  background: var(--brand-soft);
}

.citation-platform-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.citation-platform-mark svg {
  width: 20px;
  height: 20px;
}

.citation-card-title h2,
.citation-ranking-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 27px;
}

.citation-donut {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--brand) 0 19%,
      #8b5cf6 19% 26.6%,
      #a78bfa 26.6% 33.5%,
      #c4b5fd 33.5% 39.8%,
      #60a5fa 39.8% 45.6%,
      #93c5fd 45.6% 51.2%,
      #e5e7eb 51.2% 100%
    );
  transition: transform 220ms ease;
}

.citation-donut::after {
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.citation-donut-center {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.citation-donut-center span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.citation-donut-center strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.citation-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
}

.citation-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.citation-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.citation-legend span:nth-child(2) i { background: #8b5cf6; }
.citation-legend span:nth-child(3) i { background: #a78bfa; }
.citation-legend span:nth-child(4) i { background: #c4b5fd; }
.citation-legend span:nth-child(5) i { background: #60a5fa; }
.citation-legend span:nth-child(6) i { background: #93c5fd; }
.citation-legend span:nth-child(7) i { background: #e5e7eb; }

.citation-ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.citation-ranking-head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 700;
}

.citation-ranking-list {
  display: grid;
  gap: 10px;
}

.citation-ranking-row {
  display: grid;
  min-height: 20px;
  grid-template-columns: 30px minmax(80px, 140px) minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
}

.citation-ranking-row b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}

.citation-ranking-row b.is-gold {
  color: #8b5a00;
  background: #fdd532;
}

.citation-ranking-row b.is-silver {
  color: #52606f;
  background: #dddddb;
}

.citation-ranking-row b.is-bronze {
  color: #7a3f2d;
  background: #f1c0a4;
}

.citation-ranking-row strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.citation-ranking-row > span {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.citation-ranking-row > span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c4b5fd, var(--brand));
  transition: width 420ms ease;
}

.citation-ranking-row em {
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-align: right;
}

/* Desktop publisher */
.publisher-reference-page {
  --publisher-success: #16a34a;
  background: #fff;
}

.publisher-page {
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(124, 58, 237, 0.12) 0, transparent 26rem),
    radial-gradient(circle at 12% 34%, rgba(196, 181, 253, 0.18) 0, transparent 22rem),
    #fff;
}

.publisher-hero {
  position: relative;
  display: flex;
  height: 840px;
  box-sizing: border-box;
  align-items: center;
  padding: 104px 24px 78px;
}

.publisher-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.07) 1px, transparent 1px);
  background-position: center;
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.52) 24%, transparent 82%);
  pointer-events: none;
}

.publisher-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin-inline: auto;
}

.publisher-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.publisher-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.publisher-kicker::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.publisher-title {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5.15vw, 72px);
  font-weight: 760;
  letter-spacing: -3.6px;
  line-height: 1.04;
  text-wrap: balance;
}

.publisher-title em {
  color: var(--brand);
  font-style: normal;
}

.publisher-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.78;
}

.publisher-primary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.publisher-download-primary,
.publisher-download-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.publisher-download-primary {
  min-width: 224px;
  border: 0;
  padding: 0 22px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.24);
}

.publisher-download-secondary {
  border: 0;
  padding: 0 8px;
  color: var(--ink);
  background: transparent;
}

.publisher-download-primary:hover,
.publisher-download-secondary:hover {
  transform: translateY(-2px);
}

.publisher-download-secondary:hover {
  color: var(--brand);
}

.publisher-download-primary svg,
.publisher-download-secondary svg {
  width: 17px;
  height: 17px;
}

.publisher-release-meta {
  min-height: 18px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.publisher-supported {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.publisher-supported span {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 6px 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
}

.publisher-preview {
  position: relative;
  min-width: 0;
  padding: 34px 0 26px 28px;
}

.publisher-preview-glow {
  position: absolute;
  top: 10%;
  right: -8%;
  bottom: 0;
  left: 16%;
  border-radius: 45%;
  background: rgba(196, 181, 253, 0.72);
  filter: blur(54px);
  opacity: 0.6;
}

.publisher-preview-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 90px rgba(124, 58, 237, 0.17), inset 0 1px rgba(255, 255, 255, 0.9);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
}

.publisher-preview-chrome {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.9);
}

.publisher-preview-chrome strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.publisher-preview-dots {
  display: flex;
  gap: 6px;
}

.publisher-preview-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9dce4;
}

.publisher-preview-app {
  display: grid;
  min-height: 386px;
  grid-template-columns: 128px minmax(0, 1fr);
  background: #f6f7fb;
}

.publisher-preview-app aside {
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding: 24px 14px;
  color: var(--muted);
  background: #fff;
  font-size: 11px;
}

.publisher-preview-app aside strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
}

.publisher-preview-app aside span {
  border-radius: 8px;
  padding: 8px 9px;
}

.publisher-preview-app aside span.is-active {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 700;
}

.publisher-preview-content {
  min-width: 0;
  padding: 24px;
}

.publisher-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.publisher-preview-toolbar div {
  display: grid;
  gap: 3px;
}

.publisher-preview-toolbar b {
  color: var(--ink);
  font-size: 14px;
}

.publisher-preview-toolbar span {
  color: var(--muted);
  font-size: 10px;
}

.publisher-preview-toolbar button {
  height: 30px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: var(--brand);
  font-size: 10px;
  font-weight: 700;
}

.publisher-preview-table {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.publisher-preview-row {
  display: grid;
  min-height: 61px;
  grid-template-columns: minmax(0, 1.6fr) 0.65fr 0.7fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  color: var(--muted);
  font-size: 10px;
}

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

.publisher-preview-row.is-heading {
  min-height: 38px;
  background: #f8f9fc;
  font-weight: 700;
}

.publisher-preview-row > span:first-child {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.publisher-preview-row i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: var(--brand);
  background: var(--brand-soft);
  font-style: normal;
  font-weight: 700;
}

.publisher-preview-row b {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.publisher-preview-row em {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--publisher-success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.publisher-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 12px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(53, 39, 94, 0.13);
  backdrop-filter: blur(16px);
}

.publisher-float-card > svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.publisher-float-card strong,
.publisher-float-card span {
  display: block;
}

.publisher-float-card strong {
  color: var(--ink);
  font-size: 12px;
}

.publisher-float-card span {
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
}

.publisher-float-card--accounts {
  top: 2px;
  right: -20px;
}

.publisher-float-card--safe {
  bottom: 0;
  left: 0;
}

.publisher-capabilities {
  position: relative;
  height: 1454.5px;
  box-sizing: border-box;
  border-top: 1px solid rgba(124, 58, 237, 0.09);
  padding: 112px 24px 132px;
  background:
    radial-gradient(circle at 4% 24%, rgba(124, 58, 237, 0.08), transparent 28rem),
    radial-gradient(circle at 94% 76%, rgba(196, 181, 253, 0.16), transparent 30rem),
    #f7f7f9;
}

.publisher-capabilities-heading {
  max-width: 780px;
}

.publisher-capabilities-heading h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 750;
  letter-spacing: -2.4px;
  line-height: 1.08;
  text-wrap: balance;
}

.publisher-capabilities-heading p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.publisher-capability-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.publisher-capability-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(124, 58, 237, 0.09);
  border-radius: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 62px rgba(45, 31, 78, 0.07), inset 0 1px rgba(255, 255, 255, 0.82);
}

.publisher-capability-card--accounts {
  grid-column: span 7;
  min-height: 390px;
}

.publisher-capability-card--environment {
  grid-column: span 5;
  min-height: 390px;
  background: linear-gradient(145deg, #f4efff, #fff 70%);
}

.publisher-capability-card--content {
  grid-column: span 5;
  min-height: 330px;
}

.publisher-capability-card--cli {
  display: grid;
  grid-column: span 7;
  min-height: 330px;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #fff, #f6f0ff);
}

.publisher-capability-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 12px;
  color: var(--brand);
  background: #f5efff;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.1);
}

.publisher-capability-icon svg {
  width: 21px;
  height: 21px;
}

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

.publisher-capability-copy > span,
.publisher-capability-title-row > span:last-child {
  display: block;
  margin-top: 22px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.publisher-capability-copy h3 {
  max-width: 520px;
  margin: 9px 0 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 730;
  letter-spacing: -0.7px;
  line-height: 1.18;
}

.publisher-capability-copy p {
  max-width: 590px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.publisher-capability-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.publisher-capability-title-row > span:last-child {
  margin-top: 0;
}

.publisher-account-board {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(44, 31, 75, 0.06);
}

.publisher-account-board-head,
.publisher-account-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.publisher-account-board-head {
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  color: var(--muted);
  background: #f7f8fa;
  font-size: 10px;
  font-weight: 700;
}

.publisher-account-row {
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
}

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

.publisher-account-row strong {
  color: var(--ink);
  font-size: 12px;
}

.publisher-account-row span {
  margin-left: 9px;
  color: var(--muted);
  font-size: 11px;
}

.publisher-account-row small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.publisher-account-row small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--publisher-success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.publisher-environment-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
}

.publisher-environment-visual > div {
  min-width: 0;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 13px;
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.78);
}

.publisher-environment-visual span,
.publisher-environment-visual strong {
  display: block;
}

.publisher-environment-visual span {
  color: var(--brand);
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 700;
}

.publisher-environment-visual strong {
  overflow: hidden;
  margin-top: 7px;
  color: var(--ink);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.publisher-environment-visual > i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}

.publisher-environment-visual > i svg {
  width: 14px;
  height: 14px;
}

.publisher-content-types {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 30px;
}

.publisher-content-types > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--brand);
  background: #f8f9fb;
}

.publisher-content-types svg {
  width: 16px;
  height: 16px;
}

.publisher-content-types span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.publisher-content-types small {
  color: var(--muted);
  font-size: 10px;
}

.publisher-cli-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 19px 18px 20px;
  background: #11131d;
  box-shadow: 0 24px 54px rgba(20, 17, 35, 0.22);
}

.publisher-cli-window > div {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.publisher-cli-window > div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.publisher-cli-window code {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-data);
  font-size: 10px;
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.publisher-cli-window code i {
  margin-right: 6px;
  color: #b9a7ff;
  font-style: normal;
}

.publisher-cli-window .publisher-cli-result {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.48);
}

/* Standalone brand-report form */
.brand-report-page {
  min-height: 1273px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(249, 247, 255, 0.82), rgba(249, 247, 255, 0.92)),
    url("/assets/reference/hero-bg.webp") center top / cover no-repeat;
}

.brand-report-shell {
  width: min(100%, 684px);
  box-sizing: border-box;
  margin-inline: auto;
  padding: 74px 20px 32px;
}

.brand-report-intro {
  text-align: center;
}

.brand-report-badge {
  display: inline-flex;
  height: 38.5px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 21px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(107, 73, 224, 0.12);
  font-size: 15px;
  font-weight: 700;
}

.brand-report-badge img {
  width: 20px;
  height: 20px;
}

.brand-report-intro > h1 {
  margin: 16px 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 750;
  letter-spacing: -1px;
  line-height: 44px;
}

.brand-report-intro > p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}

.brand-report-benefits,
.brand-report-form,
.brand-report-success {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(102, 78, 204, 0.12);
  backdrop-filter: blur(14px);
}

.brand-report-benefits {
  padding: 28px;
  text-align: left;
}

.brand-report-benefits-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand-report-benefits-head h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 20px;
}

.brand-report-benefits-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.brand-report-benefits-head > span {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.brand-report-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.brand-report-benefit {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  border: 1px solid #e4def8;
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 24px rgba(83, 70, 151, 0.06);
}

.brand-report-benefit > span {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--brand);
  background: #f0ebff;
}

.brand-report-benefit svg {
  width: 31px;
  height: 31px;
}

.brand-report-benefit h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
  line-height: 20px;
}

.brand-report-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.brand-report-benefits-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid #e7e1f4;
  padding-top: 16px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.brand-report-benefits-note svg {
  width: 16px;
  height: 16px;
}

.brand-report-form {
  margin-top: 32px;
  padding: 32px;
}

.brand-report-form label {
  display: grid;
  height: 55.5px;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #e8e4f2;
}

.brand-report-form label > span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.brand-report-form label b {
  color: #ef4444;
}

.brand-report-form label small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.brand-report-form input,
.brand-report-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  text-align: right;
}

.brand-report-form textarea {
  min-height: 64px;
  resize: none;
}

.brand-report-message {
  height: 94px !important;
  align-items: start !important;
  border-bottom: 0 !important;
  padding-top: 14px;
}

.brand-report-message > span {
  padding-top: 12px;
}

.brand-report-status {
  margin: 12px 0 0;
  color: #dc2626;
  font-size: 14px;
  text-align: center;
}

.brand-report-status:empty {
  display: none;
}

.brand-report-submit {
  width: 100%;
  height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #9333ea);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.24);
}

.brand-report-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.brand-report-legal {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.brand-report-success {
  margin-top: 32px;
  padding: 44px 32px;
  text-align: center;
}

.brand-report-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 32px;
  font-weight: 800;
}

.brand-report-success h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
}

.brand-report-success p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .publisher-hero {
    height: auto;
    min-height: 0;
  }

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

  .publisher-preview {
    width: min(820px, 100%);
    margin-inline: auto;
  }

  .publisher-capabilities {
    height: auto;
  }

  .publisher-capability-card--accounts,
  .publisher-capability-card--cli {
    grid-column: span 12;
  }

  .publisher-capability-card--environment,
  .publisher-capability-card--content {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .citation-sources-shell {
    width: calc(100% - 48px);
  }

  .citation-sources-intro {
    height: 214.6875px;
    padding: 56px 0 40px;
  }

  .citation-sources-intro h1 {
    margin-bottom: 16px;
    font-size: 32px;
    letter-spacing: -0.7px;
    line-height: 35.2px;
  }

  .citation-sources-intro p {
    font-size: 16px;
    line-height: 27px;
  }

  .citation-platform-tabs {
    height: 166px;
  }

  .citation-platform-list {
    gap: 8px;
  }

  .citation-platform-list button {
    height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }

  .citation-sources-content {
    min-height: 1500px;
    padding-bottom: 80px;
  }

  .citation-sources-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .citation-share-card,
  .citation-ranking-card {
    padding: 20px;
  }

  .citation-donut {
    width: 248px;
    height: 248px;
  }

  .citation-donut::after {
    inset: 52px;
  }

  .citation-ranking-head {
    align-items: flex-start;
  }

  .citation-ranking-head h2 {
    max-width: 185px;
  }

  .citation-ranking-row {
    grid-template-columns: 26px minmax(72px, 96px) minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .citation-ranking-row strong,
  .citation-ranking-row em {
    font-size: 12px;
  }

  .publisher-hero {
    height: 1050.78125px;
    align-items: flex-start;
    padding: 52px 18px 58px;
  }

  .publisher-title {
    font-size: 46.8px;
    letter-spacing: -2.7px;
    line-height: 48.672px;
  }

  .publisher-primary-actions {
    align-items: stretch;
  }

  .publisher-download-primary,
  .publisher-download-secondary {
    width: 100%;
  }

  .publisher-preview {
    padding: 24px 0 26px;
  }

  .publisher-preview-window {
    border-radius: 15px;
    transform: none;
  }

  .publisher-preview-app {
    min-height: 326px;
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .publisher-preview-app aside {
    padding: 18px 8px;
    font-size: 9px;
  }

  .publisher-preview-content {
    padding: 16px 12px;
  }

  .publisher-preview-toolbar button {
    display: none;
  }

  .publisher-preview-row {
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 62px;
    padding: 0 8px;
  }

  .publisher-preview-row > span:nth-child(2) {
    display: none;
  }

  .publisher-preview-row i {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .publisher-float-card {
    padding: 9px 10px;
  }

  .publisher-float-card--accounts {
    top: -6px;
    right: -6px;
  }

  .publisher-float-card--safe {
    bottom: -4px;
    left: -6px;
  }

  .publisher-capabilities {
    height: 2325.875px;
    padding: 76px 18px 88px;
  }

  .publisher-capabilities-heading h2 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }

  .publisher-capability-grid {
    gap: 14px;
    margin-top: 38px;
  }

  .publisher-capability-card,
  .publisher-capability-card--accounts,
  .publisher-capability-card--environment,
  .publisher-capability-card--content,
  .publisher-capability-card--cli {
    grid-column: span 12;
    min-height: 0;
    border-radius: 18px;
    padding: 23px;
  }

  .publisher-capability-card--accounts {
    height: 520px;
  }

  .publisher-capability-card--environment {
    height: 380px;
  }

  .publisher-capability-card--content {
    height: 350px;
  }

  .publisher-capability-card--cli {
    height: 385px;
    grid-template-columns: 1fr;
  }

  .publisher-account-row span {
    display: block;
    margin: 3px 0 0;
  }

  .publisher-environment-visual {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .publisher-environment-visual > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .brand-report-page {
    min-height: 1262px;
  }

  .brand-report-shell {
    padding-top: 48px;
  }

  .brand-report-intro > h1 {
    font-size: 30px;
    letter-spacing: -0.5px;
    line-height: 33px;
  }

  .brand-report-intro > p {
    font-size: 16px;
    line-height: 28px;
  }

  .brand-report-benefits {
    padding: 20px;
  }

  .brand-report-benefits-head > span {
    font-size: 12px;
  }

  .brand-report-benefit {
    min-height: 104px;
    align-items: flex-start;
    padding: 11px;
  }

  .brand-report-benefit > span {
    width: 48px;
    height: 48px;
  }

  .brand-report-benefit svg {
    width: 26px;
    height: 26px;
  }

  .brand-report-form {
    padding: 32px;
  }

  .brand-report-form label {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .brand-report-form label > span,
  .brand-report-form input,
  .brand-report-form textarea {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .publisher-preview-window,
  .publisher-download-primary,
  .publisher-download-secondary,
  .citation-ranking-row > span i {
    transform: none !important;
    transition: none !important;
  }
}

/* Final cross-viewport parity corrections measured directly from the
   reference pages. Brand assets, copy, routes, and application flows remain
   unchanged. */
@media (min-width: 901px) {
  .auth-reference-shell {
    padding-top: max(32px, calc(50vh - 263px));
  }

  .auth-reference-input {
    height: 44px;
    border-radius: 12px;
  }
}

@media (min-width: 761px) {
  .academy-reference-page .academy-course-section .academy-container {
    width: min(calc(100% - 160px), 1152px);
  }
}

@media (min-width: 1121px) {
  .partner-reference-page .partner-rights-section .partner-container {
    width: min(calc(100% - 160px), 1280px);
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  }

  .partner-reference-page .partner-metrics {
    width: 896px;
    margin-inline: auto;
  }
}

@media (min-width: 1361px) {
  .skill-lobster-page .site-header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .skill-lobster-page .site-header.is-scrolled {
    border-bottom-color: rgba(18, 23, 34, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
  }

  .skill-lobster-page .lobster-section-intro h2,
  .skill-lobster-page .lobster-final-copy h2 {
    font-size: 64.8px;
    line-height: 66.078125px;
  }

  .skill-lobster-page .lobster-capability-shell {
    width: 796.40625px;
  }

  .skill-lobster-page .lobster-capability-shell > .lobster-agent-window {
    width: 764.40625px;
  }

  .skill-lobster-page .lobster-capability-results {
    width: 605.265625px;
  }
}

@media (max-width: 760px) {
  .academy-reference-page .academy-course-section .academy-container {
    width: calc(100% - 48px);
  }

  .academy-reference-page .academy-course-section .academy-section-title h2 {
    font-size: 28px;
  }

  .partner-reference-page .partner-condition-item {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .partner-reference-page .partner-condition-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .partner-reference-page .partner-condition-item p {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .skill-lobster-page .lobster-execution-section .lobster-container {
    width: calc(100% - 32px);
  }

  .skill-lobster-page .lobster-execution-flow {
    width: 100%;
  }

  .skill-lobster-page .lobster-capability-terminal,
  .skill-lobster-page .lobster-capability-terminal .lobster-terminal-body {
    background: #10131b;
  }
}

/* Pricing cards and comparison intro measured from the reference pricing page. */
.pricing-detail-page .pricing-plan-section {
  height: 587.5px;
  margin-bottom: 112px;
}

.pricing-detail-page .pricing-plan-inner {
  width: min(100%, 1280px);
  height: 100%;
  margin-inline: auto;
  padding: 0 24px;
}

.pricing-detail-page .pricing-plan-grid {
  display: grid;
  height: 563.5px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 20px;
}

.pricing-detail-page .pricing-plan-card {
  position: relative;
  display: flex;
  height: 543.5px;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e6e8ef;
  border-radius: 20px;
  padding: 24px 20px 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-detail-page .pricing-plan-card:hover {
  border-color: rgba(124, 58, 237, 0.34);
  box-shadow: 0 16px 36px rgba(76, 29, 149, 0.1);
  transform: translateY(-4px);
}

.pricing-detail-page .pricing-plan-card-featured {
  border-color: rgba(124, 58, 237, 0.36);
  background: rgba(244, 241, 255, 0.72);
  box-shadow: 0 18px 46px rgba(96, 52, 186, 0.14);
}

.pricing-detail-page .pricing-plan-featured-line {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand);
}

.pricing-detail-page .pricing-plan-card-head {
  height: 135.5px;
  margin-bottom: 16px;
}

.pricing-detail-page .pricing-plan-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 31.5px;
}

.pricing-detail-page .pricing-plan-card-head > p {
  min-height: 40px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.pricing-detail-page .pricing-plan-price {
  display: flex;
  min-height: 48px;
  align-items: flex-end;
  gap: 4px;
  margin-top: 10px;
  color: var(--ink);
}

.pricing-detail-page .pricing-plan-price > span {
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 650;
}

.pricing-detail-page .pricing-plan-price > strong {
  font-family: var(--font-data);
  font-size: 38px;
  font-weight: 760;
  letter-spacing: -1.2px;
  line-height: 48px;
}

.pricing-detail-page .pricing-plan-price > small {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
}

.pricing-detail-page .pricing-plan-price-label > strong {
  font-family: var(--font-sans);
  font-size: 34px;
  letter-spacing: 0;
}

.pricing-detail-page .pricing-plan-divider {
  height: 1px;
  flex: 0 0 auto;
  margin-bottom: 20px;
  background: #f0f2f7;
}

.pricing-detail-page .pricing-plan-benefit-title {
  height: 18px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.pricing-detail-page .pricing-plan-benefits {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-detail-page .pricing-plan-card:nth-child(n + 3) .pricing-plan-benefits {
  min-height: 231px;
}

.pricing-detail-page .pricing-plan-benefits li {
  position: relative;
  display: flex;
  min-height: 20px;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  color: #3f4654;
  font-size: 13px;
  font-weight: 550;
  line-height: 20px;
}

.pricing-detail-page .pricing-plan-benefits li:last-child {
  margin-bottom: 0;
}

.pricing-detail-page .pricing-plan-benefits li::before {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(124, 58, 237, 0.08);
  content: "✓";
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.pricing-detail-page .pricing-plan-benefits li.is-unavailable {
  color: var(--muted);
}

.pricing-detail-page .pricing-plan-benefits li.is-unavailable::before {
  color: #a9afbb;
  background: #f4f5f7;
  content: "−";
}

.pricing-detail-page .pricing-plan-action {
  display: inline-flex;
  width: 100%;
  height: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #e6e8ef;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  line-height: 22.5px;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pricing-detail-page .pricing-plan-action:hover {
  border-color: rgba(124, 58, 237, 0.42);
  color: var(--brand);
}

.pricing-detail-page .pricing-plan-action:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  outline: 0;
}

.pricing-detail-page .pricing-plan-action:active {
  transform: translateY(1px);
}

.pricing-detail-page .pricing-plan-action-primary {
  border-color: #e6e8ef;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.pricing-detail-page .pricing-plan-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.pricing-detail-page .pricing-plan-note {
  height: 20px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.pricing-detail-page .pricing-matrix-heading {
  width: min(100%, 768px);
  height: 109px;
  margin: 0 auto 70px;
  padding: 0 24px;
  text-align: center;
}

.pricing-detail-page .pricing-matrix-heading > span {
  display: block;
  height: 18px;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.pricing-detail-page .pricing-matrix-heading h2 {
  height: 51px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 51px;
}

.pricing-detail-page .pricing-matrix-heading p {
  height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}

@media (min-width: 1121px) {
  .pricing-detail-page .pricing-title-section {
    height: 219.1875px;
  }

  .pricing-detail-page .pricing-title-section > div {
    transform: translateY(10.5px);
  }

  .pricing-detail-page .pricing-matrix-section {
    height: 1881px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-matrix-scroll {
    height: 1732px;
    padding-top: 20px;
  }
}

@media (max-width: 760px) {
  .pricing-detail-page .pricing-title-section {
    height: 189.59375px;
  }

  .pricing-detail-page .pricing-title-section > div {
    width: 342px;
    transform: translateY(-5px);
  }

  .pricing-detail-page .pricing-title-section p {
    white-space: normal;
  }

  .pricing-detail-page .pricing-plan-section {
    height: 607.5px;
    margin-bottom: 80px;
  }

  .pricing-detail-page .pricing-plan-grid {
    display: flex;
    width: auto;
    height: 563.5px;
    gap: 16px;
    margin-inline: -24px;
    overflow-x: auto;
    padding: 0 24px 20px;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pricing-detail-page .pricing-plan-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-detail-page .pricing-plan-card {
    width: 84vw;
    max-width: 350px;
    flex: 0 0 84vw;
    scroll-snap-align: center;
  }

  .pricing-detail-page .pricing-plan-note {
    height: 40px;
    text-align: left;
  }

  .pricing-detail-page .pricing-matrix-section {
    height: 2021.5px;
    margin-bottom: 96px;
  }

  .pricing-detail-page .pricing-matrix-heading {
    width: 100%;
    height: 121px;
    margin-bottom: 62px;
  }

  .pricing-detail-page .pricing-matrix-heading h2 {
    height: 42px;
    font-size: 28px;
    line-height: 42px;
  }

  .pricing-detail-page .pricing-matrix-heading p {
    height: 48px;
    line-height: 24px;
  }

  .pricing-detail-page .pricing-matrix-scroll {
    height: 1868.5px;
    padding-top: 20px;
  }

  .pricing-detail-page .pricing-matrix {
    width: 978px;
    min-width: 978px;
  }

  .pricing-detail-page .pricing-matrix col:not(.pricing-module-column):not(.pricing-feature-column) {
    width: 166.25px;
  }

  .pricing-detail-page .pricing-matrix thead tr {
    height: 97.5px;
  }

  .pricing-detail-page .pricing-matrix tbody tr {
    height: 44.5px;
  }

  .pricing-detail-page .pricing-matrix tbody tr:nth-child(1),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(16),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(21),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(22),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(24),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(25),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(31),
  .pricing-detail-page .pricing-matrix tbody tr:nth-child(34) {
    height: 64px;
  }
}

/* Reference component hierarchy shared across homepage viewports. */
.home-page .insight-dots {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.home-page .insight-dot {
  position: absolute;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.home-page .insight-dot::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
  content: "";
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-page .insight-dot.is-active::before {
  background: var(--brand);
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.16),
    0 0 16px rgba(124, 58, 237, 0.42);
  transform: scale(1.35);
}

.home-page .engine-tab-panel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-page .engine-stage-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
}

.home-page .start-path-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-page .start-path-arrow {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 50%;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.03));
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.08);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-page .start-path-copy a:hover .start-path-arrow {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--data));
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.28);
  transform: translateX(4px);
}

.home-page .start-path-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-page .why-versus {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--brand-soft);
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.14);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.home-page .why-item-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin: 0;
  color: rgba(124, 58, 237, 0.5);
}

.home-page .why-item-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.home-page .why-summary-main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.home-page .why-summary-mark {
  display: flex;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--data));
  box-shadow: 0 12px 22px rgba(92, 52, 244, 0.22);
  font-size: 16px;
  line-height: 1;
}

.home-page .why-summary-mark svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-page .why-summary-copy {
  min-width: 0;
}

.home-page .why-summary-copy strong {
  color: var(--brand);
  font-size: 18px;
  line-height: 22.5px;
  letter-spacing: 0;
}

.home-page .why-summary-copy > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 16.25px;
}

.home-page .why-summary-chart {
  position: relative;
  display: block;
  width: 160px;
  min-width: 160px;
  height: 56px;
  min-height: 56px;
  flex: 0 0 160px;
  margin: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.home-page .why-summary-chart img {
  position: absolute;
  right: -8px;
  bottom: -10px;
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

/* Authoritative live homepage geometry. This block must remain last. */
@media (min-width: 1121px) {
  .home-page .page-main {
    overflow-x: clip;
    overflow-y: visible;
  }

  .home-page .insight-timeline::before {
    top: 0;
    bottom: 0;
    left: 89px;
    width: 3px;
    background: rgba(124, 58, 237, 0.14);
  }

  .home-page .insight-timeline::after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 89px;
    width: 3px;
    height: var(--insight-progress, 0%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand), #2563eb);
    content: "";
    transform-origin: top;
  }

  .home-page .insight-dot {
    left: 73px;
  }

  .home-page .insight-dot:nth-child(1) { top: 32px; }
  .home-page .insight-dot:nth-child(2) { top: calc(21% + 32px); }
  .home-page .insight-dot:nth-child(3) { top: calc(42% + 32px); }
  .home-page .insight-dot:nth-child(4) { top: calc(63% + 32px); }
  .home-page .insight-dot:nth-child(5) { top: calc(82% + 32px); }

  .home-page .insight-dot::after {
    position: absolute;
    top: 16px;
    left: 32px;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0.04));
    content: "";
  }

  .home-page .insight-dot:nth-child(even)::after {
    width: 202px;
  }

  .home-page .insight-card::before {
    display: none;
  }

  .home-page .insight-card {
    border-radius: 14px;
    box-shadow:
      inset 0 0 30px rgba(255, 255, 255, 0.86),
      inset 0 0 72px rgba(255, 255, 255, 0.48),
      inset 0 -30px 58px rgba(255, 255, 255, 0.66),
      18px 0 42px rgba(255, 255, 255, 0.58) inset,
      0 20px 44px rgba(83, 98, 180, 0.14),
      0 2px 10px rgba(80, 93, 160, 0.08);
  }

  .home-page article.insight-card:nth-of-type(odd) {
    left: 118px;
    width: min(520px, calc(100% - 126px));
  }

  .home-page article.insight-card:nth-of-type(even) {
    left: 292px;
    width: calc(100% - 300px);
  }

  .home-page article.insight-card:nth-of-type(1) { top: 0; }
  .home-page article.insight-card:nth-of-type(2) { top: 21%; }
  .home-page article.insight-card:nth-of-type(3) { top: 42%; }
  .home-page article.insight-card:nth-of-type(4) { top: 63%; }
  .home-page article.insight-card:nth-of-type(5) { top: 82%; }

  .home-page .citation-dashboard-head h3 > span:last-child {
    color: var(--ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
  }

  .home-page .citation-source .citation-source-name {
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .home-page .citation-source:nth-of-type(2) .citation-rank,
  .home-page .citation-source:nth-of-type(3) .citation-rank,
  .home-page .citation-source:nth-of-type(4) .citation-rank {
    width: 20px;
    height: 20px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .home-page .citation-source:nth-of-type(2) .citation-rank::before,
  .home-page .citation-source:nth-of-type(3) .citation-rank::before,
  .home-page .citation-source:nth-of-type(4) .citation-rank::before {
    color: currentColor;
    font-size: 17px;
    line-height: 20px;
  }

  .home-page .citation-source:nth-of-type(2) .citation-rank::before {
    color: #f4a62a;
    content: "●";
    text-shadow: 0 -5px 0 #ffd84d;
  }

  .home-page .citation-source:nth-of-type(3) .citation-rank::before {
    color: #9ca3af;
    content: "●";
    text-shadow: 0 -5px 0 #d1d5db;
  }

  .home-page .citation-source:nth-of-type(4) .citation-rank::before {
    color: #b7793f;
    content: "●";
    text-shadow: 0 -5px 0 #d99b5c;
  }

  .home-page .service-card {
    border-radius: 16px;
  }

  .home-page .service-card img {
    width: 378px;
    max-width: none;
    height: 324px;
    flex: 0 0 324px;
    margin: 17px -53px -41px;
    object-fit: contain;
  }

  .home-page .why-versus {
    top: 50%;
    left: 42.4%;
    transform: translate(calc(-50% - 10px), -50%);
  }

  .home-page .why-panel-weak .why-item {
    width: 393.375px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 24px;
  }

  .home-page .why-panel-complete .why-item {
    width: 606.625px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 14px;
    padding: 16px 24px;
    box-shadow:
      0 12px 28px rgba(83, 98, 180, 0.08),
      inset 0 0 24px rgba(255, 255, 255, 0.82);
  }

  .home-page .why-item > i {
    width: 40px;
    height: 40px;
  }

  .home-page .why-panel-complete .why-item > i {
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.28);
  }

  .home-page .why-item-icon {
    display: grid;
  }

  .home-page .why-summary {
    display: flex;
    height: 90px;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    overflow: hidden;
    background: linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.1) 0%,
      rgba(255, 255, 255, 0.92) 54%,
      rgba(124, 58, 237, 0.06) 100%
    );
  }

  .home-page .why-summary::before {
    display: none;
    content: none;
  }

  .home-page .why-summary-main,
  .home-page .why-summary-mark,
  .home-page .why-summary-copy,
  .home-page .why-summary-chart {
    margin: 0;
  }

  .home-page .engine-section {
    height: 737.203125px;
    min-height: 737.203125px;
  }

  .home-page .citation-section {
    height: 901.390625px;
    min-height: 901.390625px;
    padding: 80px 0;
  }

  .home-page .start-section {
    height: 874.390625px;
    min-height: 874.390625px;
  }

  .home-page .services-section {
    height: 959.5px;
    min-height: 959.5px;
  }

  .home-page .why-section {
    height: 859.5px;
    min-height: 859.5px;
    padding: 80px 0;
  }

  .home-page .insights-copy .section-heading em {
    display: block;
  }

  .home-page .insights-copy .section-description,
  .home-page .start-heading .section-description,
  .home-page .services-heading .section-description,
  .home-page .cases-heading .section-description,
  .home-page .faq-layout .section-description {
    letter-spacing: -0.375px;
  }

  .home-page .start-grid {
    margin-top: 48px;
  }

  .home-page .services-grid {
    margin-top: 32px;
  }

  .home-page .services-heading .section-heading {
    letter-spacing: -1.1px;
  }

  .home-page .service-card {
    height: 622.5px;
    min-height: 622.5px;
    padding-bottom: 28px;
  }

  .home-page .cases-heading {
    width: 1280px;
    max-width: 100%;
    padding-inline: 48px;
  }

  .home-page .cases-heading .section-description {
    font-size: 16px;
  }

  .home-page .why-section > .site-shell {
    width: min(calc(100% - 160px), 1160px);
  }

  .home-page .why-heading {
    max-width: 860px;
  }

  .home-page .why-heading .section-heading {
    font-size: 42px;
    line-height: 52.5px;
    letter-spacing: -1.05px;
  }

  .home-page .why-comparison {
    width: 100%;
    max-width: 1120px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr);
    margin-top: 56px;
  }

  .home-page .why-panel-weak {
    height: 442px;
    min-height: 442px;
    margin-top: 53px;
    padding: 40px 40px 24px 24px;
  }

  .home-page .why-panel-complete {
    height: 548px;
    min-height: 548px;
    margin-left: -32px;
  }

  .home-page .faq-section {
    padding: 64px 0;
  }

  .home-page .faq-layout > div:first-child {
    position: sticky;
    top: 96px;
    align-self: start;
  }

  .home-page .faq-layout .section-heading {
    margin-bottom: 8px;
    letter-spacing: -2.2px;
  }

  .home-page .faq-layout .section-description {
    margin-top: 0;
  }

  .home-page .faq-question {
    line-height: 22.5px;
  }

  .home-page .faq-list {
    border-top: 0;
  }

  .home-page .faq-item:last-child {
    border-bottom: 0;
  }

  .home-page .faq-item.is-open .faq-answer {
    padding: 0 0 16px;
    line-height: 25.2px;
  }

  .home-page .faq-answer p {
    height: 50.375px;
    line-height: 25.2px;
  }
}

/* Shared mobile shell and engine table parity with the reference site. */
@media (max-width: 760px) {
  .site-mobile-menu {
    position: absolute;
    top: 58px;
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 24px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .is-menu-open .site-mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-mobile-menu-inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .site-mobile-menu-inner > a {
    display: block;
    min-height: 0;
    border: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }

  .site-mobile-solutions {
    display: block;
  }

  .site-mobile-solutions > p {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
  }

  .site-mobile-solutions > div {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding-left: 12px;
  }

  .site-mobile-menu .site-mobile-sub-link {
    display: block;
    min-height: 0;
    padding-left: 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    white-space: nowrap;
  }

  .site-mobile-menu-inner > .site-button {
    width: 100%;
    height: 39.5px;
    min-height: 39.5px;
    margin-top: 8px;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
  }

  .engine-detail-page .engine-source-copy h2 {
    font-size: 28px;
    line-height: 30.8px;
  }

  .engine-detail-page .engine-compare-table {
    overflow: visible;
  }

  .engine-detail-page .engine-compare-table > div {
    width: 100%;
    height: 75px;
    min-width: 0;
    min-height: 75px;
    grid-template-columns: 70.640625px 117.296875px minmax(0, 1fr);
    padding: 0;
  }

  .engine-detail-page .engine-compare-table > div.is-head {
    height: 44px;
    min-height: 44px;
  }

  .engine-detail-page .engine-compare-table strong,
  .engine-detail-page .engine-compare-table span,
  .engine-detail-page .engine-compare-table b {
    display: flex;
    height: 100%;
    min-width: 0;
    align-items: center;
    padding: 16px 24px 16px 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .engine-detail-page .engine-compare-table .is-head span {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .engine-detail-page .engine-compare-table > div > :last-child {
    padding-right: 0;
  }
}

/* Final phone homepage parity. Preserve the Wence brand asset and copy while
   matching the reference site's measured mobile composition. */
@media (max-width: 760px) {
  .home-page .home-hero {
    height: 1571.71875px;
    min-height: 1571.71875px;
  }

  .home-page .principle-section {
    height: 758px;
    min-height: 758px;
    overflow: hidden;
    padding: 64px 24px;
  }

  .home-page .insights-section {
    height: 1924.3125px;
    min-height: 1924.3125px;
  }

  .home-page .engine-section {
    height: 862.0625px;
    min-height: 862.0625px;
    padding: 48px 24px;
  }

  .home-page .citation-section {
    height: 1965.375px;
    min-height: 1965.375px;
  }

  .home-page .start-section {
    height: 1923.6875px;
    min-height: 1923.6875px;
    padding: 64px 24px;
  }

  .home-page .services-section {
    height: 2184.875px;
    min-height: 2184.875px;
  }

  .home-page .cases-section {
    height: 857.0625px;
    min-height: 857.0625px;
  }

  .home-page .why-section {
    height: 1416.375px;
    min-height: 1416.375px;
  }

  .home-page .faq-section {
    height: 626.4375px;
    min-height: 626.4375px;
    padding: 56px 24px;
  }

  .home-page .principle-section > .site-shell {
    width: 342px;
    max-width: none;
    margin: 0;
  }

  .home-page .principle-intro {
    display: block;
    width: 342px;
    height: 162px;
  }

  .home-page .principle-intro .section-heading {
    width: 342px;
    height: 65px;
    font-size: 26px;
    line-height: 32.5px;
    letter-spacing: 0;
  }

  .home-page .principle-intro .section-description {
    width: 342px;
    height: 81px;
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 27px;
  }

  .home-page .principle-grid,
  .home-page .principle-grid:has(.principle-card:nth-child(1).is-active),
  .home-page .principle-grid:has(.principle-card:nth-child(2).is-active),
  .home-page .principle-grid:has(.principle-card:nth-child(3).is-active),
  .home-page .principle-grid:has(.principle-card:nth-child(4).is-active) {
    display: flex;
    width: 390px;
    height: 420px;
    min-height: 420px;
    grid-template-columns: none;
    gap: 16px;
    margin: 48px 0 0 -24px;
    padding: 0 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .home-page .principle-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .principle-card,
  .home-page .principle-card.is-active,
  .home-page .principle-card.is-wide {
    width: 319.796875px;
    height: 420px;
    min-width: 319.796875px;
    min-height: 420px;
    flex: 0 0 319.796875px;
    border-radius: 24px;
    scroll-snap-align: start;
    transform: none;
  }

  .home-page .principle-card img,
  .home-page .principle-card.is-active img {
    transform: none;
  }

  .home-page .principle-card-copy {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .home-page .principle-card-copy h3,
  .home-page .principle-card.is-active .principle-card-copy h3,
  .home-page .principle-card.is-wide .principle-card-copy h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .home-page .engine-layout {
    display: flex;
    width: 342px;
    height: 766.0625px;
    max-width: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }

  .home-page .engine-copy {
    display: contents;
  }

  .home-page .engine-copy .section-heading {
    order: 1;
    width: 342px;
    height: 120px;
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
  }

  .home-page .engine-copy .section-description {
    order: 2;
    width: 342px;
    height: 54px;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 27px;
  }

  .home-page .engine-orbit {
    order: 3;
    display: block;
    width: 342px;
    height: 256.5px;
    min-height: 256.5px;
    margin: 0 0 24px;
  }

  .home-page .engine-flow-image {
    display: block;
    width: 342px;
    height: 256.5px;
    max-width: none;
    object-fit: contain;
  }

  .home-page .engine-tabs {
    order: 4;
    width: 342px;
    height: 243.5625px;
    margin: 0;
    border-radius: 26px;
    padding: 6px;
  }

  .home-page .engine-tab-list {
    width: 328px;
    height: 46px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    border: 0;
    border-radius: 21px;
    padding: 4px;
  }

  .home-page .engine-tab-list button {
    min-width: 0;
    min-height: 19px;
    overflow: hidden;
    border-radius: 17px;
    font-size: 12px;
    line-height: 19px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .engine-tab-panel {
    height: 184.5625px;
    min-height: 0;
    padding: 20px 22px;
  }

  .home-page .start-section > .site-shell {
    width: 342px;
    max-width: none;
    margin: 0;
  }

  .home-page .start-heading {
    width: 342px;
    height: 154.1875px;
    max-width: none;
  }

  .home-page .start-heading .section-heading {
    width: 342px;
    height: 57.1875px;
    font-size: 26px;
    line-height: 28.6px;
    letter-spacing: 0;
  }

  .home-page .start-heading .section-description {
    width: 342px;
    height: 81px;
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 27px;
  }

  .home-page .start-grid {
    display: grid;
    width: 342px;
    grid-template-columns: 342px;
    gap: 20px;
    margin: 40.5px 0 0;
  }

  .home-page .start-path-card,
  .home-page .start-path-card:nth-child(-n + 2),
  .home-page .start-path-card:nth-child(n + 3) {
    display: flex;
    width: 342px;
    height: 385.375px;
    min-height: 385.375px;
    flex-direction: column;
    border-radius: 24px;
  }

  .home-page .start-path-copy {
    display: grid;
    width: 100%;
    height: 235.375px;
    flex: 0 0 235.375px;
    grid-template-rows: auto 1fr 56px;
    padding: 65px 24px 0;
  }

  .home-page .start-path-number {
    top: 18px;
    left: 24px;
    font-size: 72px;
  }

  .home-page .start-path-copy h3 {
    margin: 0;
    font-size: 20px;
    line-height: 25px;
  }

  .home-page .start-path-copy p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 25.2px;
  }

  .home-page .start-path-copy a {
    width: 100%;
    height: 56px;
    align-items: flex-start;
    margin: 0;
    padding-top: 20px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .home-page .start-path-card img {
    width: 128px;
    height: 128px;
    flex: 0 0 128px;
    margin: 22px auto 0;
    border: 0;
    object-fit: contain;
  }

  .home-page .why-section {
    overflow: hidden;
    padding: 80px 20px;
  }

  .home-page .why-section > .site-shell {
    width: 350px;
    height: 1256.375px;
    max-width: none;
    margin: 0;
  }

  .home-page .why-heading {
    width: 350px;
    height: 131.375px;
    max-width: none;
    margin: 0;
  }

  .home-page .why-heading .section-heading {
    width: 350px;
    height: 65px;
    font-size: 26px;
    line-height: 32.5px;
    letter-spacing: 0;
  }

  .home-page .why-heading .section-description {
    width: 350px;
    height: 50.375px;
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 0;
  }

  .home-page .why-comparison {
    display: grid;
    width: 350px;
    height: 1077px;
    max-width: none;
    grid-template-columns: 350px;
    grid-template-rows: 438px 599px;
    gap: 40px;
    margin: 78px 0 0;
  }

  .home-page .why-panel,
  .home-page .why-panel-weak,
  .home-page .why-panel-complete {
    width: 350px;
    margin: 0;
    border-radius: 16px;
    padding: 40px 20px 20px;
  }

  .home-page .why-panel-weak {
    height: 438px;
    min-height: 438px;
  }

  .home-page .why-panel-complete {
    height: 599px;
    min-height: 599px;
  }

  .home-page .why-panel::before {
    top: -18px;
    min-width: 164px;
    padding: 8px 18px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .home-page .why-versus {
    display: none;
  }

  .home-page .why-list {
    width: 308px;
    gap: 16px;
    margin: 0;
  }

  .home-page .why-item,
  .home-page .why-panel-weak .why-item,
  .home-page .why-panel-complete .why-item {
    width: 308px;
    min-height: 82px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    border-radius: 12px;
    padding: 16px 20px;
  }

  .home-page .why-item > i,
  .home-page .why-panel-complete .why-item > i {
    width: 40px;
    height: 40px;
  }

  .home-page .why-item strong {
    font-size: 14px;
    line-height: 21px;
  }

  .home-page .why-item span {
    margin-top: 2px;
    font-size: 12px;
    line-height: 18px;
  }

  .home-page .why-item-icon {
    display: none;
  }

  .home-page .why-summary {
    display: flex;
    width: 308px;
    height: 136.75px;
    min-height: 136.75px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    margin: 16px 0 0;
    padding: 16px 20px;
    overflow: hidden;
    background: linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.1) 0%,
      rgba(255, 255, 255, 0.92) 54%,
      rgba(124, 58, 237, 0.06) 100%
    );
  }

  .home-page .why-summary::before {
    display: none;
    content: none;
  }

  .home-page .why-summary-main {
    width: 266px;
    height: 50.75px;
    flex: 0 0 50.75px;
  }

  .home-page .why-summary-mark {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    flex-basis: 36px;
  }

  .home-page .why-summary-copy {
    align-self: center;
  }

  .home-page .why-summary-copy strong {
    font-size: 15px;
    line-height: 18.75px;
  }

  .home-page .why-summary-copy > span {
    font-size: 12px;
    line-height: 15px;
  }

  .home-page .why-summary-chart {
    width: 266px;
    min-width: 266px;
    height: 40px;
    min-height: 40px;
    flex: 0 0 40px;
  }

  .home-page .why-summary-chart img {
    width: 62px;
    height: 62px;
  }

  .home-page .faq-layout {
    display: grid;
    width: 342px;
    max-width: none;
    grid-template-columns: 342px;
    gap: 37px;
    margin: 0;
  }

  .home-page .faq-layout > div:first-child {
    position: static;
    width: 342px;
    height: 60.5px;
  }

  .home-page .faq-layout .section-heading {
    width: 342px;
    height: 32.5px;
    margin: 0;
    font-size: 26px;
    line-height: 32.5px;
    letter-spacing: 0;
  }

  .home-page .faq-layout .section-description {
    width: 342px;
    height: 22px;
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
  }

  .home-page .faq-list {
    width: 342px;
    border-top: 0;
  }

  .home-page .faq-question {
    width: 342px;
    height: 46.5px;
    min-height: 46.5px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 22.5px;
  }

  .home-page .faq-answer {
    display: none;
    height: 0;
    max-height: none;
    padding: 0;
    overflow: hidden;
    transition: none;
  }

  .home-page .faq-item.is-open .faq-answer {
    display: block;
    height: 137.9375px;
    max-height: none;
    padding: 0 0 12px;
    font-size: 14px;
    line-height: 25.2px;
  }

  .home-page .faq-answer p {
    height: auto;
    line-height: 25.2px;
  }
}

@media (min-width: 1121px) {
  .home-page .principle-section .site-shell,
  .home-page .insights-section .site-shell {
    width: min(calc(100% - 160px), 1280px);
    margin-inline: auto;
  }

  .home-page .engine-section .site-shell {
    width: min(100%, 1280px);
    margin-inline: auto;
  }

  .home-page .citation-content-grid {
    grid-template-columns: 430px minmax(0, 1fr);
  }
}

.home-page .platform-strategy-mark {
  display: grid;
  overflow: hidden;
  place-items: center;
}

.home-page .platform-strategy-mark img {
  display: block;
}

.home-page .citation-donut {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  flex: 0 0 220px;
  aspect-ratio: 1;
}

@media (min-width: 1121px) {
  .home-page .citation-ranking {
    gap: 6px;
  }
}

@media (max-width: 1120px) {
  .home-page .citation-ranking {
    gap: 5px;
  }
}
