@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-024F, U+2000-206F, U+20A0-20CF, U+2190-21FF, U+2700-27BF;
}

@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Regular-ko.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+1100-11FF, U+3130-318F, U+AC00-D7A3;
}

@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0000-024F, U+2000-206F, U+20A0-20CF, U+2190-21FF, U+2700-27BF;
}

@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-SemiBold-ko.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+1100-11FF, U+3130-318F, U+AC00-D7A3;
}

@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-024F, U+2000-206F, U+20A0-20CF, U+2190-21FF, U+2700-27BF;
}

@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Bold-ko.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+1100-11FF, U+3130-318F, U+AC00-D7A3;
}

:root {
  color-scheme: light;
  --ink: #171719;
  --paper: #fafafa;
  --surface: #ffffff;
  --soft: #f7f7f8;
  --line: #dbdcdf;
  --muted: #626368;
  --burgundy: #330909;
  --focus: #4f46e5;
  --page-padding: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  width: min(calc(100% - (var(--page-padding) * 2)), 1200px);
  height: 80px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
  background: rgba(250, 250, 250, 0.86);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.wordmark span {
  color: var(--burgundy);
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 32px;
  transform: translateX(-50%);
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
}

.language-switcher button {
  min-width: 40px;
  height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease-out, background-color 160ms ease-out;
}

.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.language-switcher button:not([aria-pressed="true"]):hover {
  color: var(--ink);
  background: var(--soft);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  background: var(--surface);
}

.hero {
  display: grid;
  width: min(calc(100% - (var(--page-padding) * 2)), 1200px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 80px;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(48px, 8vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow > span[aria-hidden="true"] {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 6.15vw, 78px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 570px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 22px;
}

.button-primary {
  min-height: 58px;
  padding: 0 28px;
  gap: 18px;
  color: #fff;
  background: var(--ink);
}

.hero-note {
  max-width: 155px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 385px);
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 42px;
  background: #fff;
  box-shadow: 18px 20px 0 var(--ink);
  transform: rotate(2deg);
}

.phone-frame::before {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  opacity: 0.22;
  transform: translateX(-50%);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.doodle-star {
  top: 9%;
  right: -3%;
  font-size: 90px;
  transform: rotate(12deg);
}

.doodle-loop {
  bottom: 10%;
  left: -7%;
  width: 128px;
  height: 76px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.visual-caption {
  position: absolute;
  z-index: 4;
  right: -5%;
  bottom: 8%;
  margin: 0;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.statement-band {
  display: flex;
  min-height: 96px;
  padding: 24px var(--page-padding);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.statement-band p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.statement-band span {
  color: #ff6363;
  font-size: 22px;
}

.section-shell {
  width: min(calc(100% - (var(--page-padding) * 2)), 1200px);
  margin: 0 auto;
}

.experience-section,
.details-section {
  padding: 132px 0;
}

.section-intro {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  column-gap: 72px;
}

.section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro h2,
.insights-copy h2,
.closing-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-chapter {
  display: grid;
  min-height: 680px;
  margin-top: 48px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--surface);
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
}

.chapter-copy {
  display: flex;
  padding: clamp(38px, 5vw, 72px);
  justify-content: center;
  flex-direction: column;
}

.chapter-number {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.chapter-copy h3,
.detail-card h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.chapter-copy > p:not(.chapter-number) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
}

.chapter-visual {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 64px 48px 0;
  place-items: end center;
  overflow: hidden;
}

.chapter-visual-soft {
  background: var(--soft);
}

.chapter-visual-outline {
  background-color: #fff;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
}

.app-shot {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 38px 38px 0 0;
  background: #fff;
  box-shadow: 14px 16px 0 rgba(23, 23, 25, 0.14);
}

.app-shot img,
.gallery-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.app-shot-sheet {
  width: min(88%, 445px);
}

.tape-label,
.orbit-note {
  position: absolute;
  z-index: 3;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.tape-label {
  top: 42px;
  right: 24px;
  transform: rotate(4deg);
}

.orbit-note {
  right: 24px;
  bottom: 70px;
  border-radius: 999px;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-5deg);
}

.feature-chapter-calendar {
  grid-template-columns: minmax(420px, 1.22fr) minmax(300px, 0.78fr);
}

.feature-chapter-calendar .chapter-copy {
  order: 2;
}

.feature-chapter-calendar .chapter-visual {
  order: 1;
}

.micro-proof {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 14px;
}

.micro-proof-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 700;
}

.micro-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.micro-proof strong {
  color: var(--ink);
}

.insights-section {
  position: relative;
  padding: 132px var(--page-padding);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.insights-section::before {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 17, 31, 0.72), rgba(51, 9, 9, 0) 68%);
  content: "";
}

.insights-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1200px);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(54px, 9vw, 120px);
}

.section-kicker-inverse {
  color: #ff8b8b;
}

.insights-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.insight-metrics {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.insight-metrics div {
  display: flex;
  min-height: 126px;
  padding: 18px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  flex-direction: column;
}

.insight-metrics strong {
  font-size: 38px;
  line-height: 1;
}

.insight-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.insights-visual {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.insight-halo {
  position: absolute;
  width: min(75%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.app-shot-dark {
  width: min(75%, 390px);
  border-color: rgba(255, 255, 255, 0.84);
  border-bottom: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 40px;
  box-shadow: 18px 20px 0 var(--burgundy);
  transform: rotate(2deg);
}

.analysis-character {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 9%;
  width: 96px;
  transform: rotate(8deg);
}

.details-intro {
  margin-bottom: 64px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-card {
  min-width: 0;
  min-height: 720px;
  padding: 34px 34px 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft);
}

.detail-card:nth-child(2),
.detail-card:nth-child(3) {
  background: #eaebec;
}

.detail-card-modal {
  border: 2px solid var(--ink);
  background: #fff;
}

.detail-card-copy {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.detail-card-copy span {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card h3 {
  max-width: 480px;
  font-size: clamp(28px, 3vw, 40px);
}

.gallery-shot {
  width: min(78%, 355px);
  margin: 0 auto;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 36px 36px 0 0;
  background: #fff;
}

.gallery-shot-today {
  width: min(90%, 430px);
}

.gallery-shot-modal {
  width: min(88%, 430px);
}

.closing-section {
  position: relative;
  display: grid;
  width: min(calc(100% - (var(--page-padding) * 2)), 1200px);
  min-height: 590px;
  margin: 0 auto 48px;
  padding: clamp(48px, 7vw, 92px);
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 36px;
  background: #fff;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  overflow: hidden;
}

.closing-copy {
  position: relative;
  z-index: 2;
}

.closing-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.closing-character {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
}

.closing-character::before {
  position: absolute;
  width: 310px;
  height: 170px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.closing-character img {
  position: relative;
  z-index: 2;
  width: 210px;
  image-rendering: auto;
}

.closing-bubble {
  position: absolute;
  z-index: 3;
  top: 10%;
  left: -10%;
  padding: 15px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.site-footer {
  display: grid;
  width: min(calc(100% - (var(--page-padding) * 2)), 1200px);
  min-height: 180px;
  margin: 0 auto;
  padding: 42px 0;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
}

.wordmark-footer {
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a {
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.header-cta:hover,
.button:hover {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.header-cta:focus-visible,
.button:focus-visible,
.wordmark:focus-visible,
.language-switcher button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

html[lang="ko"] body.landing-page {
  word-break: keep-all;
}

html[lang="ko"] h1,
html[lang="ko"] .section-intro h2,
html[lang="ko"] .insights-copy h2,
html[lang="ko"] .closing-copy h2,
html[lang="ko"] .chapter-copy h3,
html[lang="ko"] .detail-card h3 {
  letter-spacing: -0.04em;
}

html[lang="ko"] .eyebrow,
html[lang="ko"] .section-kicker,
html[lang="ko"] .chapter-number,
html[lang="ko"] .detail-card-copy span {
  letter-spacing: 0;
}

@media (max-width: 880px) {
  .site-header {
    height: 68px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 84px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-frame {
    width: min(82vw, 390px);
  }

  .site-nav {
    display: none;
  }

  .section-intro,
  .feature-chapter,
  .feature-chapter-calendar,
  .insights-inner,
  .closing-section {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 28px;
  }

  .feature-chapter {
    min-height: auto;
  }

  .feature-chapter-calendar .chapter-copy {
    order: 1;
  }

  .feature-chapter-calendar .chapter-visual {
    order: 2;
  }

  .chapter-visual {
    min-height: 620px;
  }

  .insights-copy {
    text-align: center;
  }

  .insights-copy > p:not(.section-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .insight-metrics {
    text-align: left;
  }

  .insights-visual {
    min-height: 660px;
  }

  .detail-card {
    min-height: 650px;
  }

  .closing-copy {
    text-align: center;
  }

  .closing-copy > p:not(.section-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .closing-character {
    min-height: 320px;
  }

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

  .site-footer .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .header-actions {
    gap: 6px;
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher button {
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    font-size: 11px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero {
    padding-top: 104px;
  }

  .eyebrow {
    margin-bottom: 22px;
    justify-content: flex-start;
    font-size: 12px;
    text-align: left;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 58px);
  }

  .hero-copy {
    text-align: left;
  }

  .hero-lede {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-note {
    max-width: none;
  }

  .phone-frame {
    width: min(82vw, 340px);
    border-radius: 34px;
    box-shadow: 11px 12px 0 var(--ink);
  }

  .doodle-star {
    right: -13%;
    font-size: 68px;
  }

  .doodle-loop {
    left: -15%;
  }

  .visual-caption {
    right: -5%;
    bottom: 4%;
    font-size: 12px;
  }

  .statement-band {
    justify-content: flex-start;
    gap: 22px;
  }

  .statement-band p:nth-of-type(2),
  .statement-band p:nth-of-type(3),
  .statement-band span:nth-of-type(2) {
    display: none;
  }

  .experience-section,
  .details-section,
  .insights-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro h2,
  .insights-copy h2,
  .closing-copy h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .feature-chapter {
    margin-top: 24px;
    border-radius: 24px;
  }

  .chapter-copy {
    padding: 40px 26px;
  }

  .chapter-visual {
    min-height: 520px;
    padding: 56px 20px 0;
  }

  .tape-label {
    top: 24px;
    right: 14px;
  }

  .orbit-note {
    right: 8px;
    bottom: 38px;
  }

  .insights-copy {
    text-align: left;
  }

  .insight-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insight-metrics div {
    min-height: 112px;
    padding: 14px 11px;
  }

  .insight-metrics strong {
    font-size: 30px;
  }

  .insights-visual {
    min-height: 590px;
  }

  .app-shot-dark {
    width: min(84%, 350px);
  }

  .analysis-character {
    right: 0;
    width: 76px;
  }

  .detail-gallery {
    display: flex;
    width: 100%;
    padding-right: 0;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .detail-gallery::-webkit-scrollbar {
    display: none;
  }

  .detail-card {
    width: min(84vw, 390px);
    min-height: 620px;
    padding: 28px 24px 0;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .closing-section {
    min-height: auto;
    padding: 54px 24px 24px;
    border-radius: 28px;
  }

  .closing-character {
    min-height: 280px;
  }

  .closing-character img {
    width: 170px;
  }

  .closing-character::before {
    width: 240px;
    height: 130px;
  }

  .closing-bubble {
    top: 4%;
    left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-footer > p:first-of-type {
    display: none;
  }

  .site-footer nav {
    justify-content: flex-end;
  }

  .site-footer .copyright {
    grid-column: 1 / -1;
  }
}

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

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