/* Local Fonts */
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/almarai-normal-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/almarai-normal-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Brygada 1918';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/brygada-1918-normal-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Brygada 1918';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/brygada-1918-normal-600.woff2') format('woff2');
}

/* ==========================================================================
   Sully AI — Case Study Stylesheet
   ========================================================================== */

/* ----------------------------------------------------------- Local Fonts -- */





.sully-ai {
  /* Colour */
  --navy: #003c66;
  --navy-deep: #002640;
  --cyan: #00abec;
  --ink: #282828;
  --muted: #939393;
  --muted-dark: #666666;
  --line: #dcdcdc;
  --line-soft: #e3e3e3;
  --page: #f5f5f5;
  --white: #ffffff;
  --link-soft: #5b95ce;
  --on-navy-60: rgba(255, 255, 255, .6);
  --on-navy-20: rgba(255, 255, 255, .2);
  --on-navy-10: rgba(255, 255, 255, .1);

  /* Type */
  --font-display: "Brygada 1918", "Iowan Old Style", Georgia, serif;
  --font-body: "Almarai", "Helvetica Neue", Arial, sans-serif;

  --fs-display: 60px;
  --fs-stat: 58px;
  --fs-xl: 42px;
  --fs-lg: 36px;
  --fs-md: 30px;
  --fs-body: 20px;
  --fs-sm: 18px;
  --fs-xs: 16px;

  --lh-display: 1.167;
  --lh-body: 1.5;

  --track-display: -.07em;
  --track-body: -.01em;

  /* Layout */
  --gutter: 60px;
  --max: 1600px;
  --section-y: 100px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 100px;

  --shadow-avatar: 0 8px 15px rgba(0, 0, 0, .2);
}

/* ---------------------------------------------------------------- reset -- */

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

.sully-ai {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.sully-ai {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--track-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.sully-ai h1,
.sully-ai h2,
.sully-ai h3,
.sully-ai p,
.sully-ai figure,
.sully-ai blockquote,
.sully-ai dl,
.sully-ai dd {
  margin: 0;
}

.sully-ai ul,
.sully-ai ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sully-ai img,
.sully-ai svg {
  display: block;
  max-width: 100%;
}

.sully-ai img {
  height: auto;
}

.sully-ai a {
  color: inherit;
}

.sully-ai button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

.sully-ai :focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

.sully-ai .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  font-size: var(--fs-sm);
}

.sully-ai .skip-link:focus {
  left: 12px;
  top: 12px;
}

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

  .sully-ai *,
  .sully-ai *::before,
  .sully-ai *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------- layout -- */

.sully-ai .wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sully-ai .wrap--narrow {
  max-width: 1416px;
}

.sully-ai .wrap--tight {
  max-width: 1120px;
}

.sully-ai .section--navy {
  background: var(--navy);
  color: var(--white);
}

.sully-ai .t-center {
  text-align: center;
}

/* ----------------------------------------------------------- typography -- */

.display-1,
.display-2,
.display-3,
.sully-ai .display-4 {
  font-family: var(--font-display);
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
  font-weight: 400;
}

.sully-ai .display-1 {
  font-size: var(--fs-display);
}

.sully-ai .display-2 {
  font-size: var(--fs-xl);
  font-weight: 600;
}

.sully-ai .display-3 {
  font-size: var(--fs-lg);
  font-weight: 600;
}

.sully-ai .display-4 {
  font-size: var(--fs-md);
}

.sully-ai .link-soft {
  color: var(--link-soft);
  text-decoration: none;
}

.sully-ai .link-soft:hover {
  text-decoration: underline;
}

.sully-ai .link-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.sully-ai .link-cyan:hover {
  text-decoration: underline;
}

.sully-ai .strong-cyan {
  color: var(--cyan);
  font-weight: 700;
}

.sully-ai .icon-arrow {
  width: 20px;
  height: 20px;
  flex: none;
}

.sully-ai .glow {
  position: absolute;
  z-index: 0;
  width: min(1170px, 82%);
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* ============================================================== 1. HERO == */

.sully-ai .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 955px;
  display: flex;
  align-items: flex-start;
}

.sully-ai .hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 58% at 50% 118%, #f7f8f9 0%, rgba(247, 248, 249, .96) 34%, rgba(247, 248, 249, 0) 66%),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .55) 0 1px,
      rgba(255, 255, 255, 0) 1px 127px),
    radial-gradient(150% 118% at 50% 0%, #cfe4fd 0%, #d9eafd 46%, #eaf3fe 72%, var(--page) 88%),
    var(--page);
}

.sully-ai .hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.sully-ai .hero__logo {
  width: 184px;
  height: 40px;
}

.sully-ai .hero__device {
  width: min(1196px, 100%);
  margin-top: 110px;
  position: relative;
}

.sully-ai .hero__device::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 27%;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0), var(--page));
  pointer-events: none;
}

.sully-ai .hero__device img {
  width: 100%;
}

/* ============================================================= 2. INTRO == */

.sully-ai .intro {
  position: relative;
  overflow: hidden;
  padding-block: 150px 100px;
}

.sully-ai .glow--intro {
  right: 0;
  bottom: 0;
}

.sully-ai .intro .wrap {
  position: relative;
  z-index: 1;
}

.sully-ai .intro__head {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 100px;
}

.sully-ai .intro__head .display-1 {
  flex: 0 1 650px;
}

@media screen and (max-width: 1024px) {

  .sully-ai .intro__head .display-1 {
    flex: none;
  }
}

.sully-ai .intro__lede {
  flex: 0 1 650px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.sully-ai .highlight {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 16px;
  border-left: 1px solid var(--line-soft);
  min-height: 500px;
}

.sully-ai .highlight .display-2 {
  white-space: nowrap;
}

.sully-ai .highlight__body {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 30px;
}

/* ====================================================== 3. CHAPTER NAV == */

.sully-ai section[id] {
  scroll-margin-top: 170px;
}

.sully-ai .chapters {
  position: sticky;
  top: 72px;
  z-index: 40;
  padding-block: 16px;
  background: var(--page);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

@media screen and (max-width:1023px) {
  .sully-ai section[id] {
    scroll-margin-top: 100px;
  }

  .sully-ai .chapters {
    top: 0 !important;
    padding-block: 8px;
  }
}

.sully-ai .chapters__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.sully-ai .chapters__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding-inline: clamp(8px, 1.2vw, 24px);
  border-left: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.sully-ai .chapters__list li:first-child .chapters__link {
  border-left: 0;
}

.sully-ai .chapters__link:hover {
  background: rgba(0, 0, 0, .04);
}

.sully-ai .chapters__link.is-active {
  background: var(--ink);
  border-left-color: var(--ink);
  color: var(--white);
}

/* ======================================================= 4. AT A GLANCE == */

.sully-ai .glance {
  padding-block: var(--section-y);
  scroll-margin-top: 150px;
}

.sully-ai .glance .display-1 {
  margin-bottom: 40px;
}

.sully-ai .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
}

.sully-ai .spec {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 24px;
  border-bottom: 1px solid var(--on-navy-10);
}

.sully-ai .spec--full {
  grid-column: 1 / -1;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 0;
}

.sully-ai .spec__key {
  flex: none;
  width: 340px;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
  color: var(--white);
  font-weight: 400;
}

.sully-ai .spec__val {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--on-navy-60);
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .founders {
  display: flex;
  gap: 80px;
  flex: 1;
}

.sully-ai .founder {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
}

.sully-ai .founder__avatar {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: var(--radius-pill);
  object-fit: cover;
}

.sully-ai .founder__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
  white-space: nowrap;
}

.sully-ai .founder__name:hover {
  text-decoration: underline;
}

.sully-ai .founder__role {
  display: block;
  color: var(--on-navy-60);
  font-size: var(--fs-sm);
  line-height: 24px;
}

/* ============================================================ 5. IMPACT == */

.sully-ai .impact {
  padding-block: var(--section-y);
}

.sully-ai .impact__title {
  margin-bottom: 60px;
}

.sully-ai .impact__chart {
  position: relative;
  aspect-ratio: 1296 / 647;
}

.sully-ai .impact__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sully-ai .kpis {
  position: relative;
  display: flex;
  align-items: stretch;
}

.sully-ai .kpi {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding-inline: 40px;
  border-right: 1px solid var(--line);
}

.sully-ai .kpi:first-child {
  padding-left: 0;
}

.sully-ai .kpi:last-child {
  border-right: 0;
}

.sully-ai .kpi__eyebrow {
  color: var(--muted-dark);
  font-size: var(--fs-sm);
  line-height: 1.167;
}

.sully-ai .kpi__num {
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  line-height: 1.167;
  letter-spacing: var(--track-body);
  color: var(--ink);
  white-space: nowrap;
}

.sully-ai .kpi__label {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 220px;
  color: var(--muted-dark);
  font-size: var(--fs-sm);
  line-height: 1.167;
}

.sully-ai .kpi__label img {
  margin-top: 2px;
  flex: none;
}

/* =================================================== 6. WHY THIS MATTERED */

.sully-ai .why {
  padding-block: var(--section-y);
  scroll-margin-top: 150px;
}

.sully-ai .why__inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

@media screen and (max-width:1199px) {
  .sully-ai .why__inner {
    gap: 40px;
  }
}

.sully-ai .why__title {
  flex: 0 0 550px;
}

.sully-ai .why__list {
  flex: 0 1 900px;
  list-style: disc;
  padding-left: 30px;
}

.sully-ai .why__list li {
  font-size: var(--fs-body);
  line-height: 40px;
  font-weight: 400;
}

.sully-ai .why__list li::marker {
  color: var(--on-navy-60);
}

/* ========================================================= 7. CHALLENGE == */

.sully-ai .challenge {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
}

.sully-ai .glow--challenge {
  right: 0;
  bottom: 0;
}

.sully-ai .challenge .wrap {
  position: relative;
  z-index: 1;
}

.sully-ai .challenge .display-1 {
  margin-bottom: 60px;
}

.sully-ai .challenge__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.sully-ai .tile--half {
  grid-column: span 3;
}

.sully-ai .tile--third {
  grid-column: span 2;
}

.sully-ai .tile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 340px;
  padding: 40px;
  border-left: 1px solid var(--line);
}

.sully-ai .tile__icon {
  width: 24px;
  height: 24px;
  flex: none;
}

.sully-ai .tile__body {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.167;
}

.challenge__grid .tile:nth-child(1),
.challenge__grid .tile:nth-child(2),
.sully-ai .challenge__grid .tile:nth-child(3) {
  border-left: 0;
}

.challenge__grid .tile:nth-child(1),
.sully-ai .challenge__grid .tile:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.sully-ai .challenge__grid .tile:nth-child(1) {
  border-right: 1px solid var(--line);
}

/* ======================================================= 8. HOW IT WORKS == */

.sully-ai .agents {
  padding-block: var(--section-y);
  scroll-margin-top: 150px;
}

.sully-ai .agents__head {
  max-width: 938px;
  margin: 0 auto 60px;
  text-align: center;
}

.sully-ai .agents__sub {
  margin-top: 20px;
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .agents__tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.sully-ai .agent-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 140px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  color: #000;
  text-align: center;
  cursor: pointer;
  transition: box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.sully-ai .agent-tab:hover {
  transform: translateY(-2px);
}

.sully-ai .agent-tab.is-active {
  background:
    linear-gradient(rgba(0, 171, 236, .1), rgba(0, 171, 236, .1)),
    var(--white);
  box-shadow: 0 0 0 1px rgba(0, 171, 236, .35);
}

.sully-ai .agent-tab__id {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-body);
  line-height: 1.167;
}

.sully-ai .agent-tab__id img {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: var(--radius-pill);
  object-fit: cover;
  box-shadow: var(--shadow-avatar);
}

.sully-ai .agent-tab__desc {
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.25;
}

.sully-ai .progress {
  position: relative;
  height: 14px;
  margin-block: 40px;
  border-radius: var(--radius-pill);
  background: var(--navy-deep);
  overflow: visible;
}

.sully-ai .progress__fill {
  --step: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: calc((var(--step) - .5) / 6 * 100% + 15px);
  max-width: 100%;
  border-radius: var(--radius-pill);
  background: repeating-linear-gradient(45deg,
      #00abec,
      #00abec 12px,
      #0097d5 12px,
      #0097d5 24px);
  transition: width .35s ease;
}

.sully-ai .progress__pill {
  --step: 1;
  position: absolute;
  top: 50%;
  left: clamp(52px, calc((var(--step) - .5) / 6 * 100%), calc(100% - 52px));
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  transition: left .35s ease;
  white-space: nowrap;
}

.sully-ai .agent-panel {
  display: flex;
  align-items: flex-start;
  gap: 101px;
  min-height: 480px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--white);
  color: #000;
}

.sully-ai .agent-panel__copy {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width:767px) {
  .sully-ai .agent-panel__copy {
    gap: 15px;
  }
}

.sully-ai .agent-panel__id {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sully-ai .agent-panel__id img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  box-shadow: var(--shadow-avatar);
}

.sully-ai .agent-panel__id p {
  font-size: var(--fs-md);
  line-height: 1.167;
}

.sully-ai .agent-panel__headline {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}

.sully-ai .agent-panel__headline em {
  font-style: normal;
  color: var(--cyan);
}

.sully-ai .agent-panel__body {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .agent-panel__shot {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.sully-ai .agent-panel__shot img {
  width: 100%;
}

/* ============================================ 9. ENGINEERING DECISIONS == */

.sully-ai .engineering {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
  scroll-margin-top: 150px;
}

.sully-ai .glow--engineering {
  right: 0;
  bottom: 0;
}

.sully-ai .engineering .wrap {
  position: relative;
  z-index: 1;
}

.sully-ai .engineering__head {
  text-align: center;
  margin-bottom: 60px;
}

.sully-ai .engineering__sub {
  max-width: 877px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.167;
}

.sully-ai .engineering__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sully-ai .engineering__grid .tile,
.sully-ai .engineering__grid .tile--flush {
  grid-column: span 1 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
  min-height: 0;
  border: 0;
}

.sully-ai .engineering__grid .tile:nth-child(odd) {
  padding-left: 0;
  padding-right: 60px;
  border-right: 1px solid var(--line-soft);
}

.sully-ai .engineering__grid .tile:nth-child(even) {
  padding-left: 60px;
  padding-right: 0;
}

.sully-ai .engineering__grid .tile:nth-child(1),
.sully-ai .engineering__grid .tile:nth-child(2) {
  padding-top: 0;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-soft);
}

.sully-ai .engineering__grid .tile:nth-child(3),
.sully-ai .engineering__grid .tile:nth-child(4) {
  padding-top: 60px;
  padding-bottom: 0;
}

.sully-ai .engineering__grid .display-3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
  color: var(--ink);
}

.sully-ai .engineering__grid .tile__body {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 30px;
}

/* ============================================== 10. SPLIT (WHY SIX AI) == */

.sully-ai .split {
  padding-block: var(--section-y);
}

.sully-ai .split__inner {
  display: flex;
  gap: 60px;
}

.sully-ai .split__title {
  flex: 0 0 650px;
}

.sully-ai .split__body {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 30px;
}

/* ================================================= 11. ORCHESTRATION == */

.sully-ai .orchestration {
  padding-block: 0;
}

.sully-ai .orch {
  position: relative;
  aspect-ratio: 1480 / 650;
  border-radius: var(--radius);
  background: var(--navy);
  overflow: hidden;
  color: #000;
}

.sully-ai .orch__sparkle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21.2%;
  transform: translate(-50%, -50%);
  opacity: .9;
}

.sully-ai .orch__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sully-ai .orch__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12.16%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
}

.sully-ai .orch__hub img {
  width: 55%;
  height: auto;
}

.sully-ai .orch__col {
  position: absolute;
  top: 15.4%;
  width: 15.88%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sully-ai .orch__col--left {
  left: 6.76%;
}

.sully-ai .orch__col--right {
  right: 6.76%;
}

.sully-ai .agent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 140px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.sully-ai .agent-card__id {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  font-size: var(--fs-body);
  line-height: 1.167;
}

.sully-ai .agent-card__id img {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: var(--radius-pill);
  object-fit: cover;
  box-shadow: var(--shadow-avatar);
}

.sully-ai .agent-card__desc {
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.25;
}

/* ==================================================== 12. CLINICAL TRUST == */

.sully-ai .trust {
  padding-block: var(--section-y);
}

.sully-ai .trust__inner {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.sully-ai .trust__copy {
  flex: 0 0 620px;
}

.sully-ai .trust__copy .display-1 {
  margin-bottom: 40px;
}

.sully-ai .trust__body {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .certs {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sully-ai .cert {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 240px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sully-ai .cert__icon {
  display: grid;
  place-items: center;
  width: 40px !important;
  height: 40px !important;
  background: var(--page);
}

.sully-ai .cert__icon img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
}

.sully-ai .cert__name {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}

.sully-ai .cert__desc {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: var(--fs-sm);
  line-height: 1.35;
}

/* =========================================================== 13. RESULTS == */

.sully-ai .results {
  padding-block: var(--section-y);
  scroll-margin-top: 150px;
}

.sully-ai .results .display-1 {
  margin-bottom: 60px;
}

.sully-ai .results__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.sully-ai .quote {
  flex: 0 1 580px;
}

.sully-ai .quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}

.sully-ai .quote__by {
  margin-top: 40px;
}

.sully-ai .quote__name {
  display: block;
  font-size: var(--fs-md);
  line-height: 1.167;
}

.sully-ai .quote__role {
  display: block;
  margin-top: 4px;
  opacity: .6;
  font-size: var(--fs-body);
}

.sully-ai .bars {
  flex: 0 1 657px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sully-ai .bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sully-ai .bar__track {
  flex: 1 1 auto;
  position: relative;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .07) 0 2px,
      rgba(255, 255, 255, 0) 2px 9px),
    rgba(255, 255, 255, .08);
}

.sully-ai .bar__fill {
  --pct: 50%;
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--pct);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--navy-deep), var(--cyan));
}

.sully-ai .bar__value {
  flex: none;
  min-width: 106px;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}

.sully-ai .rule {
  height: 1px;
  margin: 60px 0;
  border: 0;
  background: var(--on-navy-20);
}

.sully-ai .outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sully-ai .outcome {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  border-right: 1px solid var(--on-navy-10);
}

.sully-ai .outcome:last-child {
  border-right: 0;
}

.sully-ai .outcome__num {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
  color: var(--cyan);
}

.sully-ai .outcome__label {
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .outcome__note {
  margin-top: 10px;
  opacity: .6;
  font-size: var(--fs-body);
  line-height: 30px;
}

/* ======================================================== 14. COMPARISON == */

.sully-ai .compare {
  padding-block: var(--section-y);
}

.sully-ai .compare__title {
  max-width: 1300px;
  margin: 0 auto 60px;
}

.sully-ai .compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sully-ai .matrix {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.matrix th,
.sully-ai .matrix td {
  height: 100px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  vertical-align: middle;
}

.sully-ai .matrix thead th {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}

.sully-ai .matrix tbody th {
  width: 400px;
  font-size: var(--fs-body);
  line-height: 30px;
}

.sully-ai .matrix tbody td {
  width: 540px;
}

.matrix th:first-child,
.sully-ai .matrix td:first-child {
  background: var(--white);
  border-left: 1px solid var(--line);
}

.sully-ai .matrix thead th:first-child {
  border-top: 1px solid var(--line);
  border-top-left-radius: var(--radius);
}

.sully-ai .matrix tbody tr:last-child th:first-child {
  border-bottom-left-radius: var(--radius);
}

.matrix th:nth-child(2),
.sully-ai .matrix td:nth-child(2) {
  background: transparent;
  border-inline: 1px solid var(--line);
}

.sully-ai .matrix thead th:nth-child(2) {
  border-top: 1px solid var(--line);
}

.sully-ai .matrix .matrix__win {
  background: var(--navy);
  color: var(--white);
  border-bottom-color: var(--on-navy-20);
  border-inline: 0;
}

.sully-ai .matrix thead .matrix__win {
  border-top-right-radius: var(--radius);
}

.sully-ai .matrix tbody tr:last-child .matrix__win {
  border-bottom-right-radius: var(--radius);
}

.sully-ai .matrix tbody tr:last-child .matrix__win {
  border-bottom: 0;
}

.sully-ai .matrix td span {
  display: inline-block;
  max-width: 350px;
  vertical-align: middle;
}

.sully-ai .matrix__mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  vertical-align: middle;
}

/* ======================================================== 15. WHAT'S NEXT == */

.sully-ai .next {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
}

.sully-ai .glow--next {
  right: 0;
  bottom: 0;
}

.sully-ai .next .wrap {
  position: relative;
  z-index: 1;
}

.sully-ai .next .display-1 {
  margin-bottom: 60px;
}

@media screen and (max-width:767px) {
  .sully-ai .next .display-1 {
    margin-bottom: 30px;
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.25;
  }
}

.sully-ai .next__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sully-ai .next__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  border-left: 1px solid var(--line);
}

.sully-ai .next__grid .next__item:first-child {
  border-left: 0;
}

.sully-ai .next__num {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}

.sully-ai .next__body {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 30px;
}

/* ============================================================== 16. FAQS == */

.sully-ai .faqs {
  padding-block: var(--section-y);
  scroll-margin-top: 150px;
}

.sully-ai .faqs .display-1 {
  margin-bottom: 60px;
}

@media screen and (max-width:768px) {
  .sully-ai .faqs .display-1 {
    margin-bottom: 30px;
  }
}

.sully-ai .faq {
  border-bottom: 1px solid var(--line-soft);
  transition: background-color .3s ease;
}

.sully-ai .faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  background: transparent;
  border: 0;
  outline: 0;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: color .25s ease, padding .35s ease;
}

.sully-ai .faq.is-open .faq__trigger {
  padding-bottom: 16px;
}

.sully-ai .faq__q {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
  color: var(--ink);
}

.sully-ai .faq__icon {
  flex: none;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: currentColor;
  transform: rotate(180deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 15l6-6 6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 15l6-6 6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sully-ai .faq.is-open .faq__icon {
  transform: rotate(0deg);
}

.sully-ai .faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.sully-ai .faq.is-open .faq__answer {
  opacity: 1;
}

.sully-ai .faq__a {
  padding: 0 72px 32px 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 30px;
}

/* ======================================================== 17. FOOTER CTA == */

.sully-ai .cta {
  position: relative;
  overflow: hidden;
  padding-block: 0;
}

.sully-ai .cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  min-height: 600px;
}

.sully-ai .cta__copy {
  flex: 0 1 610px;
  padding-top: 80px;
  padding-bottom: 80px;
  align-self: center;
}

.sully-ai .cta__copy .display-1 {
  margin-bottom: 40px;
}

.sully-ai .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  background: var(--cyan);
  color: var(--white);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.sully-ai .btn:hover {
  background: #0a97ca;
  transform: translateY(-1px);
}

.sully-ai .cta__art {
  flex: 0 1 852px;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

.sully-ai .cta__art img {
  display: block;
  width: 100%;
  max-width: 852px;
  height: auto;
  margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1440px) {
  .sully-ai {
    --gutter: 40px;
    --fs-display: 52px;
    --fs-xl: 38px;
    --fs-lg: 32px;
    --fs-stat: 48px;
  }

  .sully-ai .hero {
    min-height: 0;
  }

  .sully-ai .hero__device {
    margin-top: 80px;
  }

  .sully-ai .agent-panel {
    gap: 48px;
  }

  .sully-ai .agent-panel__copy {
    flex-basis: 300px;
  }

  .sully-ai .trust__inner {
    gap: 60px;
  }

  .sully-ai .trust__copy {
    flex-basis: 45%;
  }

  .sully-ai .why__title {
    flex-basis: 40%;
  }

  .sully-ai .split__title {
    flex-basis: 44%;
  }
}

@media (max-width: 1199px) {
  .sully-ai .impact__chart {
    aspect-ratio: auto;
  }

  .sully-ai .impact__lines {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .sully-ai {
    --gutter: 32px;
    --fs-display: 44px;
    --fs-xl: 34px;
    --fs-lg: 28px;
    --fs-md: 26px;
    --section-y: 80px;
  }

  .sully-ai .intro {
    padding-top: 100px;
  }

  .sully-ai .intro__head {
    gap: 48px;
  }

  .sully-ai .highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .sully-ai .highlight {
    min-height: auto;
    gap: 32px;
  }

  .sully-ai .highlights .highlight:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .sully-ai .chapters__link {
    height: 60px;
    padding-inline: 8px;
    font-size: 14px;
  }

  .sully-ai .spec__key {
    width: 220px;
  }

  .sully-ai .founders {
    gap: 32px;
    flex-wrap: wrap;
  }

  .sully-ai .founder {
    flex: 1 1 260px;
  }

  .sully-ai .kpi__num {
    margin-top: 20px;
  }

  .sully-ai .kpi {
    padding-inline: 24px;
  }

  .sully-ai .agents__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sully-ai .agents__tabs::-webkit-scrollbar {
    display: none;
  }

  .sully-ai .agent-tab {
    flex: 0 0 clamp(220px, 68vw, 260px);
    scroll-snap-align: start;
    min-height: 130px;
    padding: 16px 14px;
  }

  .sully-ai .agent-panel {
    flex-direction: column;
    gap: 40px;
  }

  .sully-ai .agent-panel__copy {
    flex: none;
    width: 100%;
  }

  .sully-ai .agent-panel__shot {
    width: 100%;
  }

  .sully-ai .certs {
    grid-template-columns: 1fr 1fr;
  }

  .sully-ai .outcomes {
    grid-template-columns: repeat(2, 1fr);
  }

  .sully-ai .outcome {
    padding: 24px;
  }

  .sully-ai .outcome:nth-child(2n) {
    border-right: 0;
  }

  .sully-ai .outcomes .outcome:nth-child(-n+2) {
    border-bottom: 1px solid var(--on-navy-10);
  }

  .sully-ai .next__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sully-ai .next__grid .next__item:nth-child(odd) {
    border-left: 0;
  }

  .sully-ai .next__grid .next__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 1024px) {
  .sully-ai {
    --gutter: 24px;
    --fs-display: 40px;
    --fs-lg: 26px;
    --fs-md: 24px;
    --fs-body: 18px;
  }

  .sully-ai .intro__head {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .intro__head .display-1,
  .sully-ai .intro__lede {
    flex: none;
    max-width: 720px;
  }

  .why__inner,
  .split__inner,
  .sully-ai .trust__inner {
    flex-direction: column;
    gap: 40px;
  }

  .why__title,
  .split__title,
  .trust__copy,
  .sully-ai .why__list {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .sully-ai .challenge__grid .tile {
    min-height: auto;
    padding: 32px 24px;
    gap: 20px;
  }

  .sully-ai .challenge__grid .display-3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .sully-ai .challenge__grid .tile__body {
    font-size: 15px;
    line-height: 1.45;
  }

  .sully-ai .results__top {
    flex-direction: column;
    gap: 48px;
  }

  .sully-ai .quote,
  .sully-ai .bars {
    flex: none;
    width: 100%;
  }

  .sully-ai .bar__value {
    min-width: 84px;
    font-size: var(--fs-lg);
  }

  .sully-ai .orch {
    aspect-ratio: auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .sully-ai .orch__wires,
  .sully-ai .orch__sparkle,
  .sully-ai .orch__hub {
    display: none !important;
  }

  .sully-ai .orch__col {
    position: static;
    width: auto;
    max-width: none;
    display: contents;
  }

  .sully-ai .agent-card {
    height: 100%;
    min-height: 140px;
  }

  .sully-ai .cta__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 0;
    gap: 40px;
  }

  .sully-ai .cta__copy {
    flex: none;
    width: 100%;
    max-width: 720px;
    padding-top: 60px;
    padding-bottom: 0;
    align-self: center;
    text-align: center;
  }

  .sully-ai .cta__art {
    flex: none;
    width: 100%;
    max-width: 720px;
    align-self: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .sully-ai {
    --gutter: 16px;
    --fs-display: 34px;
    --fs-xl: 30px;
    --fs-lg: 26px;
    --fs-md: 22px;
    --fs-body: 17px;
    --fs-sm: 15px;
    --fs-stat: 40px;
    --section-y: 56px;
  }

  .sully-ai {
    font-size: var(--fs-body);
  }

  .sully-ai .hero__inner {
    padding-top: 40px;
  }

  .sully-ai .hero__logo {
    width: 140px;
    height: auto;
  }

  .sully-ai .hero__device {
    margin-top: 40px;
  }

  .sully-ai .intro {
    padding-top: 56px;
  }

  .intro__lede,
  .highlight__body,
  .agents__sub,
  .agent-panel__body,
  .split__body,
  .trust__body,
  .next__body,
  .faq__a,
  .outcome__label,
  .sully-ai .outcome__note {
    line-height: 1.6;
  }

  .sully-ai .challenge__grid {
    grid-template-columns: 1fr;
  }

  .sully-ai .challenge__grid .tile {
    grid-column: span 1 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    padding: 24px 0 !important;
  }

  .sully-ai .challenge__grid .tile:last-child {
    border-bottom: 0 !important;
  }

  .sully-ai .highlights {
    grid-template-columns: 1fr;
  }

  .sully-ai .highlight {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    gap: 16px;
  }

  .sully-ai .highlights .highlight:nth-child(-n+2) {
    border-bottom: 0;
  }

  .sully-ai .highlight .display-2 {
    white-space: normal;
  }

  .sully-ai .chapters {
    padding-block: 16px;
  }

  .sully-ai .chapters__list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sully-ai .chapters__list::-webkit-scrollbar {
    display: none;
  }

  .sully-ai .chapters__list li {
    flex: 0 0 auto;
  }

  .sully-ai .chapters__link {
    height: 48px;
    white-space: nowrap;
    font-size: var(--fs-sm);
  }

  .sully-ai .specs {
    grid-template-columns: 1fr;
  }

  .sully-ai .spec,
  .sully-ai .spec--full {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sully-ai .spec__key {
    width: auto;
  }

  .sully-ai .founders {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sully-ai .founder {
    flex: none;
    padding-bottom: 0;
  }

  .sully-ai .impact__chart {
    aspect-ratio: auto;
  }

  .sully-ai .impact__lines {
    position: static;
    height: auto;
    margin-top: 32px;
    opacity: .7;
  }

  .sully-ai .kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sully-ai .kpi {
    min-height: 0;
    padding: 20px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .sully-ai .kpi:first-child {
    padding-left: 16px;
  }

  .sully-ai .kpi:nth-child(2n) {
    border-right: 0;
  }

  .sully-ai .kpi:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .sully-ai .kpi__label {
    padding-top: 12px;
    max-width: none;
  }

  .sully-ai .why__list {
    padding-left: 22px;
  }

  .sully-ai .why__list li {
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .sully-ai .tile {
    gap: 16px;
    padding-block: 28px;
  }

  .sully-ai .engineering__grid {
    grid-template-columns: 1fr !important;
  }

  .sully-ai .engineering__grid .tile {
    grid-column: span 1 !important;
    padding: 28px 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
  }

  .sully-ai .engineering__grid .tile:nth-child(1),
  .sully-ai .engineering__grid .tile:nth-child(2),
  .sully-ai .engineering__grid .tile:nth-child(3),
  .sully-ai .engineering__grid .tile:nth-child(4) {
    padding: 28px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
  }

  .sully-ai .engineering__grid .tile:last-child {
    border-bottom: 0 !important;
  }

  .sully-ai .agents__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sully-ai .agents__tabs::-webkit-scrollbar {
    display: none;
  }

  .sully-ai .agent-tab {
    flex: 0 0 clamp(210px, 75vw, 250px);
    scroll-snap-align: start;
    min-height: 124px;
    padding: 14px 12px;
  }

  .sully-ai .agent-tab__id {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 0;
    font-size: var(--fs-sm);
  }

  .sully-ai .agent-tab__desc {
    font-size: 13px;
  }

  .sully-ai .progress {
    margin-block: 24px;
  }

  .sully-ai .progress__pill {
    min-width: 54px;
    font-size: 11px;
  }

  .sully-ai .agent-panel {
    padding: 10px;
    gap: 28px;
  }

  .sully-ai .agent-panel__headline {
    font-size: 28px;
  }

  .sully-ai .certs {
    grid-template-columns: 1fr;
  }

  .sully-ai .cert {
    min-height: 0;
    gap: 16px;
  }

  .sully-ai .bar {
    gap: 12px;
  }

  .sully-ai .bar__track {
    height: 40px;
  }

  .sully-ai .bar__value {
    min-width: 70px;
    font-size: 24px;
  }

  .sully-ai .rule {
    margin: 40px 0;
  }

  .sully-ai .outcomes {
    grid-template-columns: 1fr;
  }

  .sully-ai .outcome {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--on-navy-10);
  }

  .sully-ai .outcome:last-child {
    border-bottom: 0;
  }

  .sully-ai .matrix {
    min-width: 680px;
  }

  .sully-ai .matrix th,
  .sully-ai .matrix td {
    height: auto;
    padding: 20px;
  }

  .sully-ai .matrix tbody th {
    width: 160px;
  }

  .sully-ai .matrix tbody td {
    width: 260px;
  }

  .sully-ai .matrix__mark {
    margin-right: 10px;
  }

  .sully-ai .next__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .sully-ai .next__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px !important;
    background: var(--white) !important;
    border: 1px solid var(--line-soft) !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .03) !important;
  }

  .sully-ai .next__num {
    font-size: 32px;
    color: var(--navy);
    font-weight: 700;
  }

  .sully-ai .next__body {
    font-size: 16px;
    line-height: 1.6;
  }

  .sully-ai .faq__q::after {
    margin-right: 0;
    width: 20px;
    height: 20px;
  }

  .sully-ai .faq__a {
    padding: 12px 0 28px;
  }

  .sully-ai .orch__col {
    grid-template-columns: 1fr;
  }

  @media (max-width: 900px) {
    .sully-ai .orch {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px;
      padding: 32px 20px;
    }
  }

  @media (max-width: 600px) {
    .sully-ai .orch {
      grid-template-columns: 1fr !important;
      gap: 16px;
      padding: 24px 16px;
    }
  }

  .sully-ai .cta__copy {
    padding-top: 48px;
    padding-bottom: 0;
  }

  .sully-ai .cta__copy .display-1 {
    margin-bottom: 28px;
  }
}

@media (max-width: 400px) {
  .sully-ai {
    --fs-display: 30px;
    --fs-xl: 26px;
    --fs-lg: 23px;
  }

  .sully-ai .agents__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .sully-ai .agent-tab {
    flex: 0 0 clamp(200px, 80vw, 240px);
    min-height: 0;
  }

  .sully-ai .agent-tab__id {
    flex-direction: row;
  }

  .sully-ai .kpis {
    grid-template-columns: 1fr;
  }

  .sully-ai .kpi {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .sully-ai .kpi:first-child {
    padding-left: 0;
  }

  .sully-ai .kpi:last-child {
    border-bottom: 0;
  }
}

/* SEO Heading Element Resets */
.sully-ai h3.faq__q,
.sully-ai h3.agent-card__id,
.sully-ai h3.agent-panel__name,
.sully-ai h4.agent-panel__headline {
  margin: 0;
  padding: 0;
}