@font-face {
  font-family: "Rounded";
  src: url("assets/fonts/MPLUSRounded1c-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rounded";
  src: url("assets/fonts/MPLUSRounded1c-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --washi: #fbf7ee;
  --washi-deep: #f3ebd8;
  --paper: #fffdf8;
  --sumi: #3a332b;
  --sumi-soft: #756b5f;
  --line: #e7dfce;
  --gold: #f2b233;
  --gold-deep: #d98918;
  --gold-soft: #fce9aa;
  --sakura: #f6a8b8;
  --sakura-deep: #e7557a;
  --matcha: #6f9f5d;
  --matcha-deep: #47753e;
  --sky: #78adcf;
  --sky-soft: #e4f4fb;
  --shu: #d8543b;
  --shadow: 0 18px 48px rgba(58, 51, 43, 0.14);
  --shadow-soft: 0 10px 28px rgba(58, 51, 43, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--washi);
  color: var(--sumi);
  font-family: "Rounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  translate: 0 -140%;
  border-radius: var(--radius);
  background: var(--sumi);
  color: #fff;
  padding: 8px 12px;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  translate: -50% 16px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
  padding: 10px 12px;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.is-compact {
  background: rgba(255, 253, 248, 0.96);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--sumi);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(58, 51, 43, 0.12);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 18px;
  color: var(--sumi-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sumi);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background: #f9e9bb;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 34%, rgba(246, 168, 184, 0.22), rgba(246, 168, 184, 0) 26%),
    linear-gradient(90deg, rgba(251, 247, 238, 0.98) 0%, rgba(251, 247, 238, 0.9) 44%, rgba(251, 247, 238, 0.56) 72%),
    linear-gradient(180deg, rgba(120, 173, 207, 0.2), rgba(242, 178, 51, 0.18)),
    url("assets/images/intro_bg.jpg") center right / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(251, 247, 238, 0), var(--washi));
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.84fr) minmax(460px, 1fr);
  align-items: center;
  gap: 54px;
  padding: 112px 0 70px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--sakura-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-label {
  display: inline-flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(231, 223, 206, 0.86);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 24px rgba(58, 51, 43, 0.08);
  color: var(--sakura-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  padding: 8px 15px 8px 8px;
}

.hero-label img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 9px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.22;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

.lead {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--sumi-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--sumi);
  box-shadow: 0 10px 24px rgba(58, 51, 43, 0.22);
  color: #fff;
  padding: 10px 22px 10px 14px;
  text-decoration: none;
  transition: translate 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button:hover {
  translate: 0 -2px;
  background: #211c18;
  box-shadow: 0 14px 30px rgba(58, 51, 43, 0.25);
}

.store-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.store-mark::before,
.store-mark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.store-mark::before {
  width: 18px;
  height: 18px;
  left: 11px;
  top: 12px;
  border-radius: 9px 9px 11px 11px;
}

.store-mark::after {
  width: 8px;
  height: 8px;
  left: 21px;
  top: 8px;
  border-radius: 8px 0 8px 0;
  rotate: -24deg;
}

.store-button strong,
.store-button small {
  display: block;
  line-height: 1.25;
}

.store-button strong {
  font-size: 19px;
}

.store-button small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  color: var(--matcha-deep);
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(71, 117, 62, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--matcha-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
}

.hero-showcase {
  position: relative;
  width: min(560px, 100%);
  justify-self: end;
}

.phone {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid #1e1b18;
  border-radius: 34px;
  background: #1e1b18;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 50%;
  width: 88px;
  height: 24px;
  translate: -50% 0;
  border-radius: 999px;
  background: #050505;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card {
  position: relative;
  height: clamp(560px, 58vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.66), rgba(255, 253, 248, 0.2)),
    url("assets/images/bg_sky.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(242, 178, 51, 0.25);
  border-radius: 8px;
  pointer-events: none;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(251, 247, 238, 0), rgba(251, 247, 238, 0.88));
  pointer-events: none;
}

.showcase-logo,
.showcase-phone,
.showcase-jar,
.showcase-sakuya,
.showcase-chip,
.showcase-note {
  position: absolute;
}

.showcase-logo {
  z-index: 4;
  top: 20px;
  left: 50%;
  width: min(310px, 62%);
  translate: -50% 0;
  filter: drop-shadow(0 14px 18px rgba(216, 137, 24, 0.18));
}

.showcase-phone {
  z-index: 3;
  background: #1e1b18;
}

.showcase-phone-main {
  right: 74px;
  bottom: 48px;
  width: 220px;
  height: 480px;
}

.showcase-phone-side {
  left: 54px;
  bottom: 68px;
  width: 158px;
  height: 344px;
  rotate: -8deg;
  opacity: 0.94;
}

.showcase-jar {
  z-index: 5;
  left: 26px;
  bottom: 32px;
  width: 130px;
  filter: drop-shadow(0 18px 20px rgba(216, 137, 24, 0.22));
}

.showcase-sakuya {
  z-index: 6;
  right: 12px;
  bottom: 30px;
  width: 138px;
  filter: drop-shadow(0 15px 18px rgba(58, 51, 43, 0.2));
}

.showcase-chip {
  z-index: 6;
  left: 34px;
  top: 210px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--sakura);
  box-shadow: var(--shadow-soft);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 15px;
}

.showcase-note {
  z-index: 6;
  right: 24px;
  top: 184px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--matcha-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 13px;
}

.trust-strip {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 4;
}

.trust-item {
  min-height: 112px;
  border: 1px solid rgba(231, 223, 206, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--gold-deep);
  font-size: 34px;
  line-height: 1.1;
}

.trust-item span {
  margin-top: 4px;
  color: var(--sumi-soft);
  font-weight: 700;
}

section {
  scroll-margin-top: 110px;
}

.path-section,
.features,
.screens,
.faq {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--sumi);
}

.ritual-path {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}

.ritual-path::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 42px;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 18px,
    rgba(242, 178, 51, 0.2) 18px 28px
  );
}

.ritual-path li {
  position: relative;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.path-icon {
  display: inline-flex;
  width: 84px;
  height: 84px;
  align-items: center;
  justify-content: center;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(58, 51, 43, 0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.path-pink {
  background: var(--sakura-deep);
}

.path-gold {
  background: var(--gold-deep);
}

.path-green {
  background: var(--matcha);
}

.ritual-path strong {
  display: block;
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.35;
}

.ritual-path p {
  margin: 10px 0 0;
  color: var(--sumi-soft);
}

.feature-row {
  display: grid;
  min-height: 440px;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.feature-row-reverse {
  grid-template-columns: 1fr 0.92fr;
}

.feature-row-reverse .feature-media {
  order: 2;
}

.feature-row-reverse .feature-copy {
  order: 1;
}

.feature-media {
  position: relative;
  display: flex;
  min-height: 380px;
  align-items: center;
  justify-content: center;
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 16px 34px;
  border: 2px solid rgba(242, 178, 51, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 168, 184, 0.2), rgba(120, 173, 207, 0.16)),
    var(--paper);
}

.feature-media > img,
.feature-media > figure {
  position: relative;
  z-index: 1;
}

.jar-media img {
  width: 270px;
  filter: drop-shadow(0 24px 26px rgba(216, 137, 24, 0.24));
}

.guardian-media img {
  width: 250px;
  filter: drop-shadow(0 20px 20px rgba(58, 51, 43, 0.16));
}

.feature-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
}

.feature-copy p {
  margin: 18px 0 0;
  color: var(--sumi-soft);
  font-size: 17px;
}

.feature-copy h3 {
  margin-top: 14px;
}

.screenshot-pair {
  min-height: 500px;
}

.phone-small {
  width: 202px;
  height: 438px;
  border-width: 8px;
  border-radius: 28px;
}

.phone-small::before {
  width: 62px;
  height: 17px;
}

.phone-offset {
  margin-left: -48px;
  margin-top: 54px;
}

.safety {
  margin-top: 84px;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(58, 51, 43, 0.9), rgba(58, 51, 43, 0.72)),
    url("assets/images/bg_sky.jpg") center / cover no-repeat;
  color: #fff;
}

.safety-copy,
.safety-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.safety-copy {
  max-width: 820px;
  margin-bottom: 34px;
}

.safety .eyebrow {
  color: var(--gold);
}

.safety h2 {
  color: #fff;
}

.safety p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.safety-grid div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.safety-grid strong,
.safety-grid span {
  display: block;
}

.safety-grid strong {
  color: var(--gold);
  font-size: 22px;
}

.safety-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.screen-gallery {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(228, 244, 251, 0.82), rgba(252, 233, 170, 0.58)),
    var(--paper);
  padding: 28px;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 34px;
}

.gallery-phone {
  width: 288px;
  height: 626px;
  justify-self: center;
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  font-size: 32px;
  line-height: 1.25;
}

.gallery-caption span {
  margin-top: 10px;
  color: var(--sumi-soft);
}

.gallery-controls {
  display: grid;
  gap: 10px;
}

.gallery-controls button {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--sumi);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
}

.gallery-controls button:hover,
.gallery-controls button.is-active {
  border-color: rgba(231, 85, 122, 0.28);
  background: var(--sakura);
  color: #fff;
}

.download {
  margin-top: 92px;
  background: var(--gold-soft);
}

.download-inner {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: 210px;
  margin: 0 auto;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px 0;
}

.download img {
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.download h2 {
  font-size: 30px;
}

.faq {
  padding-bottom: 90px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  display: flex;
  min-height: 72px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  line-height: 1.5;
  padding: 22px 68px 22px 24px;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  translate: 0 -50%;
  align-items: center;
  justify-content: center;
  color: var(--sakura-deep);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  position: relative;
  margin: -4px 24px 24px;
  color: var(--sumi-soft);
  font-size: 16px;
  line-height: 1.9;
  padding: 18px 22px;
}

details[open] p {
  border-radius: var(--radius);
  background: rgba(243, 235, 216, 0.42);
}

details[open] p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: rgba(231, 223, 206, 0.92);
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--sumi-soft);
  padding: 26px 0 34px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--sumi);
}

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

.policy-page {
  background:
    linear-gradient(180deg, rgba(228, 244, 251, 0.9), rgba(251, 247, 238, 1) 360px),
    var(--washi);
}

.policy {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 80px;
}

.policy h1 {
  font-size: 44px;
}

.policy h2 {
  margin-top: 40px;
  font-size: 24px;
}

.policy p {
  color: var(--sumi-soft);
}

.policy-lead {
  margin-top: 18px;
  font-size: 18px;
}

.policy section {
  scroll-margin-top: 90px;
}

.policy-date {
  margin-top: 40px;
  font-weight: 700;
}

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

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
    translate: -50% 12px;
  }

  .site-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 112px;
  }

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

  .hero-showcase {
    width: min(560px, 100%);
    justify-self: center;
    order: -1;
  }

  .showcase-card {
    height: 580px;
  }

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

  .ritual-path {
    grid-template-columns: 1fr;
  }

  .ritual-path::before {
    display: none;
  }

  .ritual-path li {
    min-height: auto;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-row-reverse .feature-media,
  .feature-row-reverse .feature-copy {
    order: initial;
  }

  .screen-gallery,
  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-controls {
    grid-template-columns: repeat(5, 1fr);
  }

  .gallery-controls button {
    text-align: center;
    padding: 10px 8px;
  }

  .download-inner {
    grid-template-columns: 72px 1fr;
  }

  .download-inner .store-button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .download img {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 58px;
    gap: 8px;
    padding: 8px;
  }

  .brand span {
    max-width: 136px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 38px;
    font-size: 13px;
    padding: 7px 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(251, 247, 238, 0.96) 0%, rgba(251, 247, 238, 0.82) 42%, rgba(251, 247, 238, 0.2) 78%),
      url("assets/images/bg_sky.jpg") center top / cover no-repeat;
  }

  .hero-inner {
    min-height: auto;
    gap: 18px;
    padding: 88px 0 34px;
  }

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

  .hero-label {
    margin-bottom: 16px;
    font-size: 13px;
    padding: 6px 12px 6px 6px;
  }

  .hero-label img {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 23px;
  }

  .lead {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 18px;
    align-items: stretch;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-badges span {
    justify-content: center;
    min-height: 31px;
    font-size: 12px;
    padding: 5px 8px;
  }

  .hero-showcase {
    width: min(360px, 100%);
  }

  .showcase-card {
    height: 286px;
  }

  .showcase-card::before {
    inset: 9px;
    border-width: 1px;
  }

  .showcase-card::after {
    height: 86px;
  }

  .showcase-logo {
    top: 10px;
    width: 160px;
  }

  .showcase-phone-main {
    right: 64px;
    bottom: 20px;
    width: 92px;
    height: 201px;
  }

  .showcase-phone-side {
    left: 62px;
    bottom: 28px;
    width: 68px;
    height: 148px;
  }

  .phone {
    border-width: 7px;
    border-radius: 28px;
  }

  .phone::before {
    width: 62px;
    height: 17px;
  }

  .showcase-jar {
    left: 24px;
    bottom: 20px;
    width: 70px;
  }

  .showcase-sakuya {
    right: 14px;
    bottom: 20px;
    width: 76px;
  }

  .showcase-chip {
    left: 18px;
    top: 112px;
    border-width: 3px;
    font-size: 11px;
    padding: 5px 9px;
  }

  .showcase-note {
    right: 12px;
    top: 90px;
    max-width: 118px;
    font-size: 10px;
    line-height: 1.35;
    padding: 6px 8px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: -42px;
  }

  .trust-item {
    min-height: 94px;
    padding: 14px;
  }

  .trust-item strong {
    font-size: 27px;
  }

  .path-section,
  .features,
  .screens,
  .faq {
    padding-top: 64px;
  }

  .ritual-path li {
    padding: 20px;
  }

  .feature-row {
    min-height: auto;
    padding: 34px 0;
  }

  .feature-media {
    min-height: 300px;
  }

  .feature-media::before {
    inset: 10px 0;
  }

  .jar-media img {
    width: 210px;
  }

  .guardian-media img {
    width: 190px;
  }

  .screenshot-pair {
    min-height: 388px;
  }

  .phone-small {
    width: 156px;
    height: 340px;
  }

  .phone-offset {
    margin-left: -36px;
    margin-top: 42px;
  }

  .safety {
    margin-top: 54px;
    padding: 64px 0;
  }

  .safety p {
    font-size: 16px;
  }

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

  .screen-gallery {
    padding: 16px;
  }

  .gallery-phone {
    width: 230px;
    height: 500px;
  }

  .gallery-caption strong {
    font-size: 26px;
  }

  .gallery-controls {
    grid-template-columns: 1fr 1fr;
  }

  .download {
    margin-top: 64px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 0;
  }

  .download h2 {
    font-size: 25px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 14px;
  }

  .policy {
    padding-top: 108px;
  }

  .policy h1 {
    font-size: 34px;
  }
}
