:root {
  --cb-cherry: #9d2337;
  --cb-cherry-deep: #581425;
  --cb-cherry-hot: #d93b52;
  --cb-leaf: #467850;
  --cb-leaf-soft: #dcefe1;
  --cb-gold: #d8a33f;
  --cb-ink: #171817;
  --cb-muted: #5d625d;
  --cb-line: #e7e2dc;
  --cb-mist: #f6f7f2;
  --cb-white: #ffffff;
  --cb-shadow: 0 24px 80px rgba(23, 24, 23, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cb-ink);
  background: var(--cb-white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  max-width: 100%;
}

.cb-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--cb-white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.cb-header.is-scrolled,
.cb-header.is-open {
  color: var(--cb-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(23, 24, 23, 0.08);
}

.cb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.cb-brand img {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
}

.cb-header.is-scrolled .cb-brand img,
.cb-header.is-open .cb-brand img,
.cb-brand-footer img {
  filter: none;
}

.cb-brand span {
  min-height: 28px;
  padding-left: 12px;
  border-left: 1px solid currentColor;
  font-size: 0.95rem;
}

.cb-nav,
.cb-header-actions {
  display: flex;
  align-items: center;
}

.cb-nav {
  justify-content: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 800;
}

.cb-header-actions {
  gap: 16px;
  font-weight: 800;
}

.cb-link,
.cb-nav a {
  opacity: 0.86;
}

.cb-link:hover,
.cb-nav a:hover {
  opacity: 1;
}

.cb-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cb-mini-icon {
  display: inline-grid;
  min-width: 1.9em;
  min-height: 1.9em;
  place-items: center;
  border-radius: 999px;
  color: var(--cb-white);
  background: var(--cb-cherry-hot);
  font-size: 0.72em;
  font-weight: 900;
  line-height: 1;
}

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

.cb-button-primary {
  color: var(--cb-white);
  background: var(--cb-cherry-hot);
}

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

.cb-header:not(.is-scrolled):not(.is-open) .cb-button-dark {
  color: var(--cb-cherry-deep);
  background: var(--cb-white);
}

.cb-button-light {
  color: var(--cb-white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.cb-button-outline {
  color: var(--cb-cherry);
  border-color: rgba(157, 35, 55, 0.38);
  background: transparent;
}

.cb-button-white {
  color: var(--cb-ink);
  background: var(--cb-white);
}

.cb-menu-button {
  display: none;
}

.cb-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 118px clamp(22px, 6vw, 82px) 42px;
  color: var(--cb-white);
  background:
    linear-gradient(120deg, rgba(51, 10, 22, 0.96), rgba(106, 21, 45, 0.84) 45%, rgba(14, 54, 38, 0.76)),
    radial-gradient(circle at 85% 14%, rgba(216, 163, 63, 0.35), transparent 30%),
    var(--cb-cherry-deep);
}

.cb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent);
}

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

.cb-eyebrow {
  margin: 0 0 14px;
  color: var(--cb-cherry);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(157, 35, 55, 0.16);
  border-radius: 999px;
  color: var(--cb-cherry-deep);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(23, 24, 23, 0.07);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.cb-hero-badge i {
  color: var(--cb-leaf);
  font-size: 0.82rem;
}

.cb-hero h1,
.cb-section h2,
.cb-contact h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.cb-hero h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  font-weight: 900;
}

.cb-hero p:not(.cb-eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.55;
}

.cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cb-hero-visual {
  position: absolute;
  inset: 0;
}

.cb-product-window {
  position: absolute;
  top: 120px;
  right: clamp(-260px, -17vw, -150px);
  width: min(590px, 48vw);
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--cb-shadow);
  transform: rotate(-2deg);
  opacity: 0.78;
}

.cb-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.cb-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cb-gold);
}

.cb-window-bar span:nth-child(2) {
  background: var(--cb-leaf-soft);
}

.cb-window-bar span:nth-child(3) {
  background: var(--cb-cherry-hot);
}

.cb-window-bar strong {
  margin-left: 10px;
  font-size: 0.78rem;
}

.cb-window-body {
  position: relative;
  min-height: 388px;
  padding: 34px;
}

.cb-score-orbit {
  display: grid;
  width: 208px;
  height: 208px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cb-leaf-soft), var(--cb-gold), var(--cb-cherry-hot), var(--cb-leaf-soft));
}

.cb-score-orbit div {
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border-radius: 50%;
  background: rgba(73, 16, 32, 0.92);
  text-align: center;
}

.cb-score-orbit span {
  display: block;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
}

.cb-score-orbit small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.cb-hero-metrics {
  position: absolute;
  top: 42px;
  right: 26px;
  display: grid;
  gap: 12px;
  width: 220px;
}

.cb-hero-metrics div,
.cb-bars {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.cb-hero-metrics div {
  padding: 15px;
}

.cb-hero-metrics span,
.cb-hero-metrics strong {
  display: block;
}

.cb-hero-metrics span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
}

.cb-hero-metrics strong {
  margin-top: 6px;
  font-size: 1.48rem;
}

.cb-bars {
  position: absolute;
  left: 34px;
  right: 26px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 118px;
  padding: 18px;
}

.cb-bars span {
  flex: 1;
  min-height: 22px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cb-gold), var(--cb-cherry-hot));
}

.cb-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cb-line);
}

.cb-proof div {
  min-height: 124px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: var(--cb-mist);
}

.cb-proof strong,
.cb-proof span {
  display: block;
}

.cb-proof strong {
  color: var(--cb-cherry);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.cb-proof span {
  max-width: 240px;
  margin-top: 10px;
  color: var(--cb-muted);
  line-height: 1.35;
}

.cb-section {
  padding: clamp(70px, 9vw, 124px) clamp(22px, 6vw, 82px);
}

.cb-section-heading {
  width: min(780px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.cb-section-heading.cb-left {
  margin-left: 0;
  text-align: left;
}

.cb-section h2,
.cb-contact h2 {
  font-size: clamp(1.95rem, 3.35vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
}

.cb-section-heading p:not(.cb-eyebrow),
.cb-platform-copy p:not(.cb-eyebrow),
.cb-insight-copy p:not(.cb-eyebrow),
.cb-contact-copy p:not(.cb-eyebrow) {
  color: var(--cb-muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.cb-score-grid,
.cb-solution-grid,
.cb-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cb-score-card,
.cb-solution-card,
.cb-plan-card,
.cb-feature-list article,
.cb-insight-rail article,
.cb-faq-list details,
.cb-contact-form {
  border: 1px solid var(--cb-line);
  border-radius: 8px;
  background: var(--cb-white);
}

.cb-score-card {
  min-height: 326px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cb-score-card:hover,
.cb-score-card.is-active {
  border-color: rgba(157, 35, 55, 0.3);
  box-shadow: var(--cb-shadow);
  transform: translateY(-4px);
}

.cb-score-number {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  color: var(--cb-white);
  background: var(--cb-cherry);
  font-size: 1.8rem;
  font-weight: 900;
}

.cb-score-green {
  background: var(--cb-leaf);
}

.cb-score-gold {
  color: var(--cb-ink);
  background: var(--cb-gold);
}

.cb-score-ink {
  background: var(--cb-ink);
}

.cb-score-card h3,
.cb-solution-card h3,
.cb-feature-list h3,
.cb-plan-card h3 {
  margin: 22px 0 10px;
  color: var(--cb-ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.cb-score-card p,
.cb-solution-card p,
.cb-feature-list p {
  color: var(--cb-muted);
  line-height: 1.55;
}

.cb-score-card button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: var(--cb-cherry);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cb-platform,
.cb-plans,
.cb-faq {
  background: var(--cb-mist);
}

.cb-platform-copy {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.cb-platform-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.cb-dashboard-panel {
  min-height: 500px;
  padding: 28px;
  border: 1px solid rgba(88, 20, 37, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(157, 35, 55, 0.12), rgba(70, 120, 80, 0.16));
  box-shadow: var(--cb-shadow);
}

.cb-dashboard-top,
.cb-balance,
.cb-activity-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cb-dashboard-top {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cb-line);
  color: var(--cb-muted);
}

.cb-balance {
  margin: 42px 0 18px;
}

.cb-balance span,
.cb-activity-list span,
.cb-dashboard-top span {
  color: var(--cb-muted);
  font-weight: 800;
}

.cb-balance strong {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.cb-meter {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ddd9;
}

.cb-meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--cb-leaf), var(--cb-gold), var(--cb-cherry));
}

.cb-activity-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

.cb-activity-list div {
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--cb-white);
}

.cb-feature-list {
  display: grid;
  gap: 16px;
}

.cb-feature-list article {
  min-height: 150px;
  padding: 24px;
}

.cb-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--cb-white);
  background: var(--cb-cherry);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
}

.cb-icon-green {
  background: var(--cb-leaf);
}

.cb-icon-gold {
  color: var(--cb-ink);
  background: var(--cb-gold);
}

.cb-solution-card {
  min-height: 280px;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.cb-solution-card:hover {
  border-color: var(--cb-cherry);
  background: #fff9f7;
  transform: translateY(-3px);
}

.cb-solution-card span {
  color: var(--cb-cherry);
  font-weight: 900;
}

.cb-insights {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  color: var(--cb-white);
  background: var(--cb-ink);
}

.cb-insight-copy p:not(.cb-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.cb-insight-copy .cb-button {
  margin-top: 16px;
}

.cb-insight-rail {
  display: grid;
  gap: 14px;
}

.cb-insight-rail article {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.cb-insight-rail span,
.cb-insight-rail strong {
  display: block;
}

.cb-insight-rail span {
  color: var(--cb-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-insight-rail strong {
  margin-top: 10px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.15;
}

.cb-plan-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  width: min(1560px, 100%);
  margin: 0 auto;
  gap: 28px;
}

.cb-plan-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 0;
  border-radius: 26px;
  background: #f2f4f4;
  box-shadow: none;
}

.cb-plans {
  position: relative;
  overflow: hidden;
  color: var(--cb-white);
  background:
    radial-gradient(circle at 92% 0%, rgba(157, 35, 55, 0.34), transparent 34%),
    linear-gradient(180deg, #000, #050505);
}

.cb-plans .cb-section-heading {
  margin-top: 52px;
}

.cb-plans .cb-section-heading h2 {
  color: var(--cb-white);
}

.cb-plans .cb-section-heading p:not(.cb-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.cb-plan-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 6px;
  overflow-x: auto;
  padding: 6px;
  border: 2px solid rgba(217, 59, 82, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 40px rgba(217, 59, 82, 0.16);
}

.cb-plan-tabs button {
  display: inline-flex;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 13px clamp(18px, 3vw, 32px);
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cb-plan-tabs button:hover {
  color: var(--cb-white);
  transform: translateY(-1px);
}

.cb-plan-tabs .is-active {
  color: var(--cb-white);
  background: var(--cb-cherry-hot);
}

.cb-plan-tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 54px);
  width: min(1120px, 100%);
  margin: clamp(28px, 4vw, 42px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217, 59, 82, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 59, 82, 0.22), transparent 54%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.cb-plan-tab-panel span {
  color: #ff8fa0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-plan-tab-panel h3 {
  margin: 10px 0 0;
  color: var(--cb-white);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.cb-plan-tab-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.cb-plan-tab-panel ul {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cb-plan-tab-panel li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

.cb-plan-tab-panel li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cb-cherry-hot);
  transform: translateY(-50%);
}

.cb-plan-header {
  display: grid;
  min-height: 132px;
  align-content: start;
}

.cb-plan-header h3 {
  margin: 26px 0 0;
  color: var(--cb-ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.cb-plan-audience {
  color: #5c615c;
  font-size: 1rem;
  font-weight: 800;
}

.cb-plan-ai {
  display: block;
  margin-top: 8px;
  width: fit-content;
  background: linear-gradient(90deg, var(--cb-leaf), #4d9dea, #7c52ff, var(--cb-cherry-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.cb-plan-summary {
  margin: 28px 0 0;
  color: #242724;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.cb-plan-price-line {
  margin: 28px 0 34px;
  color: #242724;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.55;
}

.cb-plan-price-line strong {
  font-weight: 900;
}

.cb-plan-card .cb-button {
  margin-top: auto;
  width: fit-content;
  min-height: 54px;
  padding-inline: 22px;
  border-radius: 999px;
  color: var(--cb-white);
  background: #000;
  font-size: 0.96rem;
  font-weight: 800;
}

.cb-plan-card.is-popular {
  background: #fbfcfc;
}

.cb-plan-grow {
  border-color: rgba(217, 59, 82, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 239, 242, 0.98));
  box-shadow: 0 28px 80px rgba(217, 59, 82, 0.16);
}

.cb-plan-feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.cb-plan-feature-list li {
  position: relative;
  padding-left: 28px;
  color: #343a35;
  font-weight: 800;
  line-height: 1.35;
}

.cb-plan-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cb-cherry-hot);
  box-shadow: 0 0 0 5px rgba(217, 59, 82, 0.12);
}

.cb-faq-list {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.cb-faq-list details {
  padding: 22px 24px;
}

.cb-faq-list summary {
  cursor: pointer;
  color: var(--cb-ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.cb-faq-list p {
  margin: 14px 0 0;
  color: var(--cb-muted);
  line-height: 1.6;
}

.cb-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  padding: clamp(70px, 9vw, 124px) clamp(22px, 6vw, 82px);
}

.cb-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cb-store-links img {
  width: 178px;
}

.cb-contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--cb-shadow);
}

.cb-contact-form label {
  color: var(--cb-ink);
  font-weight: 900;
}

.cb-contact-form input,
.cb-contact-form textarea {
  width: 100%;
  border: 1px solid var(--cb-line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--cb-ink);
  background: var(--cb-white);
  font: inherit;
}

.cb-contact-form input:focus,
.cb-contact-form textarea:focus {
  outline: 3px solid rgba(157, 35, 55, 0.16);
  border-color: var(--cb-cherry);
}

.cb-form-success {
  margin: 0 0 8px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #20542a;
  background: var(--cb-leaf-soft);
  font-weight: 800;
}

.cb-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  padding: 34px clamp(22px, 6vw, 82px);
  border-top: 1px solid var(--cb-line);
  color: var(--cb-muted);
}

.cb-brand-footer img {
  width: 118px;
}

.cb-footer p {
  max-width: 420px;
  margin: 16px 0 0;
  line-height: 1.55;
}

.cb-footer nav,
.cb-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

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

.cb-chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 80;
  font-family: inherit;
}

.cb-chat-launcher {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 9px 20px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--cb-white);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--cb-cherry), #70323a 48%, var(--cb-leaf));
  box-shadow:
    0 18px 54px rgba(23, 24, 23, 0.26),
    0 0 0 6px rgba(157, 35, 55, 0.08);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.cb-chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 64px rgba(23, 24, 23, 0.28);
}

.cb-chat-widget.is-open .cb-chat-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.cb-chat-launcher-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--cb-cherry-deep);
  background: var(--cb-white);
  box-shadow: inset 0 0 0 6px rgba(217, 59, 82, 0.08);
  font-size: 0.95rem;
}

.cb-chat-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.cb-chat-launcher-copy small,
.cb-chat-launcher-copy strong {
  display: block;
  line-height: 1;
}

.cb-chat-launcher-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-chat-launcher-copy strong {
  font-size: 1.05rem;
}

.cb-chat-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(420px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  grid-template-rows: auto auto auto minmax(180px, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 247, 0.98));
  box-shadow:
    0 30px 110px rgba(23, 24, 23, 0.32),
    0 0 0 1px rgba(157, 35, 55, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cb-chat-widget.is-open .cb-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cb-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--cb-white);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 59, 82, 0.42), transparent 36%),
    linear-gradient(135deg, #170006, #5b1426 56%, #171817);
}

.cb-chat-header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cb-chat-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--cb-white);
  background:
    linear-gradient(135deg, var(--cb-cherry-hot), var(--cb-cherry));
  box-shadow:
    0 0 0 5px rgba(217, 59, 82, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

.cb-chat-header strong,
.cb-chat-header small {
  display: block;
}

.cb-chat-header strong {
  font-size: 1rem;
  line-height: 1.1;
}

.cb-chat-header small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.cb-chat-header button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cb-chat-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--cb-line);
  background:
    linear-gradient(90deg, rgba(217, 59, 82, 0.08), rgba(70, 120, 80, 0.08));
}

.cb-chat-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #05c873;
  box-shadow: 0 0 0 6px rgba(5, 200, 115, 0.14);
}

.cb-chat-status p {
  margin: 0;
  color: var(--cb-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.cb-chat-brief {
  display: grid;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(231, 226, 220, 0.84);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 59, 82, 0.12), transparent 34%),
    #fffdfb;
}

.cb-chat-brief > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cb-chat-brief span {
  color: var(--cb-cherry);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-chat-brief strong {
  color: var(--cb-ink);
  font-size: 1rem;
  font-weight: 900;
}

.cb-chat-brief ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cb-chat-brief li {
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(157, 35, 55, 0.12);
  border-radius: 8px;
  color: #4d554f;
  background: rgba(255, 248, 246, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.cb-chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(217, 59, 82, 0.14), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(70, 120, 80, 0.12), transparent 30%),
    #f7f4ee;
}

.cb-message {
  display: flex;
}

.cb-message p {
  max-width: 82%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.cb-message-ai {
  justify-content: flex-start;
}

.cb-message-ai p {
  color: var(--cb-ink);
  background: var(--cb-white);
  box-shadow:
    0 8px 28px rgba(23, 24, 23, 0.07),
    inset 4px 0 0 rgba(217, 59, 82, 0.46);
}

.cb-message-user {
  justify-content: flex-end;
}

.cb-message-user p {
  color: var(--cb-white);
  background: linear-gradient(135deg, var(--cb-cherry), var(--cb-cherry-hot));
}

.cb-message-typing p {
  color: var(--cb-muted);
  background: var(--cb-white);
}

.cb-chat-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--cb-line);
  background: var(--cb-white);
}

.cb-chat-suggestions button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(157, 35, 55, 0.18);
  border-radius: 999px;
  color: var(--cb-cherry-deep);
  background: #fff8f6;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cb-chat-suggestions button:hover {
  border-color: rgba(217, 59, 82, 0.44);
  color: var(--cb-white);
  background: var(--cb-cherry);
}

.cb-chat-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--cb-line);
  background: var(--cb-white);
}

.cb-chat-compose input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--cb-line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--cb-ink);
  background: #fbfaf7;
  font: inherit;
}

.cb-chat-compose input:focus {
  outline: 3px solid rgba(217, 59, 82, 0.14);
  border-color: var(--cb-cherry-hot);
}

.cb-chat-compose button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--cb-white);
  background: linear-gradient(135deg, var(--cb-cherry), var(--cb-cherry-hot));
  cursor: pointer;
}

.cb-hero {
  min-height: 94svh;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(50, 8, 22, 0.98), rgba(114, 24, 48, 0.9) 44%, rgba(14, 61, 39, 0.82)),
    linear-gradient(135deg, rgba(216, 163, 63, 0.22), transparent 34%, rgba(255, 255, 255, 0.08) 63%, transparent),
    var(--cb-cherry-deep);
}

.cb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
}

.cb-hero-light {
  position: absolute;
  width: 44vw;
  height: 120vh;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.24;
  transform: rotate(18deg);
}

.cb-hero-light-one {
  top: -28vh;
  right: 7vw;
}

.cb-hero-light-two {
  top: -42vh;
  left: 8vw;
}

.cb-hero-content {
  width: min(690px, 100%);
  animation: cb-rise-in 760ms ease both;
}

.cb-product-window {
  top: 102px;
  right: clamp(18px, 5vw, 86px);
  width: min(660px, 47vw);
  min-height: 500px;
  opacity: 0.96;
  transform: rotate(-1.4deg);
  animation: cb-window-enter 720ms ease both;
}

.cb-product-window::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.36), rgba(216,163,63,0.18), rgba(70,120,80,0.28));
}

.cb-window-body {
  min-height: 448px;
}

.cb-ai-query {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 285px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
  animation: cb-slide-in 700ms ease 420ms both;
}

.cb-ai-query i {
  color: var(--cb-gold);
}

.cb-score-orbit {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.cb-score-orbit::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: conic-gradient(var(--cb-leaf-soft), var(--cb-gold), var(--cb-cherry-hot), var(--cb-leaf-soft));
}

.cb-score-orbit div {
  position: relative;
  z-index: 1;
}

.cb-hero-metrics div {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.cb-bars span {
  transform-origin: bottom;
  animation: cb-bar-grow 780ms cubic-bezier(.2,.8,.2,1) both;
}

.cb-bars span:nth-child(2) { animation-delay: 80ms; }
.cb-bars span:nth-child(3) { animation-delay: 160ms; }
.cb-bars span:nth-child(4) { animation-delay: 240ms; }
.cb-bars span:nth-child(5) { animation-delay: 320ms; }
.cb-bars span:nth-child(6) { animation-delay: 400ms; }

.cb-floating-card {
  position: absolute;
  min-width: 184px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--cb-white);
  background: rgba(22, 24, 22, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.cb-floating-card span,
.cb-floating-card strong {
  display: block;
}

.cb-floating-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-floating-card strong {
  margin-top: 5px;
  font-size: 0.98rem;
}

.cb-floating-card-one {
  right: -22px;
  bottom: 150px;
}

.cb-floating-card-two {
  left: -34px;
  bottom: 42px;
}

.cb-floating-card-three {
  right: 70px;
  bottom: 34px;
}

.cb-button {
  box-shadow: 0 0 0 rgba(23, 24, 23, 0);
}

.cb-button:hover {
  box-shadow: 0 14px 34px rgba(23, 24, 23, 0.12);
}

.cb-proof strong {
  font-variant-numeric: tabular-nums;
}

.cb-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@supports (content-visibility: auto) {
  .cb-product-finder,
  .cb-proof,
  .cb-section,
  .cb-contact,
  .cb-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}

.cb-score-card,
.cb-solution-card,
.cb-plan-card,
.cb-feature-list article,
.cb-insight-rail article,
.cb-faq-list details {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cb-score-card:hover,
.cb-solution-card:hover,
.cb-plan-card:hover,
.cb-feature-list article:hover,
.cb-insight-rail article:hover {
  transform: translateY(-6px);
}

.cb-ai-agents {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  color: var(--cb-white);
  background:
    linear-gradient(135deg, rgba(23,24,23,0.98), rgba(88,20,37,0.94) 46%, rgba(37,75,48,0.95)),
    var(--cb-ink);
}

.cb-ai-agents::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.5;
}

.cb-agent-copy,
.cb-agent-stage {
  position: relative;
  z-index: 1;
}

.cb-agent-copy p:not(.cb-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.65;
}

.cb-agent-copy h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.35vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
}

.cb-agent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.cb-agent-cta {
  margin-top: 18px;
}

.cb-agent-tabs button {
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cb-agent-tabs button:hover,
.cb-agent-tabs button.is-active {
  color: var(--cb-cherry-deep);
  background: var(--cb-white);
  transform: translateY(-2px);
}

.cb-agent-stage {
  min-height: 560px;
  perspective: 1200px;
}

.cb-agent-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(44px) rotateY(-12deg) scale(0.94);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2,.8,.2,1);
}

.cb-agent-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotateY(0) scale(1);
}

.cb-agent-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cb-agent-topline span,
.cb-agent-topline strong {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-agent-topline span {
  color: var(--cb-gold);
}

.cb-agent-topline strong {
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--cb-ink);
  background: var(--cb-leaf-soft);
}

.cb-agent-card h3 {
  max-width: 620px;
  margin: 32px 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
}

.cb-agent-chat {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.cb-agent-chat p,
.cb-agent-chat div,
.cb-agent-chat button {
  border-radius: 8px;
}

.cb-agent-chat p {
  margin: 0;
  padding: 16px;
  color: var(--cb-ink);
  background: var(--cb-white);
  font-weight: 800;
}

.cb-agent-chat div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.1);
  animation: cb-slide-in 520ms ease both;
}

.cb-agent-chat div:nth-of-type(2) {
  animation-delay: 160ms;
}

.cb-agent-chat span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.cb-agent-chat strong {
  color: var(--cb-white);
}

.cb-agent-chat button {
  min-height: 48px;
  border: 0;
  color: var(--cb-cherry-deep);
  background: var(--cb-gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cb-promo {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  color: var(--cb-white);
  background: var(--cb-cherry-deep);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.cb-promo a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cb-header {
  position: sticky;
  color: var(--cb-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(23, 24, 23, 0.08);
}

.cb-brand img {
  filter: none;
}

.cb-header:not(.is-scrolled):not(.is-open) .cb-button-dark {
  color: var(--cb-white);
  background: var(--cb-ink);
}

.cb-hero {
  min-height: 78svh;
  align-items: center;
  padding-top: clamp(64px, 7vw, 96px);
  color: var(--cb-ink);
  background:
    linear-gradient(110deg, rgba(246, 247, 242, 0.98), rgba(246, 247, 242, 0.82) 48%, rgba(220, 239, 225, 0.82)),
    radial-gradient(circle at 84% 18%, rgba(216, 163, 63, 0.28), transparent 30%),
    var(--cb-mist);
}

.cb-hero::after {
  background: linear-gradient(0deg, rgba(246, 247, 242, 0.96), transparent);
}

.cb-hero::before {
  background-image:
    linear-gradient(rgba(88, 20, 37, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 20, 37, 0.06) 1px, transparent 1px);
}

.cb-hero-content {
  width: min(650px, 100%);
}

.cb-hero h1 {
  color: var(--cb-ink);
}

.cb-hero p:not(.cb-eyebrow) {
  color: #4d554f;
}

.cb-button-light {
  color: var(--cb-ink);
  border-color: rgba(23, 24, 23, 0.18);
  background: var(--cb-white);
}

.cb-button-ghost-green {
  color: var(--cb-white);
  border-color: var(--cb-cherry-hot);
  background: rgba(217, 59, 82, 0.12);
}

.cb-hero-light {
  background: linear-gradient(180deg, transparent, rgba(157, 35, 55, 0.13), transparent);
}

.cb-product-window {
  color: var(--cb-white);
  background:
    linear-gradient(180deg, rgba(88, 20, 37, 0.88), rgba(23, 24, 23, 0.78)),
    rgba(88, 20, 37, 0.82);
}

.cb-product-finder {
  padding: clamp(48px, 6vw, 82px) clamp(22px, 6vw, 82px);
  background: var(--cb-white);
}

.cb-product-finder-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.cb-product-finder-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--cb-ink);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.06;
}

.cb-product-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--cb-line);
  border-radius: 8px;
  background: var(--cb-line);
}

.cb-product-stage-grid article {
  min-height: 310px;
  padding: 26px;
  background: var(--cb-mist);
  transition: background 220ms ease, transform 220ms ease;
}

.cb-product-stage-grid article:hover {
  z-index: 1;
  background: var(--cb-white);
  transform: translateY(-4px);
  box-shadow: var(--cb-shadow);
}

.cb-product-stage-grid span {
  color: var(--cb-leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cb-product-stage-grid h3 {
  margin: 18px 0 12px;
  color: var(--cb-ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.12;
}

.cb-product-stage-grid em {
  display: block;
  color: var(--cb-cherry);
  font-style: normal;
}

.cb-product-stage-grid p {
  color: var(--cb-muted);
  line-height: 1.55;
}

.cb-product-stage-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cb-cherry);
  font-weight: 900;
}

.cb-ask-highlight {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 8vw, 112px) clamp(22px, 6vw, 82px);
  color: var(--cb-white);
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 59, 82, 0.82), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(157, 35, 55, 0.54), transparent 34%),
    linear-gradient(115deg, #070103, #260711 50%, #5b1426);
}

.cb-ask-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.42), #000);
}

.cb-ask-highlight::after {
  content: "";
  position: absolute;
  inset: -18% -34%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.18), transparent 48%);
  transform: translateX(-42%) rotate(3deg);
  animation: cb-cinema-sweep 7s ease-in-out infinite;
}

.cb-ask-glow {
  position: absolute;
  inset: -20% -8% auto auto;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 59, 82, 0.38), transparent 68%);
}

.cb-ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 18px);
  justify-content: center;
  margin-bottom: clamp(34px, 5vw, 62px);
  perspective: 900px;
}

.cb-ask-chips span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px clamp(18px, 3vw, 36px);
  border-radius: 999px;
  color: var(--cb-cherry-deep);
  background: #ffe3e8;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  animation: cb-chip-cinema 620ms ease both;
}

.cb-ask-chips span:nth-child(2) {
  background: #d93b52;
  color: var(--cb-white);
  animation-delay: 80ms;
}

.cb-ask-chips span:nth-child(3) {
  background: #b62b43;
  color: var(--cb-white);
  animation-delay: 140ms;
}

.cb-ask-chips span:nth-child(4) {
  background: #ffd1d9;
  animation-delay: 200ms;
}

.cb-ask-chips span:nth-child(5) {
  background: #f2a9b5;
  animation-delay: 260ms;
}

.cb-ask-pill {
  display: flex;
  width: min(920px, 100%);
  min-height: clamp(112px, 15vw, 170px);
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  margin: 0 auto;
  padding: clamp(20px, 5vw, 42px);
  border: 4px solid var(--cb-cherry-hot);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow:
    0 0 0 1px rgba(217, 59, 82, 0.2),
    0 22px 62px rgba(0, 0, 0, 0.34),
    0 0 46px rgba(217, 59, 82, 0.2);
}

.cb-ask-symbol {
  display: grid;
  width: clamp(58px, 8vw, 86px);
  height: clamp(58px, 8vw, 86px);
  place-items: center;
  border-radius: 50%;
  color: #ffd1d9;
  background: linear-gradient(135deg, rgba(217, 59, 82, 0.72), rgba(157, 35, 55, 0.22));
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
}

.cb-ask-pill strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 800;
  line-height: 0.95;
}

.cb-ask-pill small {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
  font-weight: 800;
  line-height: 1.2;
}

.cb-ask-control {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cb-ask-control span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  border: 3px solid var(--cb-cherry-hot);
  border-radius: 999px;
  color: var(--cb-white);
  background: rgba(0, 0, 0, 0.64);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.cb-ask-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

@keyframes cb-ask-glow {
  0%, 100% {
    opacity: 0.7;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-7%, 5%) scale(1.08);
  }
}

@keyframes cb-cinema-grid {
  to {
    background-position: 58px 58px;
  }
}

@keyframes cb-cinema-sweep {
  0%, 100% {
    opacity: 0;
    transform: translateX(-42%) rotate(3deg);
  }
  38%, 58% {
    opacity: 0.7;
  }
  72% {
    opacity: 0;
    transform: translateX(42%) rotate(3deg);
  }
}

@keyframes cb-chip-cinema {
  0% {
    opacity: 0;
    transform: translateY(24px) rotateX(14deg) scale(0.94);
  }
  18%, 100% {
    opacity: 1;
  }
  50% {
    transform: translateY(-8px) rotateX(0) scale(1.02);
  }
  100% {
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes cb-pill-cinema {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 1px rgba(217, 59, 82, 0.2),
      0 24px 80px rgba(0, 0, 0, 0.38),
      0 0 70px rgba(217, 59, 82, 0.24);
  }
  50% {
    transform: translateY(-10px) scale(1.012);
    box-shadow:
      0 0 0 1px rgba(217, 59, 82, 0.32),
      0 34px 100px rgba(0, 0, 0, 0.44),
      0 0 96px rgba(217, 59, 82, 0.34);
  }
}

@keyframes cb-symbol-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08) rotate(-4deg);
  }
}

@keyframes cb-control-cinema {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes cb-rise-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cb-window-enter {
  from {
    opacity: 0;
    transform: translateY(38px) rotate(-3.5deg) scale(0.94);
  }
  to {
    opacity: 0.96;
    transform: translateY(0) rotate(-1.4deg) scale(1);
  }
}

@keyframes cb-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes cb-float-card {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 10px -12px;
  }
}

@keyframes cb-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cb-bar-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes cb-bar-wave {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@keyframes cb-card-pulse {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-8px);
  }
}

@keyframes cb-light-sweep {
  0%, 100% {
    translate: 0 0;
    opacity: 0.28;
  }
  50% {
    translate: 12vw 4vh;
    opacity: 0.48;
  }
}

@keyframes cb-grid-drift {
  to {
    background-position: 82px 82px;
  }
}

@keyframes cb-slide-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .cb-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .cb-menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    background: transparent;
  }

  .cb-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .cb-nav,
  .cb-header-actions {
    display: none;
  }

  .cb-header.is-open .cb-nav,
  .cb-header.is-open .cb-header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 0 4px;
  }

  .cb-header.is-open .cb-nav a,
  .cb-header.is-open .cb-header-actions a {
    border: 1px solid var(--cb-line);
    border-radius: 999px;
    padding: 12px 16px;
    background: #fff;
  }

  .cb-product-window {
    right: -140px;
    width: 640px;
    opacity: 0.54;
  }

  .cb-score-grid,
  .cb-solution-grid,
  .cb-plan-grid,
  .cb-product-stage-grid,
  .cb-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .cb-platform-grid,
  .cb-ai-agents,
  .cb-insights,
  .cb-plan-tab-panel,
  .cb-contact,
  .cb-footer {
    grid-template-columns: 1fr;
  }

  .cb-agent-stage {
    min-height: 520px;
  }
}

@media (min-width: 1101px) {
  .cb-hero {
    padding-right: clamp(28px, 5vw, 78px);
  }

  .cb-hero-content {
    width: min(54vw, 780px);
    max-width: calc(100vw - min(560px, 40vw) - clamp(150px, 12vw, 230px));
  }

  .cb-hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 4.45vw, 4.85rem);
  }

  .cb-hero p:not(.cb-eyebrow) {
    max-width: min(100%, 620px);
  }

  .cb-product-window {
    right: clamp(24px, 4vw, 76px);
    width: min(560px, 40vw);
  }
}

@media (max-width: 680px) {
  .cb-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .cb-header.is-open {
    position: sticky;
    top: 0;
    align-items: start;
    box-shadow: 0 18px 50px rgba(23, 24, 23, 0.12);
  }

  .cb-brand img {
    width: 94px;
  }

  .cb-brand span {
    min-height: 24px;
    padding-left: 9px;
    font-size: 0.82rem;
  }

  .cb-hero {
    min-height: auto;
    padding: 52px 22px 42px;
  }

  .cb-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .cb-hero p:not(.cb-eyebrow) {
    max-width: 100%;
    font-size: 1rem;
  }

  .cb-hero-visual {
    display: none;
  }

  .cb-floating-card,
  .cb-ai-query {
    display: none;
  }

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

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

  .cb-proof,
  .cb-score-grid,
  .cb-solution-grid,
  .cb-product-stage-grid,
  .cb-plan-grid {
    grid-template-columns: 1fr;
  }

  .cb-plan-tabs {
    justify-content: start;
    width: 100%;
  }

  .cb-plan-tabs button {
    min-height: 46px;
    padding: 11px 18px;
  }

  .cb-plan-tab-panel {
    padding: 22px;
  }

  .cb-product-finder-head {
    display: block;
  }

  .cb-product-stage-grid article {
    min-height: 240px;
  }

  .cb-ask-pill {
    flex-direction: column;
    border-width: 3px;
    border-radius: 42px;
    text-align: center;
  }

  .cb-ask-pill small {
    max-width: none;
  }

  .cb-ask-chips {
    justify-content: flex-start;
  }

  .cb-ask-chips span {
    min-height: 44px;
    padding: 10px 18px;
  }

  .cb-proof div {
    min-height: 96px;
  }

  .cb-section,
  .cb-contact {
    padding: 66px 22px;
  }

  .cb-dashboard-panel {
    min-height: 420px;
    padding: 20px;
  }

  .cb-agent-stage {
    min-height: 560px;
  }

  .cb-agent-card {
    min-height: 540px;
  }

  .cb-balance {
    display: block;
  }

  .cb-balance strong {
    display: block;
    margin-top: 10px;
    font-size: 2.5rem;
  }

  .cb-store-links img {
    width: 160px;
  }

  .cb-chat-widget {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }

  .cb-chat-panel {
    max-height: min(690px, calc(100vh - 28px));
  }

  .cb-chat-brief ul {
    grid-template-columns: 1fr;
  }

  .cb-chat-brief li {
    min-height: auto;
  }

  .cb-chat-launcher strong {
    font-size: 0.95rem;
  }
}

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

  .cb-reveal {
    opacity: 1;
    transform: none;
  }
}
