@font-face {
  font-family: "Pretendard";
  src: url("assets/fonts/PretendardVariable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
}

:root {
  --canvas: #eef0e6;
  --paper: #fff8e9;
  --paper-2: #f4e8cf;
  --ink: #30372f;
  --brown-ink: #493829;
  --moss: #6f8751;
  --moss-dark: #4f6638;
  --moss-deep: #354a34;
  --grass: #97ac6c;
  --pixel-grass-a: #8ead60;
  --pixel-grass-b: #95b365;
  --pixel-grass-blade: #7d9750;
  --pixel-clover: #6f8f4a;
  --pixel-grass-light: #a8c56e;
  --pixel-grass-shadow: #7a9b50;
  --water: #5f7c94;
  --water-dark: #405b70;
  --gold: #d6a84d;
  --yellow: #e4c84e;
  --coral: #ce6a57;
  --wood: #8b6341;
  --line: #c8c9b9;
  --paper-line: #d7c29e;
  --muted: #667064;
  --shadow: 0 24px 70px rgba(43, 58, 42, 0.16);
  --font: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --wide: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--moss-deep);
  background: var(--yellow);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--moss-deep);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  transform: translateY(-160%);
  border-radius: 7px;
  color: var(--paper);
  background: var(--moss-deep);
  font-weight: 800;
}

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

.nav-wrap,
.hero-wrap,
.content-wrap {
  width: min(calc(100% - 48px), var(--wide));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(79, 102, 56, 0.12);
  background: rgba(238, 240, 230, 0.9);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(79, 102, 56, 0.24);
  box-shadow: 0 10px 32px rgba(48, 55, 47, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  flex: none;
}

.brand-symbol {
  overflow: hidden;
  border: 1px solid rgba(53, 74, 52, 0.22);
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(53, 74, 52, 0.12);
}

.brand > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand strong {
  color: var(--moss-deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: #556454;
  font-size: 13px;
  font-weight: 720;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--moss);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 76px 0 88px;
  border-bottom: 1px solid rgba(79, 102, 56, 0.2);
  isolation: isolate;
  background:
    linear-gradient(rgba(238, 243, 221, 0.68), rgba(238, 240, 230, 0.84)),
    conic-gradient(
      var(--pixel-grass-a) 25%,
      var(--pixel-grass-b) 0 50%,
      var(--pixel-grass-a) 0 75%,
      var(--pixel-grass-b) 0
    ) 0 0 / 32px 32px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 248, 238, 0.98) 0%, rgba(241, 245, 231, 0.8) 46%, rgba(238, 240, 230, 0.5) 100%),
    radial-gradient(circle at 78% 24%, rgba(255, 248, 233, 0.42), transparent 27%);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(79, 102, 56, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 102, 56, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, transparent 43%, rgba(125, 151, 80, 0.14) 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 54%, rgba(168, 197, 110, 0.16) 54% 63%, transparent 63%);
  background-size: 32px 32px, 32px 32px, 96px 96px, 96px 96px;
  background-position: 0 0, 0 0, 16px 8px, 54px 38px;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(400px, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 60px;
}

.game-scenery {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.game-part {
  position: absolute;
  height: auto;
  object-fit: contain;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  filter: drop-shadow(0 8px 8px rgba(43, 58, 42, 0.14));
}

.hero-pond {
  right: -145px;
  bottom: -68px;
  width: 480px;
  opacity: 0.64;
}

.hero-oak {
  bottom: 12px;
  left: 1.5%;
  width: 104px;
  opacity: 0.78;
}

.hero-blossom {
  top: 54px;
  right: 1.5%;
  width: 104px;
  opacity: 0.76;
}

.hero-bench {
  bottom: 40px;
  left: 43%;
  width: 76px;
}

.hero-lamp {
  bottom: 31px;
  left: 48.5%;
  width: 36px;
}

.hero-bush {
  bottom: 18px;
  left: 37.5%;
  width: 52px;
}

.hero-flower-bed {
  bottom: 18px;
  left: 31%;
  width: 84px;
}

.hero-grass {
  bottom: 8px;
  left: 15%;
  width: 84px;
}

.hero-rock {
  right: 31%;
  bottom: 17px;
  width: 48px;
}

.hero-copy {
  min-width: 0;
}

.overline {
  margin: 0 0 18px;
  color: var(--moss-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: -0.015em;
}

.hero .overline {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero .overline span {
  width: 9px;
  height: 9px;
  display: block;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(228, 200, 78, 0.24);
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--moss-deep);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(50px, 5vw, 70px);
}

.hero h1 em {
  color: var(--water-dark);
  font-style: normal;
}

.hero-lead {
  margin: 27px 0 0;
  color: #505c50;
  font-size: 17px;
  font-weight: 560;
  line-height: 1.72;
}

.screen-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 0 18px;
  border: 1px solid var(--moss-deep);
  border-radius: 8px;
  color: var(--paper);
  background: var(--moss-deep);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 160ms ease;
}

.screen-link:hover {
  background: var(--moss-dark);
}

.screen-link b {
  color: var(--yellow);
  font-size: 16px;
  font-weight: 800;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 7px 11px;
  border: 1px solid rgba(79, 102, 56, 0.28);
  border-radius: 7px;
  color: var(--moss-deep);
  background: rgba(255, 248, 233, 0.76);
  font-size: 11px;
  font-weight: 760;
}

.hero-shot {
  position: relative;
  margin: 0;
  min-width: 0;
  padding: 49px 12px 0;
  overflow: hidden;
  border: 2px solid var(--moss-deep);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-shot picture {
  overflow: hidden;
  display: block;
  border: 1px solid rgba(53, 74, 52, 0.24);
  border-radius: 12px;
  background: #b9c6a0;
}

.hero-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-window {
  position: absolute;
  top: 0;
  right: 14px;
  left: 14px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 2px;
  background: var(--line);
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: var(--yellow);
}

.window-dots i:last-child {
  background: var(--grass);
}

.window-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--moss-dark);
}

.window-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69a35d;
  box-shadow: 0 0 0 4px rgba(105, 163, 93, 0.14);
}

.hero-shot figcaption {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.hero-shot figcaption span {
  color: var(--moss-dark);
  font-weight: 820;
}

.hero-shot figcaption em {
  font-style: normal;
}

.quick-bar {
  background: var(--yellow);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  list-style: none;
}

.quick-grid li {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(53, 74, 52, 0.22);
  color: var(--moss-deep);
}

.quick-grid li:first-child {
  border-left: 1px solid rgba(53, 74, 52, 0.22);
}

.quick-grid span {
  color: rgba(53, 74, 52, 0.55);
  font-size: 11px;
  font-weight: 820;
}

.quick-grid strong {
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section h2 {
  font-size: clamp(40px, 4.2vw, 58px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.screens {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 248, 233, 0.91), rgba(255, 248, 233, 0.87)),
    conic-gradient(
      var(--pixel-grass-a) 25%,
      var(--pixel-grass-b) 0 50%,
      var(--pixel-grass-a) 0 75%,
      var(--pixel-grass-b) 0
    );
  background-size: auto, 48px 48px;
}

.screens::before,
.screens::after {
  content: none;
}

.screens .content-wrap {
  position: relative;
  z-index: 1;
}

.screens-oak {
  top: 178px;
  left: -18px;
  width: 104px;
  opacity: 0.62;
}

.screens-flower-bed {
  top: 148px;
  right: 20px;
  width: 84px;
}

.screens-bush {
  top: 236px;
  right: 82px;
  width: 52px;
}

.screens-bench {
  bottom: 26px;
  left: 2%;
  width: 76px;
}

.screens-lamp {
  bottom: 21px;
  left: 7.5%;
  width: 36px;
}

.screens-grass {
  bottom: 9px;
  left: 13%;
  width: 84px;
}

.screens-rock {
  right: 4%;
  bottom: 18px;
  width: 48px;
}

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

.shot-card {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(53, 74, 52, 0.84);
  border-radius: 18px;
  background: var(--canvas);
  box-shadow: 0 16px 36px rgba(48, 55, 47, 0.1);
}

.shot-card button {
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
  background: #cad4ba;
}

.shot-card picture {
  display: block;
}

.shot-card button,
.shot-card picture,
.shot-card img {
  aspect-ratio: 1120 / 780;
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shot-card button:hover img {
  transform: scale(1.012);
}

.shot-card figcaption {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
}

.shot-card figcaption strong {
  color: var(--moss-deep);
  font-size: 15px;
  font-weight: 840;
  letter-spacing: -0.025em;
}

.shot-card figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.features {
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  background: var(--moss-deep);
}

.features::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(53, 74, 52, 0.9), rgba(42, 61, 42, 0.96)),
    conic-gradient(#3f6b46 25%, #4c7c4e 0 50%, #3f6b46 0 75%, #4c7c4e 0);
  background-size: auto, 32px 32px;
}

.features::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 61, 42, 0.97) 0%, rgba(42, 61, 42, 0.91) 48%, rgba(42, 61, 42, 0.78) 100%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.features-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 82px;
}

.features-cedar {
  bottom: 18px;
  left: 1.5%;
  width: 76px;
  opacity: 0.62;
}

.features-blossom {
  top: 52px;
  right: 1.5%;
  width: 104px;
  opacity: 0.56;
}

.features-bush {
  top: 72px;
  left: 7%;
  width: 52px;
  opacity: 0.64;
}

.features-bench {
  right: 4%;
  bottom: 27px;
  width: 76px;
}

.features-lamp {
  right: 10%;
  bottom: 21px;
  width: 36px;
}

.features-rock {
  bottom: 19px;
  left: 10%;
  width: 48px;
}

.features .overline {
  color: #e9d76f;
}

.features h2 {
  color: var(--paper);
}

.features-heading > p:last-child {
  margin: 25px 0 0;
  color: rgba(255, 248, 233, 0.72);
  font-size: 14px;
  line-height: 1.72;
}

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

.feature-grid article {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 248, 233, 0.24);
  border-radius: 16px;
  color: var(--moss-deep);
  background: rgba(255, 248, 233, 0.94);
  box-shadow: 0 18px 40px rgba(21, 31, 24, 0.15);
}

.feature-grid article:nth-child(2) {
  background: rgba(228, 200, 78, 0.96);
}

.feature-grid article:nth-child(3) {
  background: rgba(167, 190, 205, 0.96);
}

.feature-grid article:nth-child(4) {
  background: rgba(219, 140, 115, 0.96);
}

.feature-grid span {
  color: rgba(53, 74, 52, 0.58);
  font-size: 11px;
  font-weight: 850;
}

.feature-grid h3 {
  margin: auto 0 0;
  font-size: 24px;
  font-weight: 880;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.feature-grid p {
  margin: 8px 0 0;
  color: rgba(48, 55, 47, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.download {
  overflow: hidden;
  isolation: isolate;
  background: var(--water);
}

.download::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 12% 84%, rgba(143, 195, 220, 0.38), transparent 29%),
    linear-gradient(145deg, #6f91aa, #4c6b82);
}

.download::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(64, 91, 112, 0.5), rgba(64, 91, 112, 0.67)),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.download-wrap {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
  align-items: center;
  gap: 70px;
  margin-inline: auto;
  padding: 70px;
  overflow: hidden;
  border: 2px solid var(--moss-deep);
  border-radius: 20px;
  background: rgba(228, 200, 78, 0.96);
  box-shadow: 0 28px 70px rgba(31, 48, 61, 0.24);
}

.download-pond {
  bottom: -60px;
  left: -125px;
  width: 430px;
  opacity: 0.58;
}

.download-blossom {
  top: 28px;
  left: 1.8%;
  width: 104px;
  opacity: 0.72;
}

.download-cedar {
  top: 28px;
  right: 1.8%;
  width: 76px;
  opacity: 0.72;
}

.download-bench {
  right: 6%;
  bottom: 27px;
  width: 76px;
}

.download-rock {
  right: 13%;
  bottom: 23px;
  width: 48px;
}

.download-wrap::after {
  content: "";
  position: absolute;
  top: -68px;
  right: -42px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 248, 233, 0.2);
}

.download-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 20px;
}

.download-logo {
  border: 2px solid var(--moss-deep);
  border-radius: 17px;
  box-shadow: 0 12px 24px rgba(53, 74, 52, 0.16);
}

.download .overline {
  margin-bottom: 10px;
  color: var(--moss-deep);
}

.download h2 {
  color: var(--moss-deep);
  font-size: clamp(35px, 3.5vw, 50px);
}

.download-copy {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: #465846;
  font-size: 14px;
  line-height: 1.72;
}

.store-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-option {
  min-width: 0;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  border: 1px solid rgba(53, 74, 52, 0.26);
  border-radius: 14px;
  background: rgba(255, 248, 233, 0.92);
}

.platform-name {
  color: var(--moss-deep);
  font-size: 12px;
  font-weight: 840;
}

.store-art {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-badge {
  width: 166px;
  height: auto;
}

.apple-badge {
  width: 154px;
  height: auto;
}

.store-option small {
  color: #576657;
  font-size: 11px;
  font-weight: 720;
}

.faq {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 248, 233, 0.92), rgba(255, 248, 233, 0.89)),
    conic-gradient(
      var(--pixel-grass-a) 25%,
      var(--pixel-grass-b) 0 50%,
      var(--pixel-grass-a) 0 75%,
      var(--pixel-grass-b) 0
    );
  background-size: auto, 48px 48px;
}

.faq::before,
.faq::after {
  content: none;
}

.faq-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: 82px;
}

.faq-oak {
  bottom: -3px;
  left: -14px;
  width: 104px;
  opacity: 0.64;
}

.faq-blossom {
  top: 50px;
  right: 1.5%;
  width: 104px;
  opacity: 0.62;
}

.faq-flower-bed {
  bottom: 24px;
  left: 6%;
  width: 84px;
}

.faq-bush {
  bottom: 19px;
  left: 13%;
  width: 52px;
}

.faq-bench {
  right: 5%;
  bottom: 27px;
  width: 76px;
}

.faq-grass {
  top: 72px;
  right: 12%;
  width: 84px;
}

.faq-heading {
  align-self: start;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 248, 233, 0.92);
}

.accordion summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  cursor: pointer;
  list-style: none;
  color: var(--moss-deep);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background: var(--moss-deep);
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%);
}

.accordion details > div {
  max-width: 680px;
  padding: 0 54px 24px 20px;
}

.accordion details p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.site-footer {
  padding: 60px 0 28px;
  color: rgba(255, 248, 233, 0.72);
  background: var(--moss-deep);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 248, 233, 0.16);
}

.footer-brand strong {
  color: var(--paper);
}

.footer-brand small {
  color: rgba(255, 248, 233, 0.52);
}

.operator {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.operator strong {
  color: var(--paper);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.operator span {
  color: rgba(255, 248, 233, 0.5);
  font-size: 10px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding: 32px 0;
}

.company-info p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.65;
}

.company-info p:last-child {
  margin-bottom: 0;
}

.company-info a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-content: start;
  gap: 9px 25px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 248, 233, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 248, 233, 0.62);
  font-size: 11px;
}

.footer-bottom .trademark {
  max-width: 720px;
  text-align: right;
  line-height: 1.6;
}

.image-viewer {
  width: min(calc(100% - 32px), 1180px);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.image-viewer::backdrop {
  background: rgba(27, 39, 30, 0.9);
}

.image-viewer img {
  width: 100%;
  max-height: 86vh;
  border-radius: 12px;
  object-fit: contain;
  background: #17261c;
}

.viewer-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 248, 233, 0.35);
  border-radius: 50%;
  color: var(--paper);
  background: var(--moss-deep);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 248, 233, 0.98);
    box-shadow: 0 20px 55px rgba(48, 55, 47, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--canvas);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 4px;
    margin-left: auto;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: var(--moss-deep);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 0;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-shot {
    width: min(100%, 900px);
    margin-inline: auto;
  }

  .features-wrap,
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .features-heading > p:last-child {
    max-width: 650px;
  }

  .download-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .nav-wrap,
  .hero-wrap,
  .content-wrap {
    width: min(calc(100% - 32px), var(--wide));
  }

  .nav-wrap {
    min-height: 68px;
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding-inline: 9px;
  }

  .main-nav {
    right: 16px;
    left: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 48px 0 62px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(246, 248, 238, 0.94) 0%, rgba(241, 245, 231, 0.8) 52%, rgba(238, 240, 230, 0.66) 100%),
      radial-gradient(circle at 76% 25%, rgba(255, 248, 233, 0.38), transparent 26%);
    opacity: 1;
  }

  .hero::after {
    background-size: 24px 24px, 24px 24px, 72px 72px, 72px 72px;
    background-position: 0 0, 0 0, 12px 8px, 38px 29px;
  }

  .hero-wrap {
    gap: 38px;
  }

  .overline {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.8vw, 56px);
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-lead br {
    display: none;
  }

  .screen-link {
    min-height: 46px;
    margin-top: 25px;
    font-size: 12px;
  }

  .hero-tags {
    margin-top: 22px;
  }

  .hero-tags li {
    font-size: 10px;
  }

  .hero-shot {
    padding: 40px 7px 0;
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(43, 58, 42, 0.18);
  }

  .hero-shot picture,
  .hero-shot img {
    border-radius: 8px;
  }

  .hero-window {
    right: 9px;
    left: 9px;
    height: 39px;
    font-size: 8px;
  }

  .window-place {
    display: none;
  }

  .hero-shot figcaption {
    min-height: 43px;
    font-size: 10px;
  }

  .quick-grid {
    width: 100%;
  }

  .quick-grid li {
    min-height: 78px;
    flex-direction: column;
    gap: 3px;
    padding: 10px 5px;
    text-align: center;
  }

  .quick-grid span {
    font-size: 9px;
  }

  .quick-grid strong {
    font-size: 12px;
    line-height: 1.35;
  }

  .section {
    padding: 76px 0;
  }

  .section h2 {
    font-size: clamp(36px, 10.7vw, 47px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-heading > p {
    font-size: 13px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .screens,
  .faq {
    background-size: auto, 24px 24px;
  }

  .game-part {
    filter: drop-shadow(0 5px 5px rgba(43, 58, 42, 0.1));
  }

  .hero-pond {
    right: -112px;
    bottom: -22px;
    width: 280px;
    opacity: 0.32;
  }

  .hero-oak {
    top: 300px;
    right: -22px;
    bottom: auto;
    left: auto;
    width: 78px;
    opacity: 0.34;
  }

  .hero-blossom {
    top: 410px;
    right: auto;
    left: -24px;
    width: 78px;
    opacity: 0.3;
  }

  .hero-grass {
    bottom: 5px;
    left: 8px;
    width: 63px;
    opacity: 0.46;
  }

  .hero-bench,
  .hero-lamp,
  .hero-bush,
  .hero-flower-bed,
  .hero-rock {
    display: none;
  }

  .screens-oak {
    top: 128px;
    left: -27px;
    width: 78px;
    opacity: 0.28;
  }

  .screens-flower-bed {
    top: 214px;
    right: -20px;
    width: 63px;
    opacity: 0.46;
  }

  .screens-bush {
    top: 278px;
    right: 8px;
    width: 39px;
    opacity: 0.34;
  }

  .screens-bench,
  .screens-lamp,
  .screens-grass,
  .screens-rock {
    display: none;
  }

  .features-cedar {
    bottom: 5px;
    left: -21px;
    width: 57px;
    opacity: 0.3;
  }

  .features-blossom {
    top: 24px;
    right: -25px;
    width: 78px;
    opacity: 0.28;
  }

  .features-bush,
  .features-bench,
  .features-lamp,
  .features-rock {
    display: none;
  }

  .download-pond {
    bottom: -38px;
    left: -128px;
    width: 280px;
    opacity: 0.3;
  }

  .download-blossom {
    top: 20px;
    left: -24px;
    width: 78px;
    opacity: 0.3;
  }

  .download-cedar {
    top: 22px;
    right: -18px;
    width: 57px;
    opacity: 0.28;
  }

  .download-bench,
  .download-rock {
    display: none;
  }

  .faq-oak {
    bottom: -5px;
    left: -26px;
    width: 78px;
    opacity: 0.3;
  }

  .faq-blossom {
    top: 21px;
    right: -25px;
    width: 78px;
    opacity: 0.28;
  }

  .faq-bench {
    right: 7px;
    bottom: 16px;
    width: 57px;
    opacity: 0.4;
  }

  .faq-flower-bed,
  .faq-bush,
  .faq-grass {
    display: none;
  }

  .shot-card {
    border-radius: 12px;
  }

  .shot-card figcaption {
    min-height: 66px;
    padding: 14px 15px;
  }

  .shot-card figcaption strong {
    font-size: 13px;
  }

  .shot-card figcaption span {
    font-size: 11px;
  }

  .features-wrap,
  .faq-wrap {
    gap: 34px;
  }

  .features-heading > p:last-child {
    margin-top: 18px;
    font-size: 13px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-grid article {
    min-height: 170px;
    padding: 21px;
  }

  .feature-grid h3 {
    font-size: 22px;
  }

  .download {
    padding-inline: 16px;
  }

  .download-wrap {
    width: 100%;
    gap: 34px;
    padding: 38px 20px;
    border-radius: 15px;
  }

  .download-heading {
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }

  .download-logo {
    width: 62px;
    height: 62px;
    border-radius: 14px;
  }

  .download h2 {
    font-size: clamp(31px, 9.5vw, 40px);
  }

  .download-copy {
    margin-top: 2px;
    font-size: 13px;
  }

  .store-options {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .store-option {
    min-height: 150px;
  }

  .accordion {
    gap: 8px;
  }

  .accordion summary {
    min-height: 70px;
    padding: 0 16px;
    font-size: 15px;
  }

  .accordion details > div {
    padding: 0 42px 21px 16px;
  }

  .accordion details p {
    font-size: 13px;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-brand-row,
  .footer-content,
  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-brand-row {
    gap: 22px;
  }

  .operator {
    flex-direction: column;
    gap: 2px;
  }

  .footer-content {
    display: grid;
    gap: 26px;
  }

  .footer-nav {
    gap: 9px 22px;
  }

  .footer-bottom {
    gap: 12px;
  }

  .footer-bottom .trademark {
    text-align: left;
  }

  .viewer-close {
    top: 8px;
    right: 8px;
  }
}

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

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