/* =========================================================
   WebsDocs RTD Product Hero
   Full-width editorial composition
========================================================= */

.rtd-product-hero {
  --rtd-hero-ink: #111827;
  --rtd-hero-muted: #637083;
  --rtd-hero-blue: #214f83;
  --rtd-hero-blue-dark: #163859;
  --rtd-hero-blue-soft: #dfeaf5;
  --rtd-hero-line: rgba(63, 84, 110, 0.2);
  --rtd-hero-paper: #f8f7f3;
  --rtd-hero-white: #ffffff;

  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding:
    clamp(40px, 4vw, 76px)
    clamp(22px, 5vw, 108px)
    0;

  color: var(--rtd-hero-ink);
  background:
    radial-gradient(
      circle at 80% 16%,
      rgba(78, 118, 165, 0.13),
      transparent 34rem
    ),
    linear-gradient(
      135deg,
      #fbfaf7 0%,
      #f7f7f4 47%,
      #edf3f8 100%
    );
}

.rtd-product-hero *,
.rtd-product-hero *::before,
.rtd-product-hero *::after {
  box-sizing: border-box;
}

/* Ambient background */

.rtd-product-hero__ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.rtd-product-hero__ambient::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(57, 82, 112, 0.13) 18%,
      rgba(57, 82, 112, 0.13) 82%,
      transparent
    );
}

.rtd-product-hero__ambient-line {
  position: absolute;
  top: 21%;
  left: 0;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(62, 83, 108, 0.08) 14%,
      rgba(62, 83, 108, 0.08) 86%,
      transparent 100%
    );
}

.rtd-product-hero__ambient-wave {
  position: absolute;
  right: -9vw;
  bottom: 10%;
  width: min(54vw, 980px);
  aspect-ratio: 1.9;
  border: 1px solid rgba(43, 79, 118, 0.1);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.rtd-product-hero__ambient-wave::before,
.rtd-product-hero__ambient-wave::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(43, 79, 118, 0.08);
  border-radius: inherit;
}

.rtd-product-hero__ambient-wave::before {
  inset: 13%;
}

.rtd-product-hero__ambient-wave::after {
  inset: 27%;
}

/* Top identification */

.rtd-product-hero__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rtd-product-hero__eyebrow,
.rtd-product-hero__edition {
  margin: 0;
  text-transform: uppercase;
}

.rtd-product-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #315d8e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.rtd-product-hero__eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.rtd-product-hero__edition {
  color: #788494;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

/* Main headline */

.rtd-product-hero__statement {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(50px, 6vw, 108px);
}

.rtd-product-hero h1 {
  width: min(92%, 1680px);
  margin: 0;
  color: var(--rtd-hero-ink);
  font-size: clamp(66px, 8.1vw, 164px);
  font-weight: 790;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-wrap: balance;
}

.rtd-product-hero h1 span {
  display: block;
  margin-left: clamp(6%, 10vw, 190px);
  color: #315d8d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.06em;
}

/* Supporting content */

.rtd-product-hero__support {
  position: relative;
  z-index: 3;
  width: min(540px, 38vw);
  margin:
    clamp(42px, 5vw, 82px)
    clamp(3%, 8vw, 170px)
    0
    auto;
}

.rtd-product-hero__support > p:first-child {
  margin: 0;
  color: var(--rtd-hero-muted);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.72;
}

.rtd-product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rtd-product-hero__button {
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: var(--rtd-hero-ink);
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.rtd-product-hero__button:hover {
  transform: translateY(-2px);
}

.rtd-product-hero__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rtd-product-hero__button--primary {
  color: #fff;
  background: var(--rtd-hero-blue-dark);
  border-color: var(--rtd-hero-blue-dark);
  box-shadow:
    0 15px 34px rgba(22, 56, 89, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rtd-product-hero__button--primary:hover {
  background: #102e4d;
  border-color: #102e4d;
  box-shadow:
    0 19px 42px rgba(22, 56, 89, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rtd-product-hero__button--secondary {
  color: #283c53;
  background: rgba(255, 255, 255, 0.64);
  border-color: #c9d3de;
}

.rtd-product-hero__button--secondary:hover {
  background: #fff;
  border-color: #9eafc0;
}

.rtd-product-hero__billing {
  margin: 16px 0 0;
  color: #7b8795;
  font-size: 11px;
  line-height: 1.5;
}

/* Continuous product experience */

.rtd-product-hero__experience {
  position: relative;
  z-index: 2;
  width: calc(100% + (clamp(22px, 5vw, 108px) * 2));
  min-height: clamp(250px, 23vw, 410px);
  margin:
    clamp(56px, 7vw, 120px)
    calc(clamp(22px, 5vw, 108px) * -1)
    0;

  display: grid;
  grid-template-columns:
    minmax(290px, 0.85fr)
    minmax(420px, 1.4fr)
    minmax(310px, 0.9fr);
  align-items: stretch;

  border-top: 1px solid var(--rtd-hero-line);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.58),
      rgba(225, 234, 243, 0.58)
    );
}

.rtd-product-hero__visitor,
.rtd-product-hero__voice,
.rtd-product-hero__continuity {
  min-width: 0;
  padding:
    clamp(38px, 4vw, 72px)
    clamp(26px, 4vw, 80px);
}

.rtd-product-hero__visitor {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--rtd-hero-line);
}

.rtd-product-hero__visitor span {
  color: #738093;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rtd-product-hero__visitor strong {
  max-width: 460px;
  color: #24364b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.1vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.rtd-product-hero__voice {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rtd-hero-line);
}

.rtd-product-hero__voice-track {
  height: clamp(95px, 10vw, 170px);
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.45vw, 9px);
  overflow: hidden;
}

.rtd-product-hero__voice-track i {
  width: clamp(3px, 0.26vw, 5px);
  height: var(--height);
  min-height: 8px;
  flex: 1 1 auto;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #6388b1 0%,
      #234e7b 100%
    );
  opacity: 0.78;
  animation: rtdHeroVoice 2.2s ease-in-out infinite;
}

.rtd-product-hero__voice-track i:nth-child(3n + 1) {
  animation-delay: 120ms;
}

.rtd-product-hero__voice-track i:nth-child(3n + 2) {
  animation-delay: 260ms;
}

.rtd-product-hero__voice-track i:nth-child(3n) {
  animation-delay: 390ms;
}

.rtd-product-hero__voice-label {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.rtd-product-hero__voice-label span {
  color: #274e77;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rtd-product-hero__voice-label small {
  color: #7a8795;
  font-size: 10px;
}

.rtd-product-hero__continuity {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rtd-product-hero__continuity-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #416075;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rtd-product-hero__continuity-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14936b;
  box-shadow: 0 0 0 6px rgba(20, 147, 107, 0.1);
}

.rtd-product-hero__continuity strong {
  max-width: 430px;
  margin-top: 25px;
  color: #1d344c;
  font-size: clamp(24px, 2vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.rtd-product-hero__continuity p {
  max-width: 430px;
  margin: 16px 0 0;
  color: #6f7d8d;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.65;
}

/* Bottom product index */

.rtd-product-hero__footer {
  width: calc(100% + (clamp(22px, 5vw, 108px) * 2));
  margin:
    0
    calc(clamp(22px, 5vw, 108px) * -1);

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));

  border-top: 1px solid var(--rtd-hero-line);
  border-bottom: 1px solid var(--rtd-hero-line);
  background: rgba(255, 255, 255, 0.7);
}

.rtd-product-hero__footer > div {
  min-width: 0;
  padding:
    clamp(22px, 2.4vw, 40px)
    clamp(18px, 2.5vw, 44px);
  border-right: 1px solid var(--rtd-hero-line);
}

.rtd-product-hero__footer > div:last-child {
  border-right: 0;
}

.rtd-product-hero__footer span,
.rtd-product-hero__footer strong {
  display: block;
}

.rtd-product-hero__footer span {
  color: #738194;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-product-hero__footer strong {
  margin-top: 7px;
  color: #29425e;
  font-size: clamp(11px, 0.92vw, 16px);
  line-height: 1.45;
}

.rtd-product-hero__footer small {
  margin-top: 6px;
  color: #7d8998;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
}

/* Motion */

@keyframes rtdHeroVoice {
  0%,
  100% {
    transform: scaleY(0.68);
    opacity: 0.52;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.92;
  }
}

/* Medium screens */

@media (max-width: 1180px) {
  .rtd-product-hero h1 {
    width: 100%;
    font-size: clamp(64px, 9vw, 112px);
  }

  .rtd-product-hero__support {
    width: min(620px, 56vw);
  }

  .rtd-product-hero__experience {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .rtd-product-hero__continuity {
    grid-column: 1 / -1;
    min-height: 250px;
    border-top: 1px solid var(--rtd-hero-line);
  }

  .rtd-product-hero__visitor {
    border-right: 1px solid var(--rtd-hero-line);
  }

  .rtd-product-hero__voice {
    border-right: 0;
  }

  .rtd-product-hero__footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rtd-product-hero__footer > div:nth-child(3) {
    border-right: 0;
  }

  .rtd-product-hero__footer > div:nth-child(n + 4) {
    border-top: 1px solid var(--rtd-hero-line);
  }
}

/* Mobile */

@media (max-width: 760px) {
  .rtd-product-hero {
    min-height: auto;
    padding:
      34px
      16px
      0;
  }

  .rtd-product-hero__header {
    align-items: flex-start;
  }

  .rtd-product-hero__edition {
    display: none;
  }

  .rtd-product-hero__eyebrow {
    align-items: flex-start;
    font-size: 8px;
    line-height: 1.55;
  }

  .rtd-product-hero__statement {
    margin-top: 54px;
  }

  .rtd-product-hero h1 {
    width: 100%;
    font-size: clamp(50px, 15.5vw, 78px);
    line-height: 0.94;
  }

  .rtd-product-hero h1 span {
    margin-top: 8px;
    margin-left: 0;
  }

  .rtd-product-hero__support {
    width: 100%;
    margin: 40px 0 0;
  }

  .rtd-product-hero__support > p:first-child {
    font-size: 16px;
  }

  .rtd-product-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rtd-product-hero__button {
    width: 100%;
  }

  .rtd-product-hero__experience {
    width: calc(100% + 32px);
    margin:
      58px
      -16px
      0;
    grid-template-columns: 1fr;
  }

  .rtd-product-hero__visitor,
  .rtd-product-hero__voice,
  .rtd-product-hero__continuity {
    min-height: 245px;
    padding: 34px 22px;
    border-right: 0;
  }

  .rtd-product-hero__visitor,
  .rtd-product-hero__voice {
    border-bottom: 1px solid var(--rtd-hero-line);
  }

  .rtd-product-hero__visitor strong {
    margin-top: 46px;
  }

  .rtd-product-hero__continuity {
    grid-column: auto;
    border-top: 0;
  }

  .rtd-product-hero__footer {
    width: calc(100% + 32px);
    margin: 0 -16px;
    grid-template-columns: 1fr;
  }

  .rtd-product-hero__footer > div {
    border-right: 0;
    border-bottom: 1px solid var(--rtd-hero-line);
  }

  .rtd-product-hero__footer > div:nth-child(n + 4) {
    border-top: 0;
  }

  .rtd-product-hero__footer > div:last-child {
    border-bottom: 0;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .rtd-product-hero *,
  .rtd-product-hero *::before,
  .rtd-product-hero *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   WebsDocs RTD Product Introduction
   Full-width, border-to-border, scalable through 8K
========================================================= */

.rtd-product-intro {
  --rtd-intro-ink: #101828;
  --rtd-intro-muted: #677487;
  --rtd-intro-blue: #315f91;
  --rtd-intro-blue-dark: #173a60;
  --rtd-intro-line: rgba(69, 89, 115, 0.2);
  --rtd-intro-line-strong: rgba(55, 76, 103, 0.32);
  --rtd-intro-paper: #f8f8f5;
  --rtd-intro-white: #ffffff;

  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  color: var(--rtd-intro-ink);
  background: var(--rtd-intro-paper);
  border-top: 1px solid var(--rtd-intro-line);
  border-bottom: 1px solid var(--rtd-intro-line);
}

.rtd-product-intro *,
.rtd-product-intro *::before,
.rtd-product-intro *::after {
  box-sizing: border-box;
}

/* =========================================================
   Overview
========================================================= */

.rtd-product-intro__overview {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(220px, 18%)
    minmax(0, 82%);
  border-bottom: 1px solid var(--rtd-intro-line);
}

.rtd-product-intro__label {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(22px, 4vw, 92px);
  border-right: 1px solid var(--rtd-intro-line);
}

.rtd-product-intro__label span,
.rtd-product-intro__label p {
  display: block;
}

.rtd-product-intro__label span {
  color: rgba(49, 95, 145, 0.35);
  font-size: clamp(54px, 5vw, 112px);
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.rtd-product-intro__label p {
  margin: 24px 0 0;
  color: var(--rtd-intro-blue);
  font-size: clamp(9px, 0.65vw, 14px);
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.rtd-product-intro__statement {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(24px, 5vw, 118px)
    clamp(64px, 6vw, 132px);
}

.rtd-product-intro__statement > h2 {
  width: min(90%, 2300px);
  margin: 0;
  color: var(--rtd-intro-ink);
  font-size: clamp(44px, 4.8vw, 118px);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.99;
  text-wrap: balance;
}

.rtd-product-intro__statement > h2 em {
  display: block;
  color: var(--rtd-intro-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.rtd-product-intro__summary {
  width: min(100%, 1760px);
  margin:
    clamp(42px, 5vw, 94px)
    0
    0
    auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 116px);
}

.rtd-product-intro__summary p {
  margin: 0;
  color: var(--rtd-intro-muted);
  font-size: clamp(15px, 1.05vw, 25px);
  line-height: 1.75;
}

/* =========================================================
   Principles
========================================================= */

.rtd-product-intro__principles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--rtd-intro-line);
}

.rtd-product-intro__principle {
  min-width: 0;
  min-height: clamp(220px, 18vw, 440px);
  padding:
    clamp(34px, 4vw, 82px)
    clamp(24px, 4vw, 92px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 2vw, 50px);
  align-items: start;
  border-right: 1px solid var(--rtd-intro-line);
  background: rgba(255, 255, 255, 0.38);
}

.rtd-product-intro__principle:last-child {
  border-right: 0;
}

.rtd-product-intro__principle > span {
  color: rgba(49, 95, 145, 0.42);
  font-size: clamp(24px, 2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.rtd-product-intro__principle h3 {
  margin: 0;
  color: #1d334c;
  font-size: clamp(20px, 1.55vw, 36px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rtd-product-intro__principle p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--rtd-intro-muted);
  font-size: clamp(13px, 0.9vw, 21px);
  line-height: 1.7;
}

/* =========================================================
   Activation
========================================================= */

.rtd-product-intro__activation {
  width: 100%;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #102d4c 0%,
      #173b62 52%,
      #1d466f 100%
    );
}

.rtd-product-intro__activation-header {
  width: 100%;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(320px, 0.7fr);
  gap: clamp(42px, 7vw, 170px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.rtd-product-intro__activation-header span {
  display: block;
  color: #9fc0e1;
  font-size: clamp(9px, 0.65vw, 14px);
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rtd-product-intro__activation-header h2 {
  max-width: 1800px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 102px);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.99;
  text-wrap: balance;
}

.rtd-product-intro__activation-header > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 1vw, 23px);
  line-height: 1.75;
}

/* Activation flow */

.rtd-product-intro__steps {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.rtd-product-intro__step {
  position: relative;
  min-width: 0;
  min-height: clamp(330px, 28vw, 660px);
  padding:
    clamp(30px, 3vw, 68px)
    clamp(22px, 3vw, 64px)
    clamp(40px, 4vw, 88px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.rtd-product-intro__step:last-child {
  border-right: 0;
}

.rtd-product-intro__step::before {
  content: "";
  position: absolute;
  top: clamp(94px, 8vw, 180px);
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.rtd-product-intro__step::after {
  content: "";
  position: absolute;
  top: calc(clamp(94px, 8vw, 180px) - 4px);
  right: -4px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

.rtd-product-intro__step:last-child::after {
  display: none;
}

.rtd-product-intro__step-number {
  position: relative;
  z-index: 3;
  display: block;
  width: max-content;
  padding-right: 16px;
  color: rgba(255, 255, 255, 0.34);
  background: #173b62;
  font-size: clamp(46px, 4.2vw, 102px);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.rtd-product-intro__step-content {
  margin-top: clamp(54px, 5vw, 112px);
}

.rtd-product-intro__step-content small {
  display: block;
  color: #9fc0e1;
  font-size: clamp(8px, 0.58vw, 13px);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rtd-product-intro__step-content h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(21px, 1.55vw, 38px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rtd-product-intro__step-content p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(12px, 0.82vw, 19px);
  line-height: 1.7;
}

/* Activation footer */

.rtd-product-intro__activation-footer {
  width: 100%;
  padding:
    clamp(30px, 3vw, 66px)
    clamp(22px, 5vw, 112px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rtd-product-intro__activation-footer > p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 0.9vw, 20px);
  line-height: 1.65;
}

.rtd-product-intro__activation-footer > p span {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 800;
}

.rtd-product-intro__activation-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.rtd-product-intro__activation-footer > div span {
  color: #b7cee6;
  font-size: clamp(9px, 0.62vw, 14px);
  font-weight: 750;
  letter-spacing: 0.04em;
}

/* =========================================================
   Closing statement
========================================================= */

.rtd-product-intro__closing {
  width: 100%;
  padding:
    clamp(62px, 7vw, 152px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns:
    minmax(260px, 0.35fr)
    minmax(0, 1.65fr);
  gap: clamp(38px, 8vw, 200px);
  align-items: start;
  background: #f2f3f1;
}

.rtd-product-intro__closing p {
  margin: 0;
  color: var(--rtd-intro-blue);
  font-size: clamp(11px, 0.8vw, 18px);
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.rtd-product-intro__closing strong {
  max-width: 2400px;
  color: var(--rtd-intro-ink);
  font-size: clamp(42px, 4.6vw, 112px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

/* =========================================================
   Large and 8K displays
========================================================= */

@media (min-width: 2560px) {
  .rtd-product-intro__overview {
    grid-template-columns:
      minmax(360px, 17%)
      minmax(0, 83%);
  }

  .rtd-product-intro__statement > h2 {
    width: min(88%, 2800px);
  }

  .rtd-product-intro__summary {
    width: min(100%, 2200px);
  }
}

@media (min-width: 3840px) {
  .rtd-product-intro__overview {
    grid-template-columns:
      minmax(520px, 16%)
      minmax(0, 84%);
  }

  .rtd-product-intro__statement > h2 {
    width: min(86%, 3600px);
  }

  .rtd-product-intro__summary {
    width: min(100%, 2900px);
  }

  .rtd-product-intro__principle p,
  .rtd-product-intro__step-content p {
    max-width: 920px;
  }
}

@media (min-width: 6000px) {
  .rtd-product-intro__overview {
    grid-template-columns:
      minmax(820px, 15%)
      minmax(0, 85%);
  }

  .rtd-product-intro__statement > h2 {
    width: min(84%, 4700px);
  }

  .rtd-product-intro__summary {
    width: min(100%, 3800px);
  }

  .rtd-product-intro__activation-header h2 {
    max-width: 3000px;
  }
}

/* =========================================================
   Laptop and tablet
========================================================= */

@media (max-width: 1180px) {
  .rtd-product-intro__overview {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .rtd-product-intro__statement > h2 {
    width: 100%;
  }

  .rtd-product-intro__principles {
    grid-template-columns: 1fr;
  }

  .rtd-product-intro__principle {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-intro-line);
  }

  .rtd-product-intro__principle:last-child {
    border-bottom: 0;
  }

  .rtd-product-intro__activation-header {
    grid-template-columns: 1fr;
  }

  .rtd-product-intro__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-product-intro__step {
    min-height: 390px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .rtd-product-intro__step:nth-child(2n) {
    border-right: 0;
  }

  .rtd-product-intro__step:nth-child(2n)::after {
    display: none;
  }

  .rtd-product-intro__step:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .rtd-product-intro__activation-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .rtd-product-intro__activation-footer > div {
    justify-content: flex-start;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 760px) {
  .rtd-product-intro__overview {
    grid-template-columns: 1fr;
  }

  .rtd-product-intro__label {
    padding: 42px 16px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-intro-line);
  }

  .rtd-product-intro__label {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .rtd-product-intro__label span {
    font-size: 44px;
  }

  .rtd-product-intro__label p {
    margin: 0;
  }

  .rtd-product-intro__statement {
    padding: 48px 16px 60px;
  }

  .rtd-product-intro__statement > h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .rtd-product-intro__summary {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
  }

  .rtd-product-intro__summary p {
    font-size: 15px;
  }

  .rtd-product-intro__principle {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 34px 16px;
  }

  .rtd-product-intro__activation-header {
    padding: 52px 16px;
  }

  .rtd-product-intro__activation-header h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .rtd-product-intro__steps {
    grid-template-columns: 1fr;
  }

  .rtd-product-intro__step {
    min-height: auto;
    padding: 34px 16px 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .rtd-product-intro__step:last-child {
    grid-column: auto;
  }

  .rtd-product-intro__step::before,
  .rtd-product-intro__step::after {
    display: none;
  }

  .rtd-product-intro__step-number {
    padding-right: 0;
    background: transparent;
    font-size: 54px;
  }

  .rtd-product-intro__step-content {
    margin-top: 34px;
  }

  .rtd-product-intro__activation-footer {
    padding: 34px 16px;
  }

  .rtd-product-intro__closing {
    padding: 62px 16px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rtd-product-intro__closing strong {
    font-size: clamp(38px, 11vw, 56px);
  }
}

/* =========================================================
   Reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .rtd-product-intro *,
  .rtd-product-intro *::before,
  .rtd-product-intro *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   WebsDocs RTD Plans & Pricing
   Four full-width cards with billing toggle
========================================================= */

.rtd-pricing {
  --rtd-price-ink: #101828;
  --rtd-price-muted: #687588;
  --rtd-price-blue: #315f91;
  --rtd-price-blue-dark: #173a60;
  --rtd-price-blue-soft: #eef4fa;
  --rtd-price-line: rgba(64, 84, 110, 0.2);
  --rtd-price-paper: #f7f7f3;
  --rtd-price-white: #ffffff;
  --rtd-price-green: #14745a;

  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  color: var(--rtd-price-ink);
  background: var(--rtd-price-paper);
  border-bottom: 1px solid var(--rtd-price-line);
}

.rtd-pricing *,
.rtd-pricing *::before,
.rtd-pricing *::after {
  box-sizing: border-box;
}

/* Header */

.rtd-pricing__header {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(220px, 18%)
    minmax(0, 82%);
  border-bottom: 1px solid var(--rtd-price-line);
}

.rtd-pricing__label {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(22px, 4vw, 92px);
  border-right: 1px solid var(--rtd-price-line);
}

.rtd-pricing__label span {
  display: block;
  color: rgba(49, 95, 145, 0.34);
  font-size: clamp(54px, 5vw, 112px);
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.rtd-pricing__label p {
  margin: 24px 0 0;
  color: var(--rtd-price-blue);
  font-size: clamp(9px, 0.65vw, 14px);
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.rtd-pricing__heading {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(24px, 5vw, 118px);
}

.rtd-pricing__heading > h2 {
  max-width: 2400px;
  margin: 0;
  color: var(--rtd-price-ink);
  font-size: clamp(44px, 4.8vw, 118px);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.99;
  text-wrap: balance;
}

.rtd-pricing__heading > h2 em {
  display: block;
  color: var(--rtd-price-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.rtd-pricing__header-bottom {
  margin-top: clamp(42px, 5vw, 94px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 140px);
}

.rtd-pricing__header-bottom > p {
  max-width: 1050px;
  margin: 0;
  color: var(--rtd-price-muted);
  font-size: clamp(15px, 1.05vw, 25px);
  line-height: 1.75;
}

/* Billing toggle */

.rtd-pricing__toggle {
  flex: 0 0 auto;
  padding: 5px;
  display: flex;
  align-items: stretch;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.rtd-pricing__toggle button {
  min-width: clamp(120px, 9vw, 190px);
  min-height: 52px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  color: #627085;
  background: transparent;
  font: inherit;
  font-size: clamp(11px, 0.75vw, 15px);
  font-weight: 800;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.rtd-pricing__toggle button small {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  font-weight: 700;
  opacity: 0.74;
}

.rtd-pricing__toggle button.is-active {
  color: #ffffff;
  background: var(--rtd-price-blue-dark);
  box-shadow: 0 8px 20px rgba(23, 58, 96, 0.18);
}

/* Four pricing cards */

.rtd-pricing__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--rtd-price-line);
}

.rtd-price-card {
  min-width: 0;
  padding:
    clamp(34px, 3.4vw, 76px)
    clamp(24px, 3vw, 66px)
    clamp(42px, 4vw, 88px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rtd-price-line);
  background: rgba(255, 255, 255, 0.62);
}

.rtd-price-card:last-child {
  border-right: 0;
}

.rtd-price-card--trial {
  background:
    linear-gradient(180deg, #edf5fc 0%, #f7fafc 100%);
}

.rtd-price-card--pro {
  position: relative;
  background: #ffffff;
  box-shadow:
    inset 0 4px 0 var(--rtd-price-blue),
    0 24px 60px rgba(17, 40, 68, 0.07);
}

.rtd-price-card--enterprise {
  color: #ffffff;
  background:
    linear-gradient(150deg, #132f4e 0%, #193d63 100%);
}

.rtd-price-card__header {
  min-height: 74px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.rtd-price-card__type {
  display: block;
  color: var(--rtd-price-blue);
  font-size: clamp(8px, 0.58vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-price-card h3 {
  margin: 9px 0 0;
  color: var(--rtd-price-ink);
  font-size: clamp(24px, 2vw, 48px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.rtd-price-card--enterprise .rtd-price-card__type {
  color: #a9c6e3;
}

.rtd-price-card--enterprise h3 {
  color: #ffffff;
}

.rtd-price-card__badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(49, 95, 145, 0.24);
  border-radius: 999px;
  color: #315f91;
  background: rgba(237, 244, 251, 0.8);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Pricing amount */

.rtd-price-card__price {
  min-height: clamp(120px, 10vw, 210px);
  margin-top: clamp(26px, 3vw, 62px);
  display: flex;
  align-items: flex-end;
}

.rtd-price-card__currency {
  margin:
    0
    4px
    clamp(22px, 1.7vw, 42px)
    0;
  color: #53677e;
  font-size: clamp(18px, 1.4vw, 30px);
  font-weight: 720;
}

.rtd-price-card__price > strong {
  color: var(--rtd-price-ink);
  font-size: clamp(64px, 5vw, 124px);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.rtd-price-card__price > div {
  min-width: 0;
  margin:
    0
    0
    clamp(8px, 0.8vw, 18px)
    14px;
}

.rtd-price-card__price > div span,
.rtd-price-card__price > div small {
  display: block;
}

.rtd-price-card__price > div span {
  color: #53657a;
  font-size: clamp(11px, 0.8vw, 16px);
  font-weight: 760;
}

.rtd-price-card__price > div small {
  margin-top: 5px;
  color: #8290a0;
  font-size: clamp(8px, 0.58vw, 12px);
  line-height: 1.45;
}

.rtd-price-card--enterprise .rtd-price-card__currency,
.rtd-price-card--enterprise .rtd-price-card__price > div span {
  color: #c3d4e5;
}

.rtd-price-card--enterprise .rtd-price-card__price > strong {
  color: #ffffff;
}

.rtd-price-card--enterprise .rtd-price-card__price > div small {
  color: rgba(255, 255, 255, 0.58);
}

.rtd-price-card__description {
  min-height: clamp(90px, 7vw, 160px);
  margin: clamp(28px, 3vw, 60px) 0 0;
  padding-top: clamp(22px, 2vw, 42px);
  border-top: 1px solid var(--rtd-price-line);
  color: var(--rtd-price-muted);
  font-size: clamp(13px, 0.86vw, 19px);
  line-height: 1.7;
}

.rtd-price-card--enterprise .rtd-price-card__description {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
}

.rtd-price-card__trial-continuation {
  margin-top: 18px;
  padding: 16px;
  border-left: 3px solid #4c7bac;
  background: rgba(255, 255, 255, 0.68);
}

.rtd-price-card__trial-continuation span,
.rtd-price-card__trial-continuation strong {
  display: block;
}

.rtd-price-card__trial-continuation span {
  color: #718196;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-price-card__trial-continuation strong {
  margin-top: 7px;
  color: #274766;
  font-size: clamp(11px, 0.75vw, 16px);
  line-height: 1.55;
}

/* Feature lists */

.rtd-price-card__features {
  margin: clamp(28px, 3vw, 58px) 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.rtd-price-card__features li {
  position: relative;
  padding-left: 21px;
  color: #526176;
  font-size: clamp(11px, 0.72vw, 16px);
  line-height: 1.55;
}

.rtd-price-card__features li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--rtd-price-green);
  font-weight: 900;
}

.rtd-price-card--enterprise .rtd-price-card__features li {
  color: rgba(255, 255, 255, 0.73);
}

.rtd-price-card--enterprise .rtd-price-card__features li::before {
  color: #8ad5ba;
}

/* Buttons */

.rtd-price-card__button {
  min-height: 54px;
  margin-top: auto;
  padding: 14px 18px;
  border: 1px solid #aebdce;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #29455f;
  background: rgba(255, 255, 255, 0.76);
  font-size: clamp(11px, 0.76vw, 16px);
  font-weight: 820;
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.rtd-price-card__features + .rtd-price-card__button {
  margin-top: clamp(34px, 4vw, 82px);
}

.rtd-price-card__button:hover {
  transform: translateY(-2px);
  border-color: #718ba7;
  background: #ffffff;
}

.rtd-price-card__button--primary {
  color: #ffffff;
  border-color: var(--rtd-price-blue-dark);
  background: var(--rtd-price-blue-dark);
  box-shadow: 0 14px 32px rgba(23, 58, 96, 0.18);
}

.rtd-price-card__button--primary:hover {
  color: #ffffff;
  border-color: #102e4d;
  background: #102e4d;
}

.rtd-price-card__button--enterprise {
  color: #173653;
  border-color: #ffffff;
  background: #ffffff;
}

.rtd-price-card__button--enterprise:hover {
  color: #102d49;
  background: #eef5fb;
}

.rtd-price-card__note {
  min-height: 35px;
  margin: 14px 0 0;
  color: #808d9d;
  font-size: clamp(8px, 0.56vw, 12px);
  line-height: 1.5;
}

/* Custom quote strip */

.rtd-pricing__custom {
  width: 100%;
  padding:
    clamp(34px, 4vw, 82px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns:
    minmax(220px, 0.55fr)
    minmax(0, 1.45fr)
    auto;
  gap: clamp(30px, 5vw, 120px);
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(110deg, #0f2945 0%, #173b61 60%, #214d79 100%);
}

.rtd-pricing__custom-label span,
.rtd-pricing__custom-label small {
  display: block;
}

.rtd-pricing__custom-label span {
  color: #ffffff;
  font-size: clamp(10px, 0.72vw, 15px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-pricing__custom-label small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(9px, 0.6vw, 13px);
  line-height: 1.5;
}

.rtd-pricing__custom-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.3vw, 54px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.rtd-pricing__custom-copy p {
  max-width: 1050px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(12px, 0.82vw, 18px);
  line-height: 1.7;
}

.rtd-pricing__custom-button {
  min-width: clamp(220px, 15vw, 340px);
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(11px, 0.75vw, 16px);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.rtd-pricing__custom-button:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

/* Footnotes */

.rtd-pricing__footnotes {
  width: 100%;
  padding:
    clamp(24px, 2.5vw, 50px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 140px);
  border-top: 1px solid var(--rtd-price-line);
  background: #f1f3f3;
}

.rtd-pricing__footnotes p {
  margin: 0;
  color: #748194;
  font-size: clamp(10px, 0.7vw, 15px);
  line-height: 1.65;
}

/* 8K scaling */

@media (min-width: 3840px) {
  .rtd-pricing__header {
    grid-template-columns:
      minmax(520px, 16%)
      minmax(0, 84%);
  }

  .rtd-price-card__features {
    gap: 22px;
  }
}

@media (min-width: 6000px) {
  .rtd-pricing__header {
    grid-template-columns:
      minmax(820px, 15%)
      minmax(0, 85%);
  }
}

/* Tablet */

@media (max-width: 1280px) {
  .rtd-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-price-card:nth-child(2n) {
    border-right: 0;
  }

  .rtd-price-card:nth-child(n + 3) {
    border-top: 1px solid var(--rtd-price-line);
  }

  .rtd-pricing__custom {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .rtd-pricing__custom-button {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 980px) {
  .rtd-pricing__header {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .rtd-pricing__header-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rtd-pricing__custom {
    grid-template-columns: 1fr;
  }

  .rtd-pricing__custom-button {
    grid-column: auto;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .rtd-pricing__header {
    grid-template-columns: 1fr;
  }

  .rtd-pricing__label {
    padding: 42px 16px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-price-line);
  }

  .rtd-pricing__label span {
    font-size: 44px;
  }

  .rtd-pricing__label p {
    margin: 0;
  }

  .rtd-pricing__heading {
    padding: 48px 16px 58px;
  }

  .rtd-pricing__heading > h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .rtd-pricing__toggle {
    width: 100%;
  }

  .rtd-pricing__toggle button {
    min-width: 0;
    flex: 1 1 50%;
  }

  .rtd-pricing__grid {
    grid-template-columns: 1fr;
  }

  .rtd-price-card {
    padding: 42px 16px 54px;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-price-line);
  }

  .rtd-price-card:last-child {
    border-bottom: 0;
  }

  .rtd-price-card:nth-child(n + 3) {
    border-top: 0;
  }

  .rtd-price-card__price > strong {
    font-size: 76px;
  }

  .rtd-price-card__description {
    min-height: 0;
  }

  .rtd-pricing__custom {
    padding: 52px 16px;
  }

  .rtd-pricing__custom-button {
    width: 100%;
  }

  .rtd-pricing__footnotes {
    padding: 32px 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rtd-pricing *,
  .rtd-pricing *::before,
  .rtd-pricing *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   RTD BUSINESS FLOW
   Conversation → intent → action → visibility → handoff
   Full-width, border-to-border, scalable through 8K
========================================================= */

.rtd-business-flow {
  --rtd-flow-ink: #101928;
  --rtd-flow-muted: #68768a;
  --rtd-flow-blue: #315f91;
  --rtd-flow-blue-dark: #173a60;
  --rtd-flow-blue-deep: #102c49;
  --rtd-flow-blue-soft: #edf4fa;
  --rtd-flow-green: #14745a;
  --rtd-flow-amber: #a56616;
  --rtd-flow-red: #a44343;
  --rtd-flow-paper: #f7f7f3;
  --rtd-flow-white: #ffffff;
  --rtd-flow-line: rgba(61, 82, 108, 0.2);
  --rtd-flow-dark-line: rgba(255, 255, 255, 0.15);
  --rtd-flow-shadow: 0 28px 80px rgba(15, 37, 61, 0.12);

  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  color: var(--rtd-flow-ink);
  background: var(--rtd-flow-paper);
  border-top: 1px solid var(--rtd-flow-line);
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow *,
.rtd-business-flow *::before,
.rtd-business-flow *::after {
  box-sizing: border-box;
}

.rtd-business-flow button,
.rtd-business-flow input,
.rtd-business-flow textarea {
  font: inherit;
}

.rtd-business-flow button {
  cursor: pointer;
}

.rtd-business-flow [hidden] {
  display: none !important;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.rtd-business-flow__header {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(220px, 18%)
    minmax(0, 82%);
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__label {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(22px, 4vw, 92px);
  border-right: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__label span {
  display: block;
  color: rgba(49, 95, 145, 0.34);
  font-size: clamp(54px, 5vw, 112px);
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.rtd-business-flow__label p {
  margin: 24px 0 0;
  color: var(--rtd-flow-blue);
  font-size: clamp(9px, 0.65vw, 14px);
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.rtd-business-flow__heading {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(24px, 5vw, 118px)
    clamp(66px, 6vw, 138px);
}

.rtd-business-flow__eyebrow {
  display: block;
  margin-bottom: clamp(20px, 2vw, 42px);
  color: var(--rtd-flow-blue);
  font-size: clamp(9px, 0.66vw, 14px);
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rtd-business-flow__heading > h2 {
  max-width: 2500px;
  margin: 0;
  color: var(--rtd-flow-ink);
  font-size: clamp(44px, 4.8vw, 118px);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.99;
  text-wrap: balance;
}

.rtd-business-flow__heading > h2 em {
  display: block;
  color: var(--rtd-flow-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.rtd-business-flow__introduction {
  width: min(100%, 1780px);
  margin:
    clamp(44px, 5vw, 100px)
    0
    0
    auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 116px);
}

.rtd-business-flow__introduction p {
  margin: 0;
  color: var(--rtd-flow-muted);
  font-size: clamp(15px, 1.03vw, 24px);
  line-height: 1.75;
}

/* =========================================================
   FLOW STAGES
========================================================= */

.rtd-business-flow__stages {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--rtd-flow-line);
  background: rgba(255, 255, 255, 0.66);
}

.rtd-business-flow__stage {
  position: relative;
  min-width: 0;
  min-height: clamp(126px, 9vw, 210px);
  padding:
    clamp(24px, 2.6vw, 56px)
    clamp(18px, 2.2vw, 48px);
  border: 0;
  border-right: 1px solid var(--rtd-flow-line);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 1.3vw, 28px);
  align-items: start;
  text-align: left;
  color: var(--rtd-flow-ink);
  background: transparent;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.rtd-business-flow__stage:last-child {
  border-right: 0;
}

.rtd-business-flow__stage::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(49, 95, 145, 0.4);
  border-right: 1px solid rgba(49, 95, 145, 0.4);
  background: var(--rtd-flow-paper);
  transform: translateY(-50%) rotate(45deg);
}

.rtd-business-flow__stage:last-child::after {
  display: none;
}

.rtd-business-flow__stage > span {
  color: rgba(49, 95, 145, 0.37);
  font-size: clamp(22px, 1.7vw, 40px);
  font-weight: 820;
  letter-spacing: -0.05em;
  line-height: 1;
}

.rtd-business-flow__stage small,
.rtd-business-flow__stage strong {
  display: block;
}

.rtd-business-flow__stage small {
  color: #77869a;
  font-size: clamp(8px, 0.55vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-business-flow__stage strong {
  margin-top: 7px;
  color: #29425e;
  font-size: clamp(12px, 0.92vw, 20px);
  font-weight: 760;
  line-height: 1.3;
}

.rtd-business-flow__stage:hover,
.rtd-business-flow__stage:focus-visible {
  background: #f2f6fa;
}

.rtd-business-flow__stage.is-active {
  color: #ffffff;
  background: var(--rtd-flow-blue-dark);
  box-shadow: inset 0 -4px 0 #8bb6df;
}

.rtd-business-flow__stage.is-active::after {
  border-color: rgba(255, 255, 255, 0.55);
  background: var(--rtd-flow-blue-dark);
}

.rtd-business-flow__stage.is-active > span {
  color: rgba(255, 255, 255, 0.42);
}

.rtd-business-flow__stage.is-active small {
  color: #a9c6e3;
}

.rtd-business-flow__stage.is-active strong {
  color: #ffffff;
}

/* =========================================================
   MAIN EXPERIENCE
========================================================= */

.rtd-business-flow__experience {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(300px, 0.7fr)
    minmax(0, 1.05fr);
  border-bottom: 1px solid var(--rtd-flow-line);
  background: #eef1f3;
}

.rtd-business-flow__visitor,
.rtd-business-flow__orchestration,
.rtd-business-flow__dashboard {
  min-width: 0;
  min-height: clamp(720px, 58vw, 1380px);
}

.rtd-business-flow__visitor,
.rtd-business-flow__dashboard {
  background: #ffffff;
}

.rtd-business-flow__visitor {
  border-right: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__orchestration {
  border-right: 1px solid var(--rtd-flow-line);
  color: #ffffff;
  background:
    linear-gradient(
      155deg,
      #102c49 0%,
      #173b61 54%,
      #1d476f 100%
    );
}

.rtd-business-flow__panel-header {
  min-height: clamp(98px, 8vw, 180px);
  padding:
    clamp(24px, 2.7vw, 58px)
    clamp(22px, 3vw, 66px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__panel-header span {
  display: block;
  color: #7b899a;
  font-size: clamp(8px, 0.58vw, 13px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-business-flow__panel-header h3 {
  margin: 8px 0 0;
  color: var(--rtd-flow-ink);
  font-size: clamp(21px, 1.65vw, 38px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.rtd-business-flow__status {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(20, 116, 90, 0.2);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 116, 90, 0.07);
}

.rtd-business-flow__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1c936e;
  box-shadow: 0 0 0 5px rgba(28, 147, 110, 0.1);
}

.rtd-business-flow__status span {
  color: var(--rtd-flow-green);
  font-size: clamp(8px, 0.55vw, 12px);
  letter-spacing: 0;
  text-transform: none;
}

/* Visitor identity */

.rtd-business-flow__visitor-profile {
  padding:
    clamp(22px, 2.2vw, 48px)
    clamp(22px, 3vw, 66px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--rtd-flow-line);
  background: #f8fafb;
}

.rtd-business-flow__agent-avatar {
  width: clamp(42px, 3.4vw, 74px);
  height: clamp(42px, 3.4vw, 74px);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(145deg, #2f6497 0%, #173b61 100%);
  font-size: clamp(11px, 0.8vw, 17px);
  font-weight: 850;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 26px rgba(23, 58, 96, 0.18);
}

.rtd-business-flow__visitor-profile strong,
.rtd-business-flow__visitor-profile span {
  display: block;
}

.rtd-business-flow__visitor-profile strong {
  color: #263d58;
  font-size: clamp(12px, 0.9vw, 19px);
  font-weight: 780;
}

.rtd-business-flow__visitor-profile span {
  margin-top: 4px;
  color: #8390a0;
  font-size: clamp(9px, 0.64vw, 13px);
}

.rtd-business-flow__visitor-profile > button {
  padding: 9px 12px;
  border: 1px solid #cad5e1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #34516d;
  background: #ffffff;
  font-weight: 760;
}

.rtd-business-flow__visitor-profile > button span {
  margin: 0;
  color: inherit;
}

.rtd-business-flow__visitor-profile > button i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f79b6;
}

/* Visitor conversation */

.rtd-business-flow__conversation {
  min-height: clamp(420px, 33vw, 780px);
  padding:
    clamp(28px, 3vw, 66px)
    clamp(22px, 3vw, 66px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 38px);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcfd 100%
    );
}

.rtd-business-flow__message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rtd-business-flow__message > span {
  flex: 0 0 auto;
  width: clamp(34px, 2.5vw, 52px);
  height: clamp(34px, 2.5vw, 52px);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--rtd-flow-blue-dark);
  font-size: clamp(8px, 0.55vw, 12px);
  font-weight: 850;
}

.rtd-business-flow__message > div {
  max-width: 82%;
}

.rtd-business-flow__message p {
  margin: 0;
  padding:
    clamp(14px, 1.3vw, 26px)
    clamp(15px, 1.5vw, 30px);
  border: 1px solid #dbe3ea;
  border-radius: 6px 18px 18px 18px;
  color: #35475b;
  background: #f4f7f9;
  font-size: clamp(12px, 0.82vw, 18px);
  line-height: 1.65;
}

.rtd-business-flow__message small {
  display: block;
  margin-top: 8px;
  color: #8995a4;
  font-size: clamp(8px, 0.53vw, 11px);
}

.rtd-business-flow__message--visitor {
  justify-content: flex-end;
}

.rtd-business-flow__message--visitor > div {
  max-width: 78%;
}

.rtd-business-flow__message--visitor p {
  border-color: #2f608f;
  border-radius: 18px 6px 18px 18px;
  color: #ffffff;
  background: var(--rtd-flow-blue);
}

.rtd-business-flow__message--visitor small {
  text-align: right;
}

.rtd-business-flow__message ul {
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.rtd-business-flow__message li {
  padding: 7px 10px;
  border: 1px solid #cdd9e4;
  border-radius: 999px;
  color: #315578;
  background: #ffffff;
  font-size: clamp(8px, 0.55vw, 12px);
  font-weight: 720;
}

/* Visitor composer */

.rtd-business-flow__composer {
  margin:
    0
    clamp(22px, 3vw, 66px)
    clamp(28px, 3vw, 66px);
  padding: 8px;
  border: 1px solid #cbd6e1;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(25, 54, 86, 0.08);
}

.rtd-business-flow__composer > button {
  width: clamp(40px, 3vw, 58px);
  height: clamp(40px, 3vw, 58px);
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #315f91;
  background: #edf3f8;
}

.rtd-business-flow__composer > button:last-child {
  color: #ffffff;
  background: var(--rtd-flow-blue-dark);
}

.rtd-business-flow__composer-field {
  min-width: 0;
}

.rtd-business-flow__composer-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 10px;
  border: 0;
  outline: 0;
  color: var(--rtd-flow-ink);
  background: transparent;
  font-size: clamp(11px, 0.76vw, 16px);
}

/* =========================================================
   ORCHESTRATION
========================================================= */

.rtd-business-flow__orchestration {
  padding:
    clamp(30px, 3vw, 68px)
    clamp(22px, 2.6vw, 58px);
}

.rtd-business-flow__orchestration > header {
  padding-bottom: clamp(26px, 2.5vw, 52px);
  border-bottom: 1px solid var(--rtd-flow-dark-line);
}

.rtd-business-flow__orchestration > header span {
  display: block;
  color: #9fc0e1;
  font-size: clamp(8px, 0.58vw, 13px);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rtd-business-flow__orchestration > header h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 1.8vw, 42px);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.rtd-business-flow__logic {
  margin: clamp(30px, 3vw, 64px) 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.rtd-business-flow__logic li {
  min-width: 0;
  padding:
    clamp(20px, 1.8vw, 38px)
    clamp(16px, 1.6vw, 32px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  background: rgba(10, 31, 51, 0.72);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.rtd-business-flow__logic li.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.rtd-business-flow__logic li > span {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(18px, 1.3vw, 30px);
  font-weight: 820;
  letter-spacing: -0.04em;
}

.rtd-business-flow__logic strong {
  display: block;
  color: #ffffff;
  font-size: clamp(12px, 0.86vw, 18px);
  font-weight: 760;
}

.rtd-business-flow__logic p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(9px, 0.62vw, 14px);
  line-height: 1.6;
}

.rtd-business-flow__logic em {
  padding: 5px 8px;
  border: 1px solid rgba(151, 199, 233, 0.24);
  border-radius: 999px;
  color: #a9cae7;
  font-size: clamp(7px, 0.48vw, 10px);
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.rtd-business-flow__intent {
  margin-top: clamp(32px, 3.2vw, 70px);
  padding:
    clamp(22px, 2.2vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.rtd-business-flow__intent header span,
.rtd-business-flow__intent header strong {
  display: block;
}

.rtd-business-flow__intent header span {
  color: #9fc0e1;
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-business-flow__intent header strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 26px);
  line-height: 1.25;
}

.rtd-business-flow__intent dl {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.rtd-business-flow__intent dl div {
  min-width: 0;
  padding: 14px;
  background: rgba(10, 31, 51, 0.58);
}

.rtd-business-flow__intent dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(7px, 0.48vw, 10px);
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtd-business-flow__intent dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(10px, 0.7vw, 15px);
  font-weight: 720;
}

/* =========================================================
   DASHBOARD VISIBILITY
========================================================= */

.rtd-business-flow__workspace-plan {
  padding: 7px 10px;
  border: 1px solid rgba(49, 95, 145, 0.22);
  border-radius: 999px;
  color: var(--rtd-flow-blue) !important;
  background: var(--rtd-flow-blue-soft);
  letter-spacing: 0.06em !important;
}

.rtd-business-flow__dashboard-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__dashboard-tabs button {
  min-height: clamp(50px, 4vw, 84px);
  padding: 12px;
  border: 0;
  border-right: 1px solid var(--rtd-flow-line);
  color: #718095;
  background: #f8fafb;
  font-size: clamp(9px, 0.64vw, 14px);
  font-weight: 780;
}

.rtd-business-flow__dashboard-tabs button:last-child {
  border-right: 0;
}

.rtd-business-flow__dashboard-tabs button.is-active {
  color: #ffffff;
  background: var(--rtd-flow-blue-dark);
}

.rtd-business-flow__dashboard-panel {
  padding:
    clamp(28px, 3vw, 66px)
    clamp(22px, 3vw, 66px);
}

.rtd-business-flow__lead {
  border: 1px solid #d5dee7;
  background: #ffffff;
  box-shadow: var(--rtd-flow-shadow);
}

.rtd-business-flow__lead > header {
  padding:
    clamp(20px, 2vw, 42px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rtd-flow-line);
  background: #f7f9fb;
}

.rtd-business-flow__lead > header span {
  display: block;
  color: var(--rtd-flow-blue);
  font-size: clamp(8px, 0.55vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-business-flow__lead h4 {
  margin: 8px 0 0;
  color: #223a55;
  font-size: clamp(20px, 1.5vw, 34px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rtd-business-flow__lead > header em {
  padding: 7px 10px;
  border: 1px solid rgba(20, 116, 90, 0.2);
  border-radius: 999px;
  color: var(--rtd-flow-green);
  background: rgba(20, 116, 90, 0.07);
  font-size: clamp(8px, 0.54vw, 11px);
  font-style: normal;
  font-weight: 800;
}

.rtd-business-flow__lead dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rtd-business-flow__lead dl div {
  min-width: 0;
  padding:
    clamp(18px, 1.7vw, 34px)
    clamp(18px, 1.8vw, 38px);
  border-right: 1px solid var(--rtd-flow-line);
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__lead dl div:nth-child(2n) {
  border-right: 0;
}

.rtd-business-flow__lead dl div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.rtd-business-flow__lead dt {
  color: #8793a2;
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtd-business-flow__lead dd {
  margin: 7px 0 0;
  color: #30465f;
  font-size: clamp(11px, 0.76vw, 16px);
  font-weight: 700;
  line-height: 1.4;
}

.rtd-business-flow__lead-actions {
  padding:
    clamp(18px, 1.8vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__lead-actions button {
  min-height: 48px;
  padding: 12px;
  border: 1px solid #bcc9d6;
  border-radius: 10px;
  color: #31516e;
  background: #ffffff;
  font-size: clamp(9px, 0.64vw, 14px);
  font-weight: 780;
}

.rtd-business-flow__lead-actions button:last-child {
  color: #ffffff;
  border-color: var(--rtd-flow-blue-dark);
  background: var(--rtd-flow-blue-dark);
}

/* Conversation record */

.rtd-business-flow__conversation-record {
  border: 1px solid #d5dee7;
  background: #ffffff;
}

.rtd-business-flow__conversation-record > header {
  padding:
    clamp(20px, 2vw, 42px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__conversation-record > header span,
.rtd-business-flow__conversation-record > header strong {
  display: block;
}

.rtd-business-flow__conversation-record > header span {
  color: #7e8c9e;
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtd-business-flow__conversation-record > header strong {
  margin-top: 7px;
  color: #29425d;
  font-size: clamp(14px, 1vw, 21px);
}

.rtd-business-flow__conversation-record > header em {
  color: var(--rtd-flow-green);
  font-size: clamp(9px, 0.6vw, 13px);
  font-style: normal;
  font-weight: 780;
}

.rtd-business-flow__conversation-record ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rtd-business-flow__conversation-record li {
  padding:
    clamp(18px, 1.7vw, 34px)
    clamp(20px, 2vw, 42px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__conversation-record li:last-child {
  border-bottom: 0;
}

.rtd-business-flow__conversation-record li span {
  color: #8793a2;
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 760;
}

.rtd-business-flow__conversation-record li p {
  margin: 0;
  color: #43566c;
  font-size: clamp(10px, 0.72vw, 15px);
  line-height: 1.55;
}

/* Activity */

.rtd-business-flow__activity {
  margin: 0;
  padding: 0;
  border: 1px solid #d5dee7;
  list-style: none;
  background: #ffffff;
}

.rtd-business-flow__activity li {
  padding:
    clamp(18px, 1.7vw, 34px)
    clamp(20px, 2vw, 42px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__activity li:last-child {
  border-bottom: 0;
}

.rtd-business-flow__activity i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rtd-flow-blue);
  box-shadow: 0 0 0 5px rgba(49, 95, 145, 0.1);
}

.rtd-business-flow__activity strong,
.rtd-business-flow__activity span {
  display: block;
}

.rtd-business-flow__activity strong {
  color: #30465f;
  font-size: clamp(11px, 0.76vw, 16px);
}

.rtd-business-flow__activity span {
  margin-top: 4px;
  color: #8290a0;
  font-size: clamp(8px, 0.54vw, 11px);
}

.rtd-business-flow__activity time {
  color: #8693a2;
  font-size: clamp(8px, 0.54vw, 11px);
}

/* =========================================================
   HUMAN HANDOFF
========================================================= */

.rtd-business-flow__handoff {
  width: 100%;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0f2945 0%,
      #173b61 54%,
      #1f4b77 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.rtd-business-flow__handoff-header {
  padding:
    clamp(54px, 5vw, 112px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(300px, 0.8fr);
  gap: clamp(40px, 7vw, 170px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rtd-business-flow__handoff-header span {
  display: block;
  color: #9fc0e1;
  font-size: clamp(9px, 0.65vw, 14px);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rtd-business-flow__handoff-header h3 {
  max-width: 1900px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 98px);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.rtd-business-flow__handoff-header h3 em {
  display: block;
  color: #a9c8e5;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.rtd-business-flow__handoff-header > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 0.98vw, 22px);
  line-height: 1.75;
}

.rtd-business-flow__handoff-workspace {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(250px, 0.58fr)
    minmax(0, 1.42fr)
    minmax(250px, 0.58fr);
}

.rtd-business-flow__handoff-queue,
.rtd-business-flow__handoff-thread,
.rtd-business-flow__case-controls {
  min-width: 0;
  min-height: clamp(680px, 55vw, 1320px);
}

.rtd-business-flow__handoff-queue {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 24, 40, 0.45);
}

.rtd-business-flow__handoff-queue > header,
.rtd-business-flow__case-controls > header {
  min-height: clamp(92px, 7vw, 160px);
  padding:
    clamp(22px, 2.5vw, 54px)
    clamp(20px, 2.4vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rtd-business-flow__handoff-queue > header span,
.rtd-business-flow__handoff-queue > header strong,
.rtd-business-flow__case-controls > header span,
.rtd-business-flow__case-controls > header strong {
  display: block;
}

.rtd-business-flow__handoff-queue > header span,
.rtd-business-flow__case-controls > header span {
  color: #9fc0e1;
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-business-flow__handoff-queue > header strong,
.rtd-business-flow__case-controls > header strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(14px, 1vw, 21px);
}

.rtd-business-flow__handoff-queue > header em {
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #173b61;
  background: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.rtd-business-flow__handoff-queue > button {
  position: relative;
  width: 100%;
  padding:
    clamp(20px, 2vw, 42px)
    clamp(20px, 2.4vw, 50px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: block;
  text-align: left;
  color: #ffffff;
  background: transparent;
}

.rtd-business-flow__handoff-queue > button:hover,
.rtd-business-flow__handoff-queue > button.is-active {
  background: rgba(255, 255, 255, 0.09);
}

.rtd-business-flow__handoff-queue > button.is-active {
  box-shadow: inset 4px 0 0 #8bb9df;
}

.rtd-business-flow__handoff-queue button > span,
.rtd-business-flow__handoff-queue button > strong,
.rtd-business-flow__handoff-queue button > small {
  display: block;
}

.rtd-business-flow__handoff-queue button > span {
  color: #aac9e4;
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtd-business-flow__handoff-priority {
  color: #f0c78c !important;
}

.rtd-business-flow__handoff-queue button > strong {
  margin-top: 9px;
  color: #ffffff;
  font-size: clamp(12px, 0.86vw, 18px);
  line-height: 1.35;
}

.rtd-business-flow__handoff-queue button > small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(8px, 0.53vw, 11px);
  line-height: 1.45;
}

.rtd-business-flow__handoff-queue time {
  position: absolute;
  top: clamp(20px, 2vw, 42px);
  right: clamp(20px, 2.4vw, 50px);
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(8px, 0.52vw, 11px);
}

/* Handoff thread */

.rtd-business-flow__handoff-thread {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: #f7f9fb;
  color: var(--rtd-flow-ink);
}

.rtd-business-flow__handoff-thread > header {
  min-height: clamp(92px, 7vw, 160px);
  padding:
    clamp(22px, 2.5vw, 54px)
    clamp(22px, 3vw, 66px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rtd-flow-line);
  background: #ffffff;
}

.rtd-business-flow__handoff-thread > header span {
  display: block;
  color: #7c899a;
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtd-business-flow__handoff-thread h4 {
  margin: 8px 0 0;
  color: #243c57;
  font-size: clamp(18px, 1.4vw, 32px);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.rtd-business-flow__handoff-state {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(165, 102, 22, 0.2);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rtd-flow-amber);
  background: rgba(165, 102, 22, 0.08);
}

.rtd-business-flow__handoff-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.rtd-business-flow__handoff-state span {
  color: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.rtd-business-flow__handoff-state.is-active {
  color: var(--rtd-flow-green);
  border-color: rgba(20, 116, 90, 0.2);
  background: rgba(20, 116, 90, 0.08);
}

.rtd-business-flow__handoff-state.is-resolved {
  color: var(--rtd-flow-blue);
  border-color: rgba(49, 95, 145, 0.2);
  background: rgba(49, 95, 145, 0.08);
}

.rtd-business-flow__handoff-context {
  padding:
    clamp(18px, 1.8vw, 38px)
    clamp(22px, 3vw, 66px);
  border-bottom: 1px solid var(--rtd-flow-line);
  background: #edf3f8;
}

.rtd-business-flow__handoff-context > span {
  display: block;
  color: var(--rtd-flow-blue);
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-business-flow__handoff-context ul {
  margin: 13px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.rtd-business-flow__handoff-context li {
  padding: 7px 10px;
  border: 1px solid #c8d5e1;
  border-radius: 999px;
  color: #375775;
  background: #ffffff;
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 700;
}

.rtd-business-flow__handoff-messages {
  min-height: clamp(360px, 28vw, 680px);
  padding:
    clamp(26px, 2.8vw, 60px)
    clamp(22px, 3vw, 66px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rtd-business-flow__handoff-messages article {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.rtd-business-flow__handoff-messages article > span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--rtd-flow-blue-dark);
  font-size: 9px;
  font-weight: 850;
}

.rtd-business-flow__handoff-messages article > div {
  max-width: 78%;
}

.rtd-business-flow__handoff-messages p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d6e0e8;
  border-radius: 5px 16px 16px 16px;
  color: #3e5064;
  background: #ffffff;
  font-size: clamp(11px, 0.76vw, 16px);
  line-height: 1.6;
}

.rtd-business-flow__handoff-messages small {
  display: block;
  margin-top: 7px;
  color: #8793a2;
  font-size: clamp(8px, 0.52vw, 11px);
}

.rtd-business-flow__handoff-messages .is-visitor {
  justify-content: flex-end;
}

.rtd-business-flow__handoff-messages .is-visitor > div {
  max-width: 75%;
}

.rtd-business-flow__handoff-messages .is-visitor p {
  border-color: #315f91;
  border-radius: 16px 5px 16px 16px;
  color: #ffffff;
  background: var(--rtd-flow-blue);
}

.rtd-business-flow__handoff-messages .is-visitor small {
  text-align: right;
}

.rtd-business-flow__handoff-messages .is-system {
  justify-content: center;
}

.rtd-business-flow__handoff-messages .is-system p {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: #728094;
  background: #e8edf1;
  font-size: clamp(8px, 0.54vw, 11px);
}

.rtd-business-flow__handoff-messages .is-officer > span {
  background: var(--rtd-flow-green);
}

.rtd-business-flow__officer-composer {
  margin:
    0
    clamp(22px, 3vw, 66px)
    clamp(24px, 3vw, 60px);
  padding: 10px;
  border: 1px solid #cad5df;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(20, 47, 76, 0.08);
}

.rtd-business-flow__officer-composer textarea {
  width: 100%;
  min-height: 86px;
  padding: 12px;
  border: 0;
  outline: 0;
  resize: vertical;
  color: var(--rtd-flow-ink);
  background: transparent;
  font-size: clamp(10px, 0.72vw, 15px);
  line-height: 1.55;
}

.rtd-business-flow__officer-composer > div {
  padding-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__officer-composer button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #becbd7;
  border-radius: 9px;
  color: #38546f;
  background: #ffffff;
  font-size: clamp(8px, 0.56vw, 12px);
  font-weight: 760;
}

.rtd-business-flow__officer-composer button:last-child {
  color: #ffffff;
  border-color: var(--rtd-flow-blue-dark);
  background: var(--rtd-flow-blue-dark);
}

/* Case controls */

.rtd-business-flow__case-controls {
  background: rgba(7, 24, 40, 0.38);
}

.rtd-business-flow__case-controls dl {
  margin: 0;
}

.rtd-business-flow__case-controls dl div {
  padding:
    clamp(15px, 1.5vw, 30px)
    clamp(20px, 2.4vw, 50px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rtd-business-flow__case-controls dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 750;
}

.rtd-business-flow__case-controls dd {
  margin: 0;
  color: #ffffff;
  font-size: clamp(9px, 0.62vw, 13px);
  font-weight: 720;
  text-align: right;
}

.rtd-business-flow__case-actions {
  padding:
    clamp(24px, 2.5vw, 52px)
    clamp(20px, 2.4vw, 50px);
  display: grid;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.rtd-business-flow__case-actions button {
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(8px, 0.58vw, 13px);
  font-weight: 760;
  text-align: left;
}

.rtd-business-flow__case-actions button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.rtd-business-flow__case-action--primary {
  color: #173b61 !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
}

.rtd-business-flow__case-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.rtd-business-flow__internal-note {
  margin:
    clamp(24px, 2.5vw, 52px)
    clamp(20px, 2.4vw, 50px);
  padding:
    clamp(18px, 1.8vw, 38px);
  border-left: 3px solid #91bce0;
  background: rgba(255, 255, 255, 0.07);
}

.rtd-business-flow__internal-note span {
  display: block;
  color: #a9c7e2;
  font-size: clamp(8px, 0.53vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-business-flow__internal-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(9px, 0.64vw, 14px);
  line-height: 1.6;
}

.rtd-business-flow__internal-note small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(7px, 0.48vw, 10px);
}

/* =========================================================
   OUTCOMES
========================================================= */

.rtd-business-flow__outcomes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--rtd-flow-line);
}

.rtd-business-flow__outcomes article {
  min-width: 0;
  min-height: clamp(230px, 18vw, 440px);
  padding:
    clamp(34px, 3.5vw, 78px)
    clamp(24px, 3vw, 66px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 38px);
  align-items: start;
  border-right: 1px solid var(--rtd-flow-line);
  background: rgba(255, 255, 255, 0.64);
}

.rtd-business-flow__outcomes article:last-child {
  border-right: 0;
}

.rtd-business-flow__outcomes article > span {
  color: rgba(49, 95, 145, 0.35);
  font-size: clamp(24px, 1.9vw, 44px);
  font-weight: 820;
  letter-spacing: -0.05em;
}

.rtd-business-flow__outcomes h3 {
  margin: 0;
  color: #243d58;
  font-size: clamp(19px, 1.4vw, 32px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rtd-business-flow__outcomes p {
  margin: 15px 0 0;
  color: var(--rtd-flow-muted);
  font-size: clamp(11px, 0.76vw, 17px);
  line-height: 1.68;
}

/* =========================================================
   CLOSING
========================================================= */

.rtd-business-flow__closing {
  width: 100%;
  padding:
    clamp(62px, 7vw, 152px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns:
    minmax(240px, 0.35fr)
    minmax(0, 1.65fr);
  gap: clamp(40px, 8vw, 200px);
  align-items: start;
  background: #f1f2ef;
}

.rtd-business-flow__closing > span {
  color: var(--rtd-flow-blue);
  font-size: clamp(10px, 0.72vw, 16px);
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.rtd-business-flow__closing p {
  max-width: 2500px;
  margin: 0;
  color: var(--rtd-flow-ink);
  font-size: clamp(40px, 4.3vw, 106px);
  font-weight: 690;
  letter-spacing: -0.058em;
  line-height: 1;
}

.rtd-business-flow__closing strong {
  color: var(--rtd-flow-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

/* =========================================================
   INTERACTION STATES
========================================================= */

.rtd-business-flow[data-active-stage="intent"]
.rtd-business-flow__intent {
  box-shadow:
    0 0 0 2px rgba(159, 192, 225, 0.42),
    0 24px 60px rgba(6, 21, 35, 0.24);
}

.rtd-business-flow[data-active-stage="visibility"]
.rtd-business-flow__dashboard {
  box-shadow: inset 0 4px 0 var(--rtd-flow-blue);
}

.rtd-business-flow[data-active-stage="handoff"]
.rtd-business-flow__handoff {
  box-shadow: inset 0 5px 0 #8cb8dc;
}

.rtd-business-flow.is-voice-active
.rtd-business-flow__visitor-profile > button i {
  animation: rtdFlowPulse 1.1s ease-in-out infinite;
}

.rtd-business-flow.is-case-accepted
.rtd-business-flow__handoff-state {
  color: var(--rtd-flow-green);
  border-color: rgba(20, 116, 90, 0.2);
  background: rgba(20, 116, 90, 0.08);
}

@keyframes rtdFlowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 121, 182, 0.28);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(47, 121, 182, 0);
  }
}

/* =========================================================
   8K AND LARGE DISPLAYS
========================================================= */

@media (min-width: 2560px) {
  .rtd-business-flow__header {
    grid-template-columns:
      minmax(360px, 17%)
      minmax(0, 83%);
  }

  .rtd-business-flow__experience {
    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(480px, 0.65fr)
      minmax(0, 1.08fr);
  }
}

@media (min-width: 3840px) {
  .rtd-business-flow__header {
    grid-template-columns:
      minmax(520px, 16%)
      minmax(0, 84%);
  }

  .rtd-business-flow__message > div,
  .rtd-business-flow__handoff-messages article > div {
    max-width: 74%;
  }
}

@media (min-width: 6000px) {
  .rtd-business-flow__header {
    grid-template-columns:
      minmax(820px, 15%)
      minmax(0, 85%);
  }

  .rtd-business-flow__experience {
    grid-template-columns:
      minmax(0, 1.12fr)
      minmax(700px, 0.62fr)
      minmax(0, 1.12fr);
  }
}

/* =========================================================
   LAPTOP AND TABLET
========================================================= */

@media (max-width: 1380px) {
  .rtd-business-flow__stages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rtd-business-flow__stage:nth-child(3n) {
    border-right: 0;
  }

  .rtd-business-flow__stage:nth-child(n + 4) {
    border-top: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__stage:nth-child(3)::after,
  .rtd-business-flow__stage:nth-child(6)::after {
    display: none;
  }

  .rtd-business-flow__experience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-business-flow__visitor {
    border-right: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__orchestration {
    border-right: 0;
  }

  .rtd-business-flow__dashboard {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__dashboard-panel {
    max-width: 1100px;
    margin: 0 auto;
  }

  .rtd-business-flow__handoff-workspace {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .rtd-business-flow__case-controls {
    grid-column: 1 / -1;
    min-height: auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) minmax(280px, 0.75fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .rtd-business-flow__case-controls > header {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .rtd-business-flow__case-controls dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-business-flow__case-actions {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .rtd-business-flow__internal-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px) {
  .rtd-business-flow__header {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .rtd-business-flow__introduction {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rtd-business-flow__experience {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__visitor,
  .rtd-business-flow__orchestration {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__handoff-header {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__handoff-workspace {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__handoff-queue,
  .rtd-business-flow__handoff-thread,
  .rtd-business-flow__case-controls {
    min-height: auto;
    border-right: 0;
  }

  .rtd-business-flow__handoff-queue {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rtd-business-flow__handoff-queue > header {
    grid-column: 1 / -1;
  }

  .rtd-business-flow__handoff-queue > button {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .rtd-business-flow__handoff-queue > button:last-child {
    border-right: 0;
  }

  .rtd-business-flow__case-controls {
    display: block;
  }

  .rtd-business-flow__outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-business-flow__outcomes article:nth-child(2n) {
    border-right: 0;
  }

  .rtd-business-flow__outcomes article:nth-child(n + 3) {
    border-top: 1px solid var(--rtd-flow-line);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
  .rtd-business-flow__header {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__label {
    padding: 42px 16px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-flow-line);
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .rtd-business-flow__label span {
    font-size: 44px;
  }

  .rtd-business-flow__label p {
    margin: 0;
  }

  .rtd-business-flow__heading {
    padding: 48px 16px 60px;
  }

  .rtd-business-flow__heading > h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .rtd-business-flow__introduction p {
    font-size: 15px;
  }

  .rtd-business-flow__stages {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__stage {
    min-height: auto;
    padding: 20px 16px;
    border-right: 0;
    border-top: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__stage:first-child {
    border-top: 0;
  }

  .rtd-business-flow__stage::after {
    display: none;
  }

  .rtd-business-flow__panel-header,
  .rtd-business-flow__visitor-profile,
  .rtd-business-flow__conversation,
  .rtd-business-flow__orchestration,
  .rtd-business-flow__dashboard-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rtd-business-flow__panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .rtd-business-flow__visitor-profile {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .rtd-business-flow__visitor-profile > button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .rtd-business-flow__message > div,
  .rtd-business-flow__message--visitor > div {
    max-width: 90%;
  }

  .rtd-business-flow__composer {
    margin-left: 16px;
    margin-right: 16px;
  }

  .rtd-business-flow__intent dl,
  .rtd-business-flow__lead dl {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__lead dl div {
    border-right: 0;
    border-bottom: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__lead dl div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__lead dl div:last-child {
    border-bottom: 0;
  }

  .rtd-business-flow__lead-actions {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__handoff-header {
    padding: 52px 16px;
  }

  .rtd-business-flow__handoff-header h3 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .rtd-business-flow__handoff-queue {
    display: block;
  }

  .rtd-business-flow__handoff-queue > button {
    border-right: 0;
  }

  .rtd-business-flow__handoff-thread > header,
  .rtd-business-flow__handoff-context,
  .rtd-business-flow__handoff-messages {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rtd-business-flow__handoff-thread > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .rtd-business-flow__handoff-messages article > div,
  .rtd-business-flow__handoff-messages .is-visitor > div {
    max-width: 90%;
  }

  .rtd-business-flow__officer-composer {
    margin-left: 16px;
    margin-right: 16px;
  }

  .rtd-business-flow__officer-composer > div {
    flex-direction: column;
  }

  .rtd-business-flow__case-controls dl div,
  .rtd-business-flow__case-actions {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rtd-business-flow__internal-note {
    margin-left: 16px;
    margin-right: 16px;
  }

  .rtd-business-flow__outcomes {
    grid-template-columns: 1fr;
  }

  .rtd-business-flow__outcomes article {
    min-height: auto;
    padding: 36px 16px;
    border-right: 0;
    border-top: 1px solid var(--rtd-flow-line);
  }

  .rtd-business-flow__outcomes article:first-child {
    border-top: 0;
  }

  .rtd-business-flow__closing {
    padding: 62px 16px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rtd-business-flow__closing p {
    font-size: clamp(38px, 11vw, 56px);
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.rtd-business-flow button:focus-visible,
.rtd-business-flow input:focus-visible,
.rtd-business-flow textarea:focus-visible {
  outline: 3px solid rgba(85, 150, 211, 0.46);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .rtd-business-flow *,
  .rtd-business-flow *::before,
  .rtd-business-flow *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   RTD STUDIO PRODUCT SECTION
   Full-width, border-to-border, responsive through 8K
========================================================= */

.rtd-studio-section {
  --rtd-studio-ink: #101928;
  --rtd-studio-muted: #68768a;
  --rtd-studio-blue: #315f91;
  --rtd-studio-blue-dark: #173a60;
  --rtd-studio-blue-deep: #102c49;
  --rtd-studio-blue-soft: #edf4fa;
  --rtd-studio-green: #14745a;
  --rtd-studio-amber: #a56616;
  --rtd-studio-red: #a44343;
  --rtd-studio-paper: #f7f7f3;
  --rtd-studio-white: #ffffff;
  --rtd-studio-line: rgba(61, 82, 108, 0.2);
  --rtd-studio-dark-line: rgba(255, 255, 255, 0.14);
  --rtd-studio-shadow: 0 28px 80px rgba(15, 37, 61, 0.12);

  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  color: var(--rtd-studio-ink);
  background: var(--rtd-studio-paper);
  border-top: 1px solid var(--rtd-studio-line);
  border-bottom: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section *,
.rtd-studio-section *::before,
.rtd-studio-section *::after {
  box-sizing: border-box;
}

.rtd-studio-section button,
.rtd-studio-section input,
.rtd-studio-section textarea,
.rtd-studio-section select {
  font: inherit;
}

.rtd-studio-section button {
  cursor: pointer;
}

.rtd-studio-section [hidden] {
  display: none !important;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.rtd-studio-section__header {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(220px, 18%)
    minmax(0, 82%);
  border-bottom: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__label {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(22px, 4vw, 92px);
  border-right: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__label span {
  display: block;
  color: rgba(49, 95, 145, 0.34);
  font-size: clamp(54px, 5vw, 112px);
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.rtd-studio-section__label p {
  margin: 24px 0 0;
  color: var(--rtd-studio-blue);
  font-size: clamp(9px, 0.65vw, 14px);
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.rtd-studio-section__heading {
  min-width: 0;
  padding:
    clamp(54px, 5vw, 112px)
    clamp(24px, 5vw, 118px)
    clamp(66px, 6vw, 138px);
}

.rtd-studio-section__eyebrow {
  display: block;
  margin-bottom: clamp(20px, 2vw, 42px);
  color: var(--rtd-studio-blue);
  font-size: clamp(9px, 0.66vw, 14px);
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rtd-studio-section__heading > h2 {
  max-width: 2500px;
  margin: 0;
  color: var(--rtd-studio-ink);
  font-size: clamp(44px, 4.8vw, 118px);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.99;
  text-wrap: balance;
}

.rtd-studio-section__heading > h2 em {
  display: block;
  color: var(--rtd-studio-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.rtd-studio-section__introduction {
  width: min(100%, 1780px);
  margin:
    clamp(44px, 5vw, 100px)
    0
    0
    auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 116px);
}

.rtd-studio-section__introduction p {
  margin: 0;
  color: var(--rtd-studio-muted);
  font-size: clamp(15px, 1.03vw, 24px);
  line-height: 1.75;
}

/* =========================================================
   MAIN STUDIO WORKSPACE
========================================================= */

.rtd-studio-section__workspace {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(270px, 0.62fr)
    minmax(0, 1.55fr)
    minmax(310px, 0.83fr);
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #eef1f3;
}

.rtd-studio-section__navigation,
.rtd-studio-section__editor,
.rtd-studio-section__preview {
  min-width: 0;
  min-height: clamp(820px, 70vw, 1680px);
}

/* =========================================================
   LEFT STUDIO NAVIGATION
========================================================= */

.rtd-studio-section__navigation {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  background:
    linear-gradient(
      160deg,
      #102c49 0%,
      #173b61 58%,
      #1d476f 100%
    );
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.rtd-studio-section__navigation > header {
  min-height: clamp(108px, 8vw, 186px);
  padding:
    clamp(26px, 2.7vw, 58px)
    clamp(22px, 2.6vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--rtd-studio-dark-line);
}

.rtd-studio-section__navigation > header span,
.rtd-studio-section__navigation > header strong {
  display: block;
}

.rtd-studio-section__navigation > header span {
  color: #9fc0e1;
  font-size: clamp(8px, 0.55vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-studio-section__navigation > header strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(14px, 1vw, 22px);
  line-height: 1.25;
}

.rtd-studio-section__navigation > header em {
  flex: 0 0 auto;
  width: clamp(54px, 4vw, 84px);
  height: clamp(54px, 4vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-size: clamp(12px, 0.9vw, 19px);
  font-style: normal;
  font-weight: 820;
}

.rtd-studio-section__navigation nav {
  flex: 1 1 auto;
}

.rtd-studio-section__navigation nav button {
  position: relative;
  width: 100%;
  min-height: clamp(78px, 6vw, 132px);
  padding:
    clamp(18px, 1.8vw, 38px)
    clamp(20px, 2.4vw, 50px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  text-align: left;
  color: #ffffff;
  background: transparent;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.rtd-studio-section__navigation nav button:hover,
.rtd-studio-section__navigation nav button:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.rtd-studio-section__navigation nav button.is-active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 4px 0 0 #9fc8e8;
}

.rtd-studio-section__navigation nav button > span {
  color: rgba(255, 255, 255, 0.33);
  font-size: clamp(18px, 1.3vw, 30px);
  font-weight: 820;
  letter-spacing: -0.05em;
}

.rtd-studio-section__navigation nav button strong,
.rtd-studio-section__navigation nav button small {
  display: block;
}

.rtd-studio-section__navigation nav button strong {
  color: #ffffff;
  font-size: clamp(11px, 0.78vw, 17px);
  font-weight: 760;
  line-height: 1.3;
}

.rtd-studio-section__navigation nav button small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(8px, 0.52vw, 11px);
  line-height: 1.45;
}

.rtd-studio-section__navigation nav button i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.rtd-studio-section__navigation nav button.is-active i {
  border-color: #a9cbea;
  background: #a9cbea;
  box-shadow: 0 0 0 5px rgba(169, 203, 234, 0.11);
}

.rtd-studio-section__navigation > footer {
  padding:
    clamp(24px, 2.5vw, 52px)
    clamp(20px, 2.4vw, 50px);
  border-top: 1px solid var(--rtd-studio-dark-line);
  background: rgba(5, 20, 34, 0.18);
}

.rtd-studio-section__navigation > footer > span {
  display: block;
  color: #9fc0e1;
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__progress {
  width: 100%;
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.rtd-studio-section__progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #74a9d5, #b4d4ee);
  transition: width 260ms ease;
}

.rtd-studio-section__navigation > footer small {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(8px, 0.53vw, 11px);
}

/* =========================================================
   CENTRAL EDITOR
========================================================= */

.rtd-studio-section__editor {
  border-right: 1px solid var(--rtd-studio-line);
  background: #ffffff;
}

.rtd-studio-section__editor-header {
  min-height: clamp(108px, 8vw, 186px);
  padding:
    clamp(26px, 2.7vw, 58px)
    clamp(24px, 3.3vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #f8fafb;
}

.rtd-studio-section__editor-header span {
  display: block;
  color: #7b899a;
  font-size: clamp(8px, 0.56vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-studio-section__editor-header h3 {
  margin: 8px 0 0;
  color: #263f5b;
  font-size: clamp(22px, 1.7vw, 40px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.rtd-studio-section__editor-header > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rtd-studio-section__save-state {
  padding: 8px 11px;
  border: 1px solid rgba(20, 116, 90, 0.2);
  border-radius: 999px;
  color: var(--rtd-studio-green) !important;
  background: rgba(20, 116, 90, 0.07);
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.rtd-studio-section__save-state.is-unsaved {
  color: var(--rtd-studio-amber) !important;
  border-color: rgba(165, 102, 22, 0.22);
  background: rgba(165, 102, 22, 0.08);
}

.rtd-studio-section__save-state.is-saving {
  color: var(--rtd-studio-blue) !important;
  border-color: rgba(49, 95, 145, 0.22);
  background: rgba(49, 95, 145, 0.08);
}

.rtd-studio-section__editor-header button {
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid var(--rtd-studio-blue-dark);
  border-radius: 10px;
  color: #ffffff;
  background: var(--rtd-studio-blue-dark);
  font-size: clamp(9px, 0.63vw, 14px);
  font-weight: 800;
}

.rtd-studio-section__editor-header button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

/* Editor panels */

.rtd-studio-section__panel {
  padding:
    clamp(38px, 4vw, 88px)
    clamp(24px, 3.3vw, 72px)
    clamp(54px, 5vw, 112px);
}

.rtd-studio-section__panel-intro {
  max-width: 1150px;
  padding-bottom: clamp(30px, 3vw, 66px);
  border-bottom: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__panel-intro > span {
  display: block;
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.56vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-studio-section__panel-intro h4 {
  margin: 13px 0 0;
  color: #203953;
  font-size: clamp(28px, 2.3vw, 54px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.rtd-studio-section__panel-intro p {
  max-width: 950px;
  margin: 18px 0 0;
  color: var(--rtd-studio-muted);
  font-size: clamp(13px, 0.88vw, 19px);
  line-height: 1.72;
}

/* Form fields */

.rtd-studio-section__form-grid,
.rtd-studio-section__branding-grid {
  margin-top: clamp(32px, 3.5vw, 74px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 42px);
}

.rtd-studio-section__field {
  min-width: 0;
}

.rtd-studio-section__field--wide {
  grid-column: 1 / -1;
}

.rtd-studio-section__field > span {
  display: block;
  margin-bottom: 9px;
  color: #344d68;
  font-size: clamp(9px, 0.63vw, 14px);
  font-weight: 760;
}

.rtd-studio-section__field input,
.rtd-studio-section__field textarea,
.rtd-studio-section__field select {
  width: 100%;
  border: 1px solid #cad5df;
  border-radius: 11px;
  outline: 0;
  color: #263c54;
  background: #ffffff;
  font-size: clamp(11px, 0.76vw, 16px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.rtd-studio-section__field input,
.rtd-studio-section__field select {
  min-height: clamp(48px, 3.7vw, 70px);
  padding: 0 15px;
}

.rtd-studio-section__field textarea {
  padding: 15px;
  resize: vertical;
  line-height: 1.6;
}

.rtd-studio-section__field input:focus,
.rtd-studio-section__field textarea:focus,
.rtd-studio-section__field select:focus {
  border-color: #5d8db8;
  box-shadow: 0 0 0 4px rgba(49, 95, 145, 0.1);
}

.rtd-studio-section__field small {
  display: block;
  margin-top: 8px;
  color: #8793a2;
  font-size: clamp(8px, 0.52vw, 11px);
  line-height: 1.5;
}

.rtd-studio-section__approval-note {
  margin-top: clamp(32px, 3vw, 68px);
  padding:
    clamp(20px, 2vw, 42px);
  border-left: 4px solid var(--rtd-studio-blue);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  background: var(--rtd-studio-blue-soft);
}

.rtd-studio-section__approval-note i {
  color: var(--rtd-studio-blue);
  font-size: clamp(20px, 1.5vw, 32px);
}

.rtd-studio-section__approval-note strong {
  display: block;
  color: #2c4c6c;
  font-size: clamp(12px, 0.86vw, 18px);
}

.rtd-studio-section__approval-note p {
  margin: 7px 0 0;
  color: #617287;
  font-size: clamp(10px, 0.7vw, 15px);
  line-height: 1.6;
}

/* Services */

.rtd-studio-section__item-list {
  margin-top: clamp(32px, 3.5vw, 74px);
  display: grid;
  gap: 18px;
}

.rtd-studio-section__item-list article {
  border: 1px solid #d3dde6;
  background: #ffffff;
}

.rtd-studio-section__item-list article > header {
  padding:
    clamp(20px, 2vw, 42px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #f8fafb;
}

.rtd-studio-section__item-list header span {
  display: block;
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__item-list h5 {
  margin: 8px 0 0;
  color: #28415d;
  font-size: clamp(17px, 1.3vw, 29px);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.rtd-studio-section__item-list header button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #bdcad6;
  border-radius: 8px;
  color: #31516f;
  background: #ffffff;
  font-size: clamp(8px, 0.56vw, 12px);
  font-weight: 770;
}

.rtd-studio-section__item-list article > p {
  margin: 0;
  padding:
    clamp(20px, 2vw, 42px);
  color: var(--rtd-studio-muted);
  font-size: clamp(11px, 0.76vw, 16px);
  line-height: 1.65;
}

.rtd-studio-section__item-list article > footer {
  padding:
    0
    clamp(20px, 2vw, 42px)
    clamp(20px, 2vw, 42px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rtd-studio-section__item-list footer span,
.rtd-studio-section__domain-list footer span {
  padding: 7px 10px;
  border: 1px solid #ccd8e2;
  border-radius: 999px;
  color: #42627f;
  background: #f7fafc;
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 700;
}

.rtd-studio-section__add-item {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 1px dashed #9eb0c1;
  border-radius: 10px;
  color: #315779;
  background: #f8fafb;
  font-size: clamp(10px, 0.7vw, 15px);
  font-weight: 780;
}

.rtd-studio-section__add-item i {
  margin-right: 8px;
}

/* Offers */

.rtd-studio-section__offer {
  margin-top: clamp(32px, 3.5vw, 74px);
  border: 1px solid #d3dde6;
  background: #ffffff;
  box-shadow: var(--rtd-studio-shadow);
}

.rtd-studio-section__offer > header {
  padding:
    clamp(18px, 1.8vw, 38px)
    clamp(20px, 2vw, 42px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #f8fafb;
}

.rtd-studio-section__offer > header span {
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__offer > header em {
  color: var(--rtd-studio-green);
  font-size: clamp(8px, 0.54vw, 11px);
  font-style: normal;
  font-weight: 800;
}

.rtd-studio-section__offer h5 {
  margin:
    clamp(24px, 2.4vw, 50px)
    clamp(20px, 2vw, 42px)
    0;
  color: #253f5b;
  font-size: clamp(22px, 1.7vw, 38px);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.rtd-studio-section__offer > p {
  margin: 14px clamp(20px, 2vw, 42px) 0;
  color: var(--rtd-studio-muted);
  font-size: clamp(11px, 0.76vw, 16px);
  line-height: 1.68;
}

.rtd-studio-section__offer dl {
  margin:
    clamp(26px, 2.5vw, 54px)
    0
    0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__offer dl div {
  min-width: 0;
  padding:
    clamp(18px, 1.8vw, 38px)
    clamp(20px, 2vw, 42px);
  border-right: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__offer dl div:last-child {
  border-right: 0;
}

.rtd-studio-section__offer dt {
  color: #8793a2;
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtd-studio-section__offer dd {
  margin: 7px 0 0;
  color: #334d68;
  font-size: clamp(10px, 0.72vw, 15px);
  font-weight: 700;
  line-height: 1.45;
}

/* Knowledge */

.rtd-studio-section__knowledge-list {
  margin-top: clamp(32px, 3.5vw, 74px);
  display: grid;
  gap: 16px;
}

.rtd-studio-section__knowledge-list article {
  padding:
    clamp(22px, 2.2vw, 46px);
  border: 1px solid #d3dde6;
  background: #ffffff;
}

.rtd-studio-section__knowledge-list article > span {
  display: block;
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__knowledge-list h5 {
  margin: 10px 0 0;
  color: #29415d;
  font-size: clamp(17px, 1.28vw, 29px);
  font-weight: 750;
}

.rtd-studio-section__knowledge-list p {
  margin: 13px 0 0;
  color: var(--rtd-studio-muted);
  font-size: clamp(11px, 0.76vw, 16px);
  line-height: 1.68;
}

.rtd-studio-section__knowledge-list a {
  display: inline-block;
  margin-top: 13px;
  color: var(--rtd-studio-blue);
  font-size: clamp(10px, 0.7vw, 15px);
  font-weight: 750;
  text-decoration: none;
}

/* Languages */

.rtd-studio-section__language-list {
  margin-top: clamp(32px, 3.5vw, 74px);
  display: grid;
  gap: 12px;
}

.rtd-studio-section__language-list label {
  padding:
    clamp(18px, 1.8vw, 38px)
    clamp(20px, 2vw, 42px);
  border: 1px solid #d3dde6;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  background: #ffffff;
}

.rtd-studio-section__language-list input {
  width: 20px;
  height: 20px;
  accent-color: var(--rtd-studio-blue);
}

.rtd-studio-section__language-list strong,
.rtd-studio-section__language-list small {
  display: block;
}

.rtd-studio-section__language-list strong {
  color: #2e4762;
  font-size: clamp(11px, 0.78vw, 17px);
}

.rtd-studio-section__language-list small {
  margin-top: 4px;
  color: #8491a1;
  font-size: clamp(8px, 0.53vw, 11px);
}

/* Lead questions */

.rtd-studio-section__question-list {
  margin: clamp(32px, 3.5vw, 74px) 0 0;
  padding: 0;
  border: 1px solid #d3dde6;
  list-style: none;
  background: #ffffff;
}

.rtd-studio-section__question-list li {
  padding:
    clamp(20px, 2vw, 42px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__question-list li:last-child {
  border-bottom: 0;
}

.rtd-studio-section__question-list li > span {
  color: rgba(49, 95, 145, 0.4);
  font-size: clamp(22px, 1.6vw, 36px);
  font-weight: 820;
  letter-spacing: -0.04em;
}

.rtd-studio-section__question-list strong,
.rtd-studio-section__question-list small {
  display: block;
}

.rtd-studio-section__question-list strong {
  color: #2d4661;
  font-size: clamp(12px, 0.88vw, 19px);
}

.rtd-studio-section__question-list small {
  margin-top: 6px;
  color: #8793a2;
  font-size: clamp(8px, 0.53vw, 11px);
}

/* Handoff rules */

.rtd-studio-section__handoff-rules {
  margin-top: clamp(32px, 3.5vw, 74px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rtd-studio-section__handoff-rules article {
  min-width: 0;
  padding:
    clamp(22px, 2.2vw, 46px);
  border: 1px solid #d3dde6;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: #ffffff;
}

.rtd-studio-section__handoff-rules i {
  color: var(--rtd-studio-blue);
  font-size: clamp(19px, 1.4vw, 30px);
}

.rtd-studio-section__handoff-rules strong,
.rtd-studio-section__handoff-rules span {
  display: block;
}

.rtd-studio-section__handoff-rules strong {
  color: #2b4460;
  font-size: clamp(11px, 0.78vw, 17px);
}

.rtd-studio-section__handoff-rules span {
  margin-top: 6px;
  color: #7c8999;
  font-size: clamp(8px, 0.54vw, 11px);
  line-height: 1.5;
}

/* Domains */

.rtd-studio-section__domain-list {
  margin-top: clamp(32px, 3.5vw, 74px);
  display: grid;
  gap: 16px;
}

.rtd-studio-section__domain-list article {
  border: 1px solid #d3dde6;
  background: #ffffff;
}

.rtd-studio-section__domain-list article.is-active {
  box-shadow: inset 4px 0 0 var(--rtd-studio-green);
}

.rtd-studio-section__domain-list article > header {
  padding:
    clamp(20px, 2vw, 42px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #f8fafb;
}

.rtd-studio-section__domain-list header span {
  display: block;
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.54vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__domain-list h5 {
  margin: 8px 0 0;
  color: #29415d;
  font-size: clamp(15px, 1.12vw, 25px);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.rtd-studio-section__domain-list header em {
  color: var(--rtd-studio-green);
  font-size: clamp(8px, 0.54vw, 11px);
  font-style: normal;
  font-weight: 800;
}

.rtd-studio-section__domain-list article > p {
  margin: 0;
  padding:
    clamp(20px, 2vw, 42px);
  color: var(--rtd-studio-muted);
  font-size: clamp(11px, 0.76vw, 16px);
  line-height: 1.65;
}

.rtd-studio-section__domain-list article > footer {
  padding:
    0
    clamp(20px, 2vw, 42px)
    clamp(20px, 2vw, 42px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* =========================================================
   RIGHT LIVE PREVIEW
========================================================= */

.rtd-studio-section__preview {
  color: #ffffff;
  background:
    linear-gradient(
      160deg,
      #0f2945 0%,
      #173b61 58%,
      #204d79 100%
    );
}

.rtd-studio-section__preview > header {
  min-height: clamp(108px, 8vw, 186px);
  padding:
    clamp(26px, 2.7vw, 58px)
    clamp(22px, 2.6vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--rtd-studio-dark-line);
}

.rtd-studio-section__preview > header span,
.rtd-studio-section__preview > header strong {
  display: block;
}

.rtd-studio-section__preview > header span {
  color: #9fc0e1;
  font-size: clamp(8px, 0.55vw, 12px);
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rtd-studio-section__preview > header strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(13px, 0.94vw, 20px);
}

.rtd-studio-section__preview > header em {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8d1e7;
  font-size: clamp(8px, 0.54vw, 11px);
  font-style: normal;
  font-weight: 750;
}

.rtd-studio-section__preview > header em i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cc7a9;
  box-shadow: 0 0 0 5px rgba(124, 199, 169, 0.1);
}

.rtd-studio-section__preview-agent {
  margin:
    clamp(26px, 2.7vw, 58px)
    clamp(20px, 2.4vw, 50px)
    0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  color: var(--rtd-studio-ink);
  background: #f8fafb;
  box-shadow: 0 26px 70px rgba(4, 18, 31, 0.27);
}

.rtd-studio-section__preview-brand {
  padding:
    clamp(18px, 1.8vw, 38px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #ffffff;
}

.rtd-studio-section__preview-brand > span {
  width: clamp(42px, 3vw, 64px);
  height: clamp(42px, 3vw, 64px);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--rtd-studio-blue-dark);
  font-size: clamp(10px, 0.7vw, 15px);
  font-weight: 850;
}

.rtd-studio-section__preview-brand strong,
.rtd-studio-section__preview-brand small {
  display: block;
}

.rtd-studio-section__preview-brand strong {
  color: #263f5a;
  font-size: clamp(11px, 0.78vw, 17px);
}

.rtd-studio-section__preview-brand small {
  margin-top: 4px;
  color: #8290a0;
  font-size: clamp(8px, 0.52vw, 11px);
}

.rtd-studio-section__preview-thread {
  min-height: clamp(360px, 28vw, 660px);
  padding:
    clamp(24px, 2.5vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rtd-studio-section__preview-thread article {
  max-width: 88%;
}

.rtd-studio-section__preview-thread article.is-visitor {
  margin-left: auto;
}

.rtd-studio-section__preview-thread p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d5dfe7;
  border-radius: 5px 16px 16px 16px;
  color: #3d5065;
  background: #ffffff;
  font-size: clamp(10px, 0.7vw, 15px);
  line-height: 1.6;
}

.rtd-studio-section__preview-thread .is-visitor p {
  border-color: var(--rtd-studio-blue);
  border-radius: 16px 5px 16px 16px;
  color: #ffffff;
  background: var(--rtd-studio-blue);
}

.rtd-studio-section__preview-thread footer {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rtd-studio-section__preview-thread footer span {
  padding: 5px 8px;
  border: 1px solid #cfdbe5;
  border-radius: 999px;
  color: #56718a;
  background: #ffffff;
  font-size: clamp(7px, 0.48vw, 10px);
  font-weight: 700;
}

.rtd-studio-section__preview-actions {
  padding:
    0
    clamp(24px, 2.5vw, 52px)
    clamp(24px, 2.5vw, 52px);
  display: grid;
  gap: 8px;
}

.rtd-studio-section__preview-actions button {
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid #c3d0dc;
  border-radius: 9px;
  color: #365570;
  background: #ffffff;
  font-size: clamp(8px, 0.56vw, 12px);
  font-weight: 760;
  text-align: left;
}

.rtd-studio-section__readiness,
.rtd-studio-section__publication {
  margin:
    clamp(22px, 2.2vw, 46px)
    clamp(20px, 2.4vw, 50px)
    0;
  padding:
    clamp(22px, 2.2vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.rtd-studio-section__readiness > header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.rtd-studio-section__readiness header span,
.rtd-studio-section__readiness header strong {
  display: block;
}

.rtd-studio-section__readiness header span,
.rtd-studio-section__publication > span {
  color: #9fc0e1;
  font-size: clamp(8px, 0.53vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__readiness header strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(13px, 0.94vw, 20px);
}

.rtd-studio-section__readiness header em {
  color: #ffffff;
  font-size: clamp(20px, 1.5vw, 34px);
  font-style: normal;
  font-weight: 820;
}

.rtd-studio-section__readiness ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.rtd-studio-section__readiness li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(9px, 0.63vw, 14px);
}

.rtd-studio-section__readiness li i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.rtd-studio-section__readiness li.is-complete {
  color: rgba(255, 255, 255, 0.86);
}

.rtd-studio-section__readiness li.is-complete i {
  border-color: #79c6a7;
  background: #79c6a7;
}

.rtd-studio-section__publication {
  margin-bottom: clamp(28px, 3vw, 64px);
}

.rtd-studio-section__publication h4 {
  margin: 11px 0 0;
  color: #ffffff;
  font-size: clamp(18px, 1.35vw, 30px);
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.rtd-studio-section__publication p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(9px, 0.63vw, 14px);
  line-height: 1.65;
}

.rtd-studio-section__publication button {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  padding: 11px 14px;
  border: 1px solid #ffffff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--rtd-studio-blue-dark);
  background: #ffffff;
  font-size: clamp(9px, 0.63vw, 14px);
  font-weight: 800;
}

/* =========================================================
   PUBLICATION FLOW
========================================================= */

.rtd-studio-section__publication-flow {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--rtd-studio-line);
  background: #f2f5f7;
}

.rtd-studio-section__publication-flow article {
  min-width: 0;
  min-height: clamp(160px, 13vw, 300px);
  padding:
    clamp(28px, 3vw, 64px)
    clamp(20px, 2.6vw, 56px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.rtd-studio-section__publication-flow article > span {
  color: rgba(49, 95, 145, 0.35);
  font-size: clamp(24px, 1.8vw, 42px);
  font-weight: 820;
  letter-spacing: -0.05em;
}

.rtd-studio-section__publication-flow small,
.rtd-studio-section__publication-flow strong {
  display: block;
}

.rtd-studio-section__publication-flow small {
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.52vw, 11px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__publication-flow strong {
  margin-top: 8px;
  color: #29425d;
  font-size: clamp(11px, 0.78vw, 17px);
  line-height: 1.45;
}

.rtd-studio-section__publication-flow > i {
  position: relative;
  width: 1px;
  background: var(--rtd-studio-line);
}

.rtd-studio-section__publication-flow > i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(49, 95, 145, 0.5);
  border-right: 1px solid rgba(49, 95, 145, 0.5);
  transform: translateY(-50%) rotate(45deg);
}

/* =========================================================
   OUTCOMES
========================================================= */

.rtd-studio-section__outcomes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--rtd-studio-line);
}

.rtd-studio-section__outcomes article {
  min-width: 0;
  min-height: clamp(220px, 17vw, 410px);
  padding:
    clamp(34px, 3.5vw, 78px)
    clamp(24px, 3vw, 66px);
  border-right: 1px solid var(--rtd-studio-line);
  background: rgba(255, 255, 255, 0.66);
}

.rtd-studio-section__outcomes article:last-child {
  border-right: 0;
}

.rtd-studio-section__outcomes article > span {
  display: block;
  color: var(--rtd-studio-blue);
  font-size: clamp(8px, 0.56vw, 12px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtd-studio-section__outcomes strong {
  display: block;
  margin-top: 13px;
  color: #263f5a;
  font-size: clamp(18px, 1.38vw, 31px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rtd-studio-section__outcomes p {
  margin: 16px 0 0;
  color: var(--rtd-studio-muted);
  font-size: clamp(11px, 0.76vw, 17px);
  line-height: 1.68;
}

/* =========================================================
   CLOSING STATEMENT
========================================================= */

.rtd-studio-section__closing {
  width: 100%;
  padding:
    clamp(62px, 7vw, 152px)
    clamp(22px, 5vw, 112px);
  display: grid;
  grid-template-columns:
    minmax(240px, 0.35fr)
    minmax(0, 1.65fr);
  gap: clamp(40px, 8vw, 200px);
  align-items: start;
  background: #f1f2ef;
}

.rtd-studio-section__closing > span {
  color: var(--rtd-studio-blue);
  font-size: clamp(10px, 0.72vw, 16px);
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.rtd-studio-section__closing p {
  max-width: 2500px;
  margin: 0;
  color: var(--rtd-studio-ink);
  font-size: clamp(40px, 4.3vw, 106px);
  font-weight: 690;
  letter-spacing: -0.058em;
  line-height: 1;
}

.rtd-studio-section__closing strong {
  color: var(--rtd-studio-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

/* =========================================================
   INTERACTION STATES
========================================================= */

.rtd-studio-section.is-dirty
.rtd-studio-section__editor {
  box-shadow: inset 0 4px 0 rgba(165, 102, 22, 0.68);
}

.rtd-studio-section.is-saved
.rtd-studio-section__editor {
  box-shadow: inset 0 4px 0 rgba(20, 116, 90, 0.65);
}

.rtd-studio-section.is-reviewing
.rtd-studio-section__preview {
  box-shadow: inset 0 5px 0 #9fc8e8;
}

/* =========================================================
   8K AND LARGE DISPLAYS
========================================================= */

@media (min-width: 2560px) {
  .rtd-studio-section__header {
    grid-template-columns:
      minmax(360px, 17%)
      minmax(0, 83%);
  }

  .rtd-studio-section__workspace {
    grid-template-columns:
      minmax(420px, 0.6fr)
      minmax(0, 1.58fr)
      minmax(500px, 0.82fr);
  }
}

@media (min-width: 3840px) {
  .rtd-studio-section__header {
    grid-template-columns:
      minmax(520px, 16%)
      minmax(0, 84%);
  }

  .rtd-studio-section__panel-intro {
    max-width: 1600px;
  }

  .rtd-studio-section__preview-thread article {
    max-width: 78%;
  }
}

@media (min-width: 6000px) {
  .rtd-studio-section__header {
    grid-template-columns:
      minmax(820px, 15%)
      minmax(0, 85%);
  }

  .rtd-studio-section__workspace {
    grid-template-columns:
      minmax(660px, 0.58fr)
      minmax(0, 1.62fr)
      minmax(760px, 0.8fr);
  }
}

/* =========================================================
   LAPTOP AND TABLET
========================================================= */

@media (max-width: 1380px) {
  .rtd-studio-section__workspace {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .rtd-studio-section__preview {
    grid-column: 1 / -1;
    min-height: auto;
    display: grid;
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(300px, 0.85fr);
    border-top: 1px solid var(--rtd-studio-line);
  }

  .rtd-studio-section__preview > header {
    grid-column: 1 / -1;
  }

  .rtd-studio-section__preview-agent {
    grid-row: span 2;
    margin-bottom: clamp(28px, 3vw, 64px);
  }

  .rtd-studio-section__readiness {
    margin-left: 0;
  }

  .rtd-studio-section__publication {
    margin-left: 0;
  }

  .rtd-studio-section__publication-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .rtd-studio-section__publication-flow > i {
    display: none;
  }

  .rtd-studio-section__publication-flow article {
    border-right: 1px solid var(--rtd-studio-line);
  }

  .rtd-studio-section__publication-flow article:last-of-type {
    border-right: 0;
  }
}

@media (max-width: 1040px) {
  .rtd-studio-section__header {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .rtd-studio-section__introduction {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rtd-studio-section__workspace {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__navigation,
  .rtd-studio-section__editor,
  .rtd-studio-section__preview {
    min-height: auto;
    border-right: 0;
  }

  .rtd-studio-section__navigation nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rtd-studio-section__navigation nav button {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
  }

  .rtd-studio-section__navigation nav button:nth-child(3n) {
    border-right: 0;
  }

  .rtd-studio-section__preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-studio-section__preview-agent {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .rtd-studio-section__readiness,
  .rtd-studio-section__publication {
    margin-left: 20px;
    margin-right: 20px;
  }

  .rtd-studio-section__publication-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-studio-section__publication-flow article {
    border-right: 1px solid var(--rtd-studio-line);
    border-bottom: 1px solid var(--rtd-studio-line);
  }

  .rtd-studio-section__publication-flow article:nth-child(2n) {
    border-right: 0;
  }

  .rtd-studio-section__publication-flow article:last-of-type {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .rtd-studio-section__outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtd-studio-section__outcomes article:nth-child(2n) {
    border-right: 0;
  }

  .rtd-studio-section__outcomes article:nth-child(n + 3) {
    border-top: 1px solid var(--rtd-studio-line);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
  .rtd-studio-section__header {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__label {
    padding: 42px 16px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-studio-line);
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .rtd-studio-section__label span {
    font-size: 44px;
  }

  .rtd-studio-section__label p {
    margin: 0;
  }

  .rtd-studio-section__heading {
    padding: 48px 16px 60px;
  }

  .rtd-studio-section__heading > h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .rtd-studio-section__introduction p {
    font-size: 15px;
  }

  .rtd-studio-section__navigation nav {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__navigation nav button {
    border-right: 0;
  }

  .rtd-studio-section__editor-header {
    padding-left: 16px;
    padding-right: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .rtd-studio-section__editor-header > div:last-child {
    width: 100%;
    justify-content: space-between;
  }

  .rtd-studio-section__panel {
    padding: 42px 16px 58px;
  }

  .rtd-studio-section__form-grid,
  .rtd-studio-section__branding-grid,
  .rtd-studio-section__handoff-rules {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__field--wide {
    grid-column: auto;
  }

  .rtd-studio-section__offer dl {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__offer dl div {
    border-right: 0;
    border-bottom: 1px solid var(--rtd-studio-line);
  }

  .rtd-studio-section__offer dl div:last-child {
    border-bottom: 0;
  }

  .rtd-studio-section__preview {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__preview > header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rtd-studio-section__preview-agent,
  .rtd-studio-section__readiness,
  .rtd-studio-section__publication {
    margin-left: 16px;
    margin-right: 16px;
  }

  .rtd-studio-section__publication-flow {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__publication-flow article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rtd-studio-line);
  }

  .rtd-studio-section__publication-flow article:last-of-type {
    grid-column: auto;
    border-bottom: 0;
  }

  .rtd-studio-section__outcomes {
    grid-template-columns: 1fr;
  }

  .rtd-studio-section__outcomes article {
    min-height: auto;
    padding: 36px 16px;
    border-right: 0;
    border-top: 1px solid var(--rtd-studio-line);
  }

  .rtd-studio-section__outcomes article:first-child {
    border-top: 0;
  }

  .rtd-studio-section__closing {
    padding: 62px 16px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rtd-studio-section__closing p {
    font-size: clamp(38px, 11vw, 56px);
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.rtd-studio-section button:focus-visible,
.rtd-studio-section input:focus-visible,
.rtd-studio-section textarea:focus-visible,
.rtd-studio-section select:focus-visible {
  outline: 3px solid rgba(85, 150, 211, 0.46);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .rtd-studio-section *,
  .rtd-studio-section *::before,
  .rtd-studio-section *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

