/* wc2026.css */
@font-face {
  font-family: 'Red Hat Display';
  src: url('fonts/RedHatDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Red Hat Display';
  src: url('fonts/RedHatDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Red Hat Display';
  src: url('fonts/RedHatDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Red Hat Display';
  src: url('fonts/RedHatDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --wc-blue: #2334e9;
  --wc-blue-hover: #1824aa;
  --wc-pink: #d90852;
  --wc-green: #00886f;
  --wc-bg: #f5f7fb;
  --wc-surface: #ffffff;
  --wc-surface-soft: #eef2f7;
  --wc-ink: #17181d;
  --wc-text: #2c3038;
  --wc-text-muted: #5c6675;
  --wc-border: #d9dee8;
  --wc-border-strong: #b9c2d0;
  --wc-shadow: 0 18px 48px rgba(22, 31, 57, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--wc-bg);
  color: var(--wc-text);
  font-family: 'Red Hat Display', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: var(--wc-blue);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wc-blue-hover);
}

.wc2026-content {
  max-width: 1440px;
  width: 94%;
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

/* Hero */
.wc-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 2rem;
  overflow: hidden;
  border-radius: 8px;
  padding: 4.5rem;
  margin-bottom: 2.5rem;
  color: #fff;
  background-color: #101217;
  background-image:
    linear-gradient(105deg, rgba(9, 11, 18, 0.92) 0%, rgba(18, 20, 29, 0.74) 48%, rgba(35, 52, 233, 0.42) 100%),
    url('images/hero_stadium.png');
  background-position: center;
  background-size: cover;
  box-shadow: var(--wc-shadow);
}

.wc-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.wc-hero__copy,
.wc-hero__metrics {
  position: relative;
  z-index: 1;
}

.wc-kicker {
  margin: 0 0 0.85rem;
  color: var(--wc-pink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.wc-hero .wc-kicker {
  color: #ff5d96;
}

.wc-hero h1 {
  max-width: 820px;
  margin: 0 0 1.35rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.wc-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.7;
}

.wc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.wc-link-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wc-link-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.wc-link-button--primary {
  background: var(--wc-pink);
  border-color: var(--wc-pink);
}

.wc-link-button--primary:hover {
  background: #b90645;
  border-color: #b90645;
}

.wc-hero__metrics {
  align-self: stretch;
  display: grid;
  gap: 0.75rem;
  align-content: end;
}

.wc-hero__metrics div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.wc-metric-value {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.wc-metric-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

/* Sections */
.wc-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--wc-border);
}

.wc-section:first-of-type {
  border-top: 0;
}

.wc-section-intro {
  max-width: 880px;
  margin-bottom: 2rem;
}

.wc-section h2 {
  margin: 0 0 1rem;
  color: var(--wc-ink);
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.wc-section h3 {
  margin: 0 0 0.85rem;
  color: var(--wc-blue);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
}

.wc-section h4 {
  margin: 0 0 0.9rem;
  color: var(--wc-blue);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.wc-section p,
.wc-section ul {
  color: var(--wc-text);
  font-size: 1.08rem;
  line-height: 1.72;
}

.wc-section p {
  margin: 0 0 1.15rem;
}

.wc-section p:last-child,
.wc-section ul:last-child {
  margin-bottom: 0;
}

.wc-belief {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding-top: 2.5rem;
}

.wc-belief__quote {
  margin-top: 1.4rem;
  padding: 1.15rem 1.35rem;
  border-left: 5px solid var(--wc-pink);
  border-radius: 0 8px 8px 0;
  background: #fff;
  color: var(--wc-ink);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 10px 26px rgba(22, 31, 57, 0.07);
}

.wc-journey-grid,
.wc-prompt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wc-journey-card,
.wc-prompt,
.wc-panel,
.group-card {
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: var(--wc-surface);
  box-shadow: 0 10px 24px rgba(22, 31, 57, 0.06);
}

.wc-journey-card {
  min-height: 245px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
}

.wc-journey-card span {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(217, 8, 82, 0.1);
  color: var(--wc-pink);
  font-weight: 800;
}

.wc-journey-card h3 {
  color: var(--wc-ink);
  font-size: 1.22rem;
}

.wc-journey-card p,
.wc-prompt p {
  color: var(--wc-text-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* Tabs */
.wc-tabs-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 -3% 1rem;
  padding: 0.85rem 3%;
  background: #F5F7FB;
  background: linear-gradient(90deg, rgba(245, 247, 251, 1) 0%, rgba(255, 255, 255, 1) 4%, rgba(255, 255, 255, 1) 96%, rgba(245, 247, 251, 1) 100%);
  backdrop-filter: blur(12px);
}

.wc-tab-button {
  min-height: 44px;
  border: 1px solid var(--wc-border-strong);
  border-radius: 8px;
  padding: 0.75rem 1.15rem;
  background: var(--wc-surface);
  color: var(--wc-text-muted);
  cursor: pointer;
  font-family: 'Red Hat Display', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wc-tab-button:hover {
  border-color: var(--wc-blue);
  color: var(--wc-blue);
}

.wc-tab-button.active {
  background: var(--wc-blue);
  border-color: var(--wc-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(35, 52, 233, 0.22);
}

.wc-tab-button[data-target="tab-panintelligence"]:hover {
  border-color: var(--wc-pink);
  color: var(--wc-pink);
}

.wc-tab-button[data-target="tab-panintelligence"].active {
  background: var(--wc-pink);
  border-color: var(--wc-pink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(217, 8, 82, 0.22);
}

.wc-tab-content {
  display: none;
  animation: tabFadeIn 0.35s ease-out;
}

.wc-tab-content.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Panels and embedded tools */
.wc-split-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.wc-panel {
  padding: 1.65rem;
}

.wc-panel h2 {
  font-size: 2rem;
}

.wc-panel p,
.wc-panel ul {
  font-size: 1rem;
}

.wc-panel--embed {
  display: grid;
  gap: 1rem;
}

.wc-panel--embed .wc-img-placeholder {
  margin: 0;
}

.wc-tool-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.wc-tool-list li {
  padding: 0.85rem 0.95rem;
  border-left: 4px solid var(--wc-green);
  border-radius: 0 8px 8px 0;
  background: var(--wc-surface-soft);
}

.wc-img-placeholder {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: var(--wc-surface);
  box-shadow: 0 12px 30px rgba(22, 31, 57, 0.08);
}

.wc-img-placeholder.is-loading::before,
.group-card-placeholder.is-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #e0e4ec 25%, #f4f6fa 50%, #e0e4ec 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.pi-embed {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
  position: relative;
  z-index: 2;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pi-embed.is-loaded {
  opacity: 1;
}

.wc-commentary {
  margin: 2rem 0 0;
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--wc-blue);
  border-radius: 0 8px 8px 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 31, 57, 0.06);
}

.wc-commentary h3 {
  color: var(--wc-ink);
}

.wc-prompt-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.wc-prompt {
  min-height: 175px;
  padding: 1.25rem;
  border-top: 4px solid var(--wc-green);
}

.wc-prompt h3 {
  color: var(--wc-ink);
  font-size: 1.15rem;
}

/* Groups */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.group-card {
  padding: 1rem;
}

.group-card h4 {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--wc-border);
}

.group-card-placeholder {
  width: 100%;
  height: 320px;
  margin: 0.5rem 0 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pi-group-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: relative;
  z-index: 2;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pi-group-embed.is-loaded {
  opacity: 1;
}

/* Tournament bracket */
.bracket-container {
  min-height: 500px;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 1.5rem 1rem;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: var(--wc-surface-soft);
}

.bracket-column {
  min-width: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bracket-column-title {
  height: 20px;
  margin-bottom: 2rem;
  color: var(--wc-text-muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.bracket-matches-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
}

.bracket-match-pair {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}

.bracket-column:not(:first-child):not(:last-child) .bracket-match-pair.has-two-matches::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  bottom: 25%;
  width: 20px;
  border-top: 2px solid #c4cad4;
  border-right: 2px solid #c4cad4;
  border-bottom: 2px solid #c4cad4;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.bracket-column:not(:first-child):not(:last-child) .bracket-match-pair.has-two-matches::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  border-top: 2px solid #c4cad4;
}

.bracket-match {
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(22, 31, 57, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bracket-match:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(22, 31, 57, 0.12);
}

.bracket-match.is-final {
  margin: auto 0;
}

.bracket-match-meta {
  padding: 0.55rem 1rem 0.45rem;
  border-bottom: 1px solid #edf0f5;
  color: var(--wc-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bracket-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #edf0f5;
  color: #333842;
  font-size: 0.95rem;
}

.bracket-team:last-child {
  border-bottom: 0;
}

.bracket-team.winner {
  background: rgba(35, 52, 233, 0.06);
  color: var(--wc-blue);
  font-weight: 800;
}

.bracket-flag-circle {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d5d9e0;
  border-radius: 50%;
  background: #f0f2f5;
}

.bracket-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bracket-loading {
  width: 100%;
  padding: 2rem;
  color: var(--wc-text-muted);
  text-align: center;
}

.bracket-footnote {
  margin: 0.75rem 0 2rem;
  color: var(--wc-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Scroll fade-in animations */
body.js-enabled .is-scroll-reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.75s ease-out;
  will-change: opacity;
}

body.js-enabled .is-scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Left dot navigation */
.wc-card-nav {
  position: fixed;
  top: 50%;
  left: 0.7rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transform: translateY(-50%);
}

.wc-card-nav__dot {
  width: 1.65rem;
  height: 1.65rem;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.wc-card-nav__dot::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: rgba(92, 102, 117, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.wc-card-nav__dot:hover::before,
.wc-card-nav__dot:focus-visible::before {
  width: 0.7rem;
  height: 0.7rem;
  background: rgba(35, 52, 233, 0.72);
}

.wc-card-nav__dot:focus-visible {
  outline: none;
}

.wc-card-nav__dot.is-active::before {
  width: 0.95rem;
  height: 0.95rem;
  background: var(--wc-blue);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.js-enabled .is-scroll-reveal {
    opacity: 1;
    transition: none;
  }

  .wc-card-nav__dot::before,
  .wc-link-button,
  .wc-tab-button,
  .bracket-match {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .wc-hero {
    grid-template-columns: 1fr;
    min-height: 570px;
    padding: 3.5rem;
  }

  .wc-hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: auto;
  }

  .wc-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .wc2026-content {
    width: 92%;
    padding-top: 1rem;
  }

  .wc-hero {
    min-height: 540px;
    padding: 3rem 2rem;
  }

  .wc-hero h1 {
    font-size: 3rem;
  }

  .wc-hero p {
    font-size: 1.12rem;
  }

  .wc-belief,
  .wc-split-container,
  .wc-prompt-grid,
  .groups-grid {
    grid-template-columns: 1fr;
  }

  .wc-belief {
    gap: 1rem;
  }

  .wc-section h2 {
    font-size: 2.1rem;
  }

  .wc-img-placeholder {
    min-height: 480px;
  }

  .pi-embed {
    height: 520px;
  }
}

@media (max-width: 680px) {
  .wc2026-content {
    width: 100%;
    padding-top: 0;
  }

  .wc-hero {
    min-height: 560px;
    margin: 0 0 1.5rem;
    border-radius: 0;
    padding: 2.2rem 1.1rem 1.5rem;
  }

  .wc-hero h1 {
    font-size: 2.45rem;
  }

  .wc-hero p {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .wc-hero__actions,
  .wc-hero__metrics {
    grid-template-columns: 1fr;
  }

  .wc-link-button {
    width: 100%;
  }

  .wc-section {
    padding: 2.5rem 1.05rem;
  }

  .wc-belief {
    padding-top: 2rem;
  }

  .wc-section h2 {
    font-size: 1.82rem;
  }

  .wc-section h3 {
    font-size: 1.25rem;
  }

  .wc-section p,
  .wc-section ul {
    font-size: 1rem;
  }

  .wc-journey-grid {
    grid-template-columns: 1fr;
  }

  .wc-tabs-header {
    margin: 0;
    justify-content: stretch;
  }

  .wc-tab-button {
    flex: 1;
    padding: 0.7rem 0.55rem;
    font-size: 0.92rem;
  }

  .wc-img-placeholder {
    min-height: 420px;
  }

  .pi-embed {
    height: 460px;
  }

  .group-card-placeholder {
    height: 300px;
  }

  .wc-card-nav {
    display: none;
  }
}

/* Timeline Design */
.wc-timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 2rem;
}

.wc-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 0;
  width: 2px;
  background: var(--wc-border);
}

.wc-timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.wc-timeline-item:last-child {
  margin-bottom: 0;
}

.wc-timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wc-blue);
  border: 4px solid var(--wc-bg);
  box-shadow: 0 0 0 2px var(--wc-blue);
  z-index: 2;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-timeline-item:hover .wc-timeline-marker {
  transform: scale(1.25);
  background: var(--wc-pink);
  box-shadow: 0 0 0 2px var(--wc-pink);
}

.wc-timeline-content {
  padding: 2rem;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: var(--wc-surface);
  box-shadow: 0 10px 30px rgba(22, 31, 57, 0.05);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

.wc-timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(22, 31, 57, 0.08);
}

.wc-timeline-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.wc-timeline-date {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--wc-text-muted);
  letter-spacing: 0.02em;
}

.wc-timeline-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  background: rgba(35, 52, 233, 0.08);
  color: var(--wc-blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wc-timeline-content h3 {
  margin: 0 0 1rem;
  color: var(--wc-ink);
  font-size: 1.55rem;
  font-weight: 800;
}

.wc-timeline-list {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.6rem;
}

.wc-timeline-list li {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--wc-text);
}

@media (max-width: 680px) {
  .wc-timeline {
    padding-left: 1.5rem;
  }
  .wc-timeline::before {
    left: 5px;
  }
  .wc-timeline-marker {
    left: -1.5rem;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }
  .wc-timeline-content {
    padding: 1.25rem;
  }
  .wc-timeline-content h3 {
    font-size: 1.3rem;
  }
}

/* CTA Section Design */
.wc-cta-block {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 2rem;
  border-top: 4px solid var(--wc-blue);
  border-radius: 8px;
  background: var(--wc-surface);
  box-shadow: 0 12px 36px rgba(22, 31, 57, 0.06);
}

.wc-cta-block h3 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--wc-ink);
}

.wc-cta-block p {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--wc-text-muted);
}