:root {
  --ink: #111111;
  --paper: #ffffff;
  --muted: #696969;
  --line: #e4e4e4;
  --purple: #7228ec;
  --gutter: clamp(24px, 3.8vw, 72px);
  --body: "DM Sans", "Noto Sans KR", sans-serif;
  --display: "Anton", Impact, "Arial Narrow", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 15px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
::selection {
  color: #fff;
  background: var(--purple);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.utility-bar {
  height: 32px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.utility-bar > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
.utility-bar a:hover {
  color: var(--muted);
}
.site-header {
  height: 83px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--gutter);
  background: #fff;
  border-bottom: 1px solid #f4f4f4;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 193px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 82px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.main-nav .nav-contact {
  display: none;
}
.header-payment-shortcut {
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.language-switcher {
  position: relative;
  flex-shrink: 0;
  color: var(--ink);
}
.language-switcher select,
.language-trigger {
  display: block;
  width: 134px;
  min-height: 44px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: inherit;
  font: 600 12px/1.4 var(--body);
  padding: 9px 26px 9px 35px;
  cursor: pointer;
  text-align: left;
}
.language-switcher select:hover,
.language-trigger:hover {
  border-color: #a9a9a9;
}
.language-switcher > svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.language-globe {
  width: 18px;
  height: 18px;
  left: 11px;
}
.language-chevron {
  width: 14px;
  height: 14px;
  right: 10px;
  transition: transform 0.18s ease;
}
.language-trigger {
  transition: background 0.18s ease, border-color 0.18s ease;
}
.language-trigger[aria-expanded="true"] {
  border-color: var(--purple);
  background: #f7f2ff;
}
.language-switcher:has(.language-trigger[aria-expanded="true"]) > .language-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.language-trigger:focus-visible {
  outline-width: 2px;
  outline-offset: 3px;
}
.language-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 10px);
  right: 0;
  width: 224px;
  max-width: calc(100vw - 32px);
  max-height: min(300px, calc(100svh - 100px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 7px;
  border: 1px solid #eae6ee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px #1910221a, 0 3px 10px #19102208;
  transform-origin: top right;
  animation: language-menu-in 0.16s ease-out;
}
.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 8px 12px;
  border-radius: 13px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: 600 14px/1.4 var(--body);
  transition: background 0.15s ease;
}
.language-option + .language-option {
  margin-top: 3px;
}
.language-option:hover {
  background: #f5f5f5;
}
.language-option[aria-checked="true"] {
  background: #f3ecff;
  color: #6420d2;
}
.language-option:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: -2px;
}
.language-code {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  height: 32px;
  border: 1px solid #e8e8e8;
  border-radius: 9px;
  background: #fff;
  color: #777;
  font: 700 10px/1 var(--body);
  letter-spacing: 0.03em;
}
.language-option[aria-checked="true"] .language-code {
  border-color: #e2d3fc;
  color: #6420d2;
}
.language-name {
  flex: 1;
}
.language-check {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font: 700 12px/1 var(--body);
  opacity: 0;
}
.language-option[aria-checked="true"] .language-check {
  opacity: 1;
}
@keyframes language-menu-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.pill {
  display: inline-flex;
  min-height: 46px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 100px;
  padding: 11px 25px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.pill:hover {
  transform: translateY(-2px);
}
.pill-black {
  color: white;
  background: var(--ink);
}
.pill-black:hover {
  background: #424242;
}
.pill-white {
  color: var(--ink);
  background: white;
}
.pill-white:hover {
  background: #e8e8e8;
}
.pill span {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}
.header-contact {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 12px;
  gap: 21px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: #111;
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}
.announcement {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  background: #f5f5f5;
  font-size: 11px;
  line-height: 1.7;
  padding: 9px 20px;
}
.announcement > span {
  font-weight: 600;
}
.announcement a {
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.campaign {
  min-height: 640px;
  height: min(57vw, 840px);
  position: relative;
  overflow: hidden;
  background: #0d0c10;
  color: white;
}
.campaign-image,
.campaign-shade {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.campaign-image {
  object-fit: cover;
  object-position: center center;
}
.campaign-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 20%);
}
.campaign-copy {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 8vw, 150px) var(--gutter) 100px;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.campaign .eyebrow {
  margin-bottom: 31px;
  letter-spacing: 0.15em;
}
.campaign h1 {
  font-family: var(--display);
  font-size: clamp(100px, 10.3vw, 172px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.campaign-subtitle {
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 500;
  margin-top: 26px;
  letter-spacing: -0.03em;
}
.campaign .pill {
  margin-top: 28px;
}
.campaign-bottom {
  position: absolute;
  bottom: 26px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.campaign-bottom a {
  display: flex;
  align-items: center;
  gap: 24px;
}
.campaign-bottom a span {
  font-size: 22px;
}
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.brand-statement {
  padding: 79px 24px 84px;
  text-align: center;
}
.overline {
  font-size: 14px;
  font-weight: 600;
}
.brand-statement h2 {
  margin: 17px 0 21px;
  font-size: clamp(54px, 6.4vw, 104px);
}
.brand-statement > p:not(.overline) {
  font-size: 14px;
  color: #444;
  line-height: 1.85;
}
.brand-statement .pill {
  margin-top: 26px;
}
.mobile-break {
  display: none;
}
.section-space {
  padding: 35px var(--gutter) 95px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
  color: #676767;
  font-size: 9px;
}
.section-heading h2 {
  font-size: clamp(23px, 2.4vw, 37px);
  letter-spacing: -0.055em;
  line-height: 1.35;
  font-weight: 700;
}
.carousel-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.circle-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #efefef;
  color: #111;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s;
}
.circle-button:hover:not(:disabled) {
  background: #d8d8d8;
}
.circle-button:disabled {
  color: #b6b6b6;
  cursor: default;
  background: #f7f7f7;
}
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 23px;
}
.filters {
  display: flex;
  gap: 8px;
}
.filters button {
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 30px;
  background: white;
  border: 1px solid #ddd;
  font-weight: 500;
}
.filters button[aria-pressed="true"] {
  background: #111;
  border-color: #111;
  color: white;
}
.filters button:hover:not([aria-pressed="true"]) {
  background: #f5f5f5;
}
#filter-status {
  font-size: 11px;
  color: #666;
}
.product-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3.18);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: #bcbcbc transparent;
}
.product-track::-webkit-scrollbar {
  height: 4px;
}
.product-track::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
.product-card {
  min-width: 0;
  scroll-snap-align: start;
}
.product-art {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ece9f4;
  padding: 20px 13px 10px;
}
.art-admin {
  background: #e6e8e3;
}
.art-partners {
  background: #e4e6e9;
}
.art-payments {
  background: #f0e4e6;
}
.art-caption {
  position: absolute;
  top: 19px;
  left: 20px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.art-word {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(70px, 9vw, 170px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  top: 49px;
  left: 18px;
  letter-spacing: -0.045em;
}
.product-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 24px -12px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  margin-top: 35px;
  transition: transform 0.35s;
}
.product-art:hover img {
  transform: translateY(-5px);
}
.art-plus {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 16px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #111;
  font-size: 23px;
  font-weight: 400;
}
.product-info {
  padding: 19px 1px 6px;
}
.product-category {
  color: #6635a3;
  font-size: 11px;
  margin-bottom: 4px;
  font-weight: 600;
}
.product-info h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.product-info > p:last-of-type {
  font-size: 12px;
  color: #737373;
  line-height: 1.8;
  margin-top: 9px;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  padding: 12px 0 0;
  font-size: 11px;
  font-weight: 700;
}
.text-button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.source-note {
  margin-top: 12px;
  font-size: 10px;
  color: #767676;
  line-height: 1.8;
}
.experience {
  padding-top: 14px;
}
.underlined-link {
  font-size: 12px;
  line-height: 1.5;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  white-space: nowrap;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.editorial-story {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 760px;
  padding: 26px 32px 36px;
  display: flex;
  flex-direction: column;
}
.story-player {
  background: #332740;
  color: white;
}
.story-player::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #775985 0%, transparent 68%);
  top: -55px;
  left: -30%;
  opacity: 0.45;
}
.story-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.player-display {
  position: relative;
  height: 463px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 20px -10px 0;
}
.story-giant {
  position: absolute;
  top: 40px;
  left: -3px;
  font-family: var(--display);
  line-height: 0.95;
  font-size: clamp(60px, 7vw, 118px);
  letter-spacing: -0.04em;
  color: #ab8fbb;
}
.phone-shot {
  position: relative;
  padding: 6px;
  border-radius: 25px;
  background: #1c1820;
  width: 191px;
  max-width: 45%;
  box-shadow: -17px 23px 36px rgba(0, 0, 0, 0.26);
}
.phone-shot img {
  width: 100%;
  height: auto;
  border-radius: 19px;
}
.story-copy {
  position: relative;
  margin-top: auto;
}
.story-copy p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.story-copy h3 {
  font-size: clamp(25px, 2.75vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.06em;
}
.story-copy .pill {
  margin-top: 25px;
  min-height: 43px;
  font-size: 12px;
  padding: 10px 21px;
  gap: 20px;
}
.story-operator {
  background: #e9eae7;
}
.operator-display {
  position: relative;
  height: 463px;
  display: flex;
  align-items: center;
  margin: 20px -12px 0;
}
.operator-word {
  position: absolute;
  font-family: var(--display);
  top: 40px;
  left: 3px;
  color: #b9bdb4;
  line-height: 0.95;
  font-size: clamp(60px, 7vw, 118px);
  letter-spacing: -0.04em;
}
.dashboard-shot {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  background: transparent;
  border-radius: 4px;
  box-shadow: 0 20px 30px -15px #85897a;
  margin-top: 62px;
}
.dashboard-shot img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.automation {
  background: #f5f5f5;
}
.automation-intro {
  overflow: hidden;
  position: relative;
  background: #101010;
  color: white;
  padding: 70px var(--gutter) 63px;
}
.automation-intro > .eyebrow {
  position: relative;
  z-index: 1;
}
.automation-intro h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(80px, 12.2vw, 204px);
  margin-top: 44px;
  line-height: 0.97;
  letter-spacing: -0.035em;
}
.automation-intro h2 > span {
  color: #b699e8;
}
.automation-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
  z-index: 1;
  margin-top: 38px;
}
.automation-bottom p {
  font-size: 15px;
  line-height: 1.85;
  color: #cecece;
}
.ai-watermark {
  position: absolute;
  right: 0;
  bottom: -180px;
  font-size: 700px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-family: var(--display);
  color: #1a1a1a;
  pointer-events: none;
}
.ai-details {
  padding: 75px var(--gutter) 37px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px 8%;
}
.ai-details-heading .eyebrow {
  color: #696969;
  font-size: 9px;
}
.ai-details-heading h3 {
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.055em;
  margin-top: 27px;
}
.ai-details-heading > p:last-of-type {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 21px;
  color: #666;
}
.language-tags {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}
.language-tags span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  font-size: 10px;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 0 11px;
}
.ai-accordion {
  border-top: 1px solid #bebebe;
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.ai-accordion details {
  border-bottom: 1px solid #d7d7d7;
}
.ai-accordion summary {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.detail-number {
  color: #777;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0;
}
.detail-plus {
  font-family: "DM Sans", sans-serif;
  margin-left: auto;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] .detail-plus {
  transform: rotate(45deg);
}
.detail-body {
  padding: 0 16px 24px 36px;
}
.detail-body p {
  font-size: 12px;
  line-height: 1.95;
  color: #666;
}
.detail-body blockquote {
  margin: 16px 0 0;
  padding: 13px 16px;
  background: #eae4f1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  color: #59307e;
}
.ai-scope {
  grid-column: 1/-1;
  border-top: 1px solid #dedede;
  padding-top: 22px;
  margin-top: 22px;
  font-size: 10px;
  color: #777;
}
.payments {
  margin: 0 var(--gutter) 64px;
  padding: 36px clamp(24px, 4vw, 64px) 28px;
  background: #f2eef8;
}
.payments-heading {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d1c6e1;
}
.payments-heading .eyebrow,
.payments-heading > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.payments-heading > span {
  color: #665576;
}
.payments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: 40px 0;
}
.payments-display {
  font-family: var(--display);
  font-size: clamp(64px, 7.1vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.payments-display > span {
  color: var(--purple);
}
.payments-copy h2 {
  margin-top: 28px;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.055em;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.payments-description {
  margin-top: 14px;
  color: #5d536a;
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.payments-copy .pill {
  min-height: 48px;
  margin-top: 26px;
  font-size: 14px;
  text-align: center;
}
.payment-services {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0d8ea;
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 48px -32px #37204e45;
}
.payment-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 25px 30px;
  color: white;
  background: #23152f;
}
.payment-panel-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.payment-panel-brand > img {
  box-sizing: content-box;
  width: 27px;
  height: auto;
  padding: 12px 10px;
  border: 1px solid #ffffff29;
  border-radius: 12px;
  background: #ffffff09;
}
.payment-panel-brand > span {
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #c2b0d3;
}
.payment-panel-brand > span > span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}
.payment-panel-heading > svg {
  width: 36px;
  height: 36px;
  color: #c8a0ff;
  flex-shrink: 0;
}
.payment-service {
  --flow-color: #7228ec;
  --flow-tint: #f2ebfc;
  padding: 26px 30px;
}
.payment-withdrawal {
  --flow-color: #30203e;
  --flow-tint: #f1eef4;
  border-top: 1px solid #eae4ef;
}
.payment-service-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.payment-service-heading .eyebrow {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #74677e;
}
.payment-direction {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--flow-tint);
  color: var(--flow-color);
}
.payment-direction > svg {
  width: 25px;
  height: 25px;
}
.payment-service h3 {
  margin-top: 3px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.035em;
}
.payment-service > p {
  margin-top: 16px;
  color: #706579;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.payment-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(40px, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px 18px;
  border: 1px solid #eee8f3;
  border-radius: 12px;
  background: #fbf9fd;
  font-size: 14px;
  font-weight: 600;
}
.payment-endpoint {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: #71667b;
  overflow-wrap: anywhere;
}
.payment-endpoint > svg {
  width: 23px;
  height: 23px;
}
.payment-endpoint-destination {
  color: var(--flow-color);
}
.payment-route-connection {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--flow-color);
}
.payment-route-connection > span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #dacfe4;
}
.payment-route-connection > svg {
  position: relative;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  padding: 6px;
  border-radius: 50%;
  background: var(--flow-tint);
  line-height: 1;
}
.payments-consultation {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 22px;
  border-top: 1px solid #d1c6e1;
  font-size: 14px;
}
.payments-consultation > p:first-child {
  font-weight: 700;
}
.payments-consultation > p:last-child {
  color: #665576;
}
.start {
  padding-top: 92px;
}
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 42px;
}
.journey li {
  border-top: 1px solid #151515;
  padding-top: 23px;
}
.journey-number {
  display: block;
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.journey h3 {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.journey p {
  margin-top: 13px;
  font-size: 12px;
  line-height: 1.9;
  color: #777;
}
.quick-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8%;
  margin-top: 83px;
  border-top: 1px solid #ddd;
  padding-top: 32px;
}
.quick-faq h3 {
  font-size: 21px;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.quick-faq details {
  border-bottom: 1px solid #ddd;
}
.quick-faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 61px;
  font-size: 12px;
  font-weight: 600;
}
.quick-faq summary > span {
  font-size: 22px;
  font-weight: 400;
}
.quick-faq details[open] summary > span {
  transform: rotate(45deg);
}
.quick-faq details p {
  font-size: 12px;
  line-height: 1.9;
  color: #777;
  padding: 0 28px 20px 0;
}
.quick-faq #operations-faq summary,
.quick-faq #operations-faq p {
  font-size: 15px;
}
.quick-faq #operations-faq p {
  color: #5d536a;
}
.quick-faq .faq-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: -8px 0 16px;
  font-size: 14px;
  color: var(--purple);
}
.final-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 82px var(--gutter) 70px;
  background: #f4f0f9;
}
.final-call img {
  width: 52px;
  height: 52px;
  margin-bottom: 27px;
}
.final-call > p {
  font-size: 14px;
  font-weight: 500;
}
.final-call h2 {
  font-size: clamp(62px, 8vw, 142px);
  margin: 17px 0 29px;
}
.final-call > span {
  margin-top: 43px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #65606c;
}
footer {
  padding: 62px var(--gutter) 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 80px;
}
.footer-brand {
  align-self: start;
}
.footer-brand img {
  width: 193px;
  height: auto;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 30px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links h2 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 11px;
}
.footer-links a,
.footer-links span {
  font-size: 11px;
  color: #777;
}
.footer-links a:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 9px;
  color: #777;
}
.footer-bottom > span:nth-child(2) {
  margin-left: auto;
  font-size: 8px;
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: #111;
}
#screen-dialog {
  --preview-native-width: 1293px;
  border: 0;
  padding: 0;
  width: min(1320px, 94vw);
  max-width: none;
  max-height: 93vh;
  background: white;
  color: #111;
}
#screen-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}
#dialog-zoom {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 30px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
#dialog-zoom[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
#dialog-zoom:disabled {
  opacity: 0.45;
  cursor: default;
}
.dialog-toolbar {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: white;
  border-bottom: 1px solid #e7e7e7;
}
.dialog-toolbar h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.dialog-toolbar > div {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.dialog-toolbar a {
  font-size: 11px;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dialog-toolbar .circle-button {
  width: 44px;
  height: 44px;
  font-size: 26px;
}
.dialog-image-wrap {
  overflow: auto;
  max-height: calc(93vh - 109px);
  background: #e9e9e9;
  overscroll-behavior: contain;
}
.dialog-image-wrap img {
  width: min(100%, var(--preview-native-width));
  height: auto;
  margin: auto;
}
#screen-dialog > p {
  font-size: 10px;
  color: #666;
  padding: 11px 20px;
}
#screen-dialog[data-screen="mobile"] {
  --preview-native-width: 386px;
  width: min(550px, 94vw);
}
#screen-dialog[data-zoomed="true"] .dialog-image-wrap img {
  width: var(--preview-native-width);
  max-width: none;
}
@media (min-width: 1700px) {
  .product-track {
    grid-auto-columns: calc((100% - 72px) / 4);
  }
  .editorial-story {
    min-height: 870px;
  }
  .player-display,
  .operator-display {
    height: 535px;
  }
  .phone-shot {
    width: 232px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    height: 73px;
    gap: 18px;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 73px;
    padding: 12px var(--gutter) 27px;
    background: white;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 12px 14px #0000000a;
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .main-nav a {
    line-height: 50px;
    font-size: 18px;
  }
  .main-nav a::after {
    display: none;
  }
  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
  }
  .main-nav .nav-contact {
    display: flex;
    justify-content: center;
    min-height: 48px;
    margin-top: 12px;
    border-radius: 28px;
    background: var(--ink);
    color: white;
    font-size: 15px;
  }
  .language-switcher select,
  .language-trigger {
    font-size: 16px;
  }
  .brand img {
    width: 170px;
  }
  .header-contact {
    padding: 8px 17px;
    gap: 10px;
  }
  .campaign {
    min-height: 610px;
  }
  .campaign h1 {
    font-size: 105px;
  }
  .campaign-copy {
    padding-top: 98px;
  }
  .product-track {
    grid-auto-columns: calc((100% - 24px) / 2.45);
  }
  .art-word {
    font-size: 105px;
  }
  .editorial-story {
    min-height: 670px;
    padding: 24px;
  }
  .player-display,
  .operator-display {
    height: 380px;
  }
  .phone-shot {
    width: 152px;
  }
  .footer-main {
    gap: 30px;
    grid-template-columns: 0.8fr 1.8fr;
  }
  .footer-links {
    gap: 22px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 83px;
  }
  .utility-bar {
    height: 27px;
    font-size: 8px;
  }
  .utility-bar > div > a:first-child,
  .utility-bar > div > span {
    display: none;
  }
  .header-contact {
    min-height: 35px;
    font-size: 11px;
    padding: 8px 15px;
  }
  .header-contact > span {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .announcement {
    min-height: 54px;
  }
  .campaign {
    min-height: 620px;
    height: 78vw;
  }
  .campaign-image {
    object-position: 62% center;
  }
  .campaign-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent),
      linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 35%);
  }
  .campaign h1 {
    font-size: clamp(77px, 13.6vw, 105px);
  }
  .campaign-copy {
    padding-top: 105px;
  }
  .campaign-subtitle {
    font-size: 15px;
  }
  .campaign-bottom {
    font-size: 8px;
  }
  .brand-statement {
    padding: 62px 24px 68px;
  }
  .brand-statement h2 {
    font-size: 64px;
  }
  .section-space {
    padding-bottom: 66px;
  }
  .product-track {
    grid-auto-columns: calc((100% - 24px) / 1.8);
  }
  .art-word {
    font-size: 116px;
  }
  .editorial-story {
    min-height: 620px;
    padding: 20px;
  }
  .player-display,
  .operator-display {
    height: 340px;
  }
  .story-giant,
  .operator-word {
    font-size: 61px;
    top: 30px;
  }
  .phone-shot {
    width: 132px;
    max-width: 52%;
  }
  .story-copy p {
    font-size: 10px;
  }
  .story-copy h3 {
    font-size: 28px;
  }
  .story-copy .pill {
    font-size: 11px;
    padding: 9px 17px;
    gap: 10px;
  }
  .automation-intro {
    padding-top: 56px;
    padding-bottom: 45px;
  }
  .automation-intro h2 {
    font-size: 12vw;
  }
  .automation-bottom p {
    font-size: 13px;
  }
  .ai-details {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 30px;
  }
  .ai-details-heading h3 {
    font-size: 32px;
  }
  .ai-details-heading h3 br {
    display: none;
  }
  .ai-details-heading h3 {
    margin-top: 15px;
  }
  .ai-scope {
    margin-top: 0;
  }
  .journey {
    gap: 25px;
  }
  .journey-number {
    font-size: 62px;
  }
  .journey h3 {
    font-size: 18px;
  }
  .journey p {
    font-size: 11px;
  }
  .quick-faq {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 55px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 43px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom a {
    margin-left: auto;
  }
}
@media (max-width: 1100px) {
  .pill {
    min-height: 48px;
  }
  .story-copy .pill {
    min-height: 48px;
    font-size: 15px;
  }
  .header-contact {
    min-height: 44px;
  }
  .circle-button {
    width: 44px;
    height: 44px;
  }
  .filters {
    flex-wrap: wrap;
  }
  .filters button {
    min-height: 44px;
    font-size: 13px;
  }
  .collection-toolbar {
    flex-wrap: wrap;
  }
  .section-heading > div,
  .footer-links > div {
    min-width: 0;
  }
  .text-button,
  .underlined-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    font-size: 14px;
  }
  .product-info > p:last-of-type,
  .story-copy p,
  .ai-details-heading > p:last-of-type,
  .detail-body p,
  .detail-body blockquote,
  .journey p,
  .quick-faq summary,
  .quick-faq details p {
    font-size: 15px;
  }
  .source-note,
  .ai-scope {
    font-size: 12px;
  }
  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .footer-links span {
    overflow-wrap: anywhere;
  }
  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 13px;
  }
}
@media (max-width: 540px) {
  :root {
    --gutter: 20px;
  }
  .utility-bar,
  .announcement {
    display: none;
  }
  .utility-bar > span {
    letter-spacing: 0;
    font-size: 10px;
  }
  .site-header {
    height: 66px;
    padding-left: 16px;
    padding-right: 10px;
    gap: 8px;
  }
  .brand img {
    width: clamp(108px, 31vw, 155px);
  }
  .main-nav {
    top: 66px;
  }
  .header-actions {
    gap: 3px;
  }
  .header-contact {
    display: none;
  }
  .language-switcher select,
  .language-trigger {
    width: 108px;
    padding-left: 10px;
    padding-right: 22px;
    font-size: 16px;
  }
  .language-globe {
    display: none;
    width: 15px;
    height: 15px;
    left: 8px;
  }
  .language-chevron {
    width: 12px;
    right: 7px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 8px;
  }
  .announcement {
    min-height: 51px;
    font-size: 13px;
  }
  .announcement a {
    font-size: 12px;
  }
  .campaign {
    display: flex;
    align-items: flex-end;
    height: clamp(460px, calc(100vh - 66px), 720px);
    height: clamp(460px, calc(100svh - 66px), 720px);
    min-height: 0;
  }
  .campaign-image {
    object-fit: cover;
    object-position: 88% center;
  }
  .campaign-shade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.05) 49%,
      rgba(0, 0, 0, 0.9) 80%
    );
  }
  .campaign-copy {
    width: 100%;
    padding: 40px var(--gutter) 32px;
  }
  .campaign .eyebrow {
    margin-bottom: 19px;
    font-size: 11px;
  }
  .campaign h1 {
    font-size: clamp(58px, 17.2vw, 91px);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }
  .campaign-subtitle {
    font-size: 16px;
    margin-top: 17px;
  }
  .campaign .pill {
    margin-top: 21px;
    min-height: 48px;
    font-size: 15px;
    padding: 10px 20px;
    gap: 25px;
  }
  .campaign-bottom {
    display: none;
  }
  .brand-statement {
    padding: 56px 20px 54px;
  }
  .overline {
    font-size: 15px;
  }
  .brand-statement h2 {
    font-size: clamp(35px, 9.7vw, 52px);
    margin: 15px 0 18px;
  }
  .brand-statement > p:not(.overline) {
    font-size: 15px;
  }
  .mobile-break {
    display: block;
  }
  .brand-statement .pill {
    margin-top: 23px;
    min-height: 48px;
    font-size: 15px;
    padding: 10px 23px;
  }
  .section-space {
    padding-top: 25px;
    padding-bottom: 52px;
  }
  .section-heading {
    gap: 15px;
    margin-bottom: 22px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .carousel-controls {
    gap: 6px;
  }
  .circle-button {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
  .collection .section-heading h2 {
    font-size: 24px;
  }
  .collection-toolbar {
    margin-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .filters {
    flex-wrap: wrap;
    gap: 8px;
  }
  .filters button {
    min-height: 44px;
    font-size: 13px;
    padding: 7px 13px;
  }
  #filter-status {
    font-size: 12px;
  }
  .product-track {
    grid-auto-columns: 90%;
    gap: 14px;
    padding-bottom: 18px;
  }
  .product-art {
    aspect-ratio: 1.08/1;
    padding: 18px 12px 8px;
  }
  .art-caption {
    top: 17px;
    left: 15px;
    font-size: 10px;
  }
  .art-word {
    top: 42px;
    left: 14px;
    font-size: 96px;
  }
  .product-info {
    padding-top: 16px;
  }
  .product-category {
    font-size: 13px;
  }
  .product-info h3 {
    font-size: 20px;
  }
  .product-info > p:last-of-type {
    font-size: 15px;
    margin-top: 8px;
  }
  .source-note {
    font-size: 12px;
    line-height: 1.9;
  }
  .underlined-link {
    font-size: 13px;
  }
  .experience .section-heading {
    align-items: end;
  }
  .experience .section-heading .eyebrow {
    max-width: 200px;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .editorial-story {
    min-height: 0;
    padding: 21px 23px 30px;
  }
  .player-display,
  .operator-display {
    height: clamp(300px, 88vw, 400px);
    margin-top: 16px;
  }
  .story-giant,
  .operator-word {
    top: 35px;
    font-size: clamp(69px, 19vw, 101px);
  }
  .phone-shot {
    width: 156px;
    max-width: 60%;
    padding: 5px;
    border-radius: 19px;
  }
  .phone-shot img {
    border-radius: 14px;
  }
  .story-copy h3 {
    font-size: 31px;
  }
  .story-copy p {
    font-size: 15px;
  }
  .story-copy .pill {
    min-height: 48px;
    font-size: 15px;
    margin-top: 22px;
  }
  .story-operator {
    min-height: 0;
  }
  .operator-display {
    height: auto;
    min-height: 250px;
  }
  .dashboard-shot {
    margin-top: 52px;
  }
  .automation-intro {
    padding: 40px 20px 35px;
  }
  .automation-intro .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .automation-intro h2 {
    font-size: clamp(41px, 11.9vw, 64px);
    margin-top: 35px;
    line-height: 1;
  }
  .automation-bottom {
    margin-top: 27px;
    gap: 18px;
    align-items: start;
    flex-direction: column;
  }
  .automation-bottom p {
    font-size: 15px;
  }
  .automation-bottom .pill {
    font-size: 15px;
    min-height: 48px;
    padding: 10px 21px;
    gap: 25px;
  }
  .ai-watermark {
    font-size: 420px;
    bottom: -80px;
    right: -15px;
  }
  .ai-details {
    padding-top: 39px;
    padding-bottom: 29px;
  }
  .ai-details-heading .eyebrow {
    font-size: 10px;
  }
  .ai-details-heading h3 {
    font-size: 25px;
  }
  .ai-details-heading h3 br {
    display: block;
  }
  .ai-details-heading > p:last-of-type {
    font-size: 15px;
    margin-top: 17px;
  }
  .language-tags {
    margin-top: 21px;
  }
  .language-tags span {
    font-size: 12px;
    min-width: 35px;
    height: 28px;
  }
  .ai-accordion summary {
    min-height: 71px;
    gap: 16px;
    font-size: 16px;
  }
  .detail-number {
    font-size: 13px;
  }
  .detail-body {
    padding-left: 29px;
    padding-right: 0;
  }
  .detail-body p,
  .detail-body blockquote {
    font-size: 15px;
  }
  .ai-scope {
    font-size: 12px;
    line-height: 1.9;
  }
  .start {
    padding-top: 54px;
  }
  .start .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 17px;
  }
  .journey {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }
  .journey li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
    padding-top: 23px;
  }
  .journey-number {
    grid-row: 1/3;
    font-size: 48px;
  }
  .journey h3 {
    font-size: 20px;
    margin-top: 0;
  }
  .journey p {
    margin-top: 8px;
    font-size: 15px;
  }
  .quick-faq {
    margin-top: 49px;
    padding-top: 24px;
  }
  .quick-faq h3 {
    font-size: 20px;
  }
  .quick-faq summary,
  .quick-faq details p {
    font-size: 15px;
  }
  .quick-faq summary {
    min-height: 60px;
  }
  .final-call {
    padding: 57px 20px 44px;
  }
  .final-call img {
    width: 41px;
    height: 41px;
    margin-bottom: 24px;
  }
  .final-call > p {
    font-size: 15px;
  }
  .final-call h2 {
    font-size: clamp(34px, 9.6vw, 53px);
    margin: 17px 0 25px;
  }
  .final-call .pill {
    min-height: 48px;
    font-size: 15px;
    padding: 10px 22px;
  }
  .final-call > span {
    font-size: 10px;
    margin-top: 32px;
  }
  footer {
    padding-top: 40px;
  }
  .footer-brand img {
    width: 172px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 29px 21px;
  }
  .footer-links > div:last-child {
    grid-column: 1/-1;
  }
  .footer-links h2 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .footer-links a,
  .footer-links span {
    font-size: 13px;
  }
  .footer-bottom {
    margin-top: 35px;
    font-size: 11px;
  }
  #screen-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }
  #screen-dialog[open] {
    display: flex;
    flex-direction: column;
  }
  .dialog-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    flex-shrink: 0;
    padding: 12px;
    gap: 8px;
  }
  .dialog-toolbar h2 {
    max-width: none;
    font-size: 14px;
  }
  .dialog-toolbar > div {
    justify-content: space-between;
    gap: 8px;
  }
  .dialog-toolbar a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 13px;
  }
  .dialog-toolbar .circle-button {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }
  .dialog-image-wrap {
    min-height: 0;
    max-height: calc(100vh - 200px);
    max-height: calc(100dvh - 200px);
  }
  .dialog-image-wrap img {
    min-width: 0;
  }
  #screen-dialog[data-screen="mobile"] .dialog-image-wrap img {
    min-width: 0;
  }
  #screen-dialog > p {
    font-size: 12px;
    padding: 10px 12px;
    flex-shrink: 0;
  }
}
html[lang="en"] {
  --body: "DM Sans", "Noto Sans", sans-serif;
}
html[lang="ja"] {
  --body: "DM Sans", "Noto Sans JP", sans-serif;
}
html[lang="zh-Hant-TW"] {
  --body: "DM Sans", "Noto Sans TC", sans-serif;
}
@media (min-width: 1101px) {
  html[lang="en"] .main-nav { gap: clamp(14px, 1.5vw, 24px); }
  html[lang="en"] .main-nav a { font-size: 13px; }
}
html[lang="en"] .collection-toolbar { flex-wrap: wrap; }
html[lang="en"] .filters { flex-wrap: wrap; }
@media (max-width: 540px) {
  html[lang="en"] .collection .section-heading h2 { font-size: 24px; }
  html[lang="en"] .filters button { padding-inline: 10px; }
  html[lang="en"] .header-contact { padding-inline: 10px; font-size: 9px; }
  html[lang="en"] .ai-details-heading h3 { font-size: 24px; }
  html[lang="en"] .story-copy h3 { font-size: 28px; }
  html[lang="ja"] .header-contact { padding-inline: 9px; font-size: 9px; }
}
@media (max-width: 1100px) and (max-height: 500px) {
  .campaign {
    height: auto;
    min-height: 400px;
  }
  .campaign-copy {
    padding: 40px var(--gutter) 60px;
  }
  .campaign h1 {
    font-size: clamp(58px, 10vw, 90px);
  }
  .campaign-bottom {
    display: none;
  }
}
@media (min-width: 1101px) and (max-width: 1240px) {
  .site-header {
    gap: 18px;
  }
  .main-nav {
    gap: 20px;
  }
  .header-contact {
    display: none;
  }
}
@media (max-width: 1100px) {
  html {
    scroll-padding-top: 137px;
  }
  .site-header {
    height: 117px;
    padding-bottom: 44px;
  }
  .main-nav {
    top: 100%;
    max-height: calc(100vh - 155px);
    max-height: calc(100dvh - 155px);
  }
  .header-payment-shortcut {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 44px;
    padding-inline: var(--gutter);
    border-top: 1px solid #e9e2f1;
    border-bottom: 1px solid #e9e2f1;
    background: #f8f5fc;
    color: var(--purple);
  }
  .header-payment-shortcut > span {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
  }
  .header-payment-shortcut > span:first-child {
    font-size: 14px;
    font-weight: 700;
  }
  .header-payment-shortcut > span:last-child {
    font-size: 12px;
    color: #74647f;
  }
  .header-payment-shortcut > span:last-child > span:last-child {
    font-size: 20px;
    color: var(--purple);
  }
  .header-payment-shortcut svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}
@media (max-width: 800px) {
  .payments {
    margin-inline: 0;
    padding: 28px var(--gutter);
    margin-bottom: 40px;
  }
  .payments-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 32px 0;
  }
  .payments-display {
    font-size: clamp(64px, 12vw, 88px);
  }
  .payment-panel-heading,
  .payment-service {
    padding: 24px;
  }
  .payment-service > p br {
    display: none;
  }
}
@media (max-width: 540px) {
  html {
    scroll-padding-top: 130px;
  }
  .site-header {
    height: 110px;
  }
  .campaign {
    height: clamp(416px, calc(100vh - 110px), 676px);
    height: clamp(416px, calc(100svh - 110px), 676px);
  }
  .payments-heading {
    padding-bottom: 20px;
  }
  .payments-heading > span {
    font-size: 12px;
    letter-spacing: 0.025em;
  }
  .payments-copy h2 {
    margin-top: 24px;
    font-size: 25px;
  }
  .payments-description br {
    display: none;
  }
  .payments-copy .pill {
    width: 100%;
    justify-content: space-between;
  }
  .payment-services {
    border-radius: 16px;
  }
  .payment-panel-heading,
  .payment-service {
    padding: 22px 20px;
  }
  .payment-panel-brand {
    gap: 12px;
  }
  .payment-panel-brand > span > span {
    font-size: 18px;
  }
  .payment-panel-heading > svg {
    width: 28px;
    height: 28px;
  }
  .payment-route {
    padding: 15px 12px;
    gap: 6px;
  }
  .payment-service h3 {
    font-size: 21px;
  }
  .payments-consultation {
    display: grid;
    gap: 10px;
    line-height: 1.8;
  }
  .quick-faq summary > span {
    flex-shrink: 0;
  }
}
@media (max-width: 380px) {
  .header-payment-description {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
