:root {
  --ink: #071710;
  --ink-2: #0d2419;
  --paper: #f3f1e8;
  --paper-2: #e8e6dc;
  --white: #fffef8;
  --lime: #c8ff3d;
  --lime-soft: #e5ff9f;
  --green: #1f6b47;
  --muted: #66736b;
  --line: rgba(7, 23, 16, 0.14);
  --light-line: rgba(255, 255, 255, 0.15);
  --radius: 18px;
  --shadow: 0 28px 80px rgba(7, 23, 16, 0.15);
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang HK", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.signal-bar {
  color: var(--white);
  background: #020b07;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-inner {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.signal-inner span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.signal-inner span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 255, 61, 0.1);
}

.signal-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.signal-inner a {
  justify-self: end;
  color: var(--lime);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(243, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--lime);
  background: var(--ink);
  border-radius: 4px 14px 4px 4px;
  font-size: 16px;
  font-weight: 900;
}

.brand-mark i {
  position: absolute;
  left: 8px;
  top: 5px;
  font-style: normal;
}

.brand-mark b {
  position: absolute;
  right: 8px;
  bottom: 4px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 50% -15px auto;
  height: 1px;
  background: rgba(200, 255, 61, 0.45);
  transform: rotate(-35deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.09em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

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

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.login-link:hover {
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 110, 73, 0.5), transparent 32%),
    linear-gradient(128deg, #06130d 0%, #0c271a 55%, #071710 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -280px;
  border: 1px solid rgba(200, 255, 61, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(200, 255, 61, 0.02),
    0 0 0 200px rgba(200, 255, 61, 0.015);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 690px;
  padding-block: 96px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.eyebrow.light {
  color: var(--lime);
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(45px, 4.35vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

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

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.85;
}

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

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

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

.button.primary:hover {
  background: #d9ff75;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

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

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  color: var(--lime);
  font-style: normal;
}

.decision-panel {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 254, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-head,
.result-top,
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-head p {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.panel-head span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.decision-panel h2 {
  margin: 30px 0 22px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.decision-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.decision-panel li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.decision-panel li > b {
  color: var(--green);
  font-size: 10px;
}

.decision-panel li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.decision-panel li strong {
  font-size: 14px;
}

.decision-panel li span {
  color: var(--muted);
  font-size: 11px;
}

.panel-foot {
  margin: 20px -10px -10px;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
}

.panel-foot span {
  display: block;
  margin-bottom: 4px;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.panel-foot strong {
  font-size: 12px;
}

.metric-band {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--light-line);
}

.metric-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid > div {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--light-line);
}

.metric-grid > div:last-child {
  border-right: 1px solid var(--light-line);
}

.metric-grid strong {
  color: var(--lime);
  font-size: 28px;
  letter-spacing: -0.045em;
}

.metric-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.section {
  padding-block: 116px;
}

section[id] {
  scroll-margin-top: 110px;
}

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

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.62fr);
  align-items: end;
  gap: 80px;
}

.section-heading.centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.benchmark-copy h2,
.platform-copy h2,
.company-intro h2,
.faq-layout h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child,
.section-heading.split > p,
.benchmark-copy > p,
.platform-copy > p,
.company-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.section-heading.centered > p:last-child {
  max-width: 700px;
  margin: 20px auto 0;
}

.scope {
  background: var(--white);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scope-card {
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scope-card.primary {
  color: var(--white);
  background: var(--ink);
}

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

.scope-head span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.scope-head b {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.scope-card.primary .scope-head b {
  color: var(--lime);
}

.scope-card h3 {
  margin: 44px 0 14px;
  font-size: 30px;
  line-height: 1.13;
  letter-spacing: -0.045em;
}

.scope-card > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.scope-card.primary > p {
  color: rgba(255, 255, 255, 0.65);
}

.scope-card ul {
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.scope-card li {
  color: var(--muted);
  font-size: 11px;
}

.scope-card li::before {
  content: "↳";
  margin-right: 9px;
  color: var(--green);
}

.scope-card.primary li {
  color: rgba(255, 255, 255, 0.68);
}

.scope-card.primary li::before {
  color: var(--lime);
}

.scope-card footer {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
}

.scope-card.primary footer {
  color: var(--lime);
  border-color: var(--light-line);
}

.client-fit {
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.client-fit div {
  display: grid;
  gap: 7px;
}

.client-fit div span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.client-fit div strong {
  font-size: 16px;
  line-height: 1.55;
}

.client-fit ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.client-fit li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  font-size: 9px;
}

.markets {
  background: var(--paper);
}

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

.market-card {
  min-height: 480px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.market-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 107, 71, 0.45);
  box-shadow: 0 24px 60px rgba(7, 23, 16, 0.08);
}

.market-card.featured {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.market-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.market-code span {
  min-width: 48px;
  padding: 8px 10px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
}

.market-code b {
  color: rgba(7, 23, 16, 0.3);
  font-size: 11px;
}

.featured .market-code b {
  color: rgba(255, 255, 255, 0.35);
}

.market-scope {
  margin-top: 20px;
  color: var(--green);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.featured .market-scope {
  color: var(--lime);
}

.market-card h3 {
  margin: 12px 0 8px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.market-card > p {
  min-height: 73px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.featured > p {
  color: rgba(255, 255, 255, 0.65);
}

.carrier-list {
  margin-top: 22px;
  padding: 12px 0;
  color: var(--green);
  border-block: 1px solid var(--line);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.featured .carrier-list {
  color: var(--lime);
  border-color: var(--light-line);
}

.market-card ul {
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.market-card li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.market-card li::before {
  content: "↳";
  color: var(--green);
}

.featured li {
  color: rgba(255, 255, 255, 0.65);
}

.featured li::before {
  color: var(--lime);
}

.market-card footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.featured footer {
  border-color: var(--light-line);
}

.market-card footer span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.featured footer span {
  color: rgba(255, 255, 255, 0.5);
}

.market-card footer strong {
  color: var(--green);
  font-size: 22px;
}

.featured footer strong {
  color: var(--lime);
}

.market-card footer.pending strong {
  font-size: 15px;
}

.coverage-line {
  margin-top: 20px;
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.coverage-line strong {
  margin-right: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.coverage-line span {
  padding: 6px 10px;
  color: var(--muted);
  background: var(--paper-2);
  border-radius: 99px;
  font-size: 10px;
}

.label-resell {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 15%, rgba(31, 107, 71, 0.34), transparent 28%),
    #06130d;
}

.label-resell .section-heading > p:last-child,
.label-resell .section-heading.split > p {
  color: rgba(255, 255, 255, 0.66);
}

.resell-definition {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 16px;
}

.definition-lead {
  min-height: 340px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
}

.definition-lead span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.definition-lead strong {
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.visibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visibility-grid article {
  min-height: 340px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
}

.visibility-grid article > b {
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.visibility-grid h3 {
  margin: 50px 0 20px;
  font-size: 22px;
}

.visibility-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.visibility-grid li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.visibility-grid li::before {
  content: "↳";
  margin-right: 8px;
  color: var(--lime);
}

.resell-flow {
  margin: 52px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
  list-style: none;
}

.resell-flow li {
  min-height: 190px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.resell-flow b {
  color: var(--lime);
  font-size: 9px;
}

.resell-flow strong {
  margin: 40px 0 8px;
  font-size: 15px;
}

.resell-flow span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.65;
}

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

.delivery-modes article {
  padding: 24px;
  border: 1px solid var(--light-line);
  border-radius: 12px;
}

.delivery-modes span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.delivery-modes h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.delivery-modes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.75;
}

.resell-guardrail {
  margin-top: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: start;
  color: var(--ink);
  background: var(--paper);
  border-radius: 12px;
}

.resell-guardrail b {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.resell-guardrail p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.78;
}

.benchmark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 78%, rgba(31, 107, 71, 0.42), transparent 30%),
    var(--ink);
}

.benchmark-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.75fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

.benchmark-copy > p {
  max-width: 740px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
}

.scenario-select {
  max-width: 720px;
  margin-top: 42px;
  display: block;
}

.scenario-select > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.scenario-select select {
  width: 100%;
  min-height: 56px;
  padding: 0 46px 0 16px;
  color: var(--white);
  background-color: #133322;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  outline: none;
}

.scenario-select select:focus {
  border-color: var(--lime);
}

.benchmark-result {
  max-width: 720px;
  margin-top: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.result-top span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.result-top b {
  padding: 4px 8px;
  color: var(--lime);
  background: rgba(200, 255, 61, 0.09);
  border: 1px solid rgba(200, 255, 61, 0.25);
  border-radius: 99px;
  font-size: 9px;
}

.result-top b.pending {
  color: #ffd38d;
  background: rgba(255, 190, 88, 0.08);
  border-color: rgba(255, 190, 88, 0.3);
}

.result-prices {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--light-line);
}

.result-prices > div {
  padding: 22px 24px 22px 0;
  display: flex;
  flex-direction: column;
}

.result-prices > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--light-line);
}

.result-prices small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.result-prices strong {
  margin: 8px 0 3px;
  color: var(--lime);
  font-size: clamp(29px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.result-prices span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.benchmark-result > p {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.75;
}

.benchmark-result > a {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.method-card {
  position: sticky;
  top: 112px;
  padding: 32px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
}

.method-number {
  float: right;
  color: rgba(7, 23, 16, 0.14);
  font-size: 88px;
  font-weight: 900;
  line-height: 0.8;
}

.method-card .eyebrow {
  color: var(--ink);
}

.method-card h3 {
  clear: both;
  margin: 34px 0 12px;
  font-size: 30px;
}

.method-card code {
  display: block;
  padding: 18px;
  color: var(--lime);
  background: var(--ink);
  border-radius: 7px;
  font-size: 12px;
  white-space: normal;
}

.method-card ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.method-card li {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(7, 23, 16, 0.16);
}

.method-card li b {
  font-size: 11px;
}

.method-card li span {
  font-size: 10px;
}

.method-warning {
  padding: 14px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 8px;
}

.method-warning i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.method-warning p {
  margin: 0;
  font-size: 9px;
  line-height: 1.65;
}

.consulting {
  background: var(--white);
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.consulting-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.consulting-grid article > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.consulting-grid h3 {
  margin: 34px 0 10px;
  font-size: 21px;
}

.consulting-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.consulting-grid small {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operating-loop {
  margin-top: 28px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 60px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.operating-loop h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.operating-loop ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.operating-loop li {
  position: relative;
  min-height: 95px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--light-line);
}

.operating-loop li::after {
  content: "→";
  position: absolute;
  top: 0;
  right: -6px;
  color: var(--lime);
  font-size: 9px;
}

.operating-loop li:last-child::after {
  display: none;
}

.operating-loop li b {
  color: var(--lime);
  font-size: 10px;
}

.operating-loop li span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.intelligence {
  background: var(--paper-2);
}

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

.insight-card {
  min-height: 450px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.insight-card.priority {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.insight-meta span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.priority .insight-meta span {
  color: var(--lime);
}

.insight-meta time {
  color: var(--muted);
  font-size: 9px;
}

.priority .insight-meta time {
  color: rgba(255, 255, 255, 0.58);
}

.insight-card h3 {
  margin: 58px 0 14px;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.insight-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.priority > p {
  color: rgba(255, 255, 255, 0.72);
}

.impact {
  margin-top: auto;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  border-block: 1px solid var(--line);
}

.priority .impact {
  border-color: rgba(255, 255, 255, 0.2);
}

.impact b {
  color: var(--green);
  font-size: 9px;
}

.priority .impact b {
  color: var(--lime);
}

.impact span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

.priority .impact span {
  color: rgba(255, 255, 255, 0.65);
}

.insight-card > a {
  margin-top: 16px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.priority > a {
  color: var(--lime);
}

.intelligence-note {
  margin-top: 20px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
}

.intelligence-note span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.intelligence-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.platform {
  color: var(--white);
  background: var(--ink-2);
  overflow: hidden;
}

.platform-layout {
  min-height: 530px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.platform-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
}

.system-map {
  position: relative;
  min-height: 440px;
}

.system-map::before,
.system-map::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(200, 255, 61, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-map::after {
  width: 50%;
  height: 50%;
}

.system-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(200, 255, 61, 0.18);
}

.system-core small {
  font-size: 8px;
  letter-spacing: 0.15em;
}

.system-core strong {
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.15;
}

.system-core span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.system-node {
  position: absolute;
  z-index: 3;
  min-width: 134px;
  padding: 13px;
  color: var(--white);
  background: #173c29;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
}

.system-node b {
  margin-right: 9px;
  color: var(--lime);
  font-size: 8px;
}

.system-node span {
  font-size: 10px;
}

.system-node.n1 { top: 5%; left: 2%; }
.system-node.n2 { top: 9%; right: 0; }
.system-node.n3 { bottom: 8%; left: 0; }
.system-node.n4 { right: 4%; bottom: 3%; }

.methodology {
  background: var(--white);
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.disclosure-grid article {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclosure-grid span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.disclosure-grid h3 {
  margin: 38px 0 10px;
  font-size: 18px;
}

.disclosure-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
}

.source-table-wrap {
  max-width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.source-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 10px;
}

.source-table caption {
  padding: 18px;
  color: var(--ink);
  text-align: left;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.source-table th,
.source-table td {
  padding: 14px 16px;
  text-align: left;
  border-top: 1px solid var(--line);
}

.source-table th {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-table td:first-child {
  font-weight: 850;
}

.source-table a {
  color: var(--green);
  font-weight: 800;
}

.company {
  background: var(--paper);
}

.company-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.company-intro > p {
  margin-top: 22px;
}

.company-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.company-card dl {
  margin: 0;
}

.company-card dl > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.company-card dl > div:first-child {
  padding-top: 0;
}

.company-card dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-card dt {
  color: var(--muted);
  font-size: 9px;
}

.company-card dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.faq {
  padding-top: 30px;
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 90px;
}

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

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

.faq-list summary {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 750;
}

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

.faq-list summary i {
  color: var(--green);
  font-size: 18px;
  font-style: normal;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.cta {
  padding-block: 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 23, 16, 0.96), rgba(7, 23, 16, 0.72)),
    radial-gradient(circle at 90% 30%, var(--green), var(--ink));
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.cta-inner > div:first-child > p {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.cta-inner > div:first-child > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer {
  padding-block: 36px 22px;
  color: var(--white);
  background: #020b07;
}

.footer-top {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-top .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.footer-top > div {
  display: flex;
  gap: 7px;
}

.footer-top > div span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 61, 0.25);
  border-radius: 50%;
  font-size: 8px;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
}

.footer-bottom p {
  max-width: 570px;
  margin: 0;
  text-align: right;
}

@media (prefers-reduced-motion: no-preference) {
  .market-card,
  .insight-card,
  .consulting-grid article,
  .disclosure-grid article {
    animation: fade-in linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 22%;
  }

  @keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 36px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-toggle i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 82px 0 auto;
    z-index: 99;
    height: calc(100vh - 82px);
    padding: 24px;
    display: grid;
    align-content: start;
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.28s ease,
      visibility 0s linear 0.28s;
  }

  .menu-open .mobile-nav {
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .mobile-nav a {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--light-line);
    font-size: 18px;
  }

  .mobile-nav a span,
  .mobile-nav a b {
    color: var(--lime);
    font-size: 9px;
  }

  .hero-layout,
  .benchmark-layout,
  .platform-layout,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-block: 80px;
  }

  .decision-panel {
    max-width: 640px;
  }

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

  .resell-definition {
    grid-template-columns: 1fr;
  }

  .resell-flow {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .operating-loop {
    grid-template-columns: 1fr;
  }

  .method-card {
    position: static;
  }

  .system-map {
    min-height: 500px;
  }

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

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 640px);
  }

  .signal-inner {
    min-height: 34px;
    display: flex;
    justify-content: space-between;
  }

  .signal-inner p {
    display: none;
  }

  .signal-inner span {
    font-size: 9px;
  }

  .signal-inner a {
    font-size: 9px;
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-nav {
    top: 72px;
    height: calc(100vh - 72px);
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .login-link {
    display: none;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 68px 62px;
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

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

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

  .hero-trust {
    display: grid;
  }

  .decision-panel {
    padding: 22px;
  }

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

  .metric-grid > div {
    min-height: 108px;
    padding: 20px;
    border-bottom: 1px solid var(--light-line);
  }

  .metric-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .metric-grid > div:last-child {
    border-right: 0;
  }

  .metric-grid strong {
    font-size: 24px;
  }

  .section {
    padding-block: 78px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  .section-heading.split,
  .faq-layout,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .benchmark-copy h2,
  .platform-copy h2,
  .company-intro h2,
  .faq-layout h2 {
    font-size: 36px;
  }

  .market-grid,
  .insight-grid,
  .consulting-grid,
  .disclosure-grid,
  .scope-grid,
  .visibility-grid,
  .delivery-modes {
    grid-template-columns: 1fr;
  }

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

  .client-fit {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .market-card {
    min-height: 450px;
  }

  .definition-lead,
  .visibility-grid article {
    min-height: 300px;
  }

  .resell-flow {
    grid-template-columns: 1fr;
  }

  .resell-flow li {
    min-height: auto;
    display: grid;
    grid-template-columns: 30px 105px 1fr;
    align-items: center;
    gap: 8px;
  }

  .resell-flow strong {
    margin: 0;
  }

  .resell-guardrail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .result-prices {
    grid-template-columns: 1fr;
  }

  .result-prices > div {
    padding: 18px 0;
  }

  .result-prices > div + div {
    padding-left: 0;
    border-top: 1px solid var(--light-line);
    border-left: 0;
  }

  .method-card {
    padding: 26px;
  }

  .operating-loop {
    padding: 26px;
  }

  .operating-loop ol {
    grid-template-columns: 1fr;
  }

  .operating-loop li {
    min-height: auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    border-top: 1px solid var(--light-line);
    border-left: 0;
  }

  .operating-loop li::after {
    display: none;
  }

  .insight-card {
    min-height: 420px;
  }

  .intelligence-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .platform-layout {
    gap: 38px;
  }

  .system-map {
    min-height: 430px;
    transform: scale(0.92);
  }

  .system-core {
    width: 190px;
    height: 190px;
  }

  .system-node {
    min-width: 115px;
    padding: 10px;
  }

  .company-layout {
    gap: 38px;
  }

  .company-card {
    padding: 24px;
  }

  .company-card dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq {
    padding-top: 10px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    display: none;
  }

  .signal-inner span {
    max-width: 210px;
    overflow: hidden;
    white-space: nowrap;
  }

  .market-card,
  .insight-card,
  .scope-card {
    padding: 22px;
  }

  .definition-lead,
  .visibility-grid article {
    padding: 24px;
  }

  .system-map {
    margin-inline: -22px;
  }
}
