@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;520;600;700;800&display=swap');

:root {
  --ivory: #faf9f4;
  --ivory-2: #f3f2ed;
  --ivory-3: #ebe9e1;
  --ink: #101216;
  --ink-2: #2c3036;
  --muted: #59606a;
  --faint: #7a808a;
  --line: #ddd9cd;
  --bronze: #a68b5b;
  --bronze-dark: #6f5934;
  --white: #ffffff;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 34px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.cc-public {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, #fffefa 0%, var(--ivory) 42%, #f4f1e8 100%);
  color: var(--ink);
  font-family: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  overflow-x: clip;
}

body.cc-public::before {
  position: fixed;
  inset: -34vh -30vw;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(166, 139, 91, 0.28) 0%, rgba(166, 139, 91, 0.12) 22%, transparent 44%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.58) 30%, transparent 58%),
    linear-gradient(42deg, transparent 0 38%, rgba(16, 18, 22, 0.07) 56%, transparent 76%),
    linear-gradient(180deg, rgba(250, 249, 244, 0.38), rgba(235, 233, 225, 0.6));
  opacity: 0.92;
  transform: translate3d(0, 0, 0) scale(1.05);
  transform-origin: center top;
  will-change: transform, opacity;
  contain: paint;
  animation: cc-ambient-float 24s ease-in-out infinite alternate;
  content: "";
}

body.cc-public::after {
  position: fixed;
  inset: -36vh -34vw;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 23%, rgba(255, 255, 255, 0.8) 34%, transparent 48%),
    linear-gradient(112deg, transparent 0 43%, rgba(166, 139, 91, 0.22) 55%, transparent 69%),
    linear-gradient(112deg, transparent 0 66%, rgba(16, 18, 22, 0.045) 76%, transparent 88%);
  opacity: 0.78;
  transform: translate3d(-10vw, -4vh, 0) rotate(-8deg) scale(1.12);
  transform-origin: center;
  will-change: transform, opacity;
  contain: paint;
  animation: cc-light-sweep 30s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
  content: "";
}

.cc-topbar,
.cc-public main,
.cc-footer {
  position: relative;
  z-index: 1;
}

.cc-public a {
  color: inherit;
  text-decoration: none;
}

.cc-public input,
.cc-public button {
  font: inherit;
}

.cc-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.cc-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
  background: rgba(250, 249, 244, 0.76);
  backdrop-filter: blur(16px);
}

.cc-topbar-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(221, 217, 205, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(16, 18, 22, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  padding: 9px 12px 9px 16px;
}

.cc-wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.cc-wordmark img {
  display: block;
  width: clamp(136px, 12vw, 176px);
  height: auto;
}

.cc-actions,
.cc-hero-actions,
.cc-button-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-menu-toggle,
.cc-mobile-menu-shell {
  display: none;
}

.cc-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.cc-public .cc-button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(16, 18, 22, 0.14);
}

.cc-public .cc-button-dark:hover {
  background: #24272d;
  color: var(--white);
}

.cc-public .cc-button-light {
  border-color: rgba(166, 139, 91, 0.38);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.cc-public .cc-button-light:hover {
  border-color: var(--bronze);
  background: #fffdf7;
}

.cc-hero {
  padding: clamp(54px, 8vw, 92px) 0 clamp(44px, 7vw, 78px);
}

.cc-hero-single {
  min-height: auto;
}

.cc-hero-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.cc-kicker,
.cc-roi-eyebrow,
.cc-panel-label,
.cc-result-card span,
.cc-roi-group-title,
.cc-footer h3,
.cc-impact-head span,
.cc-range-label b,
.cc-boundary strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cc-kicker,
.cc-roi-eyebrow {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 18px;
  color: var(--bronze-dark);
  text-align: center;
}

.cc-kicker::before,
.cc-kicker::after,
.cc-roi-eyebrow::before,
.cc-roi-eyebrow::after {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.cc-hero h1,
.cc-section-intro h2,
.cc-roi-hero h2,
.cc-nick h2,
.cc-final-cta h2,
.cc-split h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 610;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.cc-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
}

.cc-hero p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.62;
}

.cc-hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.cc-hero-actions .cc-button {
  width: 174px;
}

.cc-hero-metric {
  width: min(720px, 100%);
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding: 0 12px;
}

.cc-hero-metric strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.cc-section {
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 112px) 0;
}

.cc-section-tint {
  background: rgba(243, 242, 237, 0.76);
}

.cc-section-intro {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 5vw, 46px);
  text-align: center;
}

.cc-section-intro h2,
.cc-roi-hero h2,
.cc-nick h2,
.cc-final-cta h2,
.cc-split h2 {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.1;
}

.cc-section-intro p,
.cc-panel p,
.cc-agent-card p,
.cc-impact-row span,
.cc-roi-hero p,
.cc-roi-coverage p,
.cc-result-note,
.cc-footer p,
.cc-boundary p,
.cc-nick p,
.cc-split p,
.cc-form-help,
.cc-pricing-card p,
.cc-pricing-card li,
.cc-compare-card p,
.cc-compare-card li,
.cc-workflow-step p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.cc-agent-grid,
.cc-three-grid,
.cc-pricing-grid,
.cc-before-after,
.cc-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cc-agent-card,
.cc-panel,
.cc-pricing-card,
.cc-compare-card,
.cc-stat,
.cc-workflow-step,
.cc-boundary {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(16, 18, 22, 0.045);
  padding: clamp(22px, 3vw, 30px);
}

.cc-agent-card {
  display: block;
  min-height: 166px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cc-agent-card:hover {
  border-color: rgba(166, 139, 91, 0.54);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 18, 22, 0.07);
  transform: translateY(-2px);
}

.cc-agent-card span,
.cc-panel-label,
.cc-stat span,
.cc-workflow-step span {
  display: block;
  margin-bottom: 14px;
  color: var(--bronze-dark);
}

.cc-agent-card h3,
.cc-panel h3,
.cc-pricing-card h3,
.cc-compare-card h3,
.cc-workflow-step h3,
.cc-timeline h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.cc-agent-card p,
.cc-panel p,
.cc-pricing-card p,
.cc-compare-card p,
.cc-workflow-step p {
  margin: 0;
}

.cc-roi-analysis {
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.cc-roi-hero {
  padding: clamp(92px, 10vw, 128px) 0 clamp(82px, 11vw, 128px);
  background:
    radial-gradient(ellipse 58% 34% at 84% 10%, rgba(166, 139, 91, 0.18), transparent 64%),
    linear-gradient(180deg, rgba(243, 242, 237, 0.64), rgba(250, 249, 244, 0.72));
}

.cc-roi-hero .cc-shell {
  max-width: 1180px;
  text-align: center;
}

.cc-roi-hero h2 {
  max-width: 860px;
  margin-inline: auto;
}

.cc-roi-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(17px, 2vw, 21px);
}

.cc-roi-wrap {
  margin-top: clamp(-78px, -7vw, -46px);
  padding-bottom: clamp(68px, 8vw, 104px);
}

.cc-roi-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 72px rgba(16, 18, 22, 0.12);
  padding: clamp(22px, 4vw, 42px);
}

.cc-roi-sticky {
  position: sticky;
  top: 96px;
  z-index: 2;
  display: none;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(166, 139, 91, 0.3);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffdf6, var(--white));
  box-shadow: 0 12px 26px rgba(16, 18, 22, 0.08);
  padding: 13px 16px;
}

.cc-roi-sticky span,
.cc-roi-hero-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cc-roi-sticky strong {
  color: var(--bronze-dark);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cc-roi-analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.cc-roi-group + .cc-roi-group {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.cc-roi-group-title {
  margin: 0 0 18px;
  color: var(--bronze-dark);
}

.cc-range-field {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.cc-range-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.cc-range-label b {
  color: var(--ink-2);
}

.cc-range-label em {
  flex: none;
  color: var(--bronze-dark);
  font-style: normal;
  font-weight: 650;
  font-size: 17px;
}

.cc-range-field input[type="range"] {
  width: 100%;
  height: 28px;
  background: transparent;
  accent-color: var(--bronze-dark);
  appearance: none;
}

.cc-range-field input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(166, 139, 91, 0.32), var(--ink));
}

.cc-range-field input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border: 3px solid var(--bronze-dark);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(16, 18, 22, 0.2);
  appearance: none;
}

.cc-range-field input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(166, 139, 91, 0.32), var(--ink));
}

.cc-range-field input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid var(--bronze-dark);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(16, 18, 22, 0.2);
}

.cc-roi-results {
  display: grid;
  gap: 14px;
}

.cc-roi-hero-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(166, 139, 91, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 8%, rgba(166, 139, 91, 0.18), transparent 30%),
    linear-gradient(135deg, #fffdf6, var(--white));
  padding: clamp(26px, 4vw, 38px);
}

.cc-roi-hero-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(50px, 7vw, 70px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.cc-roi-hero-card p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.cc-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cc-result-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 9px 22px rgba(16, 18, 22, 0.055);
  padding: 18px;
}

.cc-result-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--bronze-dark);
}

.cc-result-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1;
}

.cc-roi-coverage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 9px 22px rgba(16, 18, 22, 0.055);
  padding: 22px;
}

.cc-roi-ring {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--white) 0 53%, transparent 54%),
    conic-gradient(var(--bronze-dark) 0 var(--roi-coverage, 85%), var(--ivory-3) var(--roi-coverage, 85%) 100%);
}

.cc-roi-ring span {
  color: var(--ink);
  font-size: 23px;
  font-weight: 650;
}

.cc-roi-coverage p {
  margin: 0;
}

.cc-roi-coverage strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.cc-result-note {
  margin: 0;
  font-size: 13px;
}

.cc-impact-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 18, 22, 0.06);
}

.cc-impact-row {
  display: grid;
  grid-template-columns: 0.78fr 0.95fr 1fr;
  border-bottom: 1px solid var(--line);
}

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

.cc-impact-row span {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 18px 20px;
  overflow-wrap: anywhere;
}

.cc-impact-row span:last-child {
  border-right: 0;
}

.cc-impact-head {
  background: var(--ivory);
}

.cc-impact-head span {
  color: var(--bronze-dark);
}

.cc-nick {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.cc-nick img {
  justify-self: center;
  width: min(100%, 340px);
  aspect-ratio: 1 / 1.12;
  border: 1px solid var(--line);
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 46px rgba(16, 18, 22, 0.08);
}

.cc-nick p {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: clamp(17px, 1.8vw, 20px);
}

.cc-nick > div {
  text-align: center;
}

.cc-final-cta {
  border-top: 1px solid var(--line);
  padding: clamp(66px, 8vw, 104px) 0;
  text-align: center;
}

.cc-final-cta h2 {
  max-width: 760px;
  margin: 0 auto 26px;
}

.cc-split,
.cc-roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

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

.cc-pricing-card ul,
.cc-compare-card ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cc-pricing-card li,
.cc-compare-card li {
  position: relative;
  padding-left: 17px;
}

.cc-pricing-card li::before,
.cc-compare-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--bronze);
  content: "";
}

.cc-workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

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

.cc-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.cc-footer {
  border-top: 1px solid var(--line);
  background: rgba(250, 249, 244, 0.84);
}

@keyframes cc-ambient-float {
  0% {
    opacity: 0.86;
    transform: translate3d(-1vw, -0.8vh, 0) scale(1.05);
  }
  50% {
    opacity: 0.96;
    transform: translate3d(1.6vw, 1.2vh, 0) scale(1.08);
  }
  100% {
    opacity: 0.9;
    transform: translate3d(-0.4vw, 2vh, 0) scale(1.065);
  }
}

@keyframes cc-light-sweep {
  0% {
    opacity: 0.64;
    transform: translate3d(-14vw, -5vh, 0) rotate(-8deg) scale(1.12);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(-3vw, 1vh, 0) rotate(-8deg) scale(1.12);
  }
  100% {
    opacity: 0.72;
    transform: translate3d(7vw, 3vh, 0) rotate(-8deg) scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cc-public::before,
  body.cc-public::after {
    animation: none;
  }
}

.cc-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.72fr) minmax(240px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(50px, 7vw, 78px) var(--gutter);
}

.cc-footer-wordmark {
  margin-bottom: 16px;
}

.cc-footer h3 {
  margin: 0 0 18px;
  color: var(--bronze-dark);
}

.cc-footer p {
  margin: 0;
}

.cc-footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.cc-footer a:hover {
  color: var(--bronze-dark);
}

.cc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 18px;
  color: var(--faint);
  font-size: 12px;
}

.cc-form-card,
.cc-form,
.cc-form-grid,
.cc-hidden {
  display: none;
}

@media (max-width: 900px) {
  .cc-agent-grid,
  .cc-three-grid,
  .cc-pricing-grid,
  .cc-before-after,
  .cc-stat-grid,
  .cc-workflow,
  .cc-roi-analysis-grid,
  .cc-split,
  .cc-roi-grid,
  .cc-nick {
    grid-template-columns: 1fr;
  }

  .cc-roi-sticky {
    display: flex;
  }

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

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

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

  .cc-topbar {
    padding: 14px 0 8px;
    background: transparent;
  }

  .cc-topbar-inner {
    width: calc(100% - 40px);
    min-height: 74px;
    gap: 12px;
    border-radius: 22px;
    padding: 12px 14px 12px 18px;
    background: rgba(255, 255, 255, 0.84);
  }

  .cc-wordmark img {
    width: 136px;
  }

  .cc-actions {
    display: none;
  }

  .cc-menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: none;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .cc-menu-toggle span {
    grid-area: 1 / 1;
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .cc-menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .cc-menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .cc-topbar.is-open .cc-menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .cc-topbar.is-open .cc-menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .cc-mobile-menu-shell {
    display: block;
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    z-index: 41;
  }

  .cc-mobile-menu[hidden] {
    display: none;
  }

  .cc-mobile-menu {
    display: grid;
    gap: 12px;
    margin-top: -2px;
    border: 1px solid rgba(221, 217, 205, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(16, 18, 22, 0.16);
    padding: 14px;
  }

  .cc-mobile-menu .cc-button {
    width: 100%;
    min-height: 58px;
    border-radius: 999px;
    font-size: 17px;
  }

  .cc-hero {
    padding: 38px 0 48px;
  }

  .cc-kicker,
  .cc-roi-eyebrow {
    margin-bottom: 16px;
  }

  .cc-kicker::before,
  .cc-kicker::after,
  .cc-roi-eyebrow::before,
  .cc-roi-eyebrow::after {
    width: 18px;
  }

  .cc-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .cc-hero p {
    font-size: 17px;
    line-height: 1.48;
  }

  .cc-hero-actions,
  .cc-button-row {
    display: grid;
    gap: 10px;
    width: min(240px, 100%);
    margin-inline: auto;
  }

  .cc-hero-actions .cc-button,
  .cc-button-row .cc-button,
  .cc-final-cta .cc-button {
    width: 100%;
    min-height: 50px;
  }

  .cc-impact-row {
    grid-template-columns: 0.82fr 0.82fr 1fr;
  }

  .cc-impact-row span {
    padding: 12px 8px;
    font-size: 12px;
    line-height: 1.25;
  }

  .cc-impact-head span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .cc-section {
    padding: 56px 0;
  }

  .cc-section-intro {
    margin-bottom: 24px;
  }

  .cc-section-intro h2,
  .cc-roi-hero h2,
  .cc-nick h2,
  .cc-final-cta h2,
  .cc-split h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .cc-agent-grid,
  .cc-three-grid,
  .cc-pricing-grid,
  .cc-before-after,
  .cc-stat-grid,
  .cc-workflow {
    gap: 12px;
  }

  .cc-agent-card,
  .cc-panel,
  .cc-pricing-card,
  .cc-compare-card,
  .cc-stat,
  .cc-workflow-step,
  .cc-boundary {
    border-radius: 14px;
    padding: 20px;
  }

  .cc-roi-hero {
    padding: 72px 0 92px;
  }

  .cc-roi-card {
    border-radius: 22px;
    padding: 14px;
  }

  .cc-roi-sticky {
    top: 82px;
  }

  .cc-roi-analysis-grid {
    gap: 28px;
  }

  .cc-roi-group + .cc-roi-group {
    margin-top: 24px;
    padding-top: 22px;
  }

  .cc-range-label {
    align-items: flex-start;
  }

  .cc-range-label b {
    max-width: 70%;
    line-height: 1.3;
  }

  .cc-roi-hero-card {
    border-radius: 22px;
    padding: 24px 20px;
  }

  .cc-roi-hero-card strong {
    font-size: clamp(48px, 14vw, 64px);
  }

  .cc-results-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cc-roi-coverage {
    grid-template-columns: 1fr;
  }

  .cc-roi-ring {
    width: 82px;
    height: 82px;
  }

  .cc-nick img {
    width: 100%;
    max-width: 300px;
  }

  .cc-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cc-footer a,
  .cc-footer-wordmark {
    margin-inline: auto;
  }

  .cc-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
