:root {
  color-scheme: light;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: #111218;
  background: #ffffff;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────────────────────────────────────
   앱 파리티 레이어 (원본 정적 문서에는 없는 블록)

   랜딩은 Next 앱 안에서 렌더되므로 Tailwind preflight 가 먼저 적용된다.
   preflight 는 제목/문단/목록의 UA 기본값을 지우는데, 원본 문서는 그 기본값을
   그대로 쓰는 곳이 많아서 그대로 두면 굵기·여백이 어긋난다.
   `:where()` 로 감싸 특이도를 0 으로 만들었기 때문에 아래 원본 규칙이 항상 이긴다.
   ────────────────────────────────────────────────────────────────────────── */
:where(.page--customer, .page--photographer) h1 {
  margin-block: 0.67em;
  font-size: 2em;
  font-weight: bold;
}
:where(.page--customer, .page--photographer) h2 {
  margin-block: 0.83em;
  font-size: 1.5em;
  font-weight: bold;
}
:where(.page--customer, .page--photographer) h3 {
  margin-block: 1em;
  font-size: 1.17em;
  font-weight: bold;
}
:where(.page--customer, .page--photographer) h4 {
  margin-block: 1.33em;
  font-size: 1em;
  font-weight: bold;
}
:where(.page--customer, .page--photographer) h5 {
  margin-block: 1.67em;
  font-size: 0.83em;
  font-weight: bold;
}
:where(.page--customer, .page--photographer) h6 {
  margin-block: 2.33em;
  font-size: 0.67em;
  font-weight: bold;
}
:where(.page--customer, .page--photographer) p {
  margin-block: 1em;
}
:where(.page--customer, .page--photographer) :is(ol, ul) {
  margin-block: 1em;
  padding-inline-start: 40px;
}
:where(.page--customer, .page--photographer) ul {
  list-style: disc outside;
}
:where(.page--customer, .page--photographer) ol {
  list-style: decimal outside;
}
:where(.page--customer, .page--photographer) :is(b, strong) {
  font-weight: bolder;
}
:where(.page--customer, .page--photographer) small {
  font-size: smaller;
}
:where(.page--customer, .page--photographer) button {
  border-radius: 0;
}
/* next/image 는 인라인 style="color:transparent" 를 붙여 alt 텍스트를 감춘다.
   원본은 이미지 로드 실패 시 alt 를 본문 색으로 보여주므로 되돌린다.
   (인라인 스타일을 이기려면 !important 가 필요하다. 이미지가 정상 로드되면 영향 없음) */
.page--customer img,
.page--photographer img {
  color: inherit !important;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #111218;
  color: #ffffff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, 1320px);
  /* 앱 파리티 — Tailwind `container` 유틸리티가 layer(utilities) 에서 max-width 를
     덧씌운다. 원본 문서에는 max-width 가 없으므로 해제한다. */
  max-width: none;
  margin-inline: auto;
}

.section--paint {
  contain: paint;
  overflow: clip;
}

.js .motion-reveal {
  opacity: 0;
  translate: 0 28px;
  filter: blur(3px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), translate 880ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms ease;
  will-change: opacity, translate, filter;
}
.js .motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

.customer-strip {
  height: 40px;
  border-bottom: 1px solid #e7e7eb;
  color: #777;
  background: #ffffff;
  font-size: 13px;
}
.customer-strip__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.customer-strip a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #5b4bff;
  font-weight: 700;
}
.customer-strip svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(231, 231, 235, 0.8);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-stuck {
  height: 72px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 28px rgba(17, 18, 24, 0.05);
}
.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
}
.brand img {
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.site-nav__login {
  font-weight: 700;
}
/* GNB 로그인 상태 토글 — hidden 속성이 .button 등의 display 규칙에 지지 않도록 강제.
   (UA 의 [hidden]{display:none} 은 author display 규칙보다 우선순위가 낮다) */
.site-nav [hidden] {
  display: none !important;
}
/* 로그인 상태 GNB (내 앨범/로그아웃) — 로그인 링크와 동일한 텍스트 스타일 */
.site-nav__auth {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
}
.site-nav__auth svg {
  width: 18px;
  height: 18px;
}
button.site-nav__auth {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible {
  outline: 3px solid rgba(91, 75, 255, 0.28);
  outline-offset: 3px;
}
.button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}
.button--dark {
  color: #ffffff;
  background: #111218;
  box-shadow: 0 10px 28px rgba(17, 18, 24, 0.12);
}
.button--dark:hover {
  background: #20222d;
}
.button--light {
  color: #111218;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.button--nav {
  min-height: 48px;
  padding-inline: 24px;
}
.button__short {
  display: none;
}

.button--outline {
  border-color: #e7e7eb;
  color: #111218;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(17, 18, 24, 0.06);
}
.button--outline:hover {
  border-color: rgba(91, 75, 255, 0.3);
  background: #ffffff;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  min-height: 880px;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.85fr) minmax(700px, 1.35fr);
  gap: 46px;
  padding-top: 126px;
  padding-bottom: 92px;
}
.hero__copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 28px 0 22px;
  font-size: clamp(46px, 3vw, 56px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.23;
}
.hero h1 span {
  color: #5b4bff;
}
.hero__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 52px;
}
.hero__illustration {
  width: 360px;
  margin: 118px 0 0 18px;
}
.hero__visual {
  position: relative;
  min-height: 730px;
}
.hero__browser {
  position: absolute;
  top: 40px;
  left: 4px;
  width: 820px;
  max-width: none;
  transform: rotate(-1.6deg);
  transform-origin: 45% 50%;
}
.hero__mobile {
  position: absolute;
  top: 298px;
  right: -40px;
  width: 220px;
  max-width: none;
  transform: rotate(2.2deg);
  filter: drop-shadow(0 18px 34px rgba(34, 31, 96, 0.08));
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}
.eyebrow svg,
.section-label svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}
.eyebrow--primary,
.section-label--primary {
  color: #5b4bff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 0;
  border-bottom: 1px solid #111218;
  font-weight: 700;
  white-space: nowrap;
}
.text-link svg {
  width: 18px;
  height: 18px;
}

.notification {
  position: absolute;
  top: -6px;
  right: 46px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 12px;
  border: 1px solid rgba(231, 231, 235, 0.75);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(23, 24, 32, 0.1);
  backdrop-filter: blur(10px);
  animation: notification-float 4.2s ease-in-out infinite;
}
.notification__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #ff9b45;
}
.notification strong,
.notification small {
  display: block;
}
.notification strong {
  font-size: 14px;
}
.notification small {
  margin-top: 1px;
  color: #777;
  font-size: 11px;
}
.notification svg {
  width: 20px;
  height: 20px;
}

@keyframes notification-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.feature-chips {
  position: absolute;
  top: 620px;
  left: 64px;
  display: grid;
  width: 650px;
  grid-template-columns: repeat(3, max-content);
  gap: 24px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}
.feature-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-chips svg {
  width: 19px;
  height: 19px;
  color: #5b4bff;
  stroke-width: 1.9;
}

.speed-proof {
  padding: 0 0 132px;
  background: #ffffff;
}
.speed-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: 64px;
  padding: 48px 54px;
  border: 1px solid rgba(91, 75, 255, 0.12);
  border-radius: 32px;
  background: linear-gradient(135deg, #faf9ff, #f2f0ff);
  box-shadow: 0 20px 50px rgba(39, 35, 78, 0.06);
}
.speed-proof h2 {
  margin: 18px 0 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.28;
}
.speed-proof__copy > p:not(.section-label) {
  margin: 18px 0 0;
  color: #555;
  line-height: 1.7;
}
.speed-proof__copy small {
  display: block;
  max-width: 580px;
  margin-top: 16px;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
}
.speed-proof__comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.speed-proof__metric {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border: 1px solid #e7e7eb;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.speed-proof__metric span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}
.speed-proof__metric strong {
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}
.speed-proof__metric em {
  margin-top: 8px;
  color: #5b4bff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.speed-proof__metric--snapdrive {
  border-color: rgba(91, 75, 255, 0.24);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(91, 75, 255, 0.12);
}
.speed-proof__metric--snapdrive strong {
  color: #5b4bff;
}
.speed-proof__arrow {
  width: 24px;
  height: 24px;
  margin-inline: auto;
  color: #5b4bff;
}

.old-way h2,
.flow h2,
.start-paths h2,
.customer-flow h2,
.feature h2,
.faq h2 {
  margin: 20px 0 0;
  font-size: clamp(38px, 2.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 1.28;
}

.old-way {
  padding: 164px 0 190px;
}
.old-way__inner {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  align-items: center;
  gap: 100px;
}
.old-way__list {
  display: grid;
  gap: 16px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}
.old-way__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #888;
  font-size: 18px;
}
.old-way__list strong {
  color: #111218;
  font-size: 15px;
}
.old-way__list span {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.old-way__illustration {
  width: 480px;
  justify-self: end;
}

.flow {
  padding: 160px 0 190px;
  background: linear-gradient(180deg, rgba(242, 240, 255, 0.18), #ffffff 24%);
}
.flow__inner {
  position: relative;
  display: grid;
  min-height: 900px;
  grid-template-columns: 690px 1fr;
}
.flow__content {
  position: relative;
  z-index: 2;
}
.flow__visual {
  position: relative;
}
.flow__visual .flow__browser {
  position: absolute;
  max-width: none;
}
.flow__visual .flow__browser--select {
  top: -40px;
  left: 40px;
  width: 1000px;
  transform: rotate(-0.6deg);
}
.flow__visual .flow__browser--upload {
  top: 188px;
  left: 230px;
  z-index: 2;
  width: 760px;
  opacity: 0;
  translate: 58px 26px;
  scale: 0.985;
  clip-path: inset(0 0 0 16% round 22px);
  transform: rotate(0.8deg);
  filter: blur(4px);
  will-change: opacity, translate, scale, clip-path, filter;
}
.flow__visual.is-visible .flow__browser--upload {
  animation: upload-mockup-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

@keyframes upload-mockup-in {
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    clip-path: inset(0 0 0 0 round 22px);
    filter: blur(0);
  }
}
.section-description {
  margin: 24px 0 0;
  color: #111218;
  font-size: 17px;
  line-height: 1.75;
}

.role-flows {
  display: grid;
  gap: 58px;
  margin-top: 72px;
}

.role-flow {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 38px;
}
.role-flow__person {
  text-align: center;
}
.role-flow__person img {
  width: 92px;
  height: 92px;
  margin-inline: auto;
  border: 3px solid #233461;
  border-radius: 50%;
  object-fit: cover;
}
.role-flow__person strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}
.role-flow ol {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.role-flow li {
  display: grid;
  grid-template-columns: 32px 26px 170px 1fr;
  align-items: start;
  gap: 10px;
}
.role-flow svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.role-flow li > strong {
  font-size: 17px;
}
.role-flow p {
  margin: 0;
  color: #777;
  font-size: 16px;
}

.role-flow__person-icon {
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 3px solid #233461;
  border-radius: 50%;
  color: #5b4bff;
  background: #ffffff;
}
.role-flow__person-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.step-number,
.feature-list > li > span,
.faq__list > li > span {
  color: #5b4bff;
  font-weight: 700;
}

.feature {
  padding: 160px 0 190px;
}
.feature__inner {
  position: relative;
  display: grid;
  min-height: 670px;
  grid-template-columns: 610px 1fr;
}
.feature__copy {
  position: relative;
  z-index: 2;
}
.feature__visual {
  position: relative;
}
.feature__visual--browser img {
  position: absolute;
  top: -72px;
  left: 44px;
  width: 1010px;
  max-width: none;
  transform: rotate(0.5deg);
}
.feature__illustration {
  position: absolute;
}
.feature__illustration--feedback {
  right: -22px;
  bottom: -6px;
  width: 310px;
}
.feature__illustration--offline {
  left: 22px;
  bottom: -40px;
  width: 360px;
}

.feature-list {
  display: grid;
  gap: 34px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}
.feature-list strong {
  font-size: 18px;
}
.feature-list p {
  margin: 5px 0 0;
  color: #777;
}

.feature--offline {
  padding-top: 180px;
}
.feature--offline .feature__inner {
  min-height: 720px;
}

.offline-mockups {
  position: relative;
  min-height: 650px;
}
.offline-mockups img {
  position: absolute;
  width: 230px;
  max-width: none;
}
.offline-mockups__one {
  top: 22px;
  left: 48px;
  transform: rotate(-0.7deg);
}
.offline-mockups__two {
  top: 64px;
  left: 230px;
  z-index: 2;
  transform: rotate(0.8deg);
}
.offline-mockups__three {
  top: 102px;
  left: 415px;
  z-index: 3;
  transform: rotate(4.5deg);
}

.faq {
  padding: 168px 0 156px;
}
.faq__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 106px;
}
.faq__heading > p:last-child {
  margin: 30px 0 0;
  color: #777;
}
.faq__list {
  margin: 0;
  padding: 0;
  border-top: 2px solid #111218;
  list-style: none;
}
.faq__list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid #e7e7eb;
}
.faq__list h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.faq__list p {
  margin: 12px 0 0;
  color: #777;
  font-size: 16px;
  line-height: 1.75;
}

.closing-cta {
  color: #ffffff;
  background: #101116;
}
.closing-cta__inner {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.closing-cta__inner > img {
  width: 64px;
}
.closing-cta__inner h2 {
  margin: 32px 0 0;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.22;
}
.closing-cta__inner h2 span {
  color: #5b4bff;
}
.closing-cta__inner p {
  margin: 26px 0 0;
  color: #aaa;
  line-height: 1.65;
}
.closing-cta__inner .button {
  margin-top: 42px;
}
.closing-cta__inner .closing-cta__secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #ddd;
  font-weight: 700;
}
.closing-cta__inner .closing-cta__secondary svg {
  width: 16px;
  height: 16px;
}
.closing-cta__inner small {
  margin-top: 18px;
  color: #777;
}

.site-footer {
  padding: 70px 0 82px;
  color: #777;
  font-size: 13px;
}
.site-footer__logo {
  width: 158px;
}
.site-footer__tagline {
  margin: 24px 0 34px;
}
.site-footer__details {
  padding: 30px 0;
  border-top: 1px solid #e7e7eb;
}
.site-footer__details p {
  margin: 2px 0;
}
.site-footer__bottom {
  display: flex;
  gap: 36px;
  padding-top: 10px;
}
.site-footer__bottom a:last-child {
  color: #5b4bff;
  font-weight: 700;
}

.page--customer {
  background: radial-gradient(circle at 50% 290px, rgba(91, 75, 255, 0.06), transparent 520px), #ffffff;
}

.page--customer .customer-hero {
  min-height: auto;
  background: linear-gradient(180deg, rgba(242, 240, 255, 0.72), rgba(255, 255, 255, 0.96) 68%, #ffffff);
}
.page--customer .customer-hero .hero__inner {
  display: block;
  padding-top: 104px;
  padding-bottom: 68px;
}
.page--customer .customer-hero .hero__copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
.page--customer .customer-hero .eyebrow {
  justify-content: center;
  color: #5b4bff;
}
.page--customer .customer-hero h1 {
  margin-top: 24px;
  font-size: clamp(46px, 4vw, 56px);
  line-height: 1.17;
}
.page--customer .customer-hero .hero__description {
  color: #555;
}
.page--customer .customer-hero .hero__actions {
  justify-content: center;
  margin-top: 40px;
}
.page--customer .customer-hero .hero__demo-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 0;
  color: #777;
  font-size: 14px;
}
.page--customer .customer-hero .hero__demo-prompt a,
.page--customer .customer-hero .hero__demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5b4bff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* 체험하기 CTA 는 데모 세션을 발급하는 버튼이라 링크 외형만 물려받는다 */
.page--customer .customer-hero .hero__demo-cta {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.page--customer .customer-hero .hero__demo-cta[disabled] {
  cursor: progress;
  opacity: 0.6;
}
.page--customer .customer-hero .hero__demo-error {
  color: #d2434f;
  font-weight: 600;
}
.page--customer .customer-hero .hero__demo-prompt svg {
  width: 16px;
  height: 16px;
}
.page--customer .customer-hero .hero__visual {
  min-height: 1120px;
  margin-top: 58px;
}
.page--customer .customer-hero .hero__browser {
  max-width: none;
  filter: drop-shadow(0 26px 50px rgba(36, 32, 94, 0.1));
}
.page--customer .customer-hero .hero__browser--upload {
  top: 48px;
  left: 50%;
  z-index: 1;
  width: 850px;
  transform: translateX(-78%) rotate(-1.8deg);
}
.page--customer .customer-hero .hero__browser--select {
  top: 126px;
  left: 50%;
  z-index: 2;
  width: 790px;
  transform: translateX(-50%) rotate(1.3deg);
}
.page--customer .customer-hero .hero__mobile {
  top: 90px;
  right: auto;
  left: calc(50% + 315px);
  z-index: 1;
  width: 205px;
  transform: rotate(7deg);
}
.page--customer .customer-hero .hero__customer-illustration {
  position: absolute;
  top: 720px;
  left: 50%;
  z-index: 3;
  width: 400px;
  max-width: none;
  transform: translateX(-50%);
}
.page--customer .customer-hero .notification--upload {
  top: 6px;
  right: auto;
  left: calc(50% - 470px);
}
.page--customer .customer-hero .notification--upload .notification__icon {
  background: #5b4bff;
}
.page--customer .customer-hero .notification--album {
  top: 78px;
  right: calc(50% - 560px);
}
.page--customer .customer-hero .notification--album .notification__icon {
  background: #ff9b45;
}
.page--customer .customer-hero .feature-chips {
  top: auto;
  bottom: 0;
  left: 50%;
  width: min(100%, 940px);
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 22px;
  transform: translateX(-50%);
}
.page--customer .customer-hero .feature-chips li {
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.start-paths {
  padding: 142px 0 160px;
  background: #f8f7ff;
}
.start-paths__heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.start-paths__heading .section-label {
  justify-content: center;
}
.start-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 72px auto 0;
}

.start-card {
  position: relative;
  display: flex;
  min-width: 0;
  max-width: 100%;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  padding: 46px;
  border: 1px solid #e7e7eb;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(39, 35, 78, 0.06);
}
.start-card--primary {
  border-color: rgba(91, 75, 255, 0.2);
  background: linear-gradient(145deg, #ffffff, #f0edff);
  box-shadow: 0 24px 60px rgba(91, 75, 255, 0.12);
}
.start-card__badge {
  padding: 6px 11px;
  border-radius: 999px;
  color: #5b4bff;
  background: #f2f0ff;
  font-size: 12px;
  font-weight: 700;
}
.start-card__icon {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border-radius: 22px;
  color: #5b4bff;
  background: #f2f0ff;
}
.start-card__icon svg {
  width: 30px;
  height: 30px;
}
.start-card h3 {
  margin: 24px 0 0;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.35;
}
.start-card > p {
  margin: 14px 0 0;
  color: #555;
  line-height: 1.75;
}
.start-card__speed-proof {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(91, 75, 255, 0.08);
  text-align: left;
}
.start-card__speed-proof span,
.start-card__speed-proof strong,
.start-card__speed-proof small {
  display: block;
}
.start-card__speed-proof span {
  min-width: 0;
}
.start-card__speed-proof strong {
  color: #111218;
  font-size: 13px;
}
.start-card__speed-proof small {
  margin-top: 5px;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
}
.start-card__speed-proof em {
  flex: 0 0 auto;
  color: #5b4bff;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.start-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 34px;
  padding: 0;
  color: #555;
  list-style: none;
}
.start-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.start-card ul svg {
  width: 17px;
  height: 17px;
  color: #5b4bff;
}
.start-card .button {
  margin-top: auto;
}

.page--customer .customer-old-way {
  color: #111218;
  background: #ffffff;
}

.customer-flow {
  padding: 152px 0 104px;
  background: linear-gradient(180deg, #ffffff, #faf9ff 52%, #ffffff);
}
.customer-flow__heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.customer-flow__heading .section-label {
  justify-content: center;
}
.customer-flow__visual {
  position: relative;
  min-height: 760px;
  margin-top: 74px;
}
.customer-flow__browser {
  position: absolute;
  max-width: none;
  filter: drop-shadow(0 28px 55px rgba(37, 32, 92, 0.1));
}
.customer-flow__browser--select {
  top: 0;
  left: 50%;
  width: 1030px;
  transform: translateX(-58%) rotate(-0.8deg);
}
.customer-flow__browser--gallery {
  --gallery-position-x: -20%;
  top: 130px;
  left: 50%;
  z-index: 2;
  width: 690px;
  opacity: 0;
  transform: translate3d(calc(var(--gallery-position-x) + 68px), 26px, 0) rotate(0.8deg);
  filter: none;
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) 700ms, transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 700ms;
}
.customer-flow__visual.is-visible .customer-flow__browser--gallery {
  opacity: 1;
  transform: translate3d(var(--gallery-position-x), 0, 0) rotate(0.8deg);
}

.selection-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1120px;
  margin: 64px auto 0;
  padding: 0;
  list-style: none;
}
.selection-steps li {
  display: grid;
  min-height: 210px;
  align-content: start;
  padding: 26px;
  border: 1px solid #e7e7eb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}
.selection-steps span {
  color: #5b4bff;
  font-size: 13px;
  font-weight: 800;
}
.selection-steps svg {
  width: 28px;
  height: 28px;
  margin-top: 26px;
}
.selection-steps strong {
  margin-top: 14px;
  font-size: 18px;
}
.selection-steps p {
  margin: 7px 0 0;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

.page--customer .closing-cta__actions {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}
.page--customer .closing-cta__actions .button {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .hero__inner {
    grid-template-columns: minmax(390px, 0.9fr) minmax(560px, 1.1fr);
  }
  .hero__browser {
    width: 760px;
  }
  .hero__mobile {
    right: -90px;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .feature-chips {
    width: 600px;
    grid-template-columns: repeat(2, max-content);
  }

  .flow__inner,
.feature__inner {
    grid-template-columns: 570px 1fr;
  }

  .role-flow li {
    grid-template-columns: 30px 24px 150px 1fr;
  }

  .offline-mockups {
    transform: translateX(-30px) scale(0.9);
    transform-origin: top left;
  }
}
@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero__inner {
    display: block;
    padding-top: 86px;
    padding-bottom: 100px;
  }
  .hero__copy {
    max-width: 640px;
  }
  .hero__illustration {
    width: 300px;
    margin-top: 78px;
  }
  .hero__visual {
    min-height: 700px;
    margin-top: 58px;
  }
  .hero__browser {
    top: 30px;
    left: 0;
    width: 820px;
  }
  .hero__mobile {
    top: 290px;
    right: -40px;
  }

  .notification {
    right: 18px;
  }

  .feature-chips {
    top: 590px;
    left: 20px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 40px, 720px);
  }

  .site-nav {
    gap: 20px;
  }

  .site-header.is-stuck {
    height: var(--header-height);
  }

  .old-way {
    padding-block: 118px 140px;
  }
  .old-way__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .old-way__illustration {
    width: 400px;
    justify-self: center;
  }

  .speed-proof {
    padding-bottom: 104px;
  }
  .speed-proof__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 42px;
  }
  .speed-proof__copy {
    text-align: center;
  }
  .speed-proof__copy .section-label {
    justify-content: center;
  }
  .speed-proof__copy small {
    margin-inline: auto;
  }
  .speed-proof__comparison {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .flow,
.feature {
    padding-block: 118px 140px;
  }
  .flow__inner,
.feature__inner {
    display: block;
    min-height: auto;
  }
  .flow__visual,
.feature__visual {
    height: 560px;
    margin-top: 76px;
  }
  .flow__visual img, .flow__visual--browser img,
.feature__visual img,
.feature__visual--browser img {
    top: 0;
    left: 0;
    width: 960px;
  }

  .flow__visual .flow__browser--select {
    top: 0;
    left: 0;
    width: 960px;
  }
  .flow__visual .flow__browser--upload {
    top: 126px;
    left: 180px;
    width: 720px;
  }

  .role-flows {
    max-width: 640px;
  }

  .feature__copy {
    max-width: 640px;
  }

  .feature__illustration {
    position: static;
    margin: 68px auto 0;
  }
  .feature__illustration--feedback {
    width: min(62%, 340px);
  }
  .feature__illustration--offline {
    width: min(70%, 380px);
  }

  .feature--offline .feature__inner {
    min-height: auto;
  }

  .offline-mockups {
    min-height: 620px;
    margin-top: 90px;
    transform: none;
  }

  .faq {
    padding-block: 120px;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .faq__heading {
    max-width: 440px;
  }
}
@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 32px, 520px);
  }

  .customer-strip {
    height: 38px;
    font-size: 12px;
  }
  .customer-strip__inner {
    justify-content: center;
    gap: 10px;
  }

  .brand img {
    width: 126px;
  }

  .site-nav__login {
    display: none;
  }
  /* 로그인 상태 버튼은 모바일에서도 유지 — 숨기면 로그인 시 GNB 가 비어버린다 */
  .site-nav__login.site-nav__auth:not([hidden]) {
    display: inline-flex;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }
  .button--nav {
    min-height: 42px;
    padding-inline: 15px;
  }
  .button--nav svg:first-child {
    display: none;
  }
  .button__full {
    display: none;
  }
  .button__short {
    display: inline;
  }

  .hero__copy {
    margin-inline: auto;
    text-align: center;
  }
  .hero__inner {
    padding-top: 52px;
    padding-bottom: 70px;
  }
  .hero h1 {
    margin-top: 20px;
    font-size: clamp(36px, 10.2vw, 48px);
    line-height: 1.22;
  }
  .hero__description {
    font-size: 16px;
  }
  .hero__description br {
    display: none;
  }
  .hero__actions {
    width: 80%;
    max-width: 400px;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
    margin-inline: auto;
  }
  .hero__actions > .button {
    width: 100%;
  }
  .hero__illustration {
    width: min(82vw, 330px);
    margin: 66px auto 0;
  }
  .hero__visual {
    min-height: 730px;
    margin-top: 30px;
  }
  .hero__browser {
    top: 72px;
    left: -70px;
    width: 680px;
    transform: rotate(-1deg);
  }
  .hero__mobile {
    top: 260px;
    right: -20px;
    width: 164px;
  }

  .notification {
    top: 0;
    right: auto;
    left: 50%;
    translate: -50% 0;
    padding: 10px 12px 10px 9px;
  }
  .notification__icon {
    width: 34px;
    height: 34px;
  }

  .feature-chips {
    top: 620px;
    left: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    font-size: 10px;
  }
  /* 작가 페이지 칩(7개)은 기존 2열 그리드를 유지한다 — 고객 페이지(10개)만 새 flex 배치 */
  .page--photographer .feature-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
  }
  .feature-chips li {
    justify-content: center;
  }
  .feature-chips svg {
    width: 15px;
    height: 15px;
  }

  .old-way {
    padding-block: 76px 88px;
  }
  .old-way__copy {
    text-align: center;
  }
  .old-way h2 {
    font-size: 34px;
  }
  .old-way__list {
    width: max-content;
    max-width: 100%;
    margin-top: 38px;
    margin-inline: auto;
    text-align: left;
  }
  .old-way__illustration {
    width: min(100%, 360px);
  }

  .speed-proof {
    padding-bottom: 84px;
  }
  .speed-proof__inner {
    gap: 32px;
    padding: 32px 24px;
    border-radius: 24px;
  }
  .speed-proof h2 {
    font-size: 32px;
  }
  .speed-proof__copy > p:not(.section-label) {
    font-size: 15px;
  }
  .speed-proof__comparison {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .speed-proof__metric {
    width: 100%;
    min-height: 132px;
  }
  .speed-proof__arrow {
    transform: rotate(90deg);
  }

  .flow,
.feature {
    padding-block: 76px 88px;
  }
  .flow h2,
.feature h2 {
    font-size: 36px;
  }
  .flow__visual,
.feature__visual {
    height: 390px;
    margin-top: 62px;
  }
  .flow__visual img, .flow__visual--browser img,
.feature__visual img,
.feature__visual--browser img {
    width: 700px;
  }

  .flow__content,
.feature__copy {
    margin-inline: auto;
    text-align: center;
  }

  .section-label,
.eyebrow {
    justify-content: center;
  }

  .flow__visual {
    height: 500px;
  }
  .flow__visual .flow__browser--select {
    width: 700px;
  }
  .flow__visual .flow__browser--upload {
    top: 88px;
    left: 70px;
    width: 540px;
  }

  .role-flows {
    gap: 54px;
    margin-top: 56px;
    margin-inline: auto;
  }

  .role-flow ol,
.feature-list {
    padding-inline: 40px;
  }

  .role-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .role-flow__person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }
  .role-flow__person img {
    width: 70px;
    height: 70px;
    margin: 0;
  }
  .role-flow__person .role-flow__person-icon {
    width: 70px;
    height: 70px;
    margin: 0;
  }
  .role-flow__person .role-flow__person-icon svg {
    width: 28px;
    height: 28px;
  }
  .role-flow__person strong {
    margin: 0;
  }
  .role-flow li {
    grid-template-columns: 28px 24px 1fr;
    align-items: start;
    row-gap: 2px;
    text-align: left;
  }
  .role-flow li > p {
    grid-column: 3;
  }

  .section-description {
    font-size: 16px;
  }
  .section-description br {
    display: none;
  }

  .feature-list {
    max-width: 380px;
    margin-top: 42px;
    margin-inline: auto;
    text-align: left;
  }

  .feature__illustration {
    position: static;
    margin: 56px auto 0;
  }
  .feature__illustration--feedback, .feature__illustration--offline {
    width: min(84%, 340px);
  }

  .feature--feedback .feature__visual {
    margin-top: 42px;
  }
  .feature--feedback .feature__visual--browser img {
    left: -45px;
  }

  .feature--offline {
    padding-top: 76px;
  }

  .offline-mockups {
    min-height: 440px;
    margin-top: 56px;
  }
  .offline-mockups img {
    width: 156px;
  }
  .offline-mockups__one {
    top: 0;
    left: 0;
  }
  .offline-mockups__two {
    top: 28px;
    left: 29%;
  }
  .offline-mockups__three {
    top: 56px;
    left: 58%;
  }

  .faq {
    padding-block: 80px;
  }
  .faq__inner {
    gap: 48px;
  }
  .faq__heading {
    margin-inline: auto;
    text-align: center;
  }
  .faq h2 {
    font-size: 36px;
  }
  .faq__list {
    text-align: left;
  }
  .faq__list li {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding-block: 24px;
  }
  .faq__list h3 {
    font-size: 17px;
  }
  .faq__list p {
    font-size: 16px;
  }

  .closing-cta__inner {
    min-height: 440px;
  }
  /* 작가 페이지 클로징은 단일 CTA 라 여백을 줄인다 */
  .page--photographer .closing-cta__inner {
    min-height: 0;
    padding-block: 64px;
  }
  .closing-cta__inner > .button {
    width: 80%;
    max-width: 400px;
  }
  .closing-cta h2 {
    font-size: 38px;
  }
  .closing-cta p {
    font-size: 14px;
  }

  .site-footer {
    padding-block: 48px 56px;
    text-align: center;
  }
  .site-footer__logo {
    margin-inline: auto;
  }
  .site-footer__details {
    line-height: 1.75;
  }
  .site-footer__bottom {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 26px;
  }
}
@media (max-width: 1180px) {
  .page--customer .customer-hero .hero__actions {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  .page--customer .customer-hero .hero__browser--upload {
    transform: translateX(-74%) rotate(-1.8deg);
  }
  .page--customer .customer-hero .hero__browser--select {
    transform: translateX(-50%) rotate(1.3deg);
  }
  .page--customer .customer-hero .hero__mobile {
    right: auto;
    left: calc(50% + 285px);
  }
  .page--customer .customer-hero .notification--upload {
    left: 5%;
  }
  .page--customer .customer-hero .notification--album {
    right: 3%;
  }
}
@media (max-width: 900px) {
  .page--customer .customer-hero .hero__inner {
    padding-top: 80px;
    padding-bottom: 56px;
  }
  .page--customer .customer-hero .hero__visual {
    min-height: 1080px;
    margin-top: 54px;
  }
  .page--customer .customer-hero .hero__customer-illustration {
    top: 690px;
    width: 360px;
  }
  .page--customer .customer-hero .hero__browser--upload {
    top: 66px;
    left: 50%;
    width: 720px;
    transform: translateX(-75%) rotate(-1.8deg);
  }
  .page--customer .customer-hero .hero__browser--select {
    top: 152px;
    left: 50%;
    width: 710px;
    transform: translateX(-50%) rotate(1.3deg);
  }
  .page--customer .customer-hero .hero__mobile {
    top: 105px;
    right: auto;
    left: calc(50% + 235px);
    width: 180px;
    transform: rotate(7deg);
  }
  .page--customer .customer-hero .notification--upload {
    left: 0;
  }
  .page--customer .customer-hero .notification--album {
    top: 70px;
    right: 0;
  }

  .start-paths {
    padding-block: 112px 124px;
  }
  .start-paths__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-top: 56px;
  }

  .start-card {
    min-height: 0;
  }

  .customer-flow {
    padding-block: 112px 86px;
  }
  .customer-flow__visual {
    min-height: 610px;
    margin-top: 66px;
  }
  .customer-flow__browser--select {
    left: 0;
    width: 900px;
    transform: rotate(-0.8deg);
  }
  .customer-flow__browser--gallery {
    --gallery-position-x: 0px;
    top: 90px;
    left: 230px;
    width: 600px;
  }

  .selection-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .selection-steps li {
    min-height: 190px;
  }
}
@media (max-width: 640px) {
  .page--customer .customer-hero .hero__inner {
    padding-top: 50px;
    padding-bottom: 42px;
  }
  .page--customer .customer-hero h1 {
    font-size: clamp(36px, 10.2vw, 46px);
  }
  .page--customer .customer-hero .hero__description {
    max-width: 430px;
    margin-inline: auto;
  }
  .page--customer .customer-hero .hero__actions {
    width: 80%;
    max-width: 400px;
    flex-direction: column;
    margin-inline: auto;
  }
  .page--customer .customer-hero .hero__actions .button {
    width: 100%;
  }
  .page--customer .customer-hero .hero__demo-prompt {
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
  }
  .page--customer .customer-hero .hero__visual {
    min-height: 970px;
    margin-top: 34px;
  }
  .page--customer .customer-hero .hero__customer-illustration {
    top: 555px;
    width: min(98%, 340px);
  }
  .page--customer .customer-hero .hero__browser--upload {
    top: 84px;
    left: 50%;
    width: 610px;
    transform: translateX(-72%) rotate(-1.8deg);
  }
  .page--customer .customer-hero .hero__browser--select {
    top: 160px;
    left: 50%;
    width: 570px;
    transform: translateX(-50%) rotate(1.3deg);
  }
  .page--customer .customer-hero .hero__mobile {
    top: 118px;
    right: auto;
    left: calc(50% + 96px);
    width: 142px;
    transform: rotate(7deg);
  }
  .page--customer .customer-hero .notification {
    translate: none;
  }
  .page--customer .customer-hero .notification strong {
    font-size: 12px;
  }
  .page--customer .customer-hero .notification small {
    font-size: 10px;
  }
  .page--customer .customer-hero .notification--upload {
    top: 4px;
    right: auto;
    left: 0;
  }
  .page--customer .customer-hero .notification--album {
    top: 50px;
    right: 0;
    left: auto;
  }
  .page--customer .customer-hero .feature-chips {
    bottom: 0;
    width: min(100%, 420px);
    gap: 12px 20px;
    font-size: 12px;
  }
  .page--customer .customer-hero .feature-chips li {
    min-height: 0;
    padding: 0;
  }

  .start-paths {
    padding-block: 76px 84px;
  }
  .start-paths h2 {
    font-size: 34px;
  }
  .start-paths__grid {
    margin-top: 42px;
  }

  .start-card {
    width: 100%;
    min-width: 0;
    align-items: center;
    padding: 30px 24px;
    border-radius: 24px;
    text-align: center;
  }
  .start-card__icon {
    margin-top: 24px;
  }
  .start-card h3 {
    font-size: 24px;
  }
  .start-card ul {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    text-align: left;
  }
  .start-card ul li {
    min-width: 0;
    align-items: flex-start;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .start-card ul li span {
    min-width: 0;
  }
  .start-card ul li svg {
    flex: 0 0 auto;
    margin-top: 3px;
  }
  .start-card__speed-proof {
    gap: 12px;
  }
  .start-card__speed-proof small {
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .start-card .button {
    width: 80%;
    max-width: 320px;
    margin-inline: auto;
  }

  .page--customer .customer-old-way {
    padding-block: 76px 88px;
  }

  .customer-flow {
    padding-block: 76px 68px;
  }
  .customer-flow h2 {
    font-size: 36px;
  }
  .customer-flow__visual {
    min-height: 460px;
    margin-top: 52px;
  }
  .customer-flow__browser--select {
    left: -76px;
    width: 650px;
  }
  .customer-flow__browser--gallery {
    top: 78px;
    left: 58px;
    width: 420px;
  }

  .selection-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 42px;
    padding-inline: 24px;
  }
  .selection-steps li {
    min-height: 0;
    grid-template-columns: 30px 28px 1fr;
    align-items: start;
    gap: 10px;
    padding: 20px;
    text-align: left;
  }
  .selection-steps span {
    padding-top: 2px;
  }
  .selection-steps svg,
.selection-steps strong {
    margin-top: 0;
  }
  .selection-steps p {
    grid-column: 3;
    margin-top: 0;
  }

  .page--customer .feature--offline h2 br {
    display: none;
  }

  .page--customer .closing-cta__inner {
    min-height: 520px;
    padding-block: 64px;
  }
  .page--customer .closing-cta__actions {
    width: 80%;
    max-width: 400px;
    flex-direction: column;
    margin-top: 34px;
  }
  .page--customer .closing-cta__actions .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-reveal {
    opacity: 1 !important;
    translate: none !important;
    filter: none !important;
  }

  .flow__browser--upload {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
    clip-path: none !important;
    filter: none !important;
  }

  .customer-flow__browser--gallery {
    opacity: 1 !important;
    transform: translate3d(var(--gallery-position-x), 0, 0) rotate(0.8deg) !important;
    filter: none !important;
    transition: none !important;
  }
}
