@font-face {
  font-family: "Madefor Display";
  src: url("../images/stpaulsai/fonts/madefor-display.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Madefor Text";
  src: url("../images/stpaulsai/fonts/madefor-text.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../images/stpaulsai/fonts/work-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.2);
  --shell: min(1280px, calc(100% - 52px));
  --shell-wide: min(1472px, calc(100% - 52px));
  --radius: 8px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Madefor Text", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

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

p,
h1,
h2,
h3,
ul,
li {
  margin: 0;
}

ul {
  padding: 0;
}

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

.shell--wide {
  width: var(--shell-wide);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.96);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 76px;
}

.header-branding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  padding-left: 0;
}

.brand {
  flex: 0 0 auto;
}

.brand img,
.header-brand--pwrd {
  display: block;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.header-brand--pwrd {
  height: clamp(36px, 4.2vw, 52px);
  min-width: 0;
}

.brand img {
  height: clamp(36px, 4.2vw, 52px);
  min-width: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  appearance: none;
}

.caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .caret,
.nav-dropdown:hover .caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(9, 11, 18, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 13px;
  font-weight: 600;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle__lines::after {
  position: absolute;
  top: 6px;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__inner {
  padding: 22px 0 36px;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-menu__title {
  font-family: "Madefor Display", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.mobile-menu__close img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.mobile-menu__group + .mobile-menu__group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__heading {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
}

.mobile-menu__group a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: min(980px, calc(100vh - 76px));
  overflow: hidden;
  background: #041024;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: brightness(1.14) saturate(1.08) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.16) 78%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(90deg, rgba(5, 11, 24, 0.18) 0%, rgba(5, 11, 24, 0.02) 36%, rgba(5, 11, 24, 0.08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(980px, calc(100vh - 76px));
  padding: 180px 0 108px;
  width: min(100%, calc(var(--shell) + 76px));
  margin-left: clamp(18px, 2.8vw, 42px);
  margin-right: auto;
}

.hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 500;
  line-height: 1.2;
}

.hero-title-row {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  width: fit-content;
  padding-right: clamp(76px, 6.2vw, 112px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-family: "Madefor Display", Arial, sans-serif;
  margin: 0;
  font-size: clamp(38px, 7vw, 100px);
  line-height: 0.9;
  font-weight: 700;
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: clamp(8px, 0.7vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(46px, 4.7vw, 72px);
}

.hero-badge video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-badge .alpha-video-canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
}

.intro-section {
  padding: 80px 0 108px;
  background:
    radial-gradient(circle at 82% 55%, rgba(126, 118, 255, 0.18) 0%, rgba(126, 118, 255, 0) 32%),
    linear-gradient(110deg, #05172c 0%, #111b3a 44%, #2d2f34 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 84px;
  align-items: center;
}

.intro-copy h2,
.cards-heading,
.create-head h2,
.fotor-copy h2,
.partner-top h2,
.steps-panel h2,
.site-footer__title {
  font-family: "Madefor Display", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.intro-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: 0.98;
}

.intro-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.72;
}

.intro-copy p + p {
  margin-top: 22px;
}

.intro-art img {
  width: min(100%, 430px);
  margin-inline: auto;
}

.create-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.7) 100%),
    url("../images/stpaulsai/sections/create-beyond-bg.avif") center/cover no-repeat;
}

.create-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 32%, rgba(39, 92, 236, 0.26) 100%),
    radial-gradient(circle at 100% 56%, rgba(193, 30, 255, 0.34) 0%, rgba(193, 30, 255, 0) 26%);
}

.create-shell {
  position: relative;
  z-index: 1;
  padding: 104px 0 118px;
}

.create-head {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.create-head h2 {
  font-size: clamp(52px, 5.8vw, 84px);
  line-height: 0.98;
}

.create-head p {
  max-width: 860px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  line-height: 1.52;
}

.create-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 92px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
}

.feature-list img {
  width: 18px;
  height: 18px;
}

.feature-list--right {
  text-align: left;
}

.feature-orbit {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.feature-orbit__ring,
.feature-orbit__logo {
  position: absolute;
  inset: 0;
  margin: auto;
}

.feature-orbit__ring {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  animation: ring-spin 36s linear infinite;
}

.feature-orbit__logo {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.cards-section {
  padding: 120px 0 128px;
  background: #000000;
}

.cards-scroll {
  position: relative;
}

.cards-sticky {
  position: relative;
}

.cards-heading {
  width: min(84.5%, 1210px);
  max-width: none;
  margin: 0 auto 50px;
  font-size: clamp(50px, 5.2vw, 74px);
  line-height: 1;
}

.cards-viewport {
  display: grid;
  gap: 32px;
}

.cards-stage {
  position: relative;
  width: min(85.5%, 1210px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 112px;
  align-items: start;
  transform-origin: center center;
  opacity: 0.92;
  transform: none;
  will-change: transform, opacity;
  transition: opacity 0.18s linear, transform 0.18s linear;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: min(37.8vw, 608px);
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  transform: scale(var(--card-scale, 1));
  transform-origin: center center;
  transition: transform 0.18s linear;
}

.info-card--video {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 28px 20px 16px;
}

.info-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
}

.info-card__media video {
  max-width: 100%;
  object-fit: contain;
}

.alpha-video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.alpha-video-canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.info-card--sky .info-card__media video {
  width: min(181px, 31%);
}

.info-card--violet .info-card__media video {
  width: min(174px, 30%);
}

.info-card--lime .info-card__media video {
  width: min(195px, 33%);
}

.info-card--sky .info-card__media,
.info-card--violet .info-card__media,
.info-card--lime .info-card__media {
  --alpha-media-width: 31%;
  --alpha-media-max-width: 195px;
  --alpha-media-height-ratio: 0.56;
  --alpha-media-shift-y: -2%;
}

.info-card--sky .info-card__media {
  --alpha-media-width: 31%;
  --alpha-media-max-width: 181px;
  --alpha-media-shift-y: -3%;
}

.info-card--violet .info-card__media {
  --alpha-media-width: 30%;
  --alpha-media-max-width: 174px;
  --alpha-media-shift-y: 1%;
}

.info-card--lime .info-card__media {
  --alpha-media-width: 33%;
  --alpha-media-max-width: 195px;
  --alpha-media-shift-y: 2%;
}

.info-card--video .alpha-video-canvas {
  width: min(var(--alpha-media-max-width), var(--alpha-media-width));
  height: auto;
  aspect-ratio: 1 / 1;
  transform: translateY(var(--alpha-media-shift-y));
}

.info-card__caption {
  /* margin-top: 14px; */
  font-size: 37px;
  font-weight: 700;
  line-height: 1.2;
  z-index: 20;
    position: absolute;
    top: 350px;
}

.info-card--copy {
  padding: 36px 34px;
}

.info-card__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 17px;
  line-height: 1.34;
}

.info-card__copy p + p,
.info-card__copy p + ul,
.info-card__copy ul + p {
  margin-top: 10px;
}

.info-card__copy ul {
  padding-left: 22px;
}

.info-card__copy li + li {
  margin-top: 4px;
}

.info-card__copy--centered {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 30px;
  padding-top: 12px;
  text-align: center;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}

.info-card__art {
  position: absolute;
  z-index: 0;
}

.info-card__art--bottom {
  bottom: 0;
  left: 50%;
  width: min(86%, 300px);
  transform: translateX(-50%);
}

.info-card--sky {
  background: conic-gradient(from 152deg at 50% 50%, #0057e1 0%, #f9c5b4 68%, #0057e1 100%);
}

.info-card--indigo {
  background: conic-gradient(from 152deg at 50% 50%, rgba(0, 87, 225, 0.8) 0%, rgba(249, 197, 180, 0.8) 68%, rgba(0, 87, 225, 0.8) 100%);
}

.info-card--violet {
  background: conic-gradient(from 136deg at 50% 0%, rgba(85, 14, 155, 0.8) 0%, rgba(128, 21, 232, 0.8) 6%, rgba(243, 167, 143, 0.8) 12%, rgba(85, 14, 155, 0.8) 28%);
}

.info-card--plum {
  background: conic-gradient(from 136deg at 50% 0%, rgba(85, 14, 155, 0.8) 0%, rgba(128, 21, 232, 0.8) 6%, rgba(243, 167, 143, 0.8) 12%, rgba(85, 14, 155, 0.8) 28%);
}

.info-card--lime {
  background: radial-gradient(circle farthest-corner at 32% 26%, rgba(154, 96, 246, 0.8) 0%, rgba(19, 91, 247, 0.8) 36.0321%, rgba(210, 250, 0, 0.8) 75.6775%);
}

.info-card--green {
  background: radial-gradient(circle farthest-corner at 32% 26%, rgba(154, 96, 246, 0.8) 0%, rgba(19, 91, 247, 0.8) 36.0321%, rgba(210, 250, 0, 0.8) 75.6775%);
}

.fotor-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #090909;
  min-height: 129.9706453402367vh;
}

.fotor-section__content {
  position: relative;
  display: grid;
  min-height: inherit;
  grid-template-rows: minmax(max-content, 44.151298672428666%) minmax(max-content, 5.007958314437894%) minmax(max-content, 50.84158952881443%);
}

.fotor-copy-shell,
.fotor-cta-shell {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fotor-copy-shell {
  grid-area: 1 / 1 / 2 / 2;
  padding-top: 45px;
}

.fotor-copy {
  position: relative;
  z-index: 2;
  width: 58.4375%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.fotor-copy h2 {
  font-size: 62px;
  line-height: normal;
}

.fotor-copy p {
  width: 79.01069518716578%;
  max-width: 665px;
  margin: 32px auto 0;
  color: rgba(9, 9, 9, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.fotor-cta-shell {
  grid-area: 1 / 1 / 2 / 2;
  padding-top: 338.84375px;
}

.fotor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  margin-top: 0;
  padding: 0;
  height: 46px;
  min-height: 46px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.outline-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.fotor-cta {
  margin-top: 0;
}

.fotor-stage {
  position: relative;
  grid-area: 3 / 1 / 4 / 2;
  pointer-events: none;
}

.fotor-stage__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.fotor-stage__device {
  position: absolute;
  top: -49.8203125px;
  left: 50%;
  width: 190px;
  height: 370px;
  background: #ffffff;
  transform: translateX(-50%);
  border-radius: 15px;
  box-shadow: 0 0 0 3px #000000;
}

.fotor-stage__device-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 4px solid #000000;
  border-radius: 10px;
  background: #ffffff;
}

.fotor-stage__phone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
}

@media (max-width: 1000px) {
  .fotor-section {
    min-height: 100vh;
  }

  .fotor-section__content {
    grid-template-rows: minmax(max-content, 34.1792656587473%) minmax(max-content, 17.209438444924405%) minmax(max-content, 48.60942725513429%);
  }

  .fotor-copy-shell {
    padding-top: 280px;
  }

  .fotor-copy {
    width: 78.74959309895833%;
  }

  .fotor-copy h2 {
    font-size: 46.875px;
  }

  .fotor-copy p {
    max-width: 622px;
    margin-top: 22px;
  }

  .fotor-cta-shell {
    grid-area: 2 / 1 / 3 / 2;
    padding-top: 235.3125px;
  }

  .fotor-stage__device {
    top: -79.6796875px;
  }
}

@media (max-width: 750px) {
  .fotor-section {
    min-height: 429.0546875px;
  }

  .fotor-section__content {
    grid-template-rows: minmax(196.46955277073178px, auto) minmax(88.156px, auto) minmax(144.43px, auto);
  }

  .fotor-copy-shell {
    padding-top: 96px;
  }

  .fotor-copy {
    width: 78.74959309895833%;
  }

  .fotor-copy h2 {
    font-size: 35.1557px;
  }

  .fotor-copy p {
    width: 99.91866612444083%;
    max-width: 590px;
    margin-top: 23px;
  }

  .fotor-cta-shell {
    grid-area: 2 / 1 / 3 / 2;
    padding-top: 42.359375px;
    padding-bottom: 23.375px;
  }

  .fotor-stage__device {
    display: none;
  }
}

@media (max-width: 640px) {
  .fotor-copy-shell {
    padding-top: 50px;
  }

  .fotor-copy h2 {
    font-size: 28px;
  }

  .fotor-copy p {
    max-width: 307px;
    margin-top: 12px;
  }

  .fotor-cta-shell {
    padding-top: 21.8125px;
    padding-bottom: 32.390625px;
  }
}

.partner-section {
  overflow: visible;
  background:
    radial-gradient(circle at 8% 90%, rgba(215, 155, 227, 0.52) 0%, rgba(215, 155, 227, 0) 24%),
    radial-gradient(circle at 90% 10%, rgba(219, 194, 118, 0.34) 0%, rgba(219, 194, 118, 0) 18%),
    linear-gradient(135deg, #24217d 0%, #4e6ecf 58%, #2262ee 100%);
  padding: 44px 0 126px;
}

.partner-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: clamp(36px, 5vw, 72px);
  justify-items: stretch;
}

.partner-top {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

.partner-top__kicker {
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.3;
}

.partner-top h2 {
  margin-top: 14px;
  font-size: clamp(42px, 4.25vw, 60px);
  line-height: 1.04;
}

.partner-copy {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-left: 0;
  margin-top: 0;
}

.partner-copy h3 {
  margin: 0 0 22px;
  font-family: "Madefor Text", Arial, sans-serif;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}

.partner-copy h4 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.partner-copy__strap {
  margin-bottom: 26px;
  max-width: 1380px;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.28;
}

.partner-copy p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 1420px;
  font-size: clamp(16px, 1.32vw, 21px);
  line-height: 1.24;
}

.partner-copy p + p {
  margin-top: 26px;
}

.steps-section {
  padding: 96px 0 18px;
  background: #000000;
}

.steps-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 61, 165, 0.88) 0%, rgba(44, 127, 198, 0.82) 38%, rgba(62, 73, 196, 0.9) 100%),
    url("../images/stpaulsai/steps/steps-card.avif") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.steps-panel__content {
  position: relative;
  z-index: 1;
  width: min(82.5%, 1212px);
  margin: 0 auto;
  padding: 62px 0 176px;
}

.steps-panel h2 {
  text-align: center;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
  width: min(99.6%, 1208px);
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  max-width: none;
}

.step-card__index {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.step-card p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.62;
}

.submit-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  min-height: 42px;
  margin: 42px auto 0;
  border: 1px solid #000000;
  border-radius: 0;
  background: conic-gradient(from 152deg at 50% 50%, #0057e1 0%, #f9c5b4 68%, #0057e1 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
}

.qr-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 42px auto 0;
}

.qr-placeholder__image {
  display: block;
  width: 164px;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
}

.qr-placeholder__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.qr-placeholder__link {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.steps-panel__graphic {
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: min(720px, 66vw);
  transform: translateX(-50%);
  opacity: 0.34;
}

.site-footer {
  padding: 34px 0 92px;
  background: #000000;
}

.site-footer__title {
  font-size: clamp(84px, 10.8vw, 176px);
  line-height: 0.84;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, 0.62fr) minmax(420px, 1.28fr);
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  font-size: 17px;
  font-weight: 700;
}

.contact-card {
  padding: 34px 36px 38px;
  border-radius: var(--radius);
  background: #ffffff;
  color: #0a0a0a;
}

.contact-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-card__copy {
  margin-top: 12px;
  color: rgba(10, 10, 10, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.contact-card__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.field {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.field strong {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.24);
  border-radius: 0;
  background: transparent;
  color: #0a0a0a;
  padding: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #0a0a0a;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(10, 10, 10, 0.56);
}

.contact-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  margin: 28px auto 0;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
    gap: 48px;
  }

  .create-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-list {
    max-width: 720px;
    margin: 0 auto;
  }

  .feature-orbit {
    order: -1;
  }

  .cards-stage {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    opacity: 1;
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(1280px, calc(100% - 32px));
    --shell-wide: min(1472px, calc(100% - 32px));
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 150px;
    padding-bottom: 88px;
    width: var(--shell);
    margin-left: auto;
  }

  .hero-title-row {
    align-items: flex-end;
    padding-right: 64px;
  }

  .hero-badge {
    width: 46px;
    bottom: 8px;
  }

  .intro-section,
  .create-shell,
  .cards-section,
  .partner-section,
  .steps-section,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

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

  .intro-copy p {
    font-size: 17px;
  }

  .feature-list li,
  .create-head p,
  .info-card__copy,
  .partner-copy p,
  .step-card p {
    font-size: 17px;
  }

  .steps-grid,
  .contact-card__row {
    grid-template-columns: 1fr;
  }

  .step-card {
    max-width: none;
  }

  .partner-section {
    padding-top: 82px;
  }

  .partner-top {
    width: 100%;
  }

  .partner-copy {
    width: min(100%, 760px);
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 0;
    margin-top: 56px;
  }
}

@media (max-width: 640px) {
  .header-row {
    min-height: 68px;
  }

  .header-branding {
    gap: 8px;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  .header-brand--pwrd {
    height: clamp(24px, 8vw, 34px);
  }

  .brand img {
    height: clamp(24px, 8vw, 34px);
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 48px;
    margin-left: auto;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero-title-row {
    padding-right: 48px;
  }

  .hero-badge {
    width: 38px;
    bottom: 8px;
  }

  .intro-section {
    padding: 64px 0 86px;
  }

  .create-shell {
    padding: 78px 0 94px;
  }

  .create-grid {
    margin-top: 54px;
  }

  .feature-list li {
    min-height: 54px;
    font-size: 15px;
  }

  .cards-section {
    padding: 82px 0 90px;
  }

  .cards-heading {
    width: 100%;
  }

  .info-card {
    min-height: 360px;
  }

  .info-card--copy {
    padding: 28px 24px 32px;
  }

  .info-card__copy h3 {
    font-size: 28px;
  }

  .info-card__copy--centered {
    font-size: 18px;
  }

  .info-card--video .alpha-video-canvas {
    width: min(46vw, var(--alpha-media-max-width));
  }

  .partner-section {
    padding: 84px 0 92px;
  }

  .partner-copy {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 44px;
  }

  .partner-copy h3 {
    margin-bottom: 14px;
    font-size: 32px;
  }

  .partner-copy__strap,
  .partner-copy p,
  .step-card p,
  .contact-card__copy {
    font-size: 15px;
  }

  .steps-panel__content {
    width: 100%;
    padding: 36px 22px 124px;
  }

  .steps-grid {
    gap: 24px;
    margin-top: 34px;
    width: 100%;
  }

  .qr-placeholder__label,
  .qr-placeholder__image {
    display: none;
  }

  .qr-placeholder__link {
    display: inline-flex;
  }

  .site-footer {
    padding: 24px 0 70px;
  }

  .footer-grid {
    margin-top: 22px;
    gap: 28px;
  }

  .contact-card {
    padding: 24px 20px 28px;
  }
}

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

  .reveal,
  .nav-menu,
  .site-header,
  .caret,
  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after,
  .feature-orbit__ring {
    transition: none;
    animation: none;
  }
}
