@charset "UTF-8";
/*
 * iro code. リセットCSS 2025（本番用・コメント軽量版）
 */
/* ボックスモデル */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージンリセット */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テーブルセルのUA既定padding(1px)を除去（SPの積み上げレイアウトで1セルあたり+2pxの高さ誤差になる） */
th, td {
  padding: 0;
}

/* スマホタップ時のOS既定ハイライト（灰色のちらつき）を無効化 */
* {
  -webkit-tap-highlight-color: transparent;
}

/* HTML基本設定 */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* body基本設定 */
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* リスト */
ul, ol {
  list-style: none;
}

/* 画像・メディア */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 見出し・段落
   overflow-wrap は残す（URL・長い英単語・型番が「1語で行に収まらない時だけ」割る＝はみ出し防止）。
   text-wrap の balance / pretty は一律では入れない:
   - pretty は英文の孤立行対策。効かせるため前の行から文字を引き戻すので、和文では前の行が短くなり右側に余白が空く
   - balance は行長を揃えるため意図的に行を短くする→カンプの改行と食い違う
   - どちらも Firefox 未対応（2026-07時点）でブラウザ間の改行位置が変わる
   使いたい箇所だけ .u-balance / .u-pretty で個別に付ける */
h1, h2, h3, h4, h5, h6,
p {
  overflow-wrap: break-word;
}

/* リンク */
a {
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* フォーム */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label, button, select {
  cursor: pointer;
}

/* アクセシビリティ配慮 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    interpolate-size: allow-keywords;
  }
}
html {
  --header-height: 4.5rem;
  font-size: 16px;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    --header-height: 7.5rem;
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

html:not(.has-js) {
  --header-height: 7rem;
}
@media (min-width: 768px) {
  html:not(.has-js) {
    --header-height: 7.5rem;
  }
}

body {
  color: #06283c;
  background: #faf9f6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.9;
}

a {
  color: inherit;
}

button {
  border-radius: 0;
}

button,
summary,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid #2a838b;
  outline-offset: 5px;
}

::selection {
  color: #06283c;
  background: #efb0c4;
}

.inner {
  width: calc(100% - 3rem);
  max-width: 81.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .inner {
    width: 90.55556%;
  }
}

.visually-hidden {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  z-index: 50;
  top: 0.5rem;
  left: 1.5rem;
  padding: 0.75rem 1.25rem;
  color: white;
  background: #06283c;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}

.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  .section-label {
    font-size: 0.875rem;
  }
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 768px) {
  .section-head {
    gap: 0.625rem;
    margin-bottom: 3.375rem;
  }
}

.section-head__title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .section-head__title {
    font-size: 3rem;
  }
}

.section-head__label {
  order: -1;
}
@media (min-width: 768px) {
  .section-head__label {
    order: 1;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  min-height: 3.5rem;
  padding: 0.875rem 1.25rem;
  color: white;
  background: #06283c;
  border: 1px solid #06283c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  transition: background 0.2s, color 0.2s;
}
@media (any-hover: hover) {
  .button:hover {
    color: #06283c;
    background: transparent;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding-block: 0.375rem;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s;
}
@media (any-hover: hover) {
  .text-link:hover {
    color: #2a838b;
  }
}

.arrow-icon {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1;
}

.disclosure > summary {
  width: fit-content;
  min-height: 2.75rem;
  padding-block: 0.5625rem;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.7;
}
.disclosure > summary::-webkit-details-marker {
  display: none;
}
.disclosure > summary::after {
  content: "+";
  margin-left: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}
.disclosure[open] > summary::after {
  content: "−";
}

.disclosure__body {
  padding-block: 1.5rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.95;
}
.disclosure__body > * + * {
  margin-top: 1rem;
}

.ribbon {
  overflow: visible;
}
.ribbon .ribbon__outline {
  stroke: #06283c;
  stroke-width: 104px;
}
.ribbon .ribbon__base {
  stroke: #efb0c4;
  stroke-width: 99px;
}
.ribbon .ribbon__end {
  stroke: #dfeeed;
  stroke-width: 99px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.phrase {
  display: inline-block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #faf9f6;
  transition: background-color 320ms ease, box-shadow 320ms ease;
}
.header.is-scrolled {
  box-shadow: inset 0 -1px 0 rgba(6, 40, 60, 0.1), 0 0.375rem 1.5rem rgba(6, 40, 60, 0.06);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .header {
    -webkit-backdrop-filter: blur(1rem) saturate(120%);
    backdrop-filter: blur(1rem) saturate(120%);
  }
  .header.is-scrolled {
    background: rgba(250, 249, 246, 0.82);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}
@media (min-width: 768px) {
  .header__inner {
    min-height: 7.5rem;
  }
}

.header__logo,
.menu__brand {
  font-size: 1.875rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}
.header__logo a,
.menu__brand a {
  display: block;
  padding-block: 0.75rem;
}
.header__logo span,
.menu__brand span {
  font-size: 0.64em;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .header__logo,
  .menu__brand {
    font-size: 3.249rem;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-self: stretch;
  }
}

.header__links {
  display: flex;
  align-items: stretch;
  gap: 2.97rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.header__links li {
  position: relative;
  display: flex;
  align-items: center;
}
.header__links a {
  position: relative;
  text-decoration: none;
}
.header__links a::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.75em);
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.header__links a:focus-visible::after {
  transform: scaleX(1);
}
@media (any-hover: hover) {
  .header__links a:hover::after {
    transform: scaleX(1);
  }
}
.header__links a {
  display: flex;
  align-items: center;
  align-self: stretch;
  min-height: 2.75rem;
}
.header__links .button {
  position: static;
  align-self: center;
  padding: 0.75rem 1.125rem;
  min-height: 3.5rem;
  font-size: 1.125rem;
}
.header__links .button::before {
  content: "";
  position: absolute;
  inset: 0;
}
.header__links .button::after {
  left: 1.125rem;
  right: 1.125rem;
}

.header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: 2.75rem;
  height: 4.5rem;
  padding: 0;
  color: #06283c;
  background: transparent;
  border: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.625rem;
  line-height: 1.2;
}

.header__menu-slot {
  display: none;
  flex-shrink: 0;
  width: 2.75rem;
  height: 4.5rem;
}

.has-js .header__menu-slot {
  display: block;
}
@media (min-width: 768px) {
  .has-js .header__menu-slot {
    display: none;
  }
}

.header__menu-icon {
  position: relative;
  display: block;
  width: 1.875rem;
  height: 1.3125rem;
}

.header__menu-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.09375rem;
  margin-top: -0.046875rem;
  background: currentColor;
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}
.header__menu-line:first-child {
  transform: translateY(-0.5rem);
}
.header__menu-line:last-child {
  transform: translateY(0.5rem);
}

.header__menu[aria-expanded=true] .header__menu-line:first-child {
  transform: rotate(45deg);
}
.header__menu[aria-expanded=true] .header__menu-line:nth-child(2) {
  transform: scaleX(0.4);
  opacity: 0;
}
.header__menu[aria-expanded=true] .header__menu-line:last-child {
  transform: rotate(-45deg);
}

.header__menu-label {
  display: block;
  min-width: 2.125rem;
  text-align: center;
  letter-spacing: 0.035em;
}

.header__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 1.5rem 1rem;
  font-size: 0.75rem;
}
.header__fallback a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .header__fallback {
    display: none;
  }
}

.menu {
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  color: #06283c;
  background: transparent;
  border: 0;
}
.menu::backdrop {
  background: rgba(6, 40, 60, 0.32);
  opacity: 0;
  transition: opacity 320ms ease;
}
.menu.is-open::backdrop {
  opacity: 1;
}

.menu__chrome {
  position: relative;
  z-index: 1;
  background: #faf9f6;
}

.menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 2rem);
  min-height: 4.5rem;
  margin-inline: auto;
}

.menu__toggle-slot {
  display: block;
  flex-shrink: 0;
  width: 2.75rem;
  height: 4.5rem;
}

.menu__panel {
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 1.5rem 2rem;
  background: #dfeeed;
  box-shadow: 0 1rem 2.25rem rgba(6, 40, 60, 0.12);
  opacity: 0;
  transform: translateY(-0.75rem);
}

.menu.is-open .menu__panel {
  opacity: 1;
  transform: translateY(0);
}

.menu__links {
  display: grid;
  gap: 0.25rem;
}
.menu__links a {
  display: flex;
  align-items: center;
  min-height: 4rem;
  border-top: 1px solid #9baeb6;
  font-size: 1.25rem;
  font-weight: 700;
}

.header__inner {
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .header__inner {
    width: 90.55556%;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  background: #dfeeed;
  padding: 1.25rem 0 2.75rem;
}
@media (min-width: 768px) {
  .hero {
    min-height: 53.125rem;
    padding-block: 4.75rem 6.625rem;
  }
}

.hero__art {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: clip;
}

.hero__ribbon {
  position: absolute;
  width: 18.75rem;
  max-width: none;
  top: 0.375rem;
  right: -9.3125rem;
}
@media (min-width: 768px) {
  .hero__ribbon {
    top: -2.8125rem;
    right: -11.25rem;
    width: 50rem;
  }
}

.hero__audience {
  max-width: 13.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.85;
}
@media (min-width: 768px) {
  .hero__audience {
    max-width: none;
    font-size: 1.125rem;
  }
}

.hero__title {
  margin-top: 1.25rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.hero__title span {
  display: block;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero__title {
    margin-top: 2.375rem;
    font-size: 8rem;
    line-height: 1.28;
    letter-spacing: -0.025em;
  }
}

.hero__service {
  margin-top: 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero__service {
    margin-top: 1.625rem;
    font-size: 1.375rem;
  }
}

.hero__bottom {
  display: grid;
  margin-top: 1.5rem;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .hero__bottom {
    grid-template-columns: 1fr 1.2fr 0.86fr;
    align-items: start;
    gap: 3.25rem;
    margin-top: 4.25rem;
  }
}

.hero__lead {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.85;
}
@media (min-width: 768px) {
  .hero__lead {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero__trust {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0.25rem;
  }
}

.hero__numbers {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.hero__numbers b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 1;
  margin-inline: 0.125rem;
  letter-spacing: -0.05em;
}
.hero__numbers sup {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .hero__numbers {
    font-size: 1.125rem;
    gap: 0.75rem;
  }
  .hero__numbers b {
    font-size: 3.625rem;
  }
}

.hero__footnote {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero__footnote {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.hero__actions {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}
.hero__actions .button {
  width: 100%;
}
@media (min-width: 768px) {
  .hero__actions {
    grid-column: 3;
    grid-row: 1;
    justify-items: start;
    gap: 0.875rem;
  }
  .hero__actions .button {
    min-height: 4.125rem;
    font-size: 1.125rem;
  }
}

.hero__line {
  position: absolute;
  z-index: 1;
  bottom: -1.1875rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  overflow: visible;
  pointer-events: none;
  fill: none;
  stroke: #06283c;
  stroke-width: 1.4px;
}
@media (min-width: 768px) {
  .hero__line {
    height: 3.875rem;
    bottom: -1.625rem;
  }
}

.hero__inner {
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .hero__inner {
    width: 90.55556%;
  }
}

.hero__line-pc {
  display: none;
}
@media (min-width: 768px) {
  .hero__line-pc {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero__line-sp {
    display: none;
  }
}

.diagram {
  display: block;
  width: 100%;
  height: auto;
  color: #06283c;
}

.diagram__solid {
  fill: currentColor;
  stroke: none;
}

.diagram__paper {
  fill: #faf9f6;
}

.diagram__tint {
  fill: #dfeeed;
}

.diagram__accent {
  stroke: #efb0c4;
  stroke-width: 7px;
}

.diagram__accent-fill {
  fill: #efb0c4;
}

.flourish {
  display: block;
  color: #06283c;
  pointer-events: none;
}

.works {
  padding-block: 3.5rem 3.5rem;
}
@media (min-width: 768px) {
  .works {
    padding-block: 5rem 4.5rem;
  }
}

.works__head .section-head__title {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .works__head .section-head__title {
    font-size: 3.5rem;
  }
}

.works__inner {
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .works__inner {
    width: 90.55556%;
  }
}

.work {
  display: grid;
  min-width: 0;
  border-top: 1px solid #06283c;
  padding-top: 1.5rem;
}
.work + .work {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .work {
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
    column-gap: 3rem;
    padding-top: 2rem;
  }
  .work + .work {
    margin-top: 6rem;
  }
}

.work__masthead {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 0 1.125rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .work__masthead {
    grid-column: 1/-1;
    grid-template-columns: 5.625rem minmax(0, 1fr) auto;
    gap: 0 1.75rem;
    margin-bottom: 2rem;
  }
}

.work__number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}
@media (min-width: 768px) {
  .work__number {
    font-size: 4.875rem;
  }
}

.work__name {
  color: #2a838b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
@media (min-width: 768px) {
  .work__name {
    font-size: 3rem;
  }
}

.work__type {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .work__type {
    font-size: 0.9375rem;
  }
}

.work__focus {
  display: flex;
  align-items: center;
  grid-column: 2;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .work__focus {
    grid-column: 3;
    margin-top: 0;
    font-size: 1rem;
  }
}

.work__flourish {
  width: 3.125rem;
  height: 1.5rem;
  margin-left: 0.625rem;
}
@media (min-width: 768px) {
  .work__flourish {
    width: 5.125rem;
    height: 2.5rem;
    margin-left: 1rem;
  }
}

.work__canvas {
  min-width: 0;
  align-self: start;
  padding: 0.875rem 0.875rem 1.125rem;
  background: #dfeeed;
}
@media (min-width: 768px) {
  .work__canvas {
    padding: 1.875rem 1.875rem 1.5rem;
  }
}

.work--terminal .work__canvas {
  background: #efb0c4;
}

.work__media {
  position: relative;
  z-index: 0;
  min-width: 0;
  background: white;
}
.work__media img {
  width: 100%;
  height: auto;
}

.work__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem 1rem;
  margin-top: 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
}
.work__features li::before {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-right: 0.375rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  vertical-align: 0.1em;
}
@media (min-width: 768px) {
  .work__features {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
    gap: 0.5rem 1.375rem;
  }
}

.work__video {
  display: none;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-playing .work__video {
  display: block;
}

.work__play {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 0.625rem;
  right: 0.625rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid #06283c;
  color: #06283c;
  background: #faf9f6;
  font-size: 1.25rem;
  line-height: 1;
}
@media (any-hover: hover) {
  .work__play:hover {
    background: #dfeeed;
  }
}

.has-js .work__play {
  display: grid;
  place-items: center;
}

.work__body {
  min-width: 0;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .work__body {
    padding-top: 0.75rem;
  }
}

.work__headline {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .work__headline {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .work__headline-part {
    display: block;
  }
}

.work__summary {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .work__summary {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }
}

.work__role {
  margin-top: 1.5rem;
  padding-top: 1.125rem;
  border-top: 1px solid #9baeb6;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .work__role {
    margin-top: 1.75rem;
    font-size: 0.9375rem;
  }
}

.work__credit {
  margin-top: 0.375rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .work__credit {
    font-size: 0.875rem;
  }
}

.work__details {
  margin-top: 1.125rem;
}
@media (min-width: 768px) {
  .work__details {
    margin-top: 1.5rem;
  }
}

.work__points {
  padding-left: 1.15em;
  list-style: disc;
}
.work__points li + li {
  margin-top: 0.75rem;
}

.work__platform {
  font-size: 0.8125rem;
}

.work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
}

.works__more {
  margin-top: 3.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid #9baeb6;
}
@media (min-width: 768px) {
  .works__more {
    margin-top: 4.5rem;
    padding-top: 2.75rem;
  }
}

.work-slider__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
  margin-bottom: 1.5rem;
}

.work-slider__heading {
  font-size: 1.375rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .work-slider__heading {
    font-size: 1.875rem;
  }
}

.work-slider__controls {
  display: none;
  align-items: center;
  gap: 0.625rem;
}

.is-ready .work-slider__controls {
  display: flex;
}

.work-slider__control {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #9baeb6;
  color: #06283c;
  background: transparent;
}
@media (any-hover: hover) {
  .work-slider__control:hover {
    background: #dfeeed;
    border-color: #06283c;
  }
}

.work-slider__pause {
  margin-left: 0.25rem;
  border-color: transparent;
  font-size: 1.125rem;
}

.work-slider__count {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
}

.work-slider__viewport {
  overflow: hidden;
  padding: 0.375rem;
  margin: -0.375rem;
}

.is-ready .work-slider__viewport {
  touch-action: pan-y pinch-zoom;
}

.work-slider__track {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .work-slider__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.is-ready .work-slider__track {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .is-ready .work-slider__track {
    gap: 2.5rem;
  }
}

.work-small {
  min-width: 0;
  flex: 0 0 88%;
}
@media (min-width: 768px) {
  .work-small {
    flex-basis: calc((100% - 2.5rem) / 2);
  }
}
.work-small img {
  width: 100%;
  aspect-ratio: 8/5;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.work-small h4 {
  font-size: 1.5rem;
  line-height: 1.5;
}
.work-small p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}
.work-small .disclosure {
  margin-top: 1rem;
}
.work-small .text-link {
  margin-top: 1rem;
  font-size: 1rem;
}

.works__anonymous {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #9baeb6;
}
.works__anonymous ul {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.works__anonymous li {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .works__anonymous ul {
    grid-template-columns: 1fr 1fr;
  }
}

.works__private-note {
  font-size: 1rem;
  font-weight: 700;
}

.services {
  padding-block: 3.25rem 3rem;
  color: white;
  background: #06283c;
}
@media (min-width: 768px) {
  .services {
    padding-block: 4.5rem 3.5rem;
  }
}

.services__head {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .services__head {
    margin-bottom: 2.625rem;
  }
}

.services__list {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.5rem;
  }
}

.services__item {
  display: grid;
  grid-template-columns: 5.125rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding-bottom: 1.625rem;
  border-bottom: 1px solid rgba(223, 238, 237, 0.3);
}
@media (min-width: 768px) {
  .services__item {
    display: block;
    padding-bottom: 1.875rem;
  }
}

.services__visual {
  width: 100%;
  color: #dfeeed;
}
.services__visual .diagram__paper,
.services__visual .diagram__tint {
  fill: #06283c;
}
@media (min-width: 768px) {
  .services__visual {
    width: 14.375rem;
    height: 9.375rem;
    margin-bottom: 1.75rem;
  }
}

.services__copy h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .services__copy h3 {
    font-size: 1.6875rem;
  }
}
.services__copy p {
  margin-top: 0.5rem;
  color: #dfeeed;
  font-size: 0.875rem;
  line-height: 1.85;
}
@media (min-width: 768px) {
  .services__copy p {
    font-size: 1.125rem;
  }
}

.services__extra {
  margin-top: 1.5rem;
  color: #dfeeed;
}
.services__extra > summary {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .services__extra > summary {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .services__extra-break {
    display: none;
  }
}

.services__detail-list {
  display: grid;
  gap: 1.625rem;
}
.services__detail-list dt {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
}
.services__detail-list dd {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .services__detail-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.services__delivery {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .services__delivery {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
}

.services__delivery-tools {
  display: block;
  color: #dfeeed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.profile {
  padding-block: 3.5rem 4rem;
  background: #dfeeed;
}
@media (min-width: 768px) {
  .profile {
    padding-block: 5rem 5.5rem;
  }
}

.profile__head {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .profile__head {
    margin-bottom: 2.75rem;
  }
}

.profile__layout {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 768px) {
  .profile__layout {
    grid-template-columns: 25rem minmax(0, 1fr);
    gap: 6.25rem;
    align-items: start;
  }
}

.profile__portrait {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-right: 1.75rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .profile__portrait {
    padding-right: 2rem;
    padding-bottom: 2.25rem;
  }
}
.profile__portrait figcaption {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .profile__portrait figcaption {
    font-size: 0.875rem;
  }
}

.profile__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: center top;
}

.profile__ribbon {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 1.875rem;
  width: 6.125rem;
}
.profile__ribbon .ribbon__end {
  stroke: #efb0c4;
}
@media (min-width: 768px) {
  .profile__ribbon {
    width: 8.125rem;
    bottom: 2.25rem;
  }
}

.profile__lead {
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: 0.015em;
}
.profile__lead span {
  display: inline-block;
}
@media (min-width: 768px) {
  .profile__lead {
    font-size: 2.375rem;
  }
}

.profile__name {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}
.profile__name small {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .profile__name {
    margin-top: 1.625rem;
    font-size: 1.75rem;
  }
  .profile__name small {
    display: inline-block;
    margin-left: 1.25rem;
    font-size: 1rem;
  }
}

.profile__meta {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .profile__meta {
    font-size: 0.9375rem;
  }
}

.profile__stances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.125rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.profile__stances li {
  padding-bottom: 0.1875rem;
  border-bottom: 3px solid #efb0c4;
}
@media (min-width: 768px) {
  .profile__stances {
    font-size: 0.9375rem;
    margin-top: 1.625rem;
  }
}

.profile__bio {
  margin-top: 1.625rem;
  font-size: 0.9375rem;
  line-height: 1.95;
}
@media (min-width: 768px) {
  .profile__bio {
    font-size: 1rem;
  }
}

.profile__details {
  margin-top: 1.125rem;
  font-size: 0.875rem;
}

.profile__note {
  margin-top: 1.625rem;
  padding-top: 1.25rem;
  border-top: 1px solid #9baeb6;
  font-size: 0.9375rem;
  font-weight: 700;
}
.profile__note span {
  display: inline-block;
}
@media (min-width: 768px) {
  .profile__note {
    font-size: 1rem;
  }
}

.method {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .method {
    padding-block: 6.25rem;
  }
}

.method__inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .method__inner {
    grid-template-columns: 1fr 1fr;
    gap: 6.875rem;
  }
}

.method__head {
  margin-bottom: 1.375rem;
}
.method__head .section-head__title {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .method__head .section-head__title {
    font-size: 1.875rem;
  }
}

.method__message {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.method__message span {
  display: block;
}
@media (min-width: 768px) {
  .method__message {
    font-size: 3.75rem;
  }
}

.method__exchange {
  max-width: 30.625rem;
  margin-top: 2.125rem;
}
@media (min-width: 768px) {
  .method__exchange {
    margin-top: 2.5rem;
  }
}

.method__exchange-label {
  width: fit-content;
  padding: 0.3125rem 0.75rem;
  color: #06283c;
  background: #dfeeed;
  font-size: 0.8125rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .method__exchange-label {
    font-size: 1.0625rem;
  }
}

.method__visual {
  width: 100%;
  margin-top: 0.5rem;
}

.method__people {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: -1rem;
}
@media (min-width: 768px) {
  .method__people {
    font-size: 1.0625rem;
    margin-top: -1.5rem;
  }
}

.method__exchange-note {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .method__exchange-note {
    font-size: 1.0625rem;
  }
}

@media (min-width: 768px) {
  .method__body {
    padding-top: 4.25rem;
  }
}

.method__notes {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .method__notes {
    gap: 2rem;
  }
}

.method__note {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #9baeb6;
}
@media (min-width: 768px) {
  .method__note {
    grid-template-columns: 3.125rem minmax(0, 1fr);
    gap: 0 1.5rem;
    padding-bottom: 1.75rem;
  }
}

.method__number {
  grid-row: 1/3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5625rem;
  color: #2a838b;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .method__number {
    font-size: 2rem;
  }
}

.method__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .method__title {
    font-size: 1.625rem;
  }
}

.method__text {
  grid-column: 2;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .method__text {
    font-size: 1.0625rem;
  }
}

.method__details {
  margin-top: 1.375rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .method__details {
    margin-left: 4.625rem;
    font-size: 1rem;
  }
}

.guide {
  padding-block: 3.5rem 4rem;
}
@media (min-width: 768px) {
  .guide {
    padding-block: 5rem 5rem;
  }
}

.guide__head {
  margin-bottom: 2.25rem;
}
@media (min-width: 768px) {
  .guide__head {
    margin-bottom: 3.25rem;
  }
}

.guide__flow-wrap {
  padding-block: 1.75rem;
  border-top: 1px solid #06283c;
  border-bottom: 1px solid #06283c;
}
@media (min-width: 768px) {
  .guide__flow-wrap {
    padding-block: 2.25rem;
  }
}

.guide__flow {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .guide__flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.375rem;
  }
}

.guide__step {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 5.375rem minmax(0, 1fr);
  gap: 0 1.375rem;
  padding-bottom: 1.75rem;
}
.guide__step + .guide__step {
  padding-top: 0.75rem;
}
.guide__step:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .guide__step {
    display: block;
    padding-bottom: 0;
  }
  .guide__step + .guide__step {
    padding-top: 0;
  }
}

.guide__number {
  grid-column: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .guide__number {
    font-size: 1.875rem;
  }
}

.guide__visual {
  grid-column: 1;
  grid-row: 2/5;
  padding-top: 0.625rem;
}
@media (min-width: 768px) {
  .guide__visual {
    width: 14.375rem;
    max-width: 100%;
    margin-top: 1.25rem;
    padding-top: 0;
  }
}

.guide__title {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.6;
}
.guide__title span {
  display: inline-block;
}
@media (min-width: 768px) {
  .guide__title {
    min-height: 4.25rem;
    margin-top: 1.125rem;
    font-size: 1.375rem;
  }
}

.guide__output {
  grid-column: 2;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2a838b;
}
@media (min-width: 768px) {
  .guide__output {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.guide__description {
  grid-column: 2;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .guide__description {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

.guide__connector {
  position: absolute;
  z-index: 0;
  left: 1.5625rem;
  bottom: -0.9375rem;
  width: 2.25rem;
  height: 1.5rem;
  transform: rotate(90deg);
  fill: none;
  stroke: #06283c;
  stroke-width: 1.5px;
}
@media (min-width: 768px) {
  .guide__connector {
    left: auto;
    right: -2.625rem;
    top: 7.125rem;
    bottom: auto;
    width: 3.75rem;
    height: 1.75rem;
    transform: none;
  }
}

.guide__note {
  width: fit-content;
  margin-inline: auto;
  padding: 0.5625rem 1.125rem;
  margin-top: 1.75rem;
  background: #dfeeed;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .guide__note {
    font-size: 1.0625rem;
    margin-top: 2rem;
    padding: 0.625rem 1.75rem;
  }
}

.faq {
  display: grid;
  gap: 1.625rem;
  margin-top: 4.75rem;
}
@media (min-width: 768px) {
  .faq {
    grid-template-columns: 18.75rem minmax(0, 1fr);
    gap: 2.75rem;
    margin-top: 3.75rem;
  }
}

.faq__heading {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .faq__heading {
    font-size: 2.125rem;
  }
  .faq__heading::after {
    content: "";
    display: block;
    width: 2.75rem;
    height: 0.0625rem;
    margin-top: 1rem;
    background: #9baeb6;
  }
}

.faq__item {
  border-bottom: 1px solid #9baeb6;
  overflow: clip;
}

.faq__question {
  position: relative;
  display: block;
  min-height: 4rem;
  padding: 1.125rem 2.25rem 1.125rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.85;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0.1875rem;
  width: 1rem;
  height: 0.09375rem;
  background: currentColor;
}
.faq__question::after {
  transform: rotate(90deg);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .faq__question {
    min-height: 3.375rem;
    padding-block: 0.5rem;
    font-size: 1.375rem;
    line-height: 1.7;
  }
  .faq__question::before, .faq__question::after {
    top: 1.6875rem;
  }
}

.faq__item[open] .faq__question::after {
  transform: rotate(0);
}

.faq__item.is-closing .faq__question::after {
  transform: rotate(90deg);
}

.faq__answer {
  padding: 0 0.75rem 1.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.95;
}
@media (min-width: 768px) {
  .faq__answer {
    font-size: 1.0625rem;
    padding-bottom: 1.5rem;
  }
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: 2.25rem 3.375rem;
  background: #efb0c4;
}
@media (min-width: 768px) {
  .contact {
    padding-block: 2.625rem 3rem;
  }
  .contact > .inner {
    width: 84%;
    max-width: 75rem;
  }
}

.contact__eyebrow {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact__eyebrow {
    font-size: 1.0625rem;
  }
}

.contact__title {
  position: relative;
  margin-top: 6.25rem;
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: -0.025em;
}
.contact__title span {
  display: block;
}
@media (min-width: 768px) {
  .contact__title {
    max-width: 51.875rem;
    margin-top: 1.75rem;
    font-size: 3.875rem;
    line-height: 1.5;
  }
}

.contact__layout {
  display: grid;
  gap: 2.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .contact__layout {
    grid-template-columns: 1fr 1fr;
    gap: 5.875rem;
    margin-top: 2rem;
  }
}

.contact__lead {
  font-size: 1.0625rem;
  line-height: 2.2;
}
.contact__lead p + p {
  margin-top: 0.875rem;
}
@media (min-width: 768px) {
  .contact__lead {
    font-size: 1.125rem;
    line-height: 1.95;
  }
  .contact__lead p + p {
    margin-top: 0.25rem;
  }
}

.contact__lead span {
  display: inline-block;
}

.contact__button {
  min-height: 4.875rem;
  margin-top: 2.25rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .contact__button {
    max-width: 33.75rem;
    min-height: 5.75rem;
    margin-top: 2.125rem;
    font-size: 1.375rem;
  }
}

.contact__address {
  font-style: normal;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}
@media (min-width: 768px) {
  .contact__address {
    gap: 1.25rem;
  }
}

.contact__email {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  user-select: all;
}
@media (min-width: 768px) {
  .contact__email {
    font-size: 1.625rem;
  }
}

.contact__copy {
  display: none;
  min-width: 4.5rem;
  min-height: 2.75rem;
  padding: 0.25rem 0.875rem;
  border: 1px solid #06283c;
  color: #06283c;
  background: transparent;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (any-hover: hover) {
  .contact__copy:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

.has-js .contact__copy {
  display: block;
}

.contact__status {
  min-height: 1.5rem;
  padding-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.contact__note,
.contact__reply {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .contact__note,
  .contact__reply {
    margin-top: 1.125rem;
    font-size: 1.125rem;
  }
}

.contact__reply {
  margin-top: 1.625rem;
}

.contact__ribbon {
  position: absolute;
  z-index: -1;
  width: 14.6875rem;
  max-width: none;
  top: 4.25rem;
  right: -6.875rem;
  transform: rotate(12deg);
}
.contact__ribbon .ribbon__base {
  stroke: #dfeeed;
}
@media (min-width: 768px) {
  .contact__ribbon {
    top: 0.625rem;
    right: -5rem;
    width: 32.5rem;
  }
}

.sticky-contact {
  display: none;
  position: fixed;
  z-index: 20;
  inset: auto 0 0;
  padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom));
  background: #faf9f6;
  border-top: 1px solid #9baeb6;
  visibility: hidden;
  opacity: 0;
  transform: translateY(110%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, visibility 420ms;
}
.sticky-contact.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.has-js .sticky-contact {
  display: block;
}
@media (min-width: 768px) {
  .has-js .sticky-contact {
    display: none;
  }
}

.sticky-contact__button {
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
}

.footer {
  padding-block: 3rem 2.5rem;
  color: white;
  background: #06283c;
}
@media (min-width: 768px) {
  .footer {
    padding-block: 1.75rem 2rem;
  }
  .footer > .inner {
    width: 84%;
    max-width: 75rem;
  }
}

.footer__inner {
  display: grid;
}

.footer__service {
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer__service {
    font-size: 0.875rem;
  }
}

.footer__brand {
  display: block;
  margin-top: 1.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.8765625rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.footer__brand span {
  font-size: 0.65em;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .footer__brand {
    margin-top: 0.5rem;
    font-size: 9.999rem;
    line-height: 1;
    letter-spacing: 0;
  }
}

.footer__top {
  position: relative;
  text-decoration: none;
}
.footer__top::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.75em);
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__top:focus-visible::after {
  transform: scaleX(1);
}
@media (any-hover: hover) {
  .footer__top:hover::after {
    transform: scaleX(1);
  }
}
.footer__top {
  justify-self: center;
  margin-top: 2.125rem;
  border-bottom: 0;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .footer__top {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    margin-top: 0;
    min-height: 1.875rem;
    padding: 0;
    border: 0;
    font-size: 0.875rem;
  }
}

.footer__meta {
  display: grid;
  gap: 0.875rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(223, 238, 237, 0.6);
  font-size: 0.875rem;
}
.footer__meta small {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
}
.footer__meta a {
  position: relative;
  text-decoration: none;
}
.footer__meta a::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.75em);
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__meta a:focus-visible::after {
  transform: scaleX(1);
}
@media (any-hover: hover) {
  .footer__meta a:hover::after {
    transform: scaleX(1);
  }
}
.footer__meta a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0;
    padding-top: 0;
    border: 0;
    font-size: 0.875rem;
  }
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

@media (min-width: 768px) {
  .footer__service {
    grid-row: 1;
    grid-column: 1;
    align-self: center;
  }
}

@media (min-width: 768px) {
  .footer__brand {
    grid-row: 2;
    grid-column: 1;
  }
}

@media (min-width: 768px) {
  .footer__meta {
    grid-row: 3;
    grid-column: 1;
  }
}

.legal {
  padding-block: 3rem 4.5rem;
}
@media (min-width: 768px) {
  .legal {
    padding-block: 5rem 6.25rem;
  }
}

.legal__inner {
  width: calc(100% - 3rem);
  max-width: 53.75rem;
  margin-inline: auto;
}

.legal__eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.legal__title {
  margin-top: 0.875rem;
  font-size: 1.6875rem;
  font-weight: 800;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 2.75rem;
  }
}

.legal__lead {
  margin-top: 1.75rem;
}

.legal__section {
  margin-top: 2.125rem;
}

.legal__heading {
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .legal__heading {
    font-size: 1.375rem;
  }
}

.legal__text + .legal__text {
  margin-top: 0.75rem;
}

.legal__list {
  padding-left: 1.25em;
  list-style: disc;
}
.legal__list li {
  margin-top: 0.5rem;
}

.legal__link,
.legal__back-link {
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}

.legal__date {
  margin-top: 2.25rem;
  font-size: 0.875rem;
}

.legal__back {
  margin-top: 2rem;
}
.legal__back .legal__back-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.legal__business {
  margin-top: 2.5rem;
  border-top: 1px solid #9baeb6;
}
.legal__business > div {
  display: grid;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid #9baeb6;
}
@media (min-width: 768px) {
  .legal__business > div {
    grid-template-columns: 11.25rem minmax(0, 1fr);
    gap: 1.75rem;
    padding-block: 1.5rem;
  }
}
.legal__business dt {
  font-weight: 700;
}
.legal__business dd {
  min-width: 0;
  overflow-wrap: anywhere;
}