:root {
  --sp-ink: #101817;
  --sp-muted: #5f6f6b;
  --sp-paper: #f7faf8;
  --sp-soft: #eef6f3;
  --sp-line: #d8e8e4;
  --sp-teal: #0f766e;
  --sp-teal-dark: #0b4f49;
  --sp-lime: #d8f36f;
  --sp-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--sp-paper);
  color: var(--sp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.sp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 248, 0.94);
  border-bottom: 1px solid var(--sp-line);
  backdrop-filter: blur(16px);
}

.sp-wrap {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.sp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.sp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sp-ink);
  font-weight: 900;
  text-decoration: none;
}

.sp-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.sp-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-links a {
  color: var(--sp-ink);
  text-decoration: none;
}

.sp-btn,
.sp-links .sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--sp-teal);
  border-radius: 4px;
  background: var(--sp-teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.sp-btn::after {
  content: "→";
  margin-left: 9px;
}

.sp-btn-ghost {
  background: transparent;
  color: var(--sp-teal-dark);
}

.sp-hero {
  padding: 92px 0 38px;
  text-align: center;
}

.sp-eyebrow {
  margin: 0 0 18px;
  color: var(--sp-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sp-hero h1,
.sp-section-head h2,
.sp-final h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sp-mobile-break {
  display: none;
}

.sp-rotating-headline {
  display: grid;
  gap: 0.12em;
  font-size: clamp(2.45rem, 4.9vw, 4rem);
  max-width: min(1120px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.sp-fixed-headline {
  display: block;
  max-width: 100%;
}

.sp-rotating-slot {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  letter-spacing: 0;
}

.sp-rotating-text {
  display: block;
  height: 100%;
  line-height: 1.04;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(90deg, var(--sp-teal-dark), #17b8a6, var(--sp-teal));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.sp-rotating-text.is-leaving {
  animation: sp-phrase-out 420ms ease forwards;
}

.sp-rotating-text.is-entering {
  animation: sp-phrase-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sp-phrase-out {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -0.75em, 0);
  }
}

@keyframes sp-phrase-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.sp-hero p {
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: var(--sp-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.sp-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.sp-proof-note {
  margin-top: 42px;
  color: var(--sp-teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-csos-hero {
  padding-top: 76px;
  text-align: left;
}

.sp-csos-hero .sp-wrap {
  width: min(1500px, calc(100vw - 28px));
}

.sp-hero-test-grid {
  display: grid;
  grid-template-columns: minmax(104px, 150px) minmax(0, 1fr) minmax(104px, 150px);
  gap: clamp(24px, 3.4vw, 52px);
  align-items: center;
}

.sp-csos-hero .sp-rotating-headline {
  max-width: min(1080px, 100%);
  font-size: clamp(2.65rem, 4.65vw, 4.28rem);
}

.sp-csos-hero .sp-fixed-headline {
  white-space: nowrap;
}

.sp-hero-copy {
  min-width: 0;
  text-align: center;
}

.sp-hero-testimonials {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: 18px;
  mask-image: linear-gradient(to bottom, transparent 0, black 18%, black 82%, transparent 100%);
}

.sp-hero-testimonial-track {
  display: grid;
  gap: 18px;
  animation: sp-testimonial-up 34s linear infinite;
}

.sp-hero-testimonials:hover .sp-hero-testimonial-track {
  animation-play-state: paused;
}

.sp-mini-testimonial,
.sp-testimonial-card {
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.72)),
    #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.07);
}

.sp-mini-testimonial {
  min-height: 116px;
  padding: 15px;
}

.sp-mini-testimonial blockquote,
.sp-testimonial-card blockquote {
  margin: 0;
  color: var(--sp-ink);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.34;
}

.sp-mini-testimonial blockquote {
  font-size: 0.82rem;
}

.sp-stars {
  margin-top: 10px;
  color: #f6b72b;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.sp-mini-testimonial figcaption,
.sp-testimonial-card figcaption {
  margin-top: 10px;
  color: var(--sp-teal-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes sp-testimonial-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.sp-marquee {
  overflow: hidden;
  padding: 28px 0 58px;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.sp-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--sp-gap, 20px);
  animation: sp-marquee-left var(--sp-speed, 45s) linear infinite;
}

.sp-marquee:hover .sp-marquee-track {
  animation-play-state: paused;
}

@keyframes sp-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sp-email-card,
.sp-video-card {
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 24, 23, 0.08);
}

.sp-email-card {
  width: 220px;
  height: 420px;
}

.sp-video-card {
  position: relative;
  width: 200px;
  height: 356px;
  background: #000;
}

.sp-email-card img,
.sp-video-card img,
.sp-video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.sp-video-card iframe {
  pointer-events: none;
}

.sp-logo-strip {
  max-width: 100%;
  padding: 20px 0;
  border-top: 0;
  border-bottom: 0;
  background: #050706;
  overflow: hidden;
}

.sp-logo-label {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.sp-logo-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: sp-strip-move 34s linear infinite;
}

.sp-logo-strip:hover .sp-logo-track {
  animation-play-state: paused;
}

.sp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 46px;
  opacity: 0.9;
}

.sp-logo-mark img {
  width: auto;
  max-width: 220px;
  max-height: 34px;
  object-fit: contain;
}

@keyframes sp-strip-move {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.sp-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.sp-metrics {
  border-top: 1px solid var(--sp-line);
  border-bottom: 1px solid var(--sp-line);
  background: #fff;
  padding: 42px 0;
}

.sp-metric strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.sp-metric span {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.sp-section {
  padding: 88px 0;
}

.sp-section-alt {
  background: #fff;
}

.sp-section-head {
  width: min(780px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.sp-section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.sp-section-head p {
  margin: 18px auto 0;
  color: var(--sp-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.sp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.sp-quote-card,
.sp-comparison-card,
.sp-proof-card,
.sp-service-card,
.sp-faq-card {
  border: 1px solid var(--sp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
}

.sp-quote-card {
  padding: 36px;
}

.sp-quote-card blockquote {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.sp-quote-card cite {
  display: block;
  margin-top: 20px;
  color: var(--sp-teal);
  font-style: normal;
  font-weight: 900;
}

.sp-problem-grid {
  align-items: center;
}

.sp-problem-punch {
  color: var(--sp-ink) !important;
  font-weight: 900;
}

.sp-cycle-card {
  display: grid;
  place-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
  overflow: hidden;
  padding: 14px;
}

.sp-cycle-card img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border-radius: 12px;
}

.sp-symptom-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sp-symptom-list li {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 12px;
  background: rgba(238, 246, 243, 0.72);
  color: var(--sp-ink);
  line-height: 1.34;
}

.sp-symptom-list b {
  color: var(--sp-ink);
  font-size: 1rem;
  font-weight: 900;
}

.sp-symptom-list span {
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.sp-symptom-map {
  display: grid;
  place-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
  padding: 16px;
  overflow: hidden;
}

.sp-symptom-map img {
  display: block;
  width: min(100%, 516px);
  height: auto;
  border-radius: 10px;
}

.sp-services-grid,
.sp-case-grid,
.sp-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sp-service-card,
.sp-faq-card {
  padding: 24px;
}

.sp-service-card span,
.sp-proof-card span,
.sp-faq-card span {
  color: var(--sp-teal);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sp-service-card h3,
.sp-proof-card h3,
.sp-faq-card h3 {
  margin: 12px 0 0;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sp-service-card p,
.sp-proof-card p,
.sp-faq-card p {
  margin: 12px 0 0;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-csos-faq-grid {
  width: min(860px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.sp-csos-faq-grid .sp-faq-card {
  padding: 26px 28px;
  border-radius: 16px;
}

.sp-csos-faq-grid .sp-faq-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.sp-csos-faq-grid .sp-faq-card p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.55;
}

.sp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sp-step-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--sp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.06);
}

.sp-step-card span {
  color: var(--sp-teal);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sp-step-card h3 {
  margin: 12px 0 0;
  color: var(--sp-ink);
  font-size: 1.32rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.sp-step-card p {
  margin: 12px 0 0;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sp-comparison-card {
  padding: 28px;
}

.sp-comparison-card.good {
  background: var(--sp-teal);
  color: #fff;
}

.sp-comparison-card h3 {
  margin: 0 0 18px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

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

.sp-comparison-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--sp-muted);
  line-height: 1.35;
}

.sp-comparison-card.good li {
  border-top-color: rgba(255, 255, 255, 0.22);
  color: #eafff9;
}

.sp-proof-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 24px;
  color: var(--sp-ink);
  text-decoration: none;
}

.sp-proof-stat {
  margin-top: auto;
  color: var(--sp-teal);
  font-size: 3.2rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.sp-proof-card small {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.sp-past-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sp-proof-card-wide {
  position: relative;
  min-height: 430px;
  border-color: rgba(15, 118, 110, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.82)),
    #fff;
  box-shadow:
    0 34px 70px rgba(16, 24, 23, 0.12),
    0 12px 24px rgba(15, 118, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sp-proof-card-wide::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 243, 111, 0.42), rgba(216, 243, 111, 0));
  pointer-events: none;
}

.sp-proof-card-wide:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow:
    0 44px 88px rgba(16, 24, 23, 0.16),
    0 18px 34px rgba(15, 118, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
}

.sp-proof-card-wide p {
  margin: 16px 0 0;
  color: var(--sp-muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.sp-case-hero {
  padding: 86px 0 44px;
}

.sp-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: end;
}

.sp-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sp-teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.sp-back-link::before {
  content: "←";
  margin-right: 8px;
}

.sp-case-hero h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: normal;
  text-wrap: balance;
}

.sp-case-hero p {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--sp-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.sp-case-result-card {
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 23, 0.08);
  padding: 28px;
}

.sp-case-result-card strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.sp-case-result-card span {
  display: block;
  margin-top: 12px;
  color: var(--sp-muted);
  font-weight: 850;
  line-height: 1.35;
}

.sp-case-body {
  padding: 36px 0 86px;
}

.sp-case-section {
  border-top: 1px solid var(--sp-line);
  padding: 34px 0;
}

.sp-case-section h2 {
  margin: 0 0 18px;
  color: var(--sp-ink);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1;
}

.sp-case-section p {
  max-width: 760px;
  margin: 0;
  color: var(--sp-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.sp-case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.sp-case-list div {
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.sp-case-list b {
  display: block;
  margin-bottom: 8px;
  color: var(--sp-teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-case-list span {
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-case-quote {
  margin-top: 20px;
  border-left: 4px solid var(--sp-teal);
  background: var(--sp-soft);
  padding: 20px;
  color: var(--sp-ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
}

.sp-saas-hero {
  padding: 92px 0 58px;
}

.sp-saas-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.sp-saas-hero h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sp-saas-hero p:not(.sp-eyebrow) {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
  line-height: 1.5;
}

.sp-cta-row-left {
  justify-content: flex-start;
}

.sp-slack-proof {
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 23, 0.08);
  overflow: hidden;
}

.sp-slack-proof img {
  display: block;
  width: 100%;
}

.sp-slack-proof figcaption {
  border-top: 1px solid var(--sp-line);
  padding: 14px 18px;
  color: var(--sp-muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.sp-chart-stack {
  display: grid;
  gap: 18px;
}

.sp-chart-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(16, 24, 23, 0.05);
}

.sp-chart-panel h3 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sp-chart-panel p:not(.sp-eyebrow) {
  margin: 14px 0 0;
  color: var(--sp-muted);
  line-height: 1.55;
}

.sp-chart-panel svg {
  width: 100%;
  height: auto;
}

.sp-chart-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
}

.sp-donut-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.sp-chart-legend {
  display: grid;
  gap: 10px;
}

.sp-chart-legend div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  background: var(--sp-soft);
  padding: 12px;
}

.sp-chart-legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.sp-chart-legend b {
  display: block;
  color: var(--sp-ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sp-chart-legend span {
  color: var(--sp-teal-dark);
  font-weight: 900;
}

.sp-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sp-proof-row div,
.sp-saas-work-list div,
.sp-ops-grid div {
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
}

.sp-proof-row strong {
  display: block;
  color: var(--sp-teal);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.sp-proof-row span,
.sp-saas-work-list span,
.sp-ops-grid span {
  display: block;
  margin-top: 8px;
  color: var(--sp-muted);
  line-height: 1.45;
}

.sp-left-head {
  margin: 0;
  text-align: left;
}

.sp-saas-work-list {
  display: grid;
  gap: 12px;
}

.sp-saas-work-list b,
.sp-ops-grid b {
  display: block;
  color: var(--sp-teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-founder-quote {
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--sp-line);
  border-left: 5px solid var(--sp-teal);
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(16, 24, 23, 0.06);
}

.sp-founder-quote blockquote {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.35;
}

.sp-founder-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--sp-teal-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sp-screenshot-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sp-screenshot-wall figure {
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 24, 23, 0.05);
}

.sp-screenshot-wall img {
  display: block;
  width: 100%;
}

.sp-screenshot-wall figcaption {
  border-top: 1px solid var(--sp-line);
  padding: 12px 16px;
  color: var(--sp-teal-dark);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sp-testimonial-heading {
  margin-bottom: 20px;
}

.sp-testimonial-marquee {
  overflow: hidden;
  padding: 10px 0 24px;
}

.sp-testimonial-marquee-left {
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.sp-testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: sp-marquee-right 48s linear infinite;
}

.sp-testimonial-marquee:hover .sp-testimonial-track {
  animation-play-state: paused;
}

.sp-testimonial-marquee-left .sp-testimonial-track {
  animation-name: sp-marquee-left;
}

.sp-testimonial-marquee-left .sp-testimonial-track figure {
  width: min(360px, 84vw);
}

.sp-testimonial-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.sp-testimonial-card blockquote {
  font-size: 1.14rem;
}

.sp-testimonial-card .sp-stars {
  font-size: 0.9rem;
}

.sp-testimonial-track figure {
  width: min(340px, 82vw);
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 24, 23, 0.06);
}

.sp-testimonial-track img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top;
}

.sp-testimonial-track figcaption {
  border-top: 1px solid var(--sp-line);
  padding: 10px 14px;
  color: var(--sp-teal-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sp-testimonial-track .sp-testimonial-card {
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 245, 0.72)),
    #fff;
  overflow: visible;
}

.sp-testimonial-track .sp-testimonial-card figcaption {
  border-top: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

@keyframes sp-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.sp-footer {
  border-top: 1px solid var(--sp-line);
  background: #fff;
  padding: 44px 0;
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.7fr));
  gap: 28px;
}

.sp-footer h3 {
  margin: 0 0 12px;
  color: var(--sp-ink);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.sp-footer a,
.sp-footer p {
  display: block;
  margin: 7px 0;
  color: var(--sp-muted);
  font-size: 0.94rem;
  line-height: 1.45;
  text-decoration: none;
}

.sp-footer a:hover {
  color: var(--sp-teal);
}

.sp-final {
  padding: 96px 0;
  text-align: center;
  background: var(--sp-ink);
  color: #fff;
}

.sp-final h2 {
  color: #fff;
}

.sp-final p {
  width: min(620px, 100%);
  margin: 18px auto 0;
  color: #d8e8e4;
  font-size: 1.08rem;
  line-height: 1.5;
}

.sp-final .sp-btn {
  margin-top: 28px;
  background: var(--sp-lime);
  border-color: var(--sp-lime);
  color: var(--sp-ink);
}

@media (max-width: 880px) {
  .sp-wrap {
    width: min(1120px, calc(100vw - 32px));
  }

  .sp-nav-inner {
    min-height: 68px;
  }

  .sp-links {
    display: none;
  }

  .sp-hero {
    padding-top: 70px;
  }

  .sp-csos-hero {
    text-align: center;
  }

  .sp-hero-test-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sp-hero-testimonials {
    display: none;
  }

  .sp-hero-copy {
    text-align: center;
  }

  .sp-hero h1,
  .sp-section-head h2,
  .sp-final h2 {
    font-size: clamp(1.82rem, 8.1vw, 2.16rem);
    letter-spacing: -0.032em;
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sp-hero h1.sp-rotating-headline {
    font-size: clamp(1.55rem, 7vw, 1.82rem);
    max-width: calc(100vw - 32px);
    letter-spacing: -0.032em;
  }

  .sp-mobile-break {
    display: inline;
  }

  .sp-rotating-headline {
    gap: 0.14em;
    max-width: min(340px, calc(100vw - 32px));
  }

  .sp-rotating-slot {
    font-size: 0.68em;
    height: 1.24em;
  }

  .sp-rotating-text {
    height: 100%;
    line-height: 1.08;
    white-space: nowrap;
  }

  .sp-two-col .sp-section-head h2,
  .sp-quote-card blockquote {
    font-size: clamp(1.68rem, 7.6vw, 2rem);
    letter-spacing: -0.032em;
    line-height: 1.05;
  }

  .sp-hero p {
    width: min(300px, 100%);
    font-size: 0.96rem;
  }

  .sp-proof-note {
    width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .sp-cta-row {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .sp-cta-row .sp-btn {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .sp-metric-row,
  .sp-two-col,
  .sp-case-hero-grid,
  .sp-saas-hero-grid,
  .sp-chart-panel,
  .sp-chart-grid,
  .sp-donut-layout,
  .sp-comparison,
  .sp-steps-grid {
    grid-template-columns: 1fr;
  }

  .sp-cycle-card {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .sp-cycle-arrows,
  .sp-cycle-card::before,
  .sp-cycle-card::after {
    display: none;
  }

  .sp-cycle-step {
    position: static;
    width: 100%;
    min-height: 0;
    transform: none;
    padding: 14px;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 16px;
    background: #fff;
    text-align: left;
  }

  .sp-cycle-step {
    border-radius: 14px;
  }

  .sp-cycle-step span,
  .sp-symptom-list li {
    overflow-wrap: anywhere;
  }

  .sp-symptom-map {
    padding: 18px;
  }

  .sp-section-head,
  .sp-two-col > *,
  .sp-quote-card,
  .sp-comparison-card,
  .sp-proof-card,
  .sp-service-card,
  .sp-faq-card,
  .sp-step-card {
    min-width: 0;
    max-width: 100%;
  }

  .sp-section-head {
    width: min(320px, 100%);
  }

  .sp-section-head h2,
  .sp-quote-card blockquote {
    max-width: 12ch;
  }

  .sp-section-head p,
  .sp-quote-card cite {
    max-width: 32ch;
  }

  .sp-section-head p,
  .sp-quote-card blockquote,
  .sp-service-card h3,
  .sp-service-card p,
  .sp-proof-card h3,
  .sp-proof-card p,
  .sp-proof-card small,
  .sp-faq-card h3,
  .sp-faq-card p,
  .sp-step-card h3,
  .sp-step-card p {
    overflow-wrap: anywhere;
  }

  .sp-csos-faq-grid .sp-faq-card h3 {
    font-size: 1rem;
  }

  .sp-csos-faq-grid .sp-faq-card p,
  .sp-step-card p {
    font-size: 0.94rem;
  }

  .sp-testimonial-marquee-left .sp-testimonial-track img {
    height: 230px;
  }

  .sp-proof-card-wide {
    width: 100%;
    min-height: 360px;
    padding: 22px;
  }

  .sp-past-work-grid {
    width: min(280px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .sp-proof-stat {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .sp-services-grid,
  .sp-past-work-grid,
  .sp-case-grid,
  .sp-case-list,
  .sp-proof-row,
  .sp-ops-grid,
  .sp-screenshot-wall,
  .sp-footer-grid,
  .sp-faq-grid {
    grid-template-columns: 1fr;
  }

  .sp-saas-hero {
    padding: 58px 0 36px;
  }

  .sp-saas-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 0.98;
    max-width: 12ch;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sp-saas-hero p:not(.sp-eyebrow) {
    width: min(330px, 100%);
    font-size: 1rem;
  }

  .sp-saas-hero .sp-cta-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .sp-saas-hero .sp-cta-row .sp-btn {
    width: min(330px, 100%);
  }

  .sp-chart-panel {
    padding: 18px;
  }

  .sp-case-hero {
    padding-top: 58px;
  }

  .sp-case-hero .sp-wrap,
  .sp-case-body .sp-wrap {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow-x: hidden;
  }

  .sp-case-hero-grid,
  .sp-case-body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .sp-case-hero-grid > *,
  .sp-case-section,
  .sp-case-result-card,
  .sp-case-list > div {
    min-width: 0;
    max-width: 100%;
  }

  .sp-case-result-card {
    width: 100%;
  }

  .sp-case-hero h1 {
    font-size: clamp(1.68rem, 7.6vw, 2.05rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .sp-case-hero p,
  .sp-case-section p {
    display: block;
    width: min(33ch, 100%);
    max-width: min(33ch, 100%);
    overflow-wrap: normal;
    word-break: normal;
  }

  .sp-case-list span,
  .sp-case-result-card span {
    display: block;
    width: min(29ch, 100%);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sp-email-card {
    width: 168px;
    height: 318px;
    border-radius: 14px;
  }

  .sp-video-card {
    width: 164px;
    height: 292px;
  }

  .sp-logo-label {
    width: min(340px, calc(100vw - 32px));
  }

  .sp-logo-track {
    gap: 30px;
    animation-duration: 28s;
  }

  .sp-logo-mark {
    min-width: 214px;
    height: 40px;
  }

  .sp-logo-mark img {
    max-width: 204px;
    max-height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-marquee-track {
    animation: none;
  }

  .sp-logo-track {
    animation: none;
  }

  .sp-hero-testimonial-track,
  .sp-testimonial-track {
    animation: none;
  }
}
