/* ─── Canela Light Italic (per-file only) ────────────────── */
@font-face {
  font-family: 'Canela Text Trial';
  src: url('assets/fonts/CanelaText-LightItalic-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --red:     #ED3C56;
  --tag-1:   #EDEDF0;
  --tag-2:   #F5F5F5;

}

/* ─── Hero ───────────────────────────────────────────────── */
.cs-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-hero-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ui);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--muted);
}

.cs-eyebrow-rule {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--muted);
  flex-shrink: 0;
}

.cs-title {
  font-family: var(--serif-deck);
  font-size: clamp(36px, 4.57vw, 64px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--black);
}

/* ─── Hero image ─────────────────────────────────────────── */
.cs-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 768;
  object-fit: cover;
  border-radius: clamp(14px, 2.14vw, 30px);
}

/* ─── Section shell ──────────────────────────────────────── */
.cs-section {
  max-width: var(--max);
  margin-top: 64px;
}

/* ─── H2 / body max-width overrides ──────────────────────── */
.cs-h2  { max-width: 940px; }
.cs-body { max-width: 940px; }

.cs-list {
  font-family: var(--ui);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body);
  max-width: 927px;
  padding-left: 24px;
}

.cs-list li + li { margin-top: 10px; }

/* ─── Full-width image ────────────────────────────────────── */
.cs-full-img {
  width: 100%;
  overflow: hidden;
}

.cs-full-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(14px, 2.14vw, 30px);
}

/* ─── Problem section ─────────────────────────────────────── */
.cs-problem {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding-bottom: 64px;
}

.cs-problem-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-body-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── Objective ───────────────────────────────────────────── */
.cs-objective {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 32px 0;
  margin-top: 72px;
}

.cs-h3-center {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: var(--black);
}

.cs-body-center {
  font-family: var(--ui);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body);
  max-width: 728px;
  text-align: center;
  margin: 0 auto;
}

.cs-caption-center {
  font-family: var(--ui);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--body);
  max-width: 728px;
}

/* ─── User account section ────────────────────────────────── */
.cs-account {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 96px;
  padding-bottom: 96px;
}

/* ─── Mobile + process sections (baked-in radius, no outer round) ── */
.cs-mobile .cs-full-img img,
.cs-process-img .cs-full-img img { border-radius: 0; }

/* ─── Churchill outro ─────────────────────────────────────── */
.cs-churchill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding: 120px 0;
}

.cs-churchill-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.cs-churchill-logo {
  display: block;
  width: 150px;
  height: auto;
}

.cs-churchill-screenshot {
  display: block;
  width: 817px;
  max-width: 100%;
  height: auto;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
}

/* ─── Thank you ───────────────────────────────────────────── */
.cs-thanks {
  font-family: 'Public Sans', sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  margin-top: 64px;
  padding-bottom: 96px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.cs-footer {
  max-width: var(--max);
  padding: 0 0 48px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ─── Meta block ─────────────────────────────────────────── */
.cs-meta {
  font-family: var(--ui);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--body);
  max-width: 562px;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 720px) {
  .cs-title { font-size: 34px; line-height: 48px; }
  .cs-churchill-screenshot { width: 100%; }

  /* ── consistent 64px mobile spacing ── */
  .cs-section        { margin-top: 64px; }
  .cs-problem        { padding-bottom: 64px; }
  .cs-objective      { margin-top: 64px; padding: 24px 0; }
  .cs-account        { gap: 64px; padding-bottom: 64px; }
  .cs-churchill      { gap: 64px; padding: 80px 0; }
  .cs-thanks         { margin-top: 64px; padding-bottom: 64px; }
  .cs-footer         { margin-top: 48px; padding: 0 0 32px; }
}

@media (max-width: 480px) {
  .cs-hero { gap: 24px; }
  .cs-churchill-intro { gap: 40px; }
}

@media (max-width: 600px) {
  .cs-body-center { font-size: 16px; line-height: 22px; }
  .cs-list { font-size: 16px; line-height: 22px; }
  .cs-h3-center { font-size: 16px; line-height: 24px; }
  .cs-objective { margin-top: 36px; padding: 16px 0; }
  .cs-problem { padding-bottom: 32px; }
}

/* ─── Sticky scroll bar ──────────────────────────────────── */
.sticky-bar-inner {
  max-width: calc(1400px + clamp(20px, 3.33vw, 48px) * 2);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.33vw, 48px);
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky-bar-name {
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #8D8D8D;
  text-decoration: none;
}
.sticky-bar-link {
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

/* ─── Let's Talk popup ───────────────────────────────────── */
.popup-label {
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #1A1A1A;
}
