/* ============================================================
   Case study page — Jonah's Movers
   Built on the OTO design tokens in styles.css / theme-bold.css
   ============================================================ */

.cs-page {
  --cs-pos: #2f8f5b;
  --cs-pos-soft: rgba(47, 143, 91, 0.12);
}

/* ---------- Hero ---------- */
.cs-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 60% 50% at 12% 0%, rgba(62, 100, 121, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 45% at 95% 10%, rgba(193, 127, 89, 0.12), transparent 55%),
    linear-gradient(180deg, #0d1419 0%, #12202a 55%, #0d1419 100%);
  color: #fff;
}

.cs-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}

.cs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.cs-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.cs-breadcrumb a:hover {
  color: #fff;
}

.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
}

.cs-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(193, 127, 89, 0.25);
}

.cs-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  max-width: 18ch;
}

.cs-hero h1 .hl {
  color: var(--accent);
}

.cs-hero-sub {
  margin-top: 1.25rem;
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* Hero stat cards */
.cs-stat-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.cs-stat {
  position: relative;
  padding: 1.25rem 1.25rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.cs-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.cs-stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.cs-stat-flow {
  margin-top: 0.65rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
}

.cs-stat-from {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.cs-stat-arrow {
  color: var(--accent);
  font-size: 0.95rem;
}

.cs-stat-to {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff;
}

.cs-stat-delta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--cs-pos-soft);
  color: #7ee0a6;
  font-size: 0.8rem;
  font-weight: 700;
}

.cs-stat-single {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  margin-top: 0.65rem;
  line-height: 1.15;
}

.cs-hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cs-hero .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.cs-hero .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cs-hero-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Section scaffolding ---------- */
.cs-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.cs-section-tint {
  background: linear-gradient(180deg, #f4f7f9, #fff);
}

.cs-head {
  max-width: 52rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cs-head p.cs-lead {
  margin-top: 0.85rem;
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* ---------- Dashboard / charts ---------- */
.cs-dash {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.cs-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(12, 24, 33, 0.06);
}

.cs-chart-card {
  padding: 1.4rem 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
}

.cs-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.cs-chart-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.cs-chart-now {
  text-align: right;
  line-height: 1.1;
}

.cs-chart-now strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--blue-dark);
}

.cs-chart-now span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0.5rem;
  overflow: visible;
}

.cs-chart-foot {
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cs-pos);
}

/* SVG bits */
.cs-grid-line {
  stroke: var(--gray-200);
  stroke-width: 1;
}
.cs-axis-label {
  fill: var(--gray-500);
  font-size: 11px;
  font-family: var(--font);
}
.cs-bar {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.9s var(--ease);
}
.is-visible .cs-bar {
  transform: scaleY(1);
}
.cs-line-path {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 1.3s var(--ease);
}
.is-visible .cs-line-path {
  stroke-dashoffset: 0;
}
.cs-area {
  opacity: 0;
  transition: opacity 1s ease 0.3s;
}
.is-visible .cs-area {
  opacity: 1;
}
.cs-dot {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.is-visible .cs-dot {
  opacity: 1;
}
.cs-point-label {
  fill: var(--ink);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font);
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}
.is-visible .cs-point-label {
  opacity: 1;
}

.cs-revenue-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---------- Video ---------- */
.cs-video-wrap {
  max-width: 56rem;
  margin: 0 auto;
}

.cs-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(62, 100, 121, 0.35), transparent 60%),
    linear-gradient(160deg, #11202a, #0c161d);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cs-video iframe,
.cs-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cs-video-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  text-align: center;
}

.cs-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(193, 127, 89, 0.45);
  transition: transform 0.2s var(--ease);
}

.cs-video:hover .cs-play {
  transform: scale(1.08);
}

.cs-play svg {
  margin-left: 4px;
}

.cs-video-ph small {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cs-video-cap {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--gray-700);
  max-width: 46rem;
  margin-inline: auto;
}

/* ---------- Icon / feature cards ---------- */
.cs-grid-3 {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
}

.cs-grid-2 {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}

.cs-icon-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 24, 33, 0.04);
}

.cs-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-muted);
  color: var(--blue-dark);
  margin-bottom: 0.9rem;
}

.cs-icon-card h3 {
  margin: 0 0 0.35rem;
}

.cs-icon-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* What we built — numbered */
.cs-build-card {
  position: relative;
  overflow: hidden;
}

.cs-build-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

.cs-build-tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---------- Before / after ---------- */
.cs-ba {
  display: grid;
  gap: 2rem;
}

.cs-ba-block + .cs-ba-block {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.cs-ba-title {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.cs-ba-pair {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1fr;
}

.cs-shot {
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 24, 33, 0.05);
}

.cs-shot-ph {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background-color: #eef2f6;
  background-image:
    linear-gradient(135deg, rgba(62, 100, 121, 0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(62, 100, 121, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(62, 100, 121, 0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(62, 100, 121, 0.08) 25%, transparent 25%);
  background-size: 22px 22px;
  color: var(--gray-500);
}

.cs-shot-ph span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cs-shot-img {
  position: relative;
  background: #0c161d;
}

.cs-shot-img img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-shot-flag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cs-flag-before {
  background: rgba(190, 70, 70, 0.14);
  color: #b34646;
}

.cs-flag-after {
  background: var(--cs-pos-soft);
  color: var(--cs-pos);
}

.cs-shot-cap {
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-100);
}

/* ---------- Ranking cards ---------- */
.cs-rank-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.cs-rank {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: #fff;
  box-shadow: 0 6px 18px rgba(12, 24, 33, 0.04);
}

.cs-rank-badge {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
}

.cs-rank-kw {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
}

.cs-rank-pos {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cs-pos);
}

.cs-rank-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- Timeline ---------- */
.cs-timeline {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  padding-left: 2.4rem;
}

.cs-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--accent));
}

.cs-tl-item {
  position: relative;
  padding-bottom: 1.9rem;
}

.cs-tl-item:last-child {
  padding-bottom: 0;
}

.cs-tl-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(62, 100, 121, 0.12);
}

.cs-tl-year {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.cs-tl-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.15rem 0 0.3rem;
}

.cs-tl-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* ---------- Final CTA ---------- */
.cs-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 60% at 50% 0%, rgba(193, 127, 89, 0.22), transparent 60%),
    linear-gradient(180deg, #0d1419, #102330);
}

.cs-final h2 {
  color: #fff;
  max-width: 22ch;
  margin-inline: auto;
}

.cs-final p {
  margin: 1rem auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.cs-final-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.cs-final .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.cs-final .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Modal lead form ---------- */
.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 14, 18, 0.62);
  backdrop-filter: blur(4px);
}

.cs-modal.is-open {
  display: flex;
  animation: csFade 0.2s ease;
}

@keyframes csFade {
  from {
    opacity: 0;
  }
}

.cs-modal-panel {
  position: relative;
  width: 100%;
  max-width: 30rem;
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  animation: csRise 0.28s var(--ease);
}

@keyframes csRise {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
}

.cs-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.cs-modal-close:hover {
  background: var(--gray-200);
}

.cs-modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.cs-modal-panel h2 {
  font-size: 1.5rem;
  margin: 0.4rem 0 0.35rem;
}

.cs-modal-panel .cs-modal-sub {
  margin: 0 0 1.25rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.cs-field {
  margin-bottom: 0.85rem;
}

.cs-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--ink-soft);
}

.cs-req {
  color: #e5484d;
  font-weight: 700;
  margin-left: 0.1rem;
}

.cs-field input,
.cs-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}

.cs-field input:focus,
.cs-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-muted);
}

.cs-field-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

.cs-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cs-form-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.cs-form-status {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.2em;
}

.cs-form-status.is-error {
  color: #b34646;
}

.cs-form-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--gray-500);
}

/* ---------- Booking page ---------- */
.cs-book-main {
  min-height: 70vh;
  padding: clamp(2rem, 5vw, 3.5rem) 0 4rem;
}

.cs-book-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2rem;
}

.cs-book-steps {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.cs-book-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cs-book-steps .done {
  color: var(--cs-pos);
  font-weight: 700;
}

.cs-calendly {
  min-width: 320px;
  height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: #fff;
  box-shadow: 0 12px 36px rgba(12, 24, 33, 0.06);
}

/* ---------- Trusted-by strip (hero) ---------- */
.cs-trust {
  margin-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.cs-trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.cs-trust-logos {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.75rem;
}

.cs-trust-logos span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Who this is for ---------- */
.cs-fit-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  max-width: 48rem;
  margin: 0 auto;
}

.cs-fit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 500;
}

.cs-check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cs-pos-soft);
  color: var(--cs-pos);
}

.cs-fit-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ---------- Giant revenue band ---------- */
.cs-revenue-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(47, 143, 91, 0.3), transparent 60%),
    linear-gradient(180deg, #0d1419, #10231b);
}

.cs-rev-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ee0a6;
}

.cs-rev-flow {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.cs-rev-from {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  color: rgba(255, 255, 255, 0.45);
}

.cs-rev-arrow {
  color: #7ee0a6;
  font-size: clamp(1.4rem, 4vw, 2.75rem);
}

.cs-rev-to {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(2.75rem, 9vw, 6rem);
  color: #fff;
}

.cs-rev-sub {
  margin: 1.1rem auto 0;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.72);
}

.cs-rev-delta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(47, 143, 91, 0.18);
  color: #7ee0a6;
  font-weight: 700;
}

/* ---------- Inline CTA bands ---------- */
.cs-cta-band {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: linear-gradient(180deg, #eef3f6, #f7f9fb);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.cs-cta-band-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cs-cta-band h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

.cs-cta-band p {
  margin: 0;
  color: var(--gray-700);
}

/* ---------- About Adam ---------- */
.cs-adam-inner {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 280px 1fr;
  align-items: center;
  max-width: 62rem;
  margin: 0 auto;
}

.cs-adam-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.cs-adam-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-adam-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 1.25rem;
}

.cs-adam-role {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-muted);
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- What you'll receive + urgency ---------- */
.cs-receive-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
}

.cs-receive-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 600;
}

.cs-urgency {
  margin: 1.75rem auto 0;
  max-width: 46rem;
  text-align: center;
  padding: 1.1rem 1.35rem;
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-weight: 600;
}

/* ---------- Sticky / fixed CTA ---------- */
.cs-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  padding: 0.85rem 1rem;
  transform: translateY(150%);
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}

.cs-sticky-cta.is-visible {
  transform: translateY(0);
}

.cs-sticky-cta .btn {
  pointer-events: auto;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(12, 12, 12, 0.28);
}

@media (max-width: 600px) {
  .cs-sticky-cta {
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--gray-200);
  }
  .cs-sticky-cta .btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .cs-page {
    padding-bottom: 4.75rem;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .cs-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-dash {
    grid-template-columns: 1fr;
  }
  .cs-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .cs-receive-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .cs-adam-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .cs-adam-photo {
    max-width: 240px;
  }
  .cs-adam-roles {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cs-stat-grid,
  .cs-grid-3,
  .cs-grid-2,
  .cs-ba-pair,
  .cs-field-row,
  .cs-fit-grid,
  .cs-receive-grid {
    grid-template-columns: 1fr;
  }
  .cs-calendly {
    height: 1000px;
  }
}
