:root {
  --ink: #2b2a24;
  --muted: #686452;
  --paper: #fffaf0;
  --paper-deep: #f7edcf;
  --leaf: #2d8f66;
  --leaf-dark: #176849;
  --sky: #67c3d0;
  --sun: #f2bf4a;
  --berry: #e26861;
  --clay: #c98455;
  --line: rgba(43, 42, 36, 0.15);
  --shadow: 0 24px 60px rgba(85, 62, 31, 0.18);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(103, 195, 208, 0.25), transparent 28rem),
    linear-gradient(180deg, #fff8e7 0%, #eaf7df 42%, #fffaf0 100%);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(43, 42, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 42, 36, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 28px), var(--max));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 50px rgba(45, 62, 37, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand-character {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(45, 62, 37, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #4b493d;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--leaf-dark);
  background: rgba(45, 143, 102, 0.11);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(45, 143, 102, 0.12);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, #fffaf0 74%);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.9) 0%, rgba(255, 250, 240, 0.58) 42%, rgba(255, 250, 240, 0.16) 76%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), rgba(26, 73, 63, 0.08));
}

.hero-content {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: 100svh;
  align-content: center;
  margin: 0 auto;
  padding: 128px 0 120px;
}

.release-note {
  width: fit-content;
  margin: 0 0 14px;
  padding: 9px 14px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 10px 28px rgba(45, 143, 102, 0.12);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: #24533e;
  font-size: clamp(4.2rem, 11vw, 9.6rem);
  line-height: 0.92;
  font-weight: 950;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.75),
    0 24px 60px rgba(30, 79, 58, 0.18);
}

.hero-copy {
  max-width: 540px;
  margin: 24px 0 0;
  color: #3f4433;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.68;
  font-weight: 700;
}

.hero-character {
  position: absolute;
  right: clamp(18px, 7vw, 120px);
  bottom: clamp(70px, 9vw, 120px);
  z-index: 2;
  width: clamp(120px, 18vw, 260px);
  padding: 20px;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background: rgba(255, 250, 240, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-character img {
  width: 100%;
  filter: drop-shadow(0 14px 20px rgba(45, 62, 37, 0.18));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(85, 62, 31, 0.16);
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(85, 62, 31, 0.2);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
}

.button-soft {
  color: #66452b;
  background: rgba(255, 250, 240, 0.78);
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 28px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 64px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.62);
  transform: translateX(50%);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--leaf-dark);
  border-bottom: 3px solid var(--leaf-dark);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-4px) rotate(45deg);
  }

  50% {
    transform: translateY(8px) rotate(45deg);
  }
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-number {
  display: inline-grid;
  min-width: 54px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--berry);
  box-shadow: 0 10px 22px rgba(226, 104, 97, 0.23);
  font-size: 0.9rem;
  font-weight: 950;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  font-weight: 950;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.lead {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius);
  color: #31513d;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.42;
  font-weight: 900;
}

.intro-card,
.feature-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.8)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(85, 62, 31, 0.1);
}

.intro-card.accent {
  color: #ffffff;
  background: linear-gradient(145deg, var(--sky), #248a8a);
}

.intro-card h3,
.feature-card h3,
.story-copy h3,
.shot-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 950;
}

.intro-card p,
.feature-card p,
.story-copy p,
.download-copy p,
.contact p {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 650;
}

.intro-card p + p,
.story-copy p + p {
  margin-top: 16px;
}

.about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(247, 237, 207, 0.9) 22%, rgba(247, 237, 207, 0.92) 76%, rgba(255, 250, 240, 0)),
    radial-gradient(circle at 82% 18%, rgba(242, 191, 74, 0.32), transparent 21rem);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 245px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(85, 62, 31, 0.16);
}

.feature-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: rgba(45, 143, 102, 0.12);
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.feature-icon.wander::before {
  inset: 20px 16px;
  border: 5px solid var(--leaf);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.feature-icon.wander::after {
  right: 13px;
  bottom: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sun);
}

.feature-icon.collect::before {
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--berry) 0 8px, transparent 9px);
  box-shadow:
    18px 3px 0 #67c3d0,
    7px 21px 0 #f2bf4a,
    -11px 15px 0 #2d8f66;
}

.feature-icon.cozy::before {
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 30px;
  border-radius: 6px 6px 18px 18px;
  background: var(--clay);
}

.feature-icon.cozy::after {
  left: 16px;
  top: 13px;
  width: 40px;
  height: 32px;
  background: var(--sun);
  clip-path: polygon(50% 0, 100% 55%, 88% 55%, 88% 100%, 12% 100%, 12% 55%, 0 55%);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.story-copy {
  padding: 36px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(23, 104, 73, 0.97), rgba(34, 91, 84, 0.95)),
    var(--leaf-dark);
  box-shadow: var(--shadow);
}

.story-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.story-map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 34%, #f7d86e 0 2.1rem, transparent 2.2rem),
    radial-gradient(circle at 72% 22%, rgba(103, 195, 208, 0.6), transparent 11rem),
    linear-gradient(150deg, #cce9a2 0%, #8ecb77 42%, #62b6c0 100%);
  box-shadow: var(--shadow);
}

.map-path {
  position: absolute;
  inset: 70px 60px;
  border: 14px dotted rgba(255, 250, 240, 0.9);
  border-right-color: transparent;
  border-bottom-color: rgba(255, 250, 240, 0.9);
  border-radius: 58% 45% 58% 42%;
  transform: rotate(-7deg);
}

.map-pin {
  position: absolute;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  color: #31513d;
  background: #fffaf0;
  box-shadow: 0 12px 24px rgba(45, 62, 37, 0.18);
  font-weight: 950;
}

.pin-one {
  top: 72px;
  left: 48px;
}

.pin-two {
  top: 154px;
  right: 84px;
}

.pin-three {
  right: 48px;
  bottom: 86px;
}

.pin-four {
  bottom: 58px;
  left: 92px;
}

.visuals {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(216, 240, 237, 0.9) 24%, rgba(255, 250, 240, 0)),
    radial-gradient(circle at 18% 50%, rgba(226, 104, 97, 0.18), transparent 18rem);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.showcase figure {
  margin: 0;
}

.showcase-scene {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.showcase-scene img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.showcase figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.showcase-scene figcaption {
  padding: 14px 18px 18px;
  background: rgba(255, 250, 240, 0.94);
}

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

.character-grid figure {
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(55, 93, 83, 0.12);
}

.character-grid img {
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(45, 62, 37, 0.14));
}

.character-grid figure:last-child {
  grid-column: 1 / -1;
  min-height: 240px;
  background: linear-gradient(145deg, rgba(226, 104, 97, 0.16), rgba(255, 255, 255, 0.76));
}

.character-grid figure:last-child img {
  max-height: 170px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shot-card {
  margin: 0;
}

.shot-frame {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(55, 93, 83, 0.16);
}

.shot-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 46%),
    radial-gradient(circle at 20% 80%, rgba(255, 250, 240, 0.62), transparent 9rem);
}

.shot-one .shot-frame {
  background: linear-gradient(145deg, #8bd1a4, #43a882);
}

.shot-two .shot-frame {
  background: linear-gradient(145deg, #f2bf4a, #e26861);
}

.shot-three .shot-frame {
  background: linear-gradient(145deg, #67c3d0, #5877b8);
}

.shot-frame span {
  z-index: 1;
  display: inline-grid;
  min-height: 46px;
  place-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(43, 42, 36, 0.38);
  font-weight: 950;
  backdrop-filter: blur(8px);
}

.shot-card h3 {
  margin-top: 14px;
  padding-left: 8px;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 240, 0.7)),
    var(--paper);
  box-shadow: var(--shadow);
}

.download-copy {
  padding: 16px 8px;
}

.download-copy h2 {
  color: #24533e;
}

.gate-note {
  margin-top: 18px !important;
  color: var(--leaf-dark) !important;
  font-weight: 900 !important;
}

.gate-card {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(43, 42, 36, 0.08);
}

.gate-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--leaf-dark);
  font-weight: 950;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(45, 143, 102, 0.14);
}

.progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
  transition: width 220ms ease;
}

.gate-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gate-button {
  position: relative;
  display: grid;
  min-height: 88px;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border: 2px solid rgba(43, 42, 36, 0.09);
  border-radius: 18px;
  color: var(--ink);
  background: #fffaf0;
  font-size: 1rem;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.gate-button span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gate-button:hover,
.gate-button:focus-visible,
.gate-button.is-done {
  border-color: rgba(45, 143, 102, 0.38);
  background: rgba(45, 143, 102, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.gate-button.is-done::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--leaf);
  content: "✓";
  font-weight: 950;
}

.gate-youtube {
  cursor: default;
}

.gate-youtube a {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #d22630;
}

.download-button,
.reset-button {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.download-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  box-shadow: 0 16px 30px rgba(45, 143, 102, 0.25);
}

.download-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.download-button:not(:disabled):hover,
.download-button:not(:disabled):focus-visible,
.reset-button:hover,
.reset-button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.reset-button {
  min-height: 42px;
  margin-top: 10px;
  color: var(--muted);
  background: transparent;
}

.contact {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(49, 81, 61, 0.1));
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #31513d, #176849);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(45, 62, 37, 0.15);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-links a:nth-child(2) {
  background: linear-gradient(135deg, #e26861, #7b4ca0);
}

.contact-links a:nth-child(3) {
  background: linear-gradient(135deg, #d22630, #f2bf4a);
}

.contact-links a:nth-child(4) {
  background: linear-gradient(135deg, #00a36f, #67c3d0);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(45, 62, 37, 0.2);
}

.site-footer {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--leaf-dark);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 0 14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(340px, calc(100vw - 28px));
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: 0 18px 50px rgba(45, 62, 37, 0.16);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .intro-grid,
  .feature-row,
  .story-layout,
  .download-panel,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .story-layout,
  .download-panel,
  .contact-shell {
    gap: 18px;
  }

  .hero-art::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(255, 250, 240, 0.2) 40%, rgba(255, 250, 240, 0.74)),
      linear-gradient(90deg, rgba(255, 250, 240, 0.86), rgba(255, 250, 240, 0.2) 86%);
  }

  .hero-character {
    right: 22px;
    bottom: 82px;
    width: 140px;
    padding: 12px;
    border-radius: 24px;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase-scene img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-character {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    width: min(calc(100% - 30px), var(--max));
    padding-top: 110px;
  }

  .hero-copy {
    max-width: 390px;
  }

  .hero-character {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section-shell {
    width: min(calc(100% - 30px), var(--max));
    padding: 64px 0;
  }

  .section-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .section-number {
    min-width: 48px;
    height: 38px;
  }

  .lead,
  .intro-card,
  .feature-card,
  .story-copy,
  .gate-card {
    padding: 22px;
  }

  .story-map {
    min-height: 360px;
  }

  .map-path {
    inset: 72px 34px;
  }

  .map-pin {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .pin-one {
    left: 24px;
  }

  .pin-two {
    right: 34px;
  }

  .pin-three {
    right: 26px;
  }

  .pin-four {
    left: 34px;
  }

  .shot-grid,
  .character-grid,
  .gate-actions,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .showcase-scene img {
    min-height: 260px;
  }

  .character-grid figure,
  .character-grid figure:last-child {
    min-height: 210px;
    grid-column: auto;
  }

  .download-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .site-footer {
    width: min(calc(100% - 30px), var(--max));
    flex-direction: column;
    align-items: flex-start;
  }
}
