:root {
  --font-ui: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Clash Display', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hero-purple: #3d3664;
  --hero-rule: #564d88;
  --hero-text: #ecebef;
  --lavender: #f1effb;
  --text-main: #3d3664;
  --muted: #838fa0;
  --border-light: #e2dff7;
  --card-border: #8d80e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #ececec;
  color: var(--text-main);
  font-family: var(--font-ui);
  overflow-x: hidden;
  padding-bottom: 100px;
}

.info-shell {
  min-height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  padding: 0;
}

.info-artboard {
  position: relative;
  width: min(100vw, 430px);
  min-height: 100vh;
  background: var(--lavender);
  overflow: hidden;
}

.info-stage {
  position: relative;
  width: 100%;
  height: 604px;
  background-color: var(--hero-purple);
  overflow: hidden;
}

.info-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.info-art__layer {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.info-art__layer--base,
.info-art__layer--band {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.info-art__layer--base {
  min-height: 100%;
}

.info-art__layer--band {
  top: 8px;
}

.info-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hero-rule);
  z-index: 1;
}

.info-divider.top {
  top: 108px;
}

.info-title {
  position: absolute;
  top: 258px;
  left: 24px;
  width: calc(100% - 48px);
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 78px;
  font-weight: 600;
  color: var(--hero-text);
  z-index: 2;
}

.info-card {
  width: calc(100% - 48px);
  margin: -84px 24px 0;
  background: #ffffff;
  border: 0;
  border-top: 3px solid var(--card-border);
  box-shadow: none;
  padding: 20px;
}

.info-card--below-hero {
  margin: 24px 24px 0;
}

.info-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--text-main);
}

.info-card h3 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--text-main);
}

.info-card h4 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--text-main);
}

.info-card p,
.info-card li,
.info-card .info-card-meta {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-main);
}

.info-card p,
.info-card .info-card-meta {
  margin-top: 12px;
}

.info-card ul,
.info-card ol {
  margin-top: 12px;
  padding-left: 20px;
}

.info-card li + li {
  margin-top: 10px;
}

.info-card strong {
  font-weight: 600;
}

.info-card a {
  color: #7460e1;
}

.info-kicker {
  display: inline-flex;
  margin-top: 0;
  color: #7460e1;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-meta-row,
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1effb;
  color: var(--text-main);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.info-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.info-link-card,
.info-callout {
  display: block;
  border: 1px solid var(--border-light);
  background: #f8f7ff;
  padding: 16px;
  text-decoration: none;
}

.info-link-card strong,
.info-callout strong {
  display: block;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}

.info-link-card span,
.info-callout span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
}

.info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #7460e1;
  background: #7460e1;
  color: #ffffff !important;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.info-button--secondary {
  background: #ffffff;
  color: #7460e1 !important;
}

.info-footer {
  margin: 24px 24px 140px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.info-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.info-footer__links a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.home-footer {
  margin: 32px 0 0;
  width: 100%;
  padding: 32px 24px 156px;
  background: #3d3664;
  color: #c9c4ea;
  overflow: hidden;
  position: relative;
}

.home-footer::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle, rgba(241, 239, 251, 0.08) 0 2px, transparent 2px 100%);
  background-size: 10px 10px;
  opacity: 0.22;
  pointer-events: none;
}

.home-footer__desktop {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.home-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f5f2ff;
}

.home-footer__brand-row img {
  width: 34px;
  height: 32px;
  display: block;
}

.home-footer__brand-row span {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
}

.home-footer__brand-copy,
.home-footer__brand-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 28px;
  color: #c9c4ea;
}

.home-footer__brand-note {
  margin-top: 20px;
}

.home-footer__column-title {
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #f5f2ff;
  margin-bottom: 16px;
}

.home-footer__column-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.home-footer__column-links a {
  color: #c9c4ea;
  text-decoration: none;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}

.home-footer__column-links a:hover {
  color: #f5f2ff;
}

.home-footer__links {
  display: none;
}

.app-bottom-nav {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.footer-in-view .app-bottom-nav {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 390px) {
  .info-title {
    font-size: 52px;
    line-height: 70px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .home-footer {
    margin-top: 64px;
    padding: 40px 44px 156px;
  }

  .home-footer__desktop {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 40px 48px;
  }

  body[data-page-key="about"],
  body[data-page-key="dmca"],
  body[data-page-key="privacy-policy"],
  body[data-page-key="terms-of-service"] {
    background: var(--lavender);
    padding-bottom: 0;
  }

  body[data-page-key="about"] .info-artboard,
  body[data-page-key="dmca"] .info-artboard,
  body[data-page-key="privacy-policy"] .info-artboard,
  body[data-page-key="terms-of-service"] .info-artboard {
    width: 100vw;
    max-width: 100vw;
  }

  body[data-page-key="about"] .info-stage,
  body[data-page-key="dmca"] .info-stage,
  body[data-page-key="privacy-policy"] .info-stage,
  body[data-page-key="terms-of-service"] .info-stage {
    height: 420px;
  }

  body[data-page-key="about"] .info-art__layer--base,
  body[data-page-key="about"] .info-art__layer--band,
  body[data-page-key="dmca"] .info-art__layer--base,
  body[data-page-key="dmca"] .info-art__layer--band,
  body[data-page-key="privacy-policy"] .info-art__layer--base,
  body[data-page-key="privacy-policy"] .info-art__layer--band,
  body[data-page-key="terms-of-service"] .info-art__layer--base,
  body[data-page-key="terms-of-service"] .info-art__layer--band {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-key="about"] .info-title,
  body[data-page-key="about"] .info-card,
  body[data-page-key="dmca"] .info-title,
  body[data-page-key="dmca"] .info-card,
  body[data-page-key="privacy-policy"] .info-title,
  body[data-page-key="privacy-policy"] .info-card,
  body[data-page-key="terms-of-service"] .info-title,
  body[data-page-key="terms-of-service"] .info-card {
    width: min(680px, calc(100vw - 56px));
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page-key="about"] .info-title,
  body[data-page-key="dmca"] .info-title,
  body[data-page-key="privacy-policy"] .info-title,
  body[data-page-key="terms-of-service"] .info-title {
    top: 180px;
    left: 50%;
    font-size: 64px;
    line-height: 74px;
    transform: translateX(-50%);
  }

  body[data-page-key="about"] .home-footer,
  body[data-page-key="dmca"] .home-footer,
  body[data-page-key="privacy-policy"] .home-footer,
  body[data-page-key="terms-of-service"] .home-footer {
    margin-top: 64px;
    padding: 40px 44px 156px;
  }

  body[data-page-key="about"] .home-footer__desktop,
  body[data-page-key="dmca"] .home-footer__desktop,
  body[data-page-key="privacy-policy"] .home-footer__desktop,
  body[data-page-key="terms-of-service"] .home-footer__desktop {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 40px 48px;
  }

  body[data-page-key="blog"] {
    background: var(--lavender);
    padding-bottom: 0;
  }

  body[data-page-key="blog"] .info-artboard {
    width: 100vw;
    max-width: 100vw;
  }

  body[data-page-key="blog"] .info-stage {
    height: 420px;
  }

  body[data-page-key="blog"] .info-art__layer--base,
  body[data-page-key="blog"] .info-art__layer--band {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-key="blog"] .info-title,
  body[data-page-key="blog"] .info-card {
    width: min(680px, calc(100vw - 56px));
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page-key="blog"] .info-title {
    top: 180px;
    left: 50%;
    font-size: 64px;
    line-height: 74px;
    transform: translateX(-50%);
  }

  body[data-page-key="contact"] {
    background: var(--lavender);
    padding-bottom: 0;
  }

  body[data-page-key="contact"] .info-artboard {
    width: 100vw;
    max-width: 100vw;
  }

  body[data-page-key="contact"] .info-stage {
    height: 420px;
  }

  body[data-page-key="contact"] .info-art__layer--base,
  body[data-page-key="contact"] .info-art__layer--band {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-key="contact"] .info-title,
  body[data-page-key="contact"] .info-card {
    width: min(680px, calc(100vw - 56px));
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page-key="contact"] .info-title {
    top: 180px;
    left: 50%;
    font-size: 64px;
    line-height: 74px;
    transform: translateX(-50%);
  }

  body[data-page-key="contact"] .info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-key="contact"] .home-footer {
    margin-top: 64px;
    padding: 40px 44px 156px;
  }

  body[data-page-key="contact"] .home-footer__desktop {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 40px 48px;
  }
}

@media (min-width: 900px) {
  .home-footer {
    width: 100%;
    margin: 96px auto 0;
    padding: 64px 80px 72px;
    border-top: 0;
    background: #3d3664;
    color: #c9c4ea;
    overflow: hidden;
    position: relative;
  }

  .home-footer::before {
    right: -60px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    opacity: 0.28;
  }

  .home-footer__desktop {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 56px;
  }

  .home-footer__brand {
    max-width: 320px;
  }

  .home-footer__brand-row {
    gap: 14px;
  }

  .home-footer__brand-row img {
    width: 42px;
    height: 40px;
  }

  .home-footer__brand-row span {
    font-size: 34px;
    line-height: 40px;
  }

  .home-footer__brand-copy,
  .home-footer__brand-note {
    margin-top: 22px;
    font-size: 15px;
    line-height: 28px;
  }

  .home-footer__brand-note {
    margin-top: 28px;
  }

  .home-footer__column-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 22px;
  }

  .home-footer__column-links {
    gap: 16px;
  }

  body[data-page-key="about"],
  body[data-page-key="dmca"],
  body[data-page-key="privacy-policy"],
  body[data-page-key="terms-of-service"] {
    background:
      radial-gradient(circle at top, rgba(126, 110, 214, 0.18), transparent 32%),
      linear-gradient(180deg, #f6f4ff 0%, #ece9fb 100%);
    padding-bottom: 0;
  }

  body[data-page-key="about"] .info-shell,
  body[data-page-key="dmca"] .info-shell,
  body[data-page-key="privacy-policy"] .info-shell,
  body[data-page-key="terms-of-service"] .info-shell {
    min-height: 100vh;
    display: block;
  }

  body[data-page-key="about"] .info-artboard,
  body[data-page-key="dmca"] .info-artboard,
  body[data-page-key="privacy-policy"] .info-artboard,
  body[data-page-key="terms-of-service"] .info-artboard {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    background: transparent;
    overflow: visible;
  }

  body[data-page-key="about"] .info-stage,
  body[data-page-key="dmca"] .info-stage,
  body[data-page-key="privacy-policy"] .info-stage,
  body[data-page-key="terms-of-service"] .info-stage {
    height: 430px;
    box-shadow: 0 28px 80px rgba(44, 34, 94, 0.16);
  }

  body[data-page-key="about"] .info-art__layer--base,
  body[data-page-key="about"] .info-art__layer--band,
  body[data-page-key="dmca"] .info-art__layer--base,
  body[data-page-key="dmca"] .info-art__layer--band,
  body[data-page-key="privacy-policy"] .info-art__layer--base,
  body[data-page-key="privacy-policy"] .info-art__layer--band,
  body[data-page-key="terms-of-service"] .info-art__layer--base,
  body[data-page-key="terms-of-service"] .info-art__layer--band {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-key="about"] .info-divider.top,
  body[data-page-key="dmca"] .info-divider.top,
  body[data-page-key="privacy-policy"] .info-divider.top,
  body[data-page-key="terms-of-service"] .info-divider.top {
    top: 126px;
  }

  body[data-page-key="about"] .info-title,
  body[data-page-key="dmca"] .info-title,
  body[data-page-key="privacy-policy"] .info-title,
  body[data-page-key="terms-of-service"] .info-title {
    top: 174px;
    left: 50%;
    width: min(1120px, calc(100vw - 80px));
    font-size: clamp(60px, 6.5vw, 96px);
    line-height: 0.98;
    transform: translateX(-50%);
    text-wrap: balance;
  }

  body[data-page-key="about"] .info-card,
  body[data-page-key="dmca"] .info-card,
  body[data-page-key="privacy-policy"] .info-card,
  body[data-page-key="terms-of-service"] .info-card {
    width: min(1120px, calc(100vw - 80px));
    margin: -64px auto 0;
    padding: 64px 72px 72px;
  }

  body[data-page-key="about"] .info-card h2,
  body[data-page-key="dmca"] .info-card h2,
  body[data-page-key="privacy-policy"] .info-card h2,
  body[data-page-key="terms-of-service"] .info-card h2 {
    font-size: 30px;
    line-height: 38px;
  }

  body[data-page-key="about"] .info-card h3,
  body[data-page-key="dmca"] .info-card h3,
  body[data-page-key="privacy-policy"] .info-card h3,
  body[data-page-key="terms-of-service"] .info-card h3 {
    font-size: 23px;
    line-height: 31px;
  }

  body[data-page-key="about"] .info-card p,
  body[data-page-key="about"] .info-card li,
  body[data-page-key="about"] .info-card .info-card-meta,
  body[data-page-key="dmca"] .info-card p,
  body[data-page-key="dmca"] .info-card li,
  body[data-page-key="dmca"] .info-card .info-card-meta,
  body[data-page-key="privacy-policy"] .info-card p,
  body[data-page-key="privacy-policy"] .info-card li,
  body[data-page-key="privacy-policy"] .info-card .info-card-meta,
  body[data-page-key="terms-of-service"] .info-card p,
  body[data-page-key="terms-of-service"] .info-card li,
  body[data-page-key="terms-of-service"] .info-card .info-card-meta {
    max-width: 84ch;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page-key="about"] .home-footer,
  body[data-page-key="dmca"] .home-footer,
  body[data-page-key="privacy-policy"] .home-footer,
  body[data-page-key="terms-of-service"] .home-footer {
    width: 100%;
    margin: 96px auto 0;
    padding: 64px 80px 72px;
    border-top: 0;
  }

  body[data-page-key="about"] .home-footer::before,
  body[data-page-key="dmca"] .home-footer::before,
  body[data-page-key="privacy-policy"] .home-footer::before,
  body[data-page-key="terms-of-service"] .home-footer::before {
    right: -60px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    opacity: 0.28;
  }

  body[data-page-key="about"] .home-footer__desktop,
  body[data-page-key="dmca"] .home-footer__desktop,
  body[data-page-key="privacy-policy"] .home-footer__desktop,
  body[data-page-key="terms-of-service"] .home-footer__desktop {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 56px;
  }

  body[data-page-key="about"] .home-footer__brand,
  body[data-page-key="dmca"] .home-footer__brand,
  body[data-page-key="privacy-policy"] .home-footer__brand,
  body[data-page-key="terms-of-service"] .home-footer__brand {
    max-width: 320px;
  }

  body[data-page-key="about"] .home-footer__brand-row,
  body[data-page-key="dmca"] .home-footer__brand-row,
  body[data-page-key="privacy-policy"] .home-footer__brand-row,
  body[data-page-key="terms-of-service"] .home-footer__brand-row {
    gap: 14px;
  }

  body[data-page-key="about"] .home-footer__brand-row img,
  body[data-page-key="dmca"] .home-footer__brand-row img,
  body[data-page-key="privacy-policy"] .home-footer__brand-row img,
  body[data-page-key="terms-of-service"] .home-footer__brand-row img {
    width: 42px;
    height: 40px;
  }

  body[data-page-key="about"] .home-footer__brand-row span,
  body[data-page-key="dmca"] .home-footer__brand-row span,
  body[data-page-key="privacy-policy"] .home-footer__brand-row span,
  body[data-page-key="terms-of-service"] .home-footer__brand-row span {
    font-size: 34px;
    line-height: 40px;
  }

  body[data-page-key="about"] .home-footer__brand-copy,
  body[data-page-key="about"] .home-footer__brand-note,
  body[data-page-key="dmca"] .home-footer__brand-copy,
  body[data-page-key="dmca"] .home-footer__brand-note,
  body[data-page-key="privacy-policy"] .home-footer__brand-copy,
  body[data-page-key="privacy-policy"] .home-footer__brand-note,
  body[data-page-key="terms-of-service"] .home-footer__brand-copy,
  body[data-page-key="terms-of-service"] .home-footer__brand-note {
    margin-top: 22px;
    font-size: 15px;
    line-height: 28px;
  }

  body[data-page-key="about"] .home-footer__brand-note,
  body[data-page-key="dmca"] .home-footer__brand-note,
  body[data-page-key="privacy-policy"] .home-footer__brand-note,
  body[data-page-key="terms-of-service"] .home-footer__brand-note {
    margin-top: 28px;
  }

  body[data-page-key="about"] .home-footer__column-title,
  body[data-page-key="dmca"] .home-footer__column-title,
  body[data-page-key="privacy-policy"] .home-footer__column-title,
  body[data-page-key="terms-of-service"] .home-footer__column-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 22px;
  }

  body[data-page-key="about"] .home-footer__column-links,
  body[data-page-key="dmca"] .home-footer__column-links,
  body[data-page-key="privacy-policy"] .home-footer__column-links,
  body[data-page-key="terms-of-service"] .home-footer__column-links {
    gap: 16px;
  }

  body[data-page-key="blog"] {
    background: var(--lavender);
    padding-bottom: 0;
  }

  body[data-page-key="blog"] .info-shell {
    min-height: 100vh;
    display: block;
  }

  body[data-page-key="blog"] .info-artboard {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
  }

  body[data-page-key="blog"] .info-stage {
    height: 430px;
  }

  body[data-page-key="blog"] .info-art__layer--base,
  body[data-page-key="blog"] .info-art__layer--band {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-key="blog"] .info-divider.top {
    top: 126px;
  }

  body[data-page-key="blog"] .info-title {
    top: 174px;
    left: 50%;
    width: min(1120px, calc(100vw - 80px));
    font-size: clamp(68px, 7vw, 104px);
    line-height: 0.95;
    transform: translateX(-50%);
  }

  body[data-page-key="blog"] .info-card {
    width: min(1120px, calc(100vw - 80px));
    margin-left: auto;
    margin-right: auto;
    padding: 34px;
  }

  body[data-page-key="blog"] .info-card h2 {
    font-size: 34px;
    line-height: 42px;
  }

  body[data-page-key="blog"] .info-card h3 {
    font-size: 23px;
    line-height: 31px;
  }

  body[data-page-key="blog"] .info-card p,
  body[data-page-key="blog"] .info-card li,
  body[data-page-key="blog"] .info-card .info-card-meta {
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page-key="blog"] .info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-key="blog"] .info-link-card,
  body[data-page-key="blog"] .info-callout {
    padding: 22px;
  }

  body[data-page-key="contact"] {
    background:
      radial-gradient(circle at top, rgba(126, 110, 214, 0.18), transparent 32%),
      linear-gradient(180deg, #f6f4ff 0%, #ece9fb 100%);
    padding-bottom: 0;
  }

  body[data-page-key="contact"] .info-shell {
    min-height: 100vh;
    display: block;
  }

  body[data-page-key="contact"] .info-artboard {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    background: transparent;
    overflow: visible;
  }

  body[data-page-key="contact"] .info-stage {
    height: 430px;
    box-shadow: 0 28px 80px rgba(44, 34, 94, 0.16);
  }

  body[data-page-key="contact"] .info-art__layer--base,
  body[data-page-key="contact"] .info-art__layer--band {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-key="contact"] .info-divider.top {
    top: 126px;
  }

  body[data-page-key="contact"] .info-title {
    top: 174px;
    left: 50%;
    width: min(1120px, calc(100vw - 80px));
    font-size: clamp(60px, 6.5vw, 96px);
    line-height: 0.98;
    transform: translateX(-50%);
    text-wrap: balance;
  }

  body[data-page-key="contact"] .info-card {
    width: min(1120px, calc(100vw - 80px));
    margin: -64px auto 0;
    padding: 64px 72px 72px;
  }

  body[data-page-key="contact"] .info-card h2 {
    font-size: 30px;
    line-height: 38px;
  }

  body[data-page-key="contact"] .info-card h3 {
    font-size: 23px;
    line-height: 31px;
  }

  body[data-page-key="contact"] .info-card p,
  body[data-page-key="contact"] .info-card li,
  body[data-page-key="contact"] .info-card .info-card-meta {
    max-width: 84ch;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page-key="contact"] .info-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page-key="contact"] .info-link-card,
  body[data-page-key="contact"] .info-callout {
    padding: 22px;
  }

  body[data-page-key="contact"] .home-footer {
    width: 100%;
    margin: 96px auto 0;
    padding: 64px 80px 72px;
    border-top: 0;
  }

  body[data-page-key="contact"] .home-footer::before {
    right: -60px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    opacity: 0.28;
  }

  body[data-page-key="contact"] .home-footer__desktop {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 56px;
  }

  body[data-page-key="contact"] .home-footer__brand {
    max-width: 320px;
  }

  body[data-page-key="contact"] .home-footer__brand-row {
    gap: 14px;
  }

  body[data-page-key="contact"] .home-footer__brand-row img {
    width: 42px;
    height: 40px;
  }

  body[data-page-key="contact"] .home-footer__brand-row span {
    font-size: 34px;
    line-height: 40px;
  }

  body[data-page-key="contact"] .home-footer__brand-copy,
  body[data-page-key="contact"] .home-footer__brand-note {
    margin-top: 22px;
    font-size: 15px;
    line-height: 28px;
  }

  body[data-page-key="contact"] .home-footer__brand-note {
    margin-top: 28px;
  }

  body[data-page-key="contact"] .home-footer__column-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 22px;
  }

  body[data-page-key="contact"] .home-footer__column-links {
    gap: 16px;
  }

}
