:root {
  --ct-carbon: #0b0b0b;
  --ct-signal-white: #f5f6f2;
  --ct-concrete: #d9dcd7;
  --ct-graphite: #6a6f73;
  --ct-signal-teal: #16d6c1;
  --ct-deep-teal: #006f68;
  --ct-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ct-shell: min(1180px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body.cast-tech-elementor-page,
.cast-tech-elementor-page {
  margin: 0;
  background: var(--ct-carbon);
  color: var(--ct-signal-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.ct-shell {
  width: var(--ct-shell);
  margin-inline: auto;
}

.ct-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ct-graphite);
}

.ct-label--teal {
  color: var(--ct-signal-teal);
}

.ct-h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ct-carbon);
  max-width: 18ch;
}

.ct-h2--on-dark {
  color: var(--ct-signal-white);
}

.ct-lead {
  margin: 0 0 40px;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ct-graphite);
}

.ct-lead--on-dark {
  color: rgba(245, 246, 242, 0.72);
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms var(--ct-ease), color 200ms var(--ct-ease), border-color 200ms var(--ct-ease);
}

.ct-btn--signal {
  background: var(--ct-signal-teal);
  color: var(--ct-carbon);
}

.ct-btn--signal:hover {
  background: #12c4b0;
}

.ct-btn--ghost {
  border-color: rgba(245, 246, 242, 0.28);
  color: var(--ct-signal-white);
  background: transparent;
}

.ct-btn--ghost:hover {
  border-color: var(--ct-signal-teal);
  color: var(--ct-signal-teal);
}

.ct-btn--dark {
  background: var(--ct-carbon);
  color: var(--ct-signal-white);
}

.ct-btn--dark:hover {
  background: #1a1a1a;
}

/* Beat Elementor/Hello `img { height: auto }` so wordmarks scale by height. */
.cast-tech-elementor-page img.ct-logo,
.cast-tech-elementor-page img.ct-rydcast,
img.ct-logo,
img.ct-rydcast {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
}

.cast-tech-elementor-page img.ct-logo,
img.ct-logo {
  height: 26px;
}

.cast-tech-elementor-page img.ct-logo--hero,
img.ct-logo--hero {
  height: clamp(40px, 7vw, 72px);
}

.cast-tech-elementor-page img.ct-logo--arch,
img.ct-logo--arch {
  height: 34px;
}

.cast-tech-elementor-page img.ct-logo--position,
img.ct-logo--position {
  height: 28px;
}

.cast-tech-elementor-page img.ct-logo--lockup,
img.ct-logo--lockup {
  /* Optical match to RYDCAST letter height (lockup SVG includes the wave) */
  height: 16px;
}

.cast-tech-elementor-page img.ct-rydcast,
img.ct-rydcast {
  height: 36px;
}

.cast-tech-elementor-page img.ct-rydcast--arch,
img.ct-rydcast--arch {
  height: 40px;
}

.cast-tech-elementor-page img.ct-rydcast--lockup,
img.ct-rydcast--lockup {
  height: 28px;
}

.cast-tech-elementor-page img.ct-rydcast--product,
img.ct-rydcast--product {
  height: 44px;
}

.ct-arch__brand {
  margin: 0 0 14px;
}

.ct-arch__brand .ct-logo,
.ct-arch__brand .ct-rydcast {
  margin: 0;
}

.ct-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 246, 242, 0.08);
}

.ct-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.ct-header__brand {
  margin-right: auto;
}

.ct-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 246, 242, 0.78);
}

.ct-header__nav a:hover {
  color: var(--ct-signal-teal);
}

.ct-btn--pilot {
  border-color: var(--ct-signal-teal);
  color: var(--ct-signal-teal);
}

.ct-btn--pilot:hover {
  background: rgba(22, 214, 193, 0.12);
  border-color: var(--ct-signal-teal);
  color: var(--ct-signal-teal);
}

.ct-header .ct-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ct-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(22, 214, 193, 0.08), transparent 55%),
    linear-gradient(180deg, #111 0%, var(--ct-carbon) 55%, #050505 100%);
}

.ct-hero__plane {
  position: absolute;
  inset: 0;
  color: rgba(22, 214, 193, 0.55);
  pointer-events: none;
}

.ct-hero__plane svg {
  width: 100%;
  height: 100%;
}

.ct-route__line {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: ct-route-draw 1.1s var(--ct-ease) 0.2s forwards;
}

.ct-route__pulse {
  fill: var(--ct-signal-teal);
  opacity: 0;
  animation: ct-pulse-in 0.5s var(--ct-ease) 0.9s forwards;
}

.ct-route__pulse--late {
  animation-delay: 1.15s;
}

.ct-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 24px;
}

.ct-hero__brand {
  margin: 0 0 20px;
}

.ct-hero__brand .ct-logo {
  display: block;
}

.ct-hero__line {
  margin: 0 0 18px;
  max-width: 18ch;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ct-hero__support {
  margin: 0 0 32px;
  max-width: 44ch;
  color: rgba(245, 246, 242, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.ct-hero__support--tight {
  margin-top: -18px;
  margin-bottom: 28px;
}

.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* —— Cape Town pilot hero —— */
.ct-hero--pilot {
  align-items: center;
  padding: 108px 0 56px;
  background: #050505;
}

.ct-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ct-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}

.ct-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.35) 68%, rgba(5, 5, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, transparent 28%, rgba(5, 5, 5, 0.75) 100%);
}

.ct-route--pilot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(22, 214, 193, 0.9);
}

.ct-route__pin {
  fill: var(--ct-signal-teal);
  stroke: rgba(5, 5, 5, 0.85);
  stroke-width: 2;
  opacity: 0;
  animation: ct-pulse-in 0.45s var(--ct-ease) 0.85s forwards;
}

.ct-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.72fr);
  gap: 40px;
  align-items: end;
  width: var(--ct-shell);
}

.ct-hero--pilot .ct-hero__content {
  padding-bottom: 0;
}

.ct-hero--pilot .ct-hero__line {
  max-width: 14ch;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.ct-hero--pilot .ct-btn--signal,
.ct-hero--pilot .ct-btn--ghost {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ct-pilot-card {
  padding: 28px 26px;
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid rgba(22, 214, 193, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ct-pilot-card__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ct-signal-teal);
}

.ct-pilot-card__title {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.ct-pilot-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ct-pilot-card__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(245, 246, 242, 0.86);
}

.ct-pilot-card__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--ct-signal-teal);
}

.ct-pilot-card__icon svg {
  width: 20px;
  height: 20px;
}

/* —— Validation strip —— */
.ct-validate {
  border-top: 1px solid rgba(245, 246, 242, 0.08);
  border-bottom: 1px solid rgba(245, 246, 242, 0.08);
  background: #101214;
  padding: 36px 0;
}

.ct-validate__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.ct-validate__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(245, 246, 242, 0.9);
}

.ct-validate__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 28px;
  align-items: start;
}

.ct-validate__items li {
  display: grid;
  grid-template-rows: 44px auto;
  gap: 14px;
  align-content: start;
  justify-items: center;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(245, 246, 242, 0.78);
}

.ct-validate__items li > span:last-child {
  min-height: 3.9em;
}

.ct-validate__items strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ct-signal-white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-validate__icon {
  color: var(--ct-signal-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.ct-validate__icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.4;
}

/* —— What we do —— */
.ct-what {
  padding-top: 104px;
  padding-bottom: 88px;
}

.ct-what__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 48px 56px;
  align-items: start;
}

.ct-what__title {
  max-width: 16ch;
  margin-bottom: 18px;
}

.ct-what__lead {
  margin-bottom: 28px;
  max-width: 42ch;
}

.ct-what__cards {
  display: grid;
  gap: 14px;
}

.ct-card {
  position: relative;
  padding: 24px 26px 26px;
  background:
    linear-gradient(105deg, rgba(22, 214, 193, 0.08), transparent 42%),
    rgba(8, 10, 12, 0.72);
  border: 1px solid rgba(245, 246, 242, 0.12);
  box-shadow: inset 3px 0 0 var(--ct-signal-teal);
  backdrop-filter: blur(6px);
  transition: border-color 220ms var(--ct-ease), transform 220ms var(--ct-ease), background 220ms var(--ct-ease);
}

.ct-card:hover {
  border-color: rgba(22, 214, 193, 0.45);
  transform: translateX(4px);
  background:
    linear-gradient(105deg, rgba(22, 214, 193, 0.12), transparent 48%),
    rgba(10, 13, 16, 0.88);
}

.ct-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ct-card__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ct-signal-teal);
}

.ct-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--ct-signal-teal);
  background: rgba(22, 214, 193, 0.1);
  border: 1px solid rgba(22, 214, 193, 0.48);
}

.ct-card__icon svg {
  width: 30px;
  height: 30px;
}

html.ct-js .ct-what .ct-card {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms var(--ct-ease),
    transform 520ms var(--ct-ease),
    border-color 220ms var(--ct-ease),
    background 220ms var(--ct-ease);
}

html.ct-js .ct-what.is-in .ct-card {
  opacity: 1;
  transform: none;
}

html.ct-js .ct-what.is-in .ct-card:nth-child(1) { transition-delay: 40ms; }
html.ct-js .ct-what.is-in .ct-card:nth-child(2) { transition-delay: 120ms; }
html.ct-js .ct-what.is-in .ct-card:nth-child(3) { transition-delay: 200ms; }

html.ct-js .ct-what.is-in .ct-card:hover {
  transform: translateX(4px);
}

.ct-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.ct-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 246, 242, 0.7);
}

.ct-promise-box {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(22, 214, 193, 0.45);
  background: linear-gradient(135deg, rgba(22, 214, 193, 0.1), rgba(22, 214, 193, 0.03));
}

.ct-promise-box__check {
  color: var(--ct-signal-teal);
  display: inline-flex;
}

.ct-promise-box__check svg {
  width: 28px;
  height: 28px;
}

.ct-promise-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 246, 242, 0.82);
}

.ct-promise-box strong {
  color: var(--ct-signal-teal);
  font-weight: 600;
}

.ct-h2__dot {
  color: var(--ct-signal-teal);
}

/* —— How it works —— */
.ct-section--carbon.ct-how,
.ct-how {
  /* Lift off the carbon band above so the flow section reads as its own surface */
  background: #121518;
  padding-top: 88px;
  padding-bottom: 88px;
}

.ct-how__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 36px 44px;
  align-items: stretch;
}

.ct-how__head {
  margin-bottom: 28px;
  max-width: 36rem;
}

.ct-how .ct-h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  max-width: 20ch;
  margin-bottom: 10px;
}

.ct-how__lead {
  margin: 0;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.5;
}

.ct-how__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.ct-how__rail::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(22, 214, 193, 0.28);
}

.ct-how__rail > li {
  position: relative;
  display: grid;
  grid-template-columns: 30px 34px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 246, 242, 0.06);
}

.ct-how__rail > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ct-how__rail > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: -3px;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-signal-teal);
  box-shadow: 0 0 0 3px #121518;
}

.ct-how__n {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ct-signal-teal);
  background: var(--ct-carbon);
  border: 1px solid rgba(22, 214, 193, 0.45);
}

.ct-how__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--ct-signal-teal);
  background: rgba(22, 214, 193, 0.07);
  border: 1px solid rgba(22, 214, 193, 0.38);
}

.ct-how__icon svg {
  width: 18px;
  height: 18px;
}

.ct-how__copy h3 {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.ct-how__copy p {
  margin: 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245, 246, 242, 0.58);
}

html.ct-js .ct-how .ct-how__rail > li {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 420ms var(--ct-ease), transform 420ms var(--ct-ease);
}

html.ct-js .ct-how.is-in .ct-how__rail > li {
  opacity: 1;
  transform: none;
}

html.ct-js .ct-how.is-in .ct-how__rail > li:nth-child(1) { transition-delay: 40ms; }
html.ct-js .ct-how.is-in .ct-how__rail > li:nth-child(2) { transition-delay: 90ms; }
html.ct-js .ct-how.is-in .ct-how__rail > li:nth-child(3) { transition-delay: 140ms; }
html.ct-js .ct-how.is-in .ct-how__rail > li:nth-child(4) { transition-delay: 190ms; }
html.ct-js .ct-how.is-in .ct-how__rail > li:nth-child(5) { transition-delay: 240ms; }

.ct-how__stage {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px 16px 16px;
  border-radius: 10px;
  background: #0c0e10;
  border: 1px solid rgba(22, 214, 193, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.ct-how-stage__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 246, 242, 0.07);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 246, 242, 0.48);
}

.ct-how-stage__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ct-signal-teal);
}

.ct-how-stage__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-signal-teal);
}

html.ct-js .ct-how.is-in .ct-how-stage__live i {
  animation: ct-live-ping 1.6s ease-out infinite;
}

.ct-how-stage__layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ct-how-stage__layers li {
  display: grid;
  grid-template-columns: 22px 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  flex: 1;
  min-height: 48px;
  padding: 14px 12px;
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.45);
  border: 1px solid rgba(245, 246, 242, 0.06);
  transition: border-color 220ms var(--ct-ease), background 220ms var(--ct-ease);
}

.ct-how-stage__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(245, 246, 242, 0.32);
}

.ct-how-stage__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: rgba(245, 246, 242, 0.32);
  background: rgba(245, 246, 242, 0.03);
  border: 1px solid rgba(245, 246, 242, 0.08);
}

.ct-how-stage__icon svg {
  width: 15px;
  height: 15px;
}

.ct-how-stage__layers li strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ct-how-stage__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ct-how-stage__status em {
  font-style: normal;
  font-size: 10px;
  color: rgba(245, 246, 242, 0.38);
}

.ct-how-stage__mark {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: rgba(22, 214, 193, 0.55);
}

.ct-how-stage__mark--live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-signal-teal);
}

html.ct-js .ct-how.is-in .ct-how-stage__mark--live {
  animation: ct-live-ping 1.6s ease-out infinite;
}

.ct-how-stage__layers li.is-done .ct-how-stage__icon {
  color: rgba(22, 214, 193, 0.5);
  border-color: rgba(22, 214, 193, 0.22);
  background: rgba(22, 214, 193, 0.05);
}

.ct-how-stage__layers li.is-done .ct-how-stage__status em,
.ct-how-stage__layers li.is-done .ct-how-stage__mark {
  color: rgba(22, 214, 193, 0.6);
}

.ct-how-stage__layers li.is-hot {
  background: rgba(22, 214, 193, 0.06);
  border-color: rgba(22, 214, 193, 0.38);
  box-shadow: inset 0 0 0 1px rgba(22, 214, 193, 0.08);
}

.ct-how-stage__layers li.is-hot .ct-how-stage__num,
.ct-how-stage__layers li.is-hot .ct-how-stage__icon,
.ct-how-stage__layers li.is-hot .ct-how-stage__status em {
  color: var(--ct-signal-teal);
}

.ct-how-stage__layers li.is-hot .ct-how-stage__icon {
  border-color: rgba(22, 214, 193, 0.4);
  background: rgba(22, 214, 193, 0.08);
}

html.ct-js .ct-how .ct-how-stage__layers li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 360ms var(--ct-ease), transform 360ms var(--ct-ease), border-color 220ms var(--ct-ease), background 220ms var(--ct-ease);
}

html.ct-js .ct-how.is-in .ct-how-stage__layers li {
  opacity: 1;
  transform: none;
}

html.ct-js .ct-how.is-in .ct-how-stage__layers li:nth-child(1) { transition-delay: 100ms; }
html.ct-js .ct-how.is-in .ct-how-stage__layers li:nth-child(2) { transition-delay: 150ms; }
html.ct-js .ct-how.is-in .ct-how-stage__layers li:nth-child(3) { transition-delay: 200ms; }
html.ct-js .ct-how.is-in .ct-how-stage__layers li:nth-child(4) { transition-delay: 250ms; }
html.ct-js .ct-how.is-in .ct-how-stage__layers li:nth-child(5) { transition-delay: 300ms; }

.ct-how-stage__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 246, 242, 0.07);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ct-how-stage__foot span {
  color: rgba(245, 246, 242, 0.32);
}

.ct-how-stage__foot span.is-current {
  color: var(--ct-signal-teal);
}

.ct-how-stage__foot b {
  font-weight: 400;
  color: rgba(245, 246, 242, 0.18);
}

@keyframes ct-sonar {
  0% { opacity: 0.9; transform: scale(0.92); }
  70% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

html.ct-js .ct-hero--pilot .ct-pilot-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ct-ease) 180ms, transform 700ms var(--ct-ease) 180ms;
}

html.ct-js .ct-hero--pilot.is-in .ct-pilot-card {
  opacity: 1;
  transform: none;
}

.ct-section {
  padding: 96px 0;
}

.ct-section--light {
  background: var(--ct-signal-white);
  color: var(--ct-carbon);
}

.ct-section--position {
  position: relative;
  overflow: hidden;
  background: var(--ct-signal-white);
  color: var(--ct-carbon);
  padding: 96px 0;
}

.ct-position {
  position: relative;
  z-index: 1;
}

.ct-position__intro {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.ct-position__intro-brand {
  justify-self: end;
  text-align: right;
  max-width: 28ch;
}

.ct-logo--position {
  margin: 0 0 14px auto;
}

.ct-position__kicker {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ct-graphite);
}

.ct-position__master {
  margin: 0 0 14px;
  max-width: 18ch;
  font-size: clamp(36px, 5.8vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ct-carbon);
}

.ct-position__body {
  margin: 0 0 14px;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ct-graphite);
}

.ct-position__steer {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ct-deep-teal);
}

.ct-label--on-carbon {
  color: var(--ct-signal-teal);
}

.ct-flow {
  margin: 0 0 24px;
  padding: 28px 32px 24px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(22, 214, 193, 0.16), transparent 55%),
    var(--ct-carbon);
  color: var(--ct-signal-white);
}

.ct-flow__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 22px;
}

.ct-flow__head .ct-label {
  margin: 0;
}

.ct-flow__lead {
  margin: 0;
  max-width: 36ch;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ct-signal-white);
}

.ct-flow__copy {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 246, 242, 0.68);
}

.ct-flow__promise {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 246, 242, 0.72);
}

.ct-flow__promise span {
  color: var(--ct-signal-teal);
  font-weight: 600;
}

.ct-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 40px;
  align-items: start;
}

.ct-flow__step {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ct-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -24px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 214, 193, 0.2), var(--ct-signal-teal), rgba(22, 214, 193, 0.2));
}

.ct-flow__index {
  display: block;
  margin: 0 0 10px;
  min-height: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--ct-signal-teal);
}

.ct-flow__word {
  display: block;
  margin: 0;
  min-height: 1em;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ct-flow__hint {
  display: block;
  margin-top: 12px;
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(245, 246, 242, 0.62);
}

.ct-flow__rail {
  position: relative;
  height: 2px;
  margin: 24px 0 0;
  background: rgba(245, 246, 242, 0.1);
  overflow: hidden;
}

.ct-flow__signal {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--ct-signal-teal), transparent);
  animation: ct-signal-run 2.6s var(--ct-ease) infinite;
}

.ct-facts--pulse {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(11, 11, 11, 0.1);
  background: #fff;
}

.ct-facts.ct-facts--pulse > div {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 132px;
  padding: 36px 40px;
  border: 0;
  border-right: 1px solid rgba(11, 11, 11, 0.1);
  border-bottom: 1px solid rgba(11, 11, 11, 0.1);
  box-sizing: border-box;
}

.ct-facts.ct-facts--pulse > div:nth-child(2n) {
  border-right: 0;
}

.ct-facts.ct-facts--pulse > div:nth-child(n + 3) {
  border-bottom: 0;
}

.ct-facts.ct-facts--pulse > div:last-child {
  border-right: 0;
}

.ct-facts.ct-facts--pulse dt {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ct-graphite);
  line-height: 1.35;
}

.ct-facts.ct-facts--pulse dd {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.45;
  max-width: none;
  font-weight: 500;
}

html.ct-js .ct-section--position .ct-position__master,
html.ct-js .ct-section--position .ct-flow,
html.ct-js .ct-section--position .ct-facts--pulse > div {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ct-ease), transform 700ms var(--ct-ease);
}

html.ct-js .ct-section--position.is-in .ct-position__master,
html.ct-js .ct-section--position.is-in .ct-flow,
html.ct-js .ct-section--position.is-in .ct-facts--pulse > div {
  opacity: 1;
  transform: none;
}

html.ct-js .ct-section--position.is-in .ct-flow { transition-delay: 100ms; }
html.ct-js .ct-section--position.is-in .ct-facts--pulse > div:nth-child(1) { transition-delay: 220ms; }
html.ct-js .ct-section--position.is-in .ct-facts--pulse > div:nth-child(2) { transition-delay: 300ms; }
html.ct-js .ct-section--position.is-in .ct-facts--pulse > div:nth-child(3) { transition-delay: 380ms; }
html.ct-js .ct-section--position.is-in .ct-facts--pulse > div:nth-child(4) { transition-delay: 460ms; }

@keyframes ct-signal-run {
  0% { left: -35%; }
  100% { left: 105%; }
}

.ct-section--muted {
  background: #eceee9;
  color: var(--ct-carbon);
}

.ct-section--carbon {
  background: var(--ct-carbon);
  color: var(--ct-signal-white);
}

.ct-split {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.ct-facts:not(.ct-facts--pulse) {
  margin: 0;
  display: grid;
  gap: 0;
}

.ct-facts:not(.ct-facts--pulse) > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--ct-concrete);
}

.ct-facts:not(.ct-facts--pulse) > div:last-child {
  border-bottom: 1px solid var(--ct-concrete);
}

.ct-facts:not(.ct-facts--pulse) dt {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ct-graphite);
}

.ct-facts:not(.ct-facts--pulse) dd {
  margin: 0;
  font-size: 16px;
  color: var(--ct-carbon);
}

.ct-promise {
  padding: 28px;
  background: rgba(22, 214, 193, 0.12);
  border: 1px solid rgba(22, 214, 193, 0.35);
}

.ct-promise__line {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ct-promise__copy {
  margin: 0;
  color: var(--ct-graphite);
}

.ct-arch__head {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.ct-arch__head .ct-label {
  margin-bottom: 18px;
}

.ct-arch__head .ct-h2,
.ct-arch__head .ct-lead {
  max-width: none;
  margin-bottom: 0;
}

.ct-arch {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0 0 28px;
}

.ct-arch__master,
.ct-arch__product {
  padding: 28px;
}

.ct-arch__master {
  background: #141414;
  border: 1px solid rgba(245, 246, 242, 0.12);
}

.ct-arch__product {
  background: var(--ct-signal-white);
  color: var(--ct-carbon);
}

.ct-arch h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.ct-arch p:last-child {
  margin: 0;
  color: inherit;
  opacity: 0.78;
}

.ct-arch__link {
  width: 2px;
  justify-self: center;
  background: var(--ct-signal-teal);
  min-height: 100%;
}

.ct-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: rgba(245, 246, 242, 0.8);
}

.ct-lockup__line {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 246, 242, 0.62);
}

.ct-lockup__pair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-lockup__by {
  flex: none;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: rgba(245, 246, 242, 0.55);
  transform: translateY(1px);
}

.ct-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ct-signal-teal);
  color: var(--ct-carbon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ct-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: stretch;
}

.ct-section--rydcast {
  --ryd-teal: #16e0d6;
  --ryd-midnight: #07121e;
  --ryd-surface: #0e1b2a;
  --ryd-border: #2a3c4f;
  --ryd-text: #f5f7fa;
  --ryd-muted: #a8b3c2;
  position: relative;
  overflow: hidden;
  background: var(--ryd-midnight);
  color: var(--ryd-text);
  padding: 110px 0;
}

.ct-rydcast-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 82% 45%, rgba(22, 224, 214, 0.14), transparent 58%),
    radial-gradient(ellipse 40% 35% at 12% 85%, rgba(26, 181, 174, 0.1), transparent 55%);
  pointer-events: none;
}

.ct-product-shell {
  position: relative;
  z-index: 1;
}

.ct-product__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.ct-label--ryd {
  color: var(--ryd-teal);
}

.ct-product__brand {
  margin: 0 0 28px;
}

.ct-rydcast--product {
  margin-bottom: 14px;
}

.ct-product__byline {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ryd-teal);
}

.ct-h2--ryd {
  color: var(--ryd-text);
  max-width: 22ch;
}

.ct-lead--ryd {
  color: var(--ryd-muted);
}

.ct-product__micro {
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ryd-muted);
}

.ct-list--ryd li {
  border-top-color: rgba(42, 60, 79, 0.9);
  color: var(--ryd-text);
}

.ct-list--ryd li:last-child {
  border-bottom-color: rgba(42, 60, 79, 0.9);
}

.ct-list--ryd li::before {
  background: var(--ryd-teal);
}

.ct-btn--ryd {
  align-self: flex-start;
  background: linear-gradient(180deg, #1ab5ae 0%, #128a84 100%);
  color: #07121e;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(18, 138, 132, 0.22);
}

.ct-btn--ryd:hover {
  background: linear-gradient(180deg, #22c9c1 0%, #159690 100%);
  color: #07121e;
}

.ct-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ct-list li {
  position: relative;
  padding: 14px 0 14px 18px;
  border-top: 1px solid var(--ct-concrete);
}

.ct-list li:last-child {
  border-bottom: 1px solid var(--ct-concrete);
}

.ct-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  background: var(--ct-signal-teal);
}

.ct-proof {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  align-self: center;
}

.ct-proof__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 85%, rgba(22, 224, 214, 0.16), transparent 65%),
    var(--ryd-surface);
  border: 1px solid var(--ryd-border);
  overflow: hidden;
}

.ct-proof__tile {
  min-width: 0;
  width: 100%;
  padding: 20px 22px 22px;
  border: 1px solid var(--ct-concrete);
  background: #fff;
  box-sizing: border-box;
}

.ct-proof__tile--ryd {
  position: relative;
  z-index: 1;
  background: rgba(7, 18, 30, 0.72);
  border: 1px solid rgba(42, 60, 79, 0.95);
  box-shadow: none;
}

.ct-proof__tile--live {
  animation: ct-proof-resolve 700ms var(--ct-ease) both;
}

.ct-proof__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}

.ct-proof__status {
  display: inline-block;
  color: var(--ryd-teal, #22a06b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.ct-proof__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ryd-muted);
  line-height: 1;
}

.ct-proof__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ryd-teal);
  box-shadow: 0 0 0 0 rgba(22, 224, 214, 0.55);
  animation: ct-live-ping 1.8s var(--ct-ease) infinite;
}

.ct-proof__meta {
  display: block;
  margin: 0;
  color: var(--ryd-muted, var(--ct-graphite));
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  line-height: 1.3;
}

.ct-proof__value {
  display: block;
  margin: 16px 0 6px;
  font-size: 52px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ryd-text, var(--ct-carbon));
}

.ct-proof__caption {
  display: block;
  margin: 0;
  color: var(--ryd-muted, var(--ct-graphite));
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ct-proof__wave {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 72px;
  margin: 0;
  padding: 4px 0 2px;
  filter: drop-shadow(0 0 14px rgba(22, 224, 214, 0.28));
}

.ct-proof__wave span {
  display: block;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22fff0 0%, #00bfae 100%);
  transform-origin: center bottom;
  animation: ct-wave-bar 1.15s ease-in-out infinite;
}

.ct-proof__wave span:nth-child(1),
.ct-proof__wave span:nth-child(7) {
  height: 22px;
  animation-delay: 0s;
}

.ct-proof__wave span:nth-child(2),
.ct-proof__wave span:nth-child(6) {
  height: 36px;
  animation-delay: 0.1s;
}

.ct-proof__wave span:nth-child(3),
.ct-proof__wave span:nth-child(5) {
  height: 54px;
  animation-delay: 0.2s;
}

.ct-proof__wave span:nth-child(4) {
  height: 72px;
  animation-delay: 0.3s;
}

.ct-proof__tagline {
  margin: 0;
  padding: 0 2px;
  max-width: none;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ryd-muted);
}

.ct-cast-pulse {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 36px;
}

.ct-cast-pulse span {
  width: 6px;
  background: var(--ct-signal-teal);
  animation: ct-bar 1.2s var(--ct-ease) infinite;
}

.ct-cast-pulse span:nth-child(1),
.ct-cast-pulse span:nth-child(7) { height: 10px; animation-delay: 0s; }
.ct-cast-pulse span:nth-child(2),
.ct-cast-pulse span:nth-child(6) { height: 18px; animation-delay: 0.08s; }
.ct-cast-pulse span:nth-child(3),
.ct-cast-pulse span:nth-child(5) { height: 26px; animation-delay: 0.16s; }
.ct-cast-pulse span:nth-child(4) { height: 34px; animation-delay: 0.24s; }

.ct-invest-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.ct-invest-head .ct-label {
  margin-bottom: 18px;
}

.ct-invest-head .ct-h2,
.ct-invest-head .ct-lead {
  max-width: none;
  margin-bottom: 0;
}

.ct-invest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ct-concrete);
  border: 1px solid var(--ct-concrete);
}

.ct-invest-grid article {
  padding: 28px;
  background: #f8f9f5;
}

.ct-invest-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.ct-invest-grid p {
  margin: 0;
  color: var(--ct-graphite);
}

.ct-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ct-form {
  display: grid;
  gap: 14px;
}

.ct-form label {
  display: grid;
  gap: 6px;
}

.ct-form span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 246, 242, 0.62);
}

.ct-form input,
.ct-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(245, 246, 242, 0.18);
  border-radius: 0;
  background: #141414;
  color: var(--ct-signal-white);
  font: inherit;
}

.ct-form input:focus,
.ct-form textarea:focus {
  outline: 1px solid var(--ct-signal-teal);
  border-color: var(--ct-signal-teal);
}

.ct-form__status {
  min-height: 1.2em;
  margin: 0;
  color: var(--ct-signal-teal);
  font-size: 14px;
}

.ct-footer {
  padding: 64px 0 32px;
  background: #050505;
  border-top: 1px solid rgba(245, 246, 242, 0.08);
}

.ct-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.ct-footer__brand p {
  margin: 14px 0 0;
  max-width: 28ch;
  color: rgba(245, 246, 242, 0.62);
}

.ct-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ct-footer__cols a {
  display: block;
  margin-top: 10px;
  color: rgba(245, 246, 242, 0.78);
}

.ct-footer__cols a:hover {
  color: var(--ct-signal-teal);
}

.ct-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 246, 242, 0.08);
  color: rgba(245, 246, 242, 0.45);
  font-size: 12px;
}

.ct-footer__base p {
  margin: 0;
}

/* Progressive enhancement: only hide for motion when JS has marked the page. */
html.ct-js [data-ct-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ct-ease), transform 700ms var(--ct-ease);
}

html.ct-js [data-ct-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes ct-route-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes ct-pulse-in {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ct-proof-resolve {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes ct-live-ping {
  0% { box-shadow: 0 0 0 0 rgba(22, 224, 214, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(22, 224, 214, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 224, 214, 0); }
}

@keyframes ct-wave-breathe {
  0%, 100% { transform: scaleY(1); opacity: 0.88; }
  50% { transform: scaleY(1.06); opacity: 1; }
}

@keyframes ct-wave-bar {
  0%, 100% { transform: scaleY(0.55); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes ct-bar {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-ct-reveal],
  html.ct-js .ct-section--position .ct-position__master,
  html.ct-js .ct-section--position .ct-flow,
  html.ct-js .ct-section--position .ct-facts--pulse > div,
  html.ct-js .ct-what .ct-card,
  html.ct-js .ct-how .ct-how__rail > li,
  html.ct-js .ct-how .ct-how-stage__layers li {
    opacity: 1;
    transform: none;
  }
}


/* —— Homepage pilot teaser (full-bleed scene) —— */
.ct-pilot-teaser.ct-hero--pilot {
  min-height: 0;
  padding-top: 72px;
  padding-bottom: 48px;
}

.ct-pilot-teaser .ct-hero__line {
  max-width: 16ch;
  text-transform: none;
  letter-spacing: -0.03em;
  font-size: clamp(26px, 4.2vw, 40px);
}

.ct-pilot-teaser .ct-hero__support {
  max-width: 42ch;
}

.ct-validate--home {
  border-top: 1px solid rgba(245, 246, 242, 0.06);
}

/* —— Pilot proof / map / partners / dash / timeline —— */
.ct-pilot-proof__head,
.ct-case-output__head {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1.15fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.ct-pilot-proof__head .ct-label,
.ct-case-output__head .ct-label {
  margin-bottom: 18px;
}

.ct-pilot-proof__head .ct-h2,
.ct-pilot-proof__head .ct-lead,
.ct-case-output__head .ct-h2,
.ct-case-output__head .ct-lead {
  max-width: none;
  margin-bottom: 0;
}

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

.ct-pilot-proof-grid article,
.ct-case-grid article {
  min-height: 190px;
  padding: 22px 20px;
  border: 1px solid rgba(245, 246, 242, 0.1);
}

.ct-pilot-proof-grid article {
  background: #121416;
}

.ct-case-grid article {
  background: rgba(255, 255, 255, 0.72);
}

.ct-pilot-proof-grid h3,
.ct-case-grid h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
}

.ct-pilot-proof-grid h3 {
  color: var(--ct-signal-white);
}

.ct-case-grid h3 {
  color: var(--ct-deep-teal);
}

.ct-pilot-proof-grid p,
.ct-case-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.ct-pilot-proof-grid p {
  color: rgba(245, 246, 242, 0.72);
}

.ct-case-grid p {
  color: var(--ct-graphite);
}

.ct-pilot-map__grid,
.ct-pilot-partners__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.ct-pilot-map__visual {
  margin: 28px 0 0;
  position: relative;
  border: 1px solid rgba(245, 246, 242, 0.1);
}

.ct-pilot-map__visual img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}

.ct-pilot-map__pins {
  list-style: none;
  margin: 0;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #101214;
  border-top: 1px solid rgba(245, 246, 242, 0.08);
}

.ct-pilot-map__pins li {
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ct-signal-teal);
  border: 1px solid rgba(22, 214, 193, 0.35);
}

.ct-objectives {
  padding: 28px 24px;
  background: #121416;
  border: 1px solid rgba(245, 246, 242, 0.1);
}

.ct-objectives h3 {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ct-signal-teal);
}

.ct-objectives ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ct-objectives li {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245, 246, 242, 0.78);
}

.ct-objectives li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ct-signal-teal);
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  background: transparent;
  border-radius: 2px;
}

.ct-objectives li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 9px;
  height: 6px;
  border-left: 2px solid var(--ct-signal-teal);
  border-bottom: 2px solid var(--ct-signal-teal);
  transform: translateY(-58%) rotate(-45deg);
  transform-origin: center;
}

.ct-partner-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ct-partner-points li {
  padding: 14px 0;
  border-top: 1px solid rgba(245, 246, 242, 0.1);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 246, 242, 0.72);
}

.ct-partner-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ct-signal-white);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ct-partner-cta {
  padding: 28px 24px;
  background: #121416;
  border: 1px solid rgba(22, 214, 193, 0.35);
}

.ct-partner-cta__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ct-signal-teal);
}

.ct-partner-cta h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.ct-partner-cta p {
  margin: 0 0 20px;
  color: rgba(245, 246, 242, 0.68);
}

.ct-pilot-measurement__head {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1.15fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}

.ct-pilot-measurement__head .ct-label {
  margin-bottom: 18px;
}

.ct-pilot-measurement__head .ct-h2,
.ct-pilot-measurement__head .ct-lead {
  max-width: none;
  margin-bottom: 0;
}

.ct-pilot-measurement__body {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
  gap: 14px;
  align-items: stretch;
}

.ct-dash {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
  background: rgba(8, 12, 16, 0.92);
  border: 1px solid rgba(42, 60, 79, 0.9);
}

.ct-dash__stat {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 246, 242, 0.08);
}

.ct-dash__stat span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 246, 242, 0.5);
}

.ct-dash__stat strong {
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--ct-signal-white);
}

.ct-pilot-measurement .ct-dash__stat strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.ct-pilot-measurement .ct-dash {
  height: 100%;
  margin-top: 0;
}

.ct-dash__chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 96px;
  padding: 12px 8px 0;
  border-top: 1px solid rgba(245, 246, 242, 0.08);
}

.ct-dash__chart span {
  flex: 1;
  background: linear-gradient(180deg, #16d6c1, rgba(22, 214, 193, 0.2));
  border-radius: 2px 2px 0 0;
}

.ct-dash__chart span:nth-child(1) { height: 28%; }
.ct-dash__chart span:nth-child(2) { height: 42%; }
.ct-dash__chart span:nth-child(3) { height: 36%; }
.ct-dash__chart span:nth-child(4) { height: 58%; }
.ct-dash__chart span:nth-child(5) { height: 48%; }
.ct-dash__chart span:nth-child(6) { height: 72%; }
.ct-dash__chart span:nth-child(7) { height: 64%; }
.ct-dash__chart span:nth-child(8) { height: 80%; }
.ct-dash__chart span:nth-child(9) { height: 70%; }
.ct-dash__chart span:nth-child(10) { height: 88%; }
.ct-dash__chart span:nth-child(11) { height: 76%; }
.ct-dash__chart span:nth-child(12) { height: 92%; }

.ct-measure-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ct-pilot-measurement .ct-measure-list {
  margin: 0;
}

.ct-measure-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px 16px 64px;
  border: 1px solid rgba(245, 246, 242, 0.1);
  background: #121416;
  color: rgba(245, 246, 242, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.ct-measure-list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ct-signal-teal);
  background: rgba(22, 214, 193, 0.16);
  transform: translateY(-50%);
  transform-origin: center;
}

.ct-measure-list li::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--ct-signal-teal);
  border-bottom: 2px solid var(--ct-signal-teal);
  transform: translateY(-62%) rotate(-45deg);
  transform-origin: center;
}

.ct-timeline {
  list-style: none;
  margin: 40px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid rgba(11, 11, 11, 0.12);
}

.ct-timeline li {
  position: relative;
  padding-top: 18px;
  font-size: 14px;
  color: var(--ct-graphite);
}

.ct-timeline li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ct-signal-teal);
}

.ct-timeline span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ct-deep-teal);
}

.ct-cta__contact {
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--ct-signal-teal);
}

.ct-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(245, 246, 242, 0.18);
  border-radius: 0;
  background: #141414;
  color: var(--ct-signal-white);
  font: inherit;
}


@media (max-width: 900px) {
  .ct-header__nav {
    display: none;
  }

  .ct-how__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ct-how__rail::before {
    left: 12px;
  }

  .ct-how__rail > li {
    grid-template-columns: 28px 32px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 11px 0;
  }

  .ct-how__rail > li:not(:last-child)::after {
    left: 10px;
  }

  .ct-how__n {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }

  .ct-how__icon {
    width: 32px;
    height: 32px;
  }

  .ct-how__icon svg {
    width: 16px;
    height: 16px;
  }

  .ct-how__stage {
    height: auto;
  }

  .ct-how-stage__layers {
    flex: none;
  }

  .ct-how-stage__layers li {
    grid-template-columns: 20px 26px minmax(0, 1fr) auto;
    gap: 8px;
    flex: none;
    min-height: 0;
    padding: 12px 10px;
  }

  .ct-how-stage__status em {
    display: none;
  }

  .ct-what__grid,
  .ct-how__layout {
    grid-template-columns: 1fr;
  }

  .ct-validate__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .ct-validate__items li > span:last-child {
    min-height: 0;
  }

  .ct-pilot-proof-grid,
  .ct-case-grid,
  .ct-pilot-proof__head,
  .ct-case-output__head,
  .ct-pilot-map__grid,
  .ct-pilot-partners__grid,
  .ct-pilot-measurement__head,
  .ct-pilot-measurement__body,
  .ct-dash,
  .ct-measure-list,
  .ct-timeline {
    grid-template-columns: 1fr;
  }

  .ct-pilot-measurement__head {
    gap: 18px;
    align-items: start;
  }

  .ct-pilot-proof__head,
  .ct-case-output__head {
    gap: 18px;
    align-items: start;
  }

  .ct-card {
    padding: 20px 18px 22px;
  }

  .ct-card__icon {
    width: 48px;
    height: 48px;
  }

  .ct-card__icon svg {
    width: 26px;
    height: 26px;
  }


  .ct-hero--pilot {
    align-items: flex-end;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .ct-hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ct-what__grid,
  .ct-split,
  .ct-arch__head,
  .ct-arch,
  .ct-product,
  .ct-cta__grid,
  .ct-footer__inner,
  .ct-invest-head,
  .ct-invest-grid,
  .ct-position__intro,
  .ct-flow__head,
  .ct-flow__steps,
  .ct-facts--pulse {
    grid-template-columns: 1fr;
  }

  .ct-arch__link {
    width: 100%;
    height: 2px;
    min-height: 0;
  }

  .ct-arch__head {
    gap: 18px;
    align-items: start;
  }

  .ct-invest-head {
    gap: 18px;
    align-items: start;
  }

  .ct-facts:not(.ct-facts--pulse) > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ct-flow {
    padding: 24px 22px 20px;
  }

  .ct-flow__steps {
    gap: 22px 0;
  }

  .ct-flow__step:not(:last-child)::after {
    display: none;
  }

  .ct-flow__step:not(:last-child) {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(245, 246, 242, 0.1);
  }

  .ct-facts.ct-facts--pulse > div {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 28px 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 11, 11, 0.1);
  }

  .ct-facts.ct-facts--pulse > div:nth-child(n + 3) {
    border-bottom: 1px solid rgba(11, 11, 11, 0.1);
  }

  .ct-facts.ct-facts--pulse > div:last-child {
    border-bottom: 0;
  }

  .ct-position__intro-brand {
    justify-self: start;
    text-align: left;
    max-width: none;
  }

  .ct-logo--position {
    margin-left: 0;
  }

  .ct-position__master {
    max-width: 14ch;
  }

  .ct-section--position {
    padding: 80px 0;
  }

  .ct-hero {
    align-items: center;
    padding-top: 96px;
  }

  .ct-proof {
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
  }

  .ct-proof__stage {
    min-height: 0;
  }

  .cast-tech-elementor-page img.ct-rydcast--product,
  img.ct-rydcast--product {
    height: 40px;
  }

  .ct-section--rydcast {
    padding: 88px 0;
  }
}

@media (max-width: 560px) {
  .ct-validate__items {
    grid-template-columns: 1fr;
  }
}
