:root {
  --bg: #fdf9f0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #21313b;
  --muted: #5d6b74;
  --line: rgba(33, 49, 59, 0.12);
  --yellow: #ffd65a;
  --orange: #ff8b4a;
  --orange-strong: #ef6b32;
  --sky: #7bd8ff;
  --mint: #8fe3c4;
  --navy: #18364f;
  --pink: #ffdcc8;
  --shadow: 0 24px 60px rgba(24, 54, 79, 0.12);
  --pattern-map: url("assets/bg-map.svg");
  --pattern-notes: url("assets/bg-notes.svg");
  --pattern-clues: url("assets/bg-clues.svg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(180deg, #fff7e8 0%, #edf7ff 100%);
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 214, 90, 0.36), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(123, 216, 255, 0.3), transparent 26%),
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 230, 0.98) 0%, rgba(237, 247, 236, 0.95) 44%, rgba(234, 245, 255, 0.98) 100%);
  overflow-x: hidden;
  isolation: isolate;
}

h1,
h2,
h3,
p,
li,
span,
strong,
a {
  line-break: auto;
  word-break: normal;
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

html::before,
html::after,
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  z-index: 0;
}

html::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 212, 91, 0.52), transparent 22%),
    radial-gradient(circle at 24% 54%, rgba(255, 241, 171, 0.28), transparent 22%),
    radial-gradient(circle at 50% 28%, rgba(169, 226, 201, 0.26), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(136, 220, 255, 0.34), transparent 24%),
    radial-gradient(circle at 78% 78%, rgba(140, 227, 196, 0.24), transparent 18%),
    linear-gradient(112deg, rgba(255, 241, 197, 0.9), rgba(232, 245, 205, 0.72) 44%, rgba(204, 238, 255, 0.76) 100%);
  filter: blur(12px) saturate(108%);
  transform: scale(1.08);
  opacity: 0.96;
  animation: skyDrift 28s ease-in-out infinite alternate;
}

html::after {
  inset: -4%;
  background-image:
    var(--pattern-map),
    var(--pattern-clues);
  background-size:
    380px 380px,
    520px 520px;
  background-position:
    left 0 top 24px,
    right -40px top 40px;
  background-repeat: repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 16%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.2) 64%, rgba(0, 0, 0, 0.74) 84%, rgba(0, 0, 0, 0.94) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 16%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.2) 64%, rgba(0, 0, 0, 0.74) 84%, rgba(0, 0, 0, 0.94) 100%);
  animation: clueDrift 80s linear infinite;
}

body::before {
  inset: -6%;
  background-image: var(--pattern-notes);
  background-size: 280px 280px;
  background-repeat: repeat;
  opacity: 0.12;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.96) 100%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.96) 100%);
  animation: noteDrift 110s linear infinite;
}

body::after {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.58), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.36), transparent 24%),
    radial-gradient(circle at 50% 54%, rgba(255, 248, 220, 0.3), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.16), transparent 34%);
  opacity: 0.74;
  animation: shimmerPulse 14s ease-in-out infinite alternate;
}

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

img {
  max-width: 100%;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 32px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition:
    top 220ms ease,
    gap 220ms ease,
    margin 220ms ease,
    padding 220ms ease,
    border-radius 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  transition: gap 220ms ease, font-size 220ms ease;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
  overflow: hidden;
  transition: width 220ms ease, height 220ms ease, border-radius 220ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  transition: gap 220ms ease, font-size 220ms ease;
}

.site-nav a,
.footer-links a,
.text-link {
  transition: color 180ms ease;
}

.site-nav a {
  flex: 0 0 auto;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--orange-strong);
}

.button,
.header-cta,
.scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    padding 220ms ease,
    font-size 220ms ease;
}

.button:hover,
.header-cta:hover,
.scroll-top:hover {
  transform: translateY(-2px);
}

.header-cta,
.button.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(24, 54, 79, 0.22);
}

.button.secondary,
.scroll-top {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border: 1px solid var(--line);
}

.header-compact .site-header {
  top: 10px;
  gap: 12px;
  margin: 12px 0 26px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(24, 54, 79, 0.14);
}

.header-compact .brand {
  gap: 8px;
  font-size: 1.02rem;
}

.header-compact .brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 11px;
}

.header-compact .site-nav {
  gap: 13px;
  font-size: 0.88rem;
}

.header-compact .header-cta {
  padding: 10px 16px;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(24, 54, 79, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 40px;
}

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

.hero-home {
  position: relative;
  padding: 64px 44px 56px;
  border: 1px solid rgba(33, 49, 59, 0.08);
  border-radius: 42px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 239, 0.92)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-strong);
}

.hero h1,
.section-heading h2,
.contact-box h2,
.article-hero h1 {
  margin: 0;
  line-height: 1.18;
  font-weight: 900;
}

.hero h1,
.article-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.hero-text,
.wide-panel p,
.panel p,
.scene-card p,
.shop-card p,
.article-card p,
.article-body p,
.contact-box p,
.news-item p,
.feature-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.95;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points,
.business-points,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hero-points li,
.business-points li,
.check-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--muted);
}

.hero-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 0;
}

.floating-card,
.mini-panel,
.feature-card,
.step-card,
.news-item,
.contact-box,
.stats article,
.panel,
.scene-card,
.shop-card,
.wide-panel,
.article-card,
.article-body,
.business-banner,
.price-card,
.wide-visual,
.section-image-card,
.proof-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.floating-card {
  position: relative;
  width: 100%;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 214, 0.94)),
    var(--surface);
  animation: float 4.6s ease-in-out infinite;
}

.card-title {
  margin: 0 0 12px;
  color: var(--orange-strong);
  font-weight: 700;
}

.floating-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.22;
}

.hero-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 22px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(24, 54, 79, 0.14);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 700;
}

.mini-panel {
  position: relative;
  width: min(100%, 360px);
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(143, 227, 196, 0.78), rgba(255, 255, 255, 0.88));
}

.mini-panel p {
  margin: 0 0 8px;
  color: var(--navy);
}

.stats,
.feature-grid,
.steps,
.news-list,
.scene-grid,
.shop-grid,
.article-grid,
.business-grid,
.price-grid,
.split-layout,
.visual-grid,
.proof-layout {
  display: grid;
  gap: 24px;
}

.stats,
.feature-grid,
.steps,
.news-list,
.shop-grid,
.article-grid,
.business-grid,
.price-grid,
.split-layout,
.proof-layout {
  grid-template-columns: repeat(3, 1fr);
}

.proof-layout {
  grid-template-columns: repeat(2, 1fr);
}

.scene-grid {
  grid-template-columns: repeat(4, 1fr);
}

.shop-grid {
  grid-template-columns: repeat(2, 1fr);
}

.visual-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-areas:
    "large small1 small2"
    "large small3 small2";
}

.stats {
  margin: 32px 0 28px;
}

.stats article,
.feature-card,
.step-card,
.news-item,
.scene-card,
.shop-card,
.article-card,
.business-banner,
.price-card,
.panel,
.wide-panel,
.visual-card,
.wide-visual,
.section-image-card,
.proof-card {
  padding: 30px;
  border-radius: 28px;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
}

.section {
  padding: 84px 0 18px;
}

.home-page .hero-home,
.home-page .visual-showcase,
.home-page .shop,
.home-page .play,
.home-page .scenes,
.home-page .value,
.home-page .purchase-guide,
.home-page .proof,
.home-page .article-preview,
.home-page .business-teaser,
.home-page .contact,
.home-page .stats {
  position: relative;
  isolation: isolate;
}

.home-page .hero-home::before,
.home-page .visual-showcase::before,
.home-page .shop::before,
.home-page .play::before,
.home-page .scenes::before,
.home-page .value::before,
.home-page .purchase-guide::before,
.home-page .proof::before,
.home-page .article-preview::before,
.home-page .business-teaser::before,
.home-page .contact::before,
.home-page .stats::before {
  content: "";
  position: absolute;
  inset: -26px -28px;
  border-radius: 44px;
  pointer-events: none;
  z-index: -1;
}

.home-page .hero-home::before {
  inset: -30px -36px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 214, 90, 0.24), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(123, 216, 255, 0.18), transparent 24%),
    radial-gradient(circle at 56% 86%, rgba(143, 227, 196, 0.16), transparent 22%),
    var(--pattern-clues) center / 480px 480px repeat;
  opacity: 0.34;
}

.home-page .visual-showcase::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 24%, rgba(255, 214, 90, 0.2), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(123, 216, 255, 0.18), transparent 22%),
    var(--pattern-map) center / 420px 420px repeat;
  opacity: 0.3;
}

.home-page .shop::before {
  background:
    linear-gradient(120deg, rgba(255, 249, 232, 0.82), rgba(244, 252, 255, 0.28)),
    radial-gradient(circle at 18% 18%, rgba(255, 214, 90, 0.18), transparent 24%),
    var(--pattern-notes) center / 260px 260px repeat;
  opacity: 0.24;
}

.home-page .play::before {
  background:
    radial-gradient(circle at 16% 30%, rgba(143, 227, 196, 0.18), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(123, 216, 255, 0.14), transparent 20%),
    var(--pattern-clues) center / 620px 620px repeat;
  opacity: 0.2;
}

.home-page .scenes::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 90, 0.2), transparent 22%),
    radial-gradient(circle at 76% 34%, rgba(255, 220, 200, 0.18), transparent 20%),
    var(--pattern-map) center / 520px 520px repeat;
  opacity: 0.18;
}

.home-page .value::before,
.home-page .purchase-guide::before {
  background:
    linear-gradient(135deg, rgba(255, 247, 221, 0.62), rgba(255, 255, 255, 0.18)),
    var(--pattern-notes) center / 300px 300px repeat;
  opacity: 0.2;
}

.home-page .article-preview::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 214, 90, 0.16), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(123, 216, 255, 0.14), transparent 20%),
    var(--pattern-clues) center / 540px 540px repeat;
  opacity: 0.18;
}

.home-page .proof::before {
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 214, 90, 0.16), transparent 22%),
    radial-gradient(circle at 84% 28%, rgba(143, 227, 196, 0.14), transparent 20%),
    var(--pattern-clues) center / 500px 500px repeat;
  opacity: 0.18;
}

.home-page .business-teaser::before,
.home-page .contact::before {
  background:
    linear-gradient(140deg, rgba(143, 227, 196, 0.16), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 16% 26%, rgba(255, 214, 90, 0.18), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(123, 216, 255, 0.18), transparent 24%),
    var(--pattern-map) center / 460px 460px repeat;
  opacity: 0.22;
}

.home-page .stats::before {
  inset: -18px -22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--pattern-notes) center / 320px 320px repeat;
  opacity: 0.14;
}

.section-heading {
  margin-bottom: 30px;
  max-width: 760px;
}

.section-heading h2,
.contact-box h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.feature-card h3,
.step-card h3,
.news-item h3,
.scene-card h3,
.shop-card h3,
.article-card h3,
.business-banner h3,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 216, 255, 0.24);
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.news-item time,
.article-meta,
.business-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange-strong);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.news-item.accent,
.price-card.highlight {
  background:
    linear-gradient(135deg, rgba(255, 214, 90, 0.3), rgba(255, 255, 255, 0.9));
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--navy);
}

.card-link {
  display: block;
  height: 100%;
  cursor: pointer;
}

.card-link h3,
.card-link .text-link {
  transition: color 180ms ease;
}

.card-link:hover h3,
.card-link:hover .text-link,
.card-link:focus-visible h3,
.card-link:focus-visible .text-link {
  color: var(--orange-strong);
}

.card-link:focus-visible {
  outline: 3px solid rgba(239, 107, 50, 0.35);
  outline-offset: 4px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(246, 252, 255, 0.74)),
    var(--surface);
  box-shadow: var(--shadow);
}

.visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.visual-card::after {
  content: "";
  display: none;
}

.visual-card-large {
  grid-area: large;
}

.visual-grid .visual-card:nth-child(2) {
  grid-area: small1;
}

.visual-grid .visual-card:nth-child(3) {
  grid-area: small2;
}

.visual-grid .visual-card:nth-child(4) {
  grid-area: small3;
}

.visual-copy {
  display: block;
  padding-top: 18px;
  color: var(--text);
}

.visual-copy h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.visual-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.wide-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(236, 250, 255, 0.72)),
    var(--surface);
}

.wide-visual img,
.section-image-card img,
.proof-card img {
  display: block;
  width: 100%;
  border-radius: 22px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
}

.wide-visual img {
  aspect-ratio: 16 / 9;
}

.wide-visual h3,
.proof-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.45;
}

.wide-visual p,
.proof-card p {
  color: var(--muted);
  line-height: 1.85;
}

.section-image-card {
  margin-top: 26px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 232, 0.74)),
    var(--surface);
}

.section-image-card img {
  aspect-ratio: 16 / 9;
}

.proof-card {
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 230, 0.74)),
    var(--surface);
}

.proof-card img {
  aspect-ratio: 16 / 9;
}

.wide-panel {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(255, 220, 200, 0.34), rgba(255, 255, 255, 0.9));
}

.stats article,
.panel,
.wide-panel,
.article-body {
  max-width: 860px;
}

.note {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(123, 216, 255, 0.28), rgba(255, 255, 255, 0.92));
}

.contact-box-dual {
  align-items: flex-start;
}

.contact-character {
  width: 96px;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 28px rgba(24, 54, 79, 0.14);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 4px 0;
  color: var(--muted);
}

.article-hero {
  padding: 34px 0 10px;
}

.article-hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.article-body {
  max-width: 860px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
}

.article-body h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.article-body p + h2,
.article-body ul + h2 {
  margin-top: 24px;
}

.article-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.article-body-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-page-grid,
.contact-method-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.contact-page-grid,
.contact-method-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-page-grid {
  align-items: start;
}

.form-card,
.contact-method-card,
.notice-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.form-card h2,
.contact-method-card h3,
.notice-card h3 {
  margin: 0 0 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fine-print,
.contact-method-card p,
.notice-card p {
  color: var(--muted);
  line-height: 1.8;
}

.status-message {
  min-height: 1.5em;
  margin: 0;
  color: var(--orange-strong);
  font-weight: 700;
}

.business-banner {
  background:
    linear-gradient(135deg, rgba(143, 227, 196, 0.42), rgba(255, 255, 255, 0.9));
}

.business-grid .feature-card,
.price-grid .price-card {
  height: 100%;
}

.price-card .price {
  display: block;
  margin: 10px 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes skyDrift {
  0% {
    transform: translate3d(-4%, -2%, 0) scale(1.08);
  }
  50% {
    transform: translate3d(2%, 3%, 0) scale(1.12);
  }
  100% {
    transform: translate3d(5%, 2%, 0) scale(1.1);
  }
}

@keyframes clueDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(120px, 48px, 0);
  }
}

@keyframes noteDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-92px, 64px, 0);
  }
}

@keyframes shimmerPulse {
  0% {
    opacity: 0.58;
    transform: scale(1);
  }
  100% {
    opacity: 0.82;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  html::before,
  html::after,
  body::before,
  body::after,
  .floating-card,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .scene-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .stats,
  .feature-grid,
  .steps,
  .news-list,
  .shop-grid,
  .article-grid,
  .business-grid,
  .price-grid,
  .contact-page-grid,
  .contact-method-grid,
  .visual-grid,
  .proof-layout,
  .wide-visual {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-areas:
      "large"
      "small1"
      "small2"
      "small3";
  }
}

@media (max-width: 980px) {
  html::after {
    background-size:
      300px 300px,
      420px 420px;
    opacity: 0.28;
  }

  body::before {
    background-size: 220px 220px;
    opacity: 0.16;
  }

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

  .hero-home {
    padding: 38px 24px 34px;
  }

  .home-page .hero-home::before,
  .home-page .visual-showcase::before,
  .home-page .shop::before,
  .home-page .play::before,
  .home-page .scenes::before,
  .home-page .value::before,
  .home-page .purchase-guide::before,
  .home-page .proof::before,
  .home-page .article-preview::before,
  .home-page .business-teaser::before,
  .home-page .contact::before,
  .home-page .stats::before {
    inset: -18px -14px;
  }

  .site-header,
  .contact-box,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    gap: 12px;
    font-size: 0.88rem;
  }

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

}

@media (max-width: 640px) {
  html::after {
    background-size:
      240px 240px,
      320px 320px;
    opacity: 0.22;
  }

  body::before {
    background-size: 190px 190px;
    opacity: 0.14;
  }

  .page-shell {
    width: min(1080px, calc(100% - 24px));
  }

  .button,
  .header-cta,
  .form-card,
  .contact-method-card,
  .notice-card {
    max-width: 100%;
  }

  .site-header {
    top: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .site-nav {
    gap: 9px 12px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .header-compact .site-nav {
    gap: 8px 10px;
    font-size: 0.8rem;
  }

  .hero h1,
  .article-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .contact-box h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-text,
  .wide-panel p,
  .panel p,
  .scene-card p,
  .shop-card p,
  .article-card p,
  .article-body p,
  .contact-box p,
  .news-item p,
  .feature-card p,
  .step-card p,
  .fine-print,
  .contact-method-card p,
  .notice-card p {
    line-height: 1.78;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .contact-actions,
  .form-actions {
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .hero,
  .article-hero {
    padding-top: 8px;
  }

  .home-page .hero-home::before,
  .home-page .visual-showcase::before,
  .home-page .shop::before,
  .home-page .play::before,
  .home-page .scenes::before,
  .home-page .value::before,
  .home-page .purchase-guide::before,
  .home-page .proof::before,
  .home-page .article-preview::before,
  .home-page .business-teaser::before,
  .home-page .contact::before,
  .home-page .stats::before {
    inset: -10px -4px;
    border-radius: 32px;
  }

  .stats article,
  .feature-card,
  .step-card,
  .news-item,
  .scene-card,
  .shop-card,
  .article-card,
  .business-banner,
  .price-card,
  .panel,
  .wide-panel,
  .contact-box,
  .article-body {
    padding: 22px;
  }

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