.clayboy-home {
  --cb-white: #ffffff;
  --cb-paper: #fbfbfa;
  --cb-ink: #080808;
  --cb-muted: #696969;
  --cb-soft: #efefec;
  --cb-rule: #deded9;
  --cb-rule-dark: rgba(255, 255, 255, 0.14);
  --cb-dark: #070604;
  --cb-green: #28b76b;
  background: var(--cb-white);
  color: var(--cb-ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.45;
}

.clayboy-home main {
  overflow: clip;
  background: var(--cb-white);
}

.clayboy-home .skip-link {
  z-index: 1000;
}

.cb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  padding-inline: 0;
  transition: top 500ms ease, padding-inline 500ms ease;
}

.cb-header.is-scrolled {
  top: 24px;
  padding-inline: 32px;
}

.cb-nav {
  width: 100%;
  max-width: 1400px;
  min-height: 72px;
  display: grid;
  grid-template-columns: 220px 1fr 230px auto;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition:
    background 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease,
    border-radius 500ms ease,
    min-height 500ms ease;
}

.cb-header.is-scrolled .cb-nav {
  max-width: 1200px;
  min-height: 58px;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.cb-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.cb-brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.cb-mark-line { stroke: var(--cb-ink); }
.cb-mark-dot  { fill:   var(--cb-ink); }

.cb-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cb-brand-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cb-ink);
  line-height: 1;
  text-transform: uppercase;
}

.cb-brand-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e0231a;
  line-height: 1;
  text-transform: uppercase;
}

.cb-nav__links,
.cb-nav__actions {
  display: flex;
  align-items: center;
}

.cb-nav__links {
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
  color: #363636;
  font-size: 14px;
}

.cb-nav__actions {
  justify-content: end;
  gap: 18px;
  font-size: 13px;
}

.cb-nav a {
  text-decoration: none;
}

.cb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.cb-button:hover,
.cb-button:focus-visible {
  transform: translateY(-1px);
}

.cb-button--dark {
  border: 1px solid var(--cb-ink);
  background: var(--cb-ink);
  color: var(--cb-white);
}

.cb-button--light {
  border: 1px solid var(--cb-rule);
  background: rgba(255, 255, 255, 0.72);
  color: var(--cb-ink);
}

.cb-button--ghost {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: #555;
}

/* ── Animated hero CTA ── */
.cb-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1.5px solid var(--cb-ink);
  padding: 13px 26px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--cb-ink);
  transition: border-color 300ms ease, transform 180ms ease, box-shadow 300ms ease;
  cursor: pointer;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.92),
    0 0 28px rgba(224, 35, 26, 0.22);
  animation: cb-glow-pulse 2.6s ease-in-out 1.1s infinite;
}

@keyframes cb-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.92),
      0 0 28px rgba(224, 35, 26, 0.22);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.92),
      0 0 52px rgba(224, 35, 26, 0.55);
  }
}

.cb-map-btn:hover {
  border-color: #e0231a;
  animation-play-state: paused;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.92),
    0 0 56px rgba(224, 35, 26, 0.65);
}

.cb-map-btn:active {
  transform: scale(0.95);
}

.cb-map-btn__text {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  margin-right: 0;
  opacity: 0;
  animation: cb-btn-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes cb-btn-reveal {
  from {
    max-width: 0;
    margin-right: 0;
    opacity: 0;
  }
  to {
    max-width: 220px;
    margin-right: 10px;
    opacity: 1;
  }
}

.cb-map-btn__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 300ms ease;
}

.cb-map-btn:hover .cb-map-btn__icon {
  transform: scale(1.15) rotate(12deg);
}

.cb-menu {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--cb-rule);
  border-radius: 999px;
  background: transparent;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.cb-menu span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--cb-ink);
}

.cb-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 96px 32px 40px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}

.cb-mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cb-mobile-nav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.cb-mobile-nav__links a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--cb-rule);
  color: var(--cb-ink);
  font-size: clamp(34px, 10vw, 52px);
  font-weight: 300;
  letter-spacing: -0.04em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 320ms ease, transform 320ms ease, color 180ms ease;
}

.cb-mobile-nav.is-open .cb-mobile-nav__links a:nth-child(1) { transition-delay: 60ms; opacity: 1; transform: none; }
.cb-mobile-nav.is-open .cb-mobile-nav__links a:nth-child(2) { transition-delay: 110ms; opacity: 1; transform: none; }
.cb-mobile-nav.is-open .cb-mobile-nav__links a:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.cb-mobile-nav.is-open .cb-mobile-nav__links a:nth-child(4) { transition-delay: 210ms; opacity: 1; transform: none; }
.cb-mobile-nav.is-open .cb-mobile-nav__links a:nth-child(5) { transition-delay: 260ms; opacity: 1; transform: none; }

.cb-mobile-nav__foot {
  padding-top: 24px;
  border-top: 1px solid var(--cb-rule);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease 310ms, transform 320ms ease 310ms;
}

.cb-mobile-nav.is-open .cb-mobile-nav__foot {
  opacity: 1;
  transform: none;
}

.cb-mobile-nav__foot .cb-button {
  width: 100%;
  height: 56px;
  font-size: 16px;
  border-radius: 14px;
}

.cb-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 100px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2)) 24px;
  overflow: hidden;
}

.cb-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 105px 105px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}

.cb-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.cb-label,
.cb-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.cb-label {
  margin-bottom: 20px;
}

.cb-label::before,
.cb-section-label span {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.cb-hero h1 {
  margin: 0;
  color: var(--cb-ink);
  font-size: clamp(78px, 12vw, 156px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.cb-hero h1 > span {
  display: block;
}

.cb-spell {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.cb-hero__copy {
  width: min(520px, 100%);
  margin: 24px 0 0;
  color: #555;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.cb-hero__support {
  width: min(620px, 100%);
  margin: 14px 0 0;
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.6;
}

.cb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (min-width: 900px) {
  .cb-hero__actions {
    width: max-content;
    margin-top: -56px;
    margin-left: clamp(580px, 52vw, 680px);
  }

  .cb-hero--gtm .cb-hero__actions {
    width: auto;
    margin-top: 36px;
    margin-left: 0;
  }
}

.cb-hero--gtm {
  min-height: 100vh;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.cb-hero--gtm .cb-hero__content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2)) 32px;
}

.cb-hero--gtm .cb-marquee {
  border-top: 2px solid var(--cb-ink);
  border-bottom: none;
  background: var(--cb-dark);
}

.cb-marquee strong[data-type="growth"] { color: #16a34a; }
.cb-marquee strong[data-type="revenue"] { color: #0d9488; }
.cb-marquee strong[data-type="score"]   { color: #e0231a; }

.cb-hero--gtm h1 {
  width: auto;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.cb-hero--gtm .cb-sphere-canvas {
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, 100vw);
  height: min(920px, 100vw);
  opacity: 0.35;
}

.cb-hero--gtm .cb-hero__actions {
  justify-content: center;
  margin-top: 36px;
}

.cb-hero-static {
  display: block;
  color: var(--cb-ink);
}

.cb-hero-word {
  display: inline-block;
  color: var(--cb-ink);
  min-height: 1.1em;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.cb-char-in {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(25%);
  animation: cbCharIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cbCharIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (min-width: 1100px) {
  .cb-hero--gtm .cb-hero__actions {
    margin-top: 24px;
    margin-left: 0;
  }
}

.cb-hero__right {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  top: 88px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: min(360px, 30vw);
}

.cb-intel-cta {
  width: 100%;
  justify-content: center;
  height: 44px;
}

.cb-intel-panel {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cb-intel-panel__head,
.cb-intel-panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--cb-rule);
  color: #666;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.cb-intel-panel__head strong,
.cb-intel-panel__foot strong {
  color: var(--cb-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.055em;
}

.cb-intel-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--cb-rule);
}

.cb-intel-panel__stats span {
  min-height: 60px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px 12px;
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
  color: #6b6b6b;
  font-size: 11px;
}

.cb-intel-panel__stats span:nth-child(2n) {
  border-right: 0;
}

.cb-intel-panel__stats span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.cb-intel-panel__stats strong {
  color: var(--cb-ink);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
}

.cb-intel-panel__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--cb-rule);
}

.cb-intel-panel__regions span,
.cb-feed-list em {
  border: 1px solid var(--cb-rule);
  border-radius: 999px;
  padding: 5px 9px;
  color: #5f5f5f;
  background: rgba(255, 255, 255, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.cb-intel-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-intel-panel li {
  display: grid;
  gap: 4px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--cb-rule);
  color: #333;
  font-size: 12px;
  line-height: 1.3;
}

.cb-intel-panel li em {
  color: var(--cb-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cb-intel-panel__foot {
  border-bottom: 0;
}

.cb-sphere-canvas {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(800px, 58vw);
  height: min(800px, 58vw);
  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}

.cb-marquee {
  border-block: 1px solid var(--cb-rule);
  background: var(--cb-white);
  overflow: hidden;
}

.cb-marquee__track {
  display: flex;
  width: max-content;
  animation: cbMarquee 30s linear infinite;
}

.cb-marquee span {
  min-width: 220px;
  padding: 16px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.cb-marquee strong {
  display: block;
  color: var(--cb-ink);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.cb-marquee em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.cb-section,
.cb-integrations,
.cb-security,
.cb-pricing,
.cb-final,
.cb-developers,
.cb-footer {
  padding-inline: max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
}

/* Korea strip */
.cb-korea-strip {
  background: #e0231a;
  color: #fff;
  padding: 48px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
}
.cb-korea-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cb-korea-strip__route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.cb-korea-strip p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  margin: 0;
  flex: 1;
  min-width: 220px;
}
.cb-korea-strip .cb-button--dark {
  background: #fff;
  color: #e0231a;
  white-space: nowrap;
  flex-shrink: 0;
}
.cb-korea-strip .cb-button--dark:hover { background: #f0f0f0; }

.cb-section {
  padding-block: 118px;
  background: var(--cb-white);
}

.cb-section-heading h2,
.cb-section h2,
.cb-integrations h2,
.cb-security h2,
.cb-pricing h2,
.cb-developers h2,
.cb-final h2 {
  margin: 36px 0 0;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.cb-feature-list {
  margin-top: 76px;
  border-top: 1px solid var(--cb-rule);
}

.cb-feature {
  min-height: 220px;
  display: grid;
  grid-template-columns: 60px minmax(0, 620px) 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--cb-rule);
}

.cb-feature > span,
.cb-security article span,
.cb-dev-grid article span {
  align-self: start;
  padding-top: 46px;
  color: #6f6f6f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.cb-feature h3,
.cb-security h3,
.cb-dev-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.cb-feature p,
.cb-market p,
.cb-final p {
  color: #666;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.cb-feature ul,
.cb-comparison-grid ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #555;
  font-size: 15px;
}

.cb-feature li,
.cb-comparison-grid li {
  position: relative;
  padding-left: 18px;
}

.cb-feature li::before,
.cb-comparison-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.cb-positioning__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
  margin-top: 34px;
}

.cb-positioning__intro h2 {
  margin: 0;
}

.cb-positioning__intro p,
.cb-ops-feed .cb-live__top p,
.cb-final-statement p {
  color: #666;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.cb-compare-table {
  margin-top: 72px;
  border: 1px solid var(--cb-rule);
  overflow: hidden;
}

.cb-compare-table__head,
.cb-compare-table__row {
  display: grid;
  grid-template-columns: 1fr 160px 160px 200px;
  border-bottom: 1px solid var(--cb-rule);
}

.cb-compare-table__row:last-child {
  border-bottom: 0;
}

.cb-compare-table__head > div,
.cb-compare-table__row > div {
  padding: 15px 20px;
  border-right: 1px solid var(--cb-rule);
}

.cb-compare-table__head > div:last-child,
.cb-compare-table__row > div:last-child {
  border-right: 0;
}

/* Header row */
.cb-compare-table__head {
  background: var(--cb-soft);
}

.cb-compare-table__head > div:first-child {
  /* empty corner */
}

.cb-compare-table__head > div:not(:first-child):not(:last-child) {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #444;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-compare-table__head > div:last-child {
  background: var(--cb-dark);
  color: var(--cb-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 3px solid #e0231a;
}

/* Body rows — feature label */
.cb-compare-table__row > div:first-child {
  font-size: 15px;
  color: var(--cb-ink);
  display: flex;
  align-items: center;
}

/* Competitor cells */
.cb-compare-table__row > div:not(:first-child):not(:last-child) {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ccc;
}

.cb-compare-table__row > div[data-val="no"]:not(:first-child) {
  color: #d93025;
}

.cb-compare-table__row > div[data-val="partial"]:not(:first-child) {
  color: #bbb;
  font-size: 22px;
  letter-spacing: 0;
}

/* Clayboy cell */
.cb-compare-table__row > div:last-child {
  background: var(--cb-dark);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cb-green);
}

.cb-compare-table__row:hover > div:first-child {
  background: var(--cb-paper);
}

.cb-compare-table__row:hover > div:last-child {
  background: #0d0b08;
}

/* Keep old grid styles for any other page that might use it */
.cb-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--cb-rule);
  border-left: 1px solid var(--cb-rule);
}

.cb-comparison-grid .is-clayboy {
  background: var(--cb-dark);
  color: var(--cb-white);
}

.cb-comparison-grid .is-clayboy li,
.cb-comparison-grid .is-clayboy > span {
  color: rgba(255, 255, 255, 0.72);
}

.cb-feature-icon {
  justify-self: end;
  width: 112px;
  height: 112px;
  position: relative;
  margin-right: clamp(16px, 6vw, 72px);
}

.cb-icon-target {
  border: 1px solid #111;
  border-radius: 50%;
  box-shadow: inset 0 0 0 23px #fff, inset 0 0 0 24px #111, inset 0 0 0 45px #fff, inset 0 0 0 46px #111;
}

.cb-icon-network::before,
.cb-icon-people::before,
.cb-icon-lock::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: #111;
  box-shadow: -48px 0 0 -9px #fff, -48px 0 0 -7px #111, 48px 0 0 -9px #fff, 48px 0 0 -7px #111,
    0 -48px 0 -9px #fff, 0 -48px 0 -7px #111, 0 48px 0 -9px #fff, 0 48px 0 -7px #111;
}

.cb-icon-network::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid #111;
  border-radius: 50%;
}

.cb-icon-people::before {
  width: 36px;
  height: 48px;
  inset: auto;
  left: 18px;
  bottom: 18px;
  border: 2px solid #111;
  border-radius: 6px;
  background: transparent;
  box-shadow: 54px 0 0 -2px #fff, 54px 0 0 0 #111;
}

.cb-icon-people::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 16px;
  width: 22px;
  height: 22px;
  border: 2px solid #111;
  border-radius: 50%;
  box-shadow: 54px 0 0 0 #fff, 54px 0 0 2px #111;
}

.cb-icon-lock::before {
  inset: 20px 30px 22px;
  border: 2px solid #111;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.cb-icon-lock::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 2px solid #111;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.cb-process,
.cb-developers {
  position: relative;
  padding: 130px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  color: var(--cb-white);
  background:
    repeating-linear-gradient(135deg, transparent 0 42px, rgba(255, 255, 255, 0.045) 43px 44px),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.09), transparent 30%),
    var(--cb-dark);
}

.cb-section-label--dark {
  color: rgba(255, 255, 255, 0.62);
}

.cb-process__head h2,
.cb-developers h2 {
  margin-top: 34px;
  color: var(--cb-white);
}

.cb-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(44px, 7vw, 92px);
  margin-top: 72px;
  align-items: center;
}

.cb-process__steps {
  display: grid;
}

.cb-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  min-height: 126px;
  border: 0;
  border-bottom: 1px solid var(--cb-rule-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.32);
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
}

.cb-step:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: -1px;
}

.cb-step span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
}

.cb-step strong {
  display: block;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.cb-step small {
  grid-column: 2;
  color: inherit;
  font-size: 16px;
  line-height: 1.55;
}

.cb-step.is-active {
  color: var(--cb-white);
}

.cb-step__progress {
  grid-column: 2;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cb-step__progress div {
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.72);
}

.cb-step.is-active .cb-step__progress div {
  animation: cbStepProgress 5s linear forwards;
}

@keyframes cbStepProgress {
  from { width: 0; }
  to { width: 100%; }
}

.cb-code-line {
  display: block;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1), transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-code-line.is-visible {
  opacity: 1;
  transform: none;
}

.cb-code-card {
  min-height: 380px;
  border: 1px solid var(--cb-rule-dark);
  background: rgba(255, 255, 255, 0.02);
}

.cb-code-card__bar {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--cb-rule-dark);
  padding: 0 24px;
}

.cb-code-card__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.cb-code-card__bar em {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-style: normal;
}

.cb-code-card pre {
  min-height: 245px;
  margin: 0;
  padding: 34px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

.cb-code-card__status {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 76px;
  border-top: 1px solid var(--cb-rule-dark);
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.64);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.cb-code-card__status span,
.cb-live__clock span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cb-green);
}

.cb-market {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.82fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.cb-market p {
  width: min(610px, 100%);
  margin-top: 28px;
}

.cb-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.cb-metric-row span {
  display: grid;
  gap: 6px;
  color: #777;
  font-size: 13px;
}

.cb-metric-row strong {
  color: var(--cb-ink);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.cb-map-card {
  border: 1px solid var(--cb-rule);
  border-radius: 2px;
  background: linear-gradient(180deg, #fff, #f8f8f7);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

.cb-map-card__head,
.cb-map-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--cb-rule);
}

.cb-map-card__head {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.cb-map-card__head em,
.cb-map-card li em {
  color: var(--cb-green);
  font-style: normal;
  font-size: 12px;
}

.cb-map-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-map-card li {
  grid-template-columns: 1fr auto auto;
}

.cb-map-card li strong {
  font-size: 17px;
  font-weight: 500;
}

.cb-map-card li span {
  color: #777;
  font-size: 13px;
}

.cb-use-case-card li span {
  max-width: 430px;
  line-height: 1.45;
}

.cb-live {
  padding-top: 30px;
}

.cb-live__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-top: 34px;
}

.cb-ops-feed .cb-live__top {
  align-items: start;
}

.cb-ops-feed .cb-live__top p {
  width: min(720px, 100%);
  margin-top: 24px;
}

.cb-live__top h2 {
  margin: 0;
}

.cb-live__clock {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.cb-live__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border: 1px solid var(--cb-rule);
  border-bottom: 0;
}

.cb-live__grid article {
  padding: 34px;
  border-bottom: 1px solid var(--cb-rule);
  border-right: 1px solid var(--cb-rule);
}

.cb-live__grid article:last-child {
  border-right: 0;
}

.cb-live__grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
}

.cb-live__grid span {
  color: #777;
}

.cb-chart {
  height: 280px;
  display: flex;
  align-items: end;
  gap: 10px;
  border: 1px solid var(--cb-rule);
  border-top: 0;
  padding: 34px;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 100% 56px;
}

.cb-chart span {
  flex: 1;
  height: var(--h);
  background: #111;
  opacity: 0.85;
  transform-origin: bottom;
  animation: cbBars 900ms ease both;
}

.cb-feed-list {
  display: grid;
  margin-top: 62px;
  border-top: 1px solid var(--cb-rule);
}

.cb-feed-list article {
  display: grid;
  grid-template-columns: 170px 1fr minmax(180px, 0.34fr);
  gap: 20px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--cb-rule);
  padding: 20px 0;
}

.cb-feed-list strong {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.cb-feed-list span {
  color: #777;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.cb-ops-feed > .cb-button {
  margin-top: 34px;
}

.cb-integrations,
.cb-security,
.cb-pricing,
.cb-final {
  padding-block: 118px;
}

.cb-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--cb-rule);
  border-left: 1px solid var(--cb-rule);
}

.cb-logo-grid span {
  min-height: 116px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
  color: #555;
  font-size: 18px;
}

.cb-security {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 90px);
  border-top: 1px solid var(--cb-rule);
  background: var(--cb-paper);
}

.cb-final-statement {
  align-items: center;
}

.cb-statement-card {
  border: 1px solid var(--cb-rule);
  background: var(--cb-white);
  padding: clamp(28px, 5vw, 54px);
  color: var(--cb-ink);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cb-security__grid,
.cb-dev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--cb-rule);
  border-left: 1px solid var(--cb-rule);
}

.cb-security article,
.cb-dev-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
}

.cb-security article p,
.cb-dev-grid article p {
  color: #666;
  font-size: 16px;
  line-height: 1.55;
}

.cb-dev-grid {
  margin-top: 72px;
  border-color: var(--cb-rule-dark);
}

.cb-dev-grid article {
  border-color: var(--cb-rule-dark);
}

.cb-dev-grid article p,
.cb-dev-grid article span {
  color: rgba(255, 255, 255, 0.56);
}

.cb-pricing {
  background: var(--cb-white);
}

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

.cb-price-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: start;
  border: 1px solid var(--cb-rule);
  border-radius: 2px;
  padding: 30px;
  background: var(--cb-white);
}

.cb-price-grid .is-featured {
  background: var(--cb-dark);
  color: var(--cb-white);
  border-color: var(--cb-dark);
}

.cb-price-grid h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.cb-price-grid strong {
  margin-top: 34px;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.cb-price-grid p {
  margin: 28px 0 auto;
  color: #666;
  font-size: 16px;
}

.cb-price-grid .is-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.cb-price-grid .cb-button {
  margin-top: 36px;
}

.cb-compare {
  display: inline-flex;
  margin-top: 28px;
  color: #555;
  font-size: 15px;
}

.cb-final {
  display: grid;
  place-items: center;
  min-height: 560px;
  text-align: center;
  border-top: 1px solid var(--cb-rule);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    var(--cb-white);
  background-size: 96px 96px;
}

.cb-final h2 {
  margin-top: 0;
}

.cb-final p {
  width: min(560px, 100%);
  margin: 28px auto 0;
}

.cb-final .cb-hero__actions {
  justify-content: center;
}

.cb-final__support {
  display: inline-flex;
  align-items: center;
  color: #666;
  font-size: 14px;
}

.cb-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  padding-block: 68px 42px;
  background: var(--cb-dark);
  color: var(--cb-white);
}

.cb-footer .cb-mark-line { stroke: rgba(255,255,255,0.85); }
.cb-footer .cb-mark-dot  { fill:   rgba(255,255,255,0.85); }
.cb-footer .cb-brand-name { color: var(--cb-white); }
.cb-footer .cb-brand-sub  { color: #ff7a7a; }

.cb-footer p {
  width: min(340px, 100%);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.cb-footer nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cb-footer h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 500;
}

.cb-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 14px;
}

.cb-footer > small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

@keyframes cbMarquee {
  to { transform: translateX(-50%); }
}

@keyframes cbDrift {
  to { transform: rotate(360deg); }
}

@keyframes cbBars {
  from { transform: scaleY(0.2); opacity: 0.25; }
}

@media (prefers-reduced-motion: reduce) {
  .cb-marquee__track,
  .cb-chart span,
  .cb-step__progress div,
  .cb-code-line {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  /* Always show pill on mobile — no transparent-at-top transition */
  .cb-header {
    top: 20px !important;
    padding-inline: 0 !important;
    transition: none;
  }

  .cb-nav {
    grid-template-columns: 1fr auto;
    width: min(720px, calc(100vw - 32px));
    max-width: none;
    min-height: 54px !important;
    padding: 0 18px;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(18px) !important;
    transition: none;
  }

  .cb-nav__links,
  .cb-nav__actions {
    display: none;
  }

  .cb-menu {
    display: grid;
  }

  .cb-hero {
    min-height: 650px;
    padding-top: 100px;
  }

  .cb-sphere-canvas {
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    opacity: 0.28;
  }

  .cb-feature,
  .cb-process__grid,
  .cb-market,
  .cb-security,
  .cb-positioning__intro,
  .cb-footer {
    grid-template-columns: 1fr;
  }

  .cb-compare-table {
    overflow-x: auto;
  }

  .cb-compare-table__head,
  .cb-compare-table__row {
    grid-template-columns: 1fr 100px 100px 130px;
    min-width: 460px;
  }

  .cb-hero--gtm {
    min-height: auto;
    display: grid;
    gap: 34px;
    padding-bottom: 56px;
  }

  .cb-hero--gtm h1 {
    font-size: clamp(36px, 8vw, 60px);
  }

  .cb-hero__right {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
    margin-top: 16px;
  }

  .cb-intel-panel ul {
    display: none;
  }

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

  .cb-feed-list article {
    grid-template-columns: 150px 1fr;
  }

  .cb-feed-list article span {
    grid-column: 2;
  }

  .cb-feature {
    min-height: 190px;
    padding: 30px 0;
  }

  .cb-feature-icon {
    justify-self: start;
    margin: 0;
    width: 78px;
    height: 78px;
  }

  .cb-process__grid {
    gap: 40px;
  }

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

  .cb-price-grid,
  .cb-live__grid {
    grid-template-columns: 1fr;
  }

  .cb-live__grid article {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .cb-header {
    top: 14px;
  }

  .cb-nav {
    width: calc(100vw - 24px);
    border-radius: 12px;
  }

  .cb-brand-mark {
    width: 26px;
    height: 26px;
  }

  .cb-hero {
    min-height: 620px;
    padding-inline: 20px;
    padding-bottom: 42px;
  }

  .cb-hero h1 {
    font-size: clamp(66px, 21vw, 92px);
  }

  .cb-hero--gtm h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.0;
  }

  .cb-sphere-canvas {
    width: min(400px, 85vw);
    height: min(400px, 85vw);
    opacity: 0.2;
  }

  .cb-section,
  .cb-integrations,
  .cb-security,
  .cb-pricing,
  .cb-final,
  .cb-developers,
  .cb-process,
  .cb-footer {
    padding-inline: 20px;
  }

  .cb-section,
  .cb-integrations,
  .cb-security,
  .cb-pricing,
  .cb-developers,
  .cb-process {
    padding-block: 82px;
  }

  .cb-feature {
    grid-template-columns: 42px 1fr;
  }

  .cb-feature-icon {
    grid-column: 2;
  }

  .cb-metric-row,
  .cb-security__grid,
  .cb-dev-grid,
  .cb-logo-grid,
  .cb-intel-panel__stats,
  .cb-footer nav {
    grid-template-columns: 1fr;
  }

  .cb-intel-panel__stats span,
  .cb-intel-panel__stats span:nth-child(2n) {
    border-right: 0;
  }

  .cb-intel-panel__stats span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--cb-rule);
  }

  .cb-intel-panel__stats span:last-child {
    border-bottom: 0;
  }

  .cb-map-card__head,
  .cb-map-card li {
    grid-template-columns: 1fr;
  }

  .cb-code-card pre {
    padding: 24px 18px;
  }

  .cb-live__top {
    grid-template-columns: 1fr;
  }

  .cb-feed-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cb-feed-list article span {
    grid-column: auto;
  }

  .cb-statement-card {
    font-size: clamp(34px, 12vw, 48px);
  }

  .cb-chart {
    height: 210px;
    gap: 6px;
    padding: 22px;
  }
}

/* ════════════════════════════════════════════════
   INNER PAGE COMPONENTS
   ════════════════════════════════════════════════ */

/* ── Inner page hero ─────────────────────────── */
.cb-page-hero {
  position: relative;
  padding: 148px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2)) 96px;
  background: var(--cb-white);
  overflow: hidden;
}

.cb-page-hero h1 {
  margin: 20px 0 0;
  max-width: 1000px;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.cb-page-hero__sub {
  max-width: 600px;
  margin: 28px 0 0;
  color: #555;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.cb-page-hero--dark {
  color: var(--cb-white);
  background:
    repeating-linear-gradient(135deg, transparent 0 42px, rgba(255,255,255,0.045) 43px 44px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.09), transparent 30%),
    var(--cb-dark);
}

.cb-page-hero--dark .cb-label {
  color: rgba(255,255,255,0.48);
}

.cb-page-hero--dark h1 {
  color: var(--cb-white);
}

.cb-page-hero--dark .cb-page-hero__sub {
  color: rgba(255,255,255,0.6);
}

/* ── Workflow (numbered, light) ──────────────── */
.cb-workflow {
  border-top: 1px solid var(--cb-rule);
  margin-top: 72px;
}

.cb-workflow-step {
  display: grid;
  grid-template-columns: 80px minmax(0, 540px) 1fr;
  gap: 28px 36px;
  align-items: start;
  border-bottom: 1px solid var(--cb-rule);
  padding: 52px 0;
}

.cb-workflow-step__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 36px;
  font-weight: 300;
  color: #d0d0cc;
  letter-spacing: -0.04em;
  padding-top: 4px;
}

.cb-workflow-step h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.cb-workflow-step p {
  color: #666;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.cb-workflow-step__items {
  display: grid;
  gap: 1px;
  background: var(--cb-rule);
  border: 1px solid var(--cb-rule);
  align-self: start;
}

.cb-workflow-step__items li {
  background: var(--cb-white);
  padding: 14px 20px;
  font-size: 14px;
  color: #555;
  list-style: none;
  position: relative;
  padding-left: 32px;
}

.cb-workflow-step__items li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.1em;
  width: 6px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* ── Services page ───────────────────────────── */
.cb-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  padding: 80px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  border-top: 1px solid var(--cb-rule);
  align-items: start;
}

.cb-service:nth-child(even) {
  background: var(--cb-paper);
}

.cb-service-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: #999;
}

.cb-service h2 {
  margin: 14px 0 20px;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.cb-service > div > p {
  color: #666;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.cb-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.cb-service-tag {
  border: 1px solid var(--cb-rule);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  color: #555;
}

.cb-service-panel {
  border: 1px solid var(--cb-rule);
  background: var(--cb-white);
}

.cb-service-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--cb-rule);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #888;
}

.cb-service-panel__head em {
  font-style: normal;
  color: var(--cb-green);
}

.cb-service-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-service-panel li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--cb-rule);
  font-size: 14px;
  color: #555;
}

.cb-service-panel li:last-child {
  border-bottom: 0;
}

.cb-service-panel li::before {
  content: "";
  width: 6px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.55;
}

/* ── Article grid (insights) ─────────────────── */
.cb-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border: 1px solid var(--cb-rule);
}

.cb-article {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
  text-decoration: none;
  color: var(--cb-ink);
  transition: background 180ms ease;
}

.cb-article:hover {
  background: var(--cb-paper);
}

.cb-article:nth-child(3n) {
  border-right: 0;
}

.cb-article__tag {
  display: inline-flex;
  align-self: start;
  border: 1px solid var(--cb-rule);
  border-radius: 999px;
  padding: 5px 10px;
  color: #666;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.cb-article h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.22;
  flex: 1;
}

.cb-article__arrow {
  margin-top: 32px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #999;
}

/* ── Contact page ────────────────────────────── */
.cb-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 110px);
  padding: 96px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  align-items: start;
}

.cb-routes {
  border-top: 1px solid var(--cb-rule);
  margin-top: 36px;
}

.cb-route {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--cb-rule);
  align-items: start;
}

.cb-route__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: #999;
  padding-top: 3px;
}

.cb-route h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cb-route p {
  color: #666;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.cb-form {
  display: grid;
  gap: 18px;
}

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

.cb-field label {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cb-field input,
.cb-field textarea,
.cb-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cb-rule);
  background: var(--cb-white);
  color: var(--cb-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  outline: none;
  border-radius: 0;
  transition: border-color 180ms ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.cb-field input:focus,
.cb-field textarea:focus {
  border-color: var(--cb-ink);
}

.cb-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: #555;
  padding: 10px 0;
}

.form-status--ok { color: var(--cb-green); }
.form-status--err { color: #e04040; }

/* ── Case studies ────────────────────────────── */
.cb-case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  padding: 80px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  border-top: 1px solid var(--cb-rule);
  align-items: start;
}

.cb-case-study:nth-child(even) {
  background: var(--cb-paper);
}

.cb-case-study h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.cb-case-study p {
  color: #666;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.cb-outcome-list {
  margin-top: 36px;
  border: 1px solid var(--cb-rule);
}

.cb-outcome-list dt {
  padding: 11px 18px;
  background: var(--cb-soft);
  border-bottom: 1px solid var(--cb-rule);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #777;
}

.cb-outcome-list dd {
  padding: 16px 18px;
  margin: 0;
  border-bottom: 1px solid var(--cb-rule);
  font-size: 15px;
  color: var(--cb-ink);
  line-height: 1.55;
}

.cb-outcome-list dd:last-child {
  border-bottom: 0;
}

/* ── Feed library ────────────────────────────── */
.cb-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
}

.cb-filter-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cb-rule);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
  color: #666;
  background: var(--cb-white);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cb-filter-chip:hover,
.cb-filter-chip.active {
  background: var(--cb-ink);
  border-color: var(--cb-ink);
  color: var(--cb-white);
}

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

.cb-feed-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cb-rule);
  padding: 30px;
  background: var(--cb-white);
  transition: border-color 180ms ease;
}

.cb-feed-card:hover {
  border-color: #bbb;
}

.cb-feed-card.is-hidden {
  display: none;
}

.cb-feed-card__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--cb-rule);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--cb-green);
  margin-bottom: 20px;
  width: max-content;
}

.cb-feed-card__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cb-green);
}

.cb-feed-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cb-feed-card p {
  flex: 1;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.cb-feed-card__price {
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 4px;
}

.cb-feed-card__period {
  color: #888;
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
  margin-bottom: 24px;
}

.cb-live-preview {
  border: 1px solid var(--cb-rule-dark);
  background: rgba(255,255,255,0.04);
  margin-top: 36px;
}

.cb-live-preview__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 120px;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--cb-rule-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.cb-live-preview__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 120px;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cb-rule-dark);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.cb-live-preview__row:last-child {
  border-bottom: 0;
}

.cb-live-preview__row em {
  font-style: normal;
  color: var(--cb-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

/* ── Solutions page ──────────────────────────── */
.cb-faq {
  border-top: 1px solid var(--cb-rule);
  margin-top: 36px;
}

.cb-faq-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding: 44px 0;
  border-bottom: 1px solid var(--cb-rule);
  align-items: start;
}

.cb-faq-item dt {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.cb-faq-item dd {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.65;
}

.cb-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border: 1px solid var(--cb-rule);
}

.cb-solution-card {
  padding: 32px 28px;
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
  text-decoration: none;
  color: var(--cb-ink);
  transition: background 180ms ease;
}

.cb-solution-card:nth-child(4n) {
  border-right: 0;
}

.cb-solution-card:hover {
  background: var(--cb-paper);
}

.cb-solution-card__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #aaa;
}

.cb-solution-card h3 {
  margin: 18px 0 10px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cb-solution-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ── Demo / stat strip ───────────────────────── */
.cb-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border: 1px solid var(--cb-rule);
}

.cb-stat-strip span {
  padding: 28px;
  border-right: 1px solid var(--cb-rule);
}

.cb-stat-strip span:last-child {
  border-right: 0;
}

.cb-stat-strip strong {
  display: block;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 6px;
}

.cb-stat-strip em {
  font-style: normal;
  color: #777;
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
}

.cb-map-diagram {
  border: 1px solid var(--cb-rule);
  background: var(--cb-paper);
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.cb-map-diagram__nodes {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ── About page ──────────────────────────────── */
.cb-beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--cb-rule);
  border-left: 1px solid var(--cb-rule);
}

.cb-belief {
  padding: 40px 36px;
  border-right: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
}

.cb-belief__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 28px;
}

.cb-belief h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.cb-belief p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive: inner pages ─────────────────── */
@media (max-width: 980px) {
  .cb-page-hero {
    padding: 130px clamp(20px, 4vw, 36px) 72px;
  }

  .cb-workflow-step {
    grid-template-columns: 60px 1fr;
  }

  .cb-workflow-step__items {
    grid-column: 2;
  }

  .cb-service {
    grid-template-columns: 1fr;
  }

  .cb-article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-article:nth-child(3n) {
    border-right: 1px solid var(--cb-rule);
  }

  .cb-article:nth-child(2n) {
    border-right: 0;
  }

  .cb-contact {
    grid-template-columns: 1fr;
  }

  .cb-case-study {
    grid-template-columns: 1fr;
  }

  .cb-feed-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cb-solution-card:nth-child(4n) {
    border-right: 1px solid var(--cb-rule);
  }

  .cb-solution-card:nth-child(2n) {
    border-right: 0;
  }

  .cb-faq-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .cb-stat-strip span:nth-child(2n) {
    border-right: 0;
  }

  .cb-beliefs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .cb-page-hero {
    padding: 110px 20px 60px;
  }

  .cb-article-grid {
    grid-template-columns: 1fr;
  }

  .cb-article:nth-child(n) {
    border-right: 0;
  }

  .cb-feed-grid {
    grid-template-columns: 1fr;
  }

  .cb-solutions-grid {
    grid-template-columns: 1fr;
  }

  .cb-solution-card:nth-child(n) {
    border-right: 0;
  }

  .cb-stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cb-workflow-step {
    grid-template-columns: 44px 1fr;
  }

  .cb-live-preview__head,
  .cb-live-preview__row {
    grid-template-columns: 1fr 1fr;
  }

  .cb-live-preview__head span:nth-child(3),
  .cb-live-preview__head span:nth-child(4),
  .cb-live-preview__row span:nth-child(3),
  .cb-live-preview__row span:nth-child(4) {
    display: none;
  }
}

/* ════════════════════════════════════════════════
   AUTHORITATIVE SECTION REDESIGN
   Hallmark · macrostructure: Stat-Led · redesign: Authoritative · design-system: design.md · designed-as-app
   ════════════════════════════════════════════════ */

/* ── Section background tint ─────────────────── */
.cb-section--paper {
  background: var(--cb-paper) !important;
}

/* ── Dark Positioning Statement ─────────────── */
.cb-positioning--dark {
  padding: 64px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  background: var(--cb-white);
  color: var(--cb-ink);
  border-top: 1px solid var(--cb-rule);
  border-bottom: 1px solid var(--cb-rule);
}

.cb-positioning--dark .cb-section-label--dark {
  color: #777;
}

.cb-positioning--dark .cb-section-label--dark span {
  background: #777;
}

.cb-positioning--dark .cb-positioning__intro {
  margin-top: 20px;
  align-items: center;
}

.cb-positioning--dark .cb-positioning__intro h2 {
  color: var(--cb-ink);
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cb-positioning--dark .cb-positioning__intro p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Standalone compare section ──────────────── */
.cb-compare {
  padding: 72px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  background: var(--cb-white);
  border-top: 1px solid var(--cb-rule);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cb-compare__heading {
  margin: 8px 0 48px;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cb-ink);
}

.cb-table-wrap {
  position: relative;
  padding: 3px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.cb-table-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 42%,
    #e0231a 48%,
    #ff4444 50%,
    #e0231a 52%,
    transparent 58%,
    transparent 100%
  );
  animation: cb-spin 4s linear infinite;
  z-index: 0;
}

@keyframes cb-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.cb-compare .cb-compare-table {
  position: relative;
  z-index: 1;
  margin-top: 0;
  width: 100%;
  border-radius: 16px;
  border: none;
  background: white;
}

/* ── Ground Truth — full dark commanding moment ── */
.cb-ground-truth {
  padding: 130px max(clamp(28px, 6vw, 72px), calc((100vw - 1400px) / 2));
  background:
    repeating-linear-gradient(135deg, transparent 0 42px, rgba(255,255,255,0.04) 43px 44px),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,0.07), transparent 42%),
    var(--cb-dark);
  color: var(--cb-white);
  border-top: none;
}

.cb-ground-truth__statement {
  margin: 36px 0 0;
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--cb-white);
  max-width: 16ch;
}

.cb-ground-truth__statement em {
  color: #e0231a;
  font-style: normal;
}

.cb-ground-truth__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 100px);
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 56px;
}

.cb-ground-truth__body p {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  margin: 0;
}

.cb-ground-truth__card {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: clamp(22px, 2.6vw, 32px) !important;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.22 !important;
}

/* ── Responsive additions ────────────────────── */
@media (max-width: 980px) {
  .cb-positioning--dark {
    padding-block: 96px;
  }

  .cb-ground-truth__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .cb-positioning--dark,
  .cb-compare,
  .cb-ground-truth {
    padding-inline: 20px;
  }

  .cb-positioning--dark {
    padding-block: 82px;
  }

  .cb-compare {
    padding-block: 68px;
  }

  .cb-ground-truth {
    padding-block: 82px;
  }

  .cb-ground-truth__statement {
    font-size: clamp(38px, 12vw, 56px);
  }
}
