/* ============================================================
   MUTE / ふわメモ — Landing Page
   A scroll that sinks from pastel cute into 和ホラー darkness.
   ============================================================ */

:root {
  /* ---- cute (表の顔) ---- */
  --cream:       #FFF7F3;
  --cream2:      #FDEBF1;
  --pink:        #F7B8CE;
  --pink-deep:   #EE8FB1;
  --pink-text:   #C2607F;
  --brown:       #8C6A5F;
  --mint:        #BFE3CC;
  --butter:      #FBE6A8;
  --cute-card:   #FFFFFF;

  /* ---- dark (本丸) ---- */
  --ink:         #0A0306;
  --ink2:        #140510;
  --wine:        #350C26;
  --wine2:       #581338;
  --crimson:     #CE3553;
  --crimson-br:  #F1546F;
  --gold:        #E3BB6B;
  --gold2:       #F4D993;
  --vermilion:   #E05A2F;
  --purple:      #7E2F77;
  --purple-glow: #B863B6;
  --pink-glow:   #F2A6C2;
  --smoke:       #6F3E70;

  /* ---- type ---- */
  --f-cute:  'Mochiy Pop One', 'Zen Maru Gothic', sans-serif;
  --f-round: 'Zen Maru Gothic', sans-serif;
  --f-min:   'Shippori Mincho B1', serif;
  --f-brush: 'Yuji Syuku', serif;
  --f-en:    'Cormorant Garamond', serif;

  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-round);
  background: var(--ink);
  color: var(--brown);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Fixed atmosphere — smoke + sparks that bloom as we descend
   ============================================================ */
.atmosphere {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0; visibility: hidden;
  transition: opacity .9s ease;
  mix-blend-mode: screen;
}
.atmosphere .smoke {
  position: absolute; border-radius: 50%;
  filter: blur(34px); will-change: transform;
  background: radial-gradient(circle, var(--smoke), transparent 70%);
  animation: drift 22s ease-in-out infinite;
}
.atmosphere .smoke.s1 { width: 34vw; height: 34vw; left: -4vw; top: 20%;  background: radial-gradient(circle, rgba(126,47,119,.55), transparent 70%); animation-duration: 26s; }
.atmosphere .smoke.s2 { width: 30vw; height: 30vw; right: -2vw; top: 50%;  background: radial-gradient(circle, rgba(206,53,83,.40), transparent 70%);  animation-duration: 30s; animation-delay: -8s; }
.atmosphere .smoke.s3 { width: 26vw; height: 26vw; left: 32%;  bottom: 5%;  background: radial-gradient(circle, rgba(184,99,182,.40), transparent 70%); animation-duration: 24s; animation-delay: -14s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(6vw,-4vh) scale(1.15); }
  66%     { transform: translate(-5vw,3vh) scale(.9); }
}
body.dark .atmosphere { opacity: 1; visibility: visible; }

/* twinkle field (dark) */
.sparkfield { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 1.2s ease; }
body.dark .sparkfield { opacity: 1; visibility: visible; }
.sparkfield .spark {
  position: absolute; width: 6px; height: 6px;
  background: radial-gradient(circle, #fff, var(--pink-glow) 40%, transparent 70%);
  border-radius: 50%; animation: twinkle 3.4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: 0; transform: scale(.4); } 50% { opacity: 1; transform: scale(1); } }

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: all .5s ease;
}
.topbar .brand { display: flex; align-items: center; gap: 10px; font-family: var(--f-cute); font-size: 20px; color: var(--pink-text); transition: color .5s ease; }
.topbar .brand .ico { width: 30px; height: 30px; border-radius: 9px; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.topbar .nav-cta {
  font-family: var(--f-round); font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--pink-deep); color: #fff;
  box-shadow: 0 8px 20px rgba(238,143,177,.45);
  transition: all .5s ease;
}
body.dark .topbar { backdrop-filter: blur(8px); background: rgba(10,3,6,.45); }
body.dark .topbar .brand { color: var(--pink-glow); font-family: var(--f-min); letter-spacing: .08em; }
body.dark .topbar .nav-cta {
  background: linear-gradient(120deg, var(--gold), var(--vermilion), var(--purple));
  box-shadow: 0 8px 24px rgba(206,53,83,.5);
  color: #fff;
}

/* ============================================================
   Generic section scaffolding
   ============================================================ */
section { position: relative; z-index: 2; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; }
.reveal.d4 { transition-delay: .46s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; } }

.eyebrow { font-family: var(--f-round); font-weight: 700; font-size: 13px; letter-spacing: .28em; text-transform: uppercase; }

/* phone mockups */
.phone { filter: drop-shadow(0 24px 50px rgba(120,40,80,.28)); }
.phone img { width: 100%; }

/* ============================================================
   1. HERO — cute (ふわメモ)
   ============================================================ */
#hero {
  background:
    radial-gradient(120% 80% at 50% -10%, #FFFFFF 0%, var(--cream) 40%, var(--cream2) 100%);
  padding: 150px 0 120px;
  overflow: hidden;
}
#hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--pink-text);
  font-weight: 700; font-size: 13px; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(238,143,177,.28);
  margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
#hero h1 {
  font-family: var(--f-cute);
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.02; color: var(--pink-deep);
  letter-spacing: .01em;
  text-shadow: 0 3px 0 #fff, 0 10px 24px rgba(238,143,177,.3);
}
#hero h1 .sm { display: block; font-size: .42em; color: var(--pink-text); margin-bottom: 6px; -webkit-text-stroke: 0; }
#hero .lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--brown); margin: 24px 0 8px; max-width: 30ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; align-items: center; }
.btn-cute {
  font-family: var(--f-round); font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(180deg, #FBC9DA, var(--pink-deep));
  color: #fff; box-shadow: 0 12px 26px rgba(238,143,177,.5), inset 0 2px 0 rgba(255,255,255,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-cute:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(238,143,177,.6); }
.hero-note { font-size: 13px; color: var(--pink-text); opacity: .85; }

.hero-phone { position: relative; justify-self: center; width: min(220px, 72%); }
.hero-phone .phone { position: relative; z-index: 3; }
.hero-phone .blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 1; }
.hero-phone .blob.b1 { width: 120%; height: 120%; left: -10%; top: -8%; background: radial-gradient(circle, rgba(247,184,206,.5), transparent 65%); }

/* hidden lock peeking on the icon already; small lock chip */
.hero-lock-hint {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: -18px;
  font-family: var(--f-min);
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(82,44,70,.78);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(238,143,177,.34);
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(120,40,80,.18);
  backdrop-filter: blur(12px);
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* floating cute decorations */
.cute-deco { position: absolute; z-index: 2; pointer-events: none; opacity: .9; animation: floaty 6s ease-in-out infinite; }
.cute-deco.heart { color: var(--pink); }
.cute-deco svg { display: block; }

/* ============================================================
   2. CUTE FEATURES
   ============================================================ */
#cute-features {
  background: linear-gradient(180deg, var(--cream2) 0%, #F9E0EA 100%);
  padding: 96px 0 110px;
}
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .eyebrow { color: var(--pink-deep); }
.sec-head h2 { font-family: var(--f-cute); font-size: clamp(30px, 4vw, 46px); color: var(--pink-text); margin-top: 12px; }
.sec-head p { color: var(--brown); margin-top: 14px; }

.cute-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cute-card {
  background: var(--cute-card); border-radius: 26px; padding: 28px 26px 30px;
  box-shadow: 0 18px 40px rgba(238,143,177,.22);
  border: 2px solid #fff;
  text-align: center;
}
.cute-card .emojibox {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 20px;
  display: grid; place-items: center; font-size: 30px;
  background: var(--cream2);
}
.cute-card.c1 .emojibox { background: #FCE2EA; }
.cute-card.c2 .emojibox { background: #E6F2EA; }
.cute-card.c3 .emojibox { background: #FBF1DA; }
.cute-card h3 { font-family: var(--f-cute); font-size: 21px; color: var(--pink-text); margin-bottom: 8px; }
.cute-card p { font-size: 14.5px; color: var(--brown); }

.cute-showcase { display: grid; grid-template-columns: repeat(2, minmax(0,210px)); gap: 30px; justify-content: center; margin-top: 64px; }
.cute-showcase .phone { width: 100%; }

/* ============================================================
   3. TEASE — the world starts to dim
   ============================================================ */
#tease {
  background: linear-gradient(180deg, #F9E0EA 0%, #E7C4D2 30%, #B98FA8 70%, #5A3C56 100%);
  padding: clamp(118px, 12vw, 170px) 0 clamp(128px, 13vw, 190px);
  text-align: center;
  position: relative;
}
#tease .wrap { position: relative; z-index: 3; }
#tease .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: rgba(255,255,255,.92);
  opacity: 1;
  font-family: var(--f-en);
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 600;
  letter-spacing: .12em;
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 38px rgba(90,60,86,.34), 0 0 24px rgba(255,255,255,.18);
}
#tease h2 {
  font-family: var(--f-min);
  font-size: clamp(30px, 4.15vw, 52px);
  line-height: 1.62;
  margin: 34px auto 0;
  max-width: 18ch;
  color: rgba(255,255,255,.96);
  text-shadow: 0 3px 28px rgba(90,60,86,.56);
}
#tease h2 .glow { color: var(--pink-glow); }
#tease .sub {
  color: rgba(255,255,255,.95);
  font-size: clamp(15.5px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: .06em;
  max-width: 38ch;
  margin: clamp(48px, 5.2vw, 72px) auto 0;
  text-shadow: 0 2px 16px rgba(58,30,54,.62), 0 0 2px rgba(58,30,54,.46);
}
#tease .sub span {
  color: #ff8db7 !important;
  text-shadow: 0 2px 14px rgba(92,20,58,.62), 0 0 12px rgba(255,141,183,.24);
}
.secret-door {
  margin-top: 48px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-min); font-size: 16px; letter-spacing: .12em;
  color: var(--pink-glow);
  padding: 16px 30px; border-radius: 999px;
  border: 1px solid rgba(242,166,194,.5);
  background: rgba(20,5,16,.45);
  cursor: pointer; backdrop-filter: blur(4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  transition: all .35s ease;
}
.secret-door:hover { background: rgba(20,5,16,.7); transform: translateY(-3px); box-shadow: 0 20px 44px rgba(0,0,0,.5); }
.secret-door .key { font-size: 18px; }

/* ============================================================
   4. LOCK FOLD — the pivot
   ============================================================ */
#lock {
  position: relative; overflow: hidden; min-height: 100vh;
  display: grid; place-items: center;
  padding: 96px 20px;
  background: linear-gradient(180deg, #5E3F5A 0%, #34122B 24%, var(--ink2) 58%, var(--ink) 100%);
}
/* contained smoke (crisp, GPU-light) */
.lock-smoke { position: absolute; inset: 0; z-index: 0; pointer-events: none; mix-blend-mode: screen; }
.lock-smoke span { position: absolute; border-radius: 50%; filter: blur(40px); will-change: transform; animation: drift 26s ease-in-out infinite; }
.lock-smoke span:nth-child(1) { width: 40vw; height: 40vw; left: -8vw; bottom: -6vw; background: radial-gradient(circle, rgba(126,47,119,.5), transparent 70%); }
.lock-smoke span:nth-child(2) { width: 30vw; height: 30vw; right: -6vw; top: 6vh; background: radial-gradient(circle, rgba(206,53,83,.3), transparent 70%); animation-delay: -9s; }
.lock-smoke span:nth-child(3) { width: 24vw; height: 24vw; right: 16vw; bottom: 4vh; background: radial-gradient(circle, rgba(184,99,182,.34), transparent 70%); animation-delay: -15s; }
/* faint filigree frame */
.lock-scene {
  position: relative; z-index: 2; width: min(440px, 92vw); text-align: center;
  padding: 40px 34px 38px;
  border-radius: 30px;
  background: radial-gradient(130% 90% at 50% 0%, rgba(53,12,38,.55), rgba(10,3,6,.3) 70%);
  border: 1px solid rgba(241,84,111,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.55), inset 0 0 70px rgba(126,47,119,.16);
}
.lock-scene::before, .lock-scene::after {
  content: ""; position: absolute; width: 46px; height: 46px; opacity: .5;
  border-color: rgba(227,187,107,.7); border-style: solid; pointer-events: none;
}
.lock-scene::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; border-top-left-radius: 14px; }
.lock-scene::after { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; border-bottom-right-radius: 14px; }
.lock-ornament { display: flex; justify-content: center; margin-bottom: 4px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.5)); }
.lock-ornament svg { display: block; }
.lock-title {
  font-family: var(--f-min); font-weight: 600;
  font-size: clamp(34px, 6vw, 50px); letter-spacing: .16em; line-height: 1;
  color: var(--pink-glow);
  text-shadow: 0 0 18px rgba(242,166,194,.55), 0 0 44px rgba(206,53,83,.32);
}
.lock-divider { color: var(--crimson); letter-spacing: .55em; font-size: 13px; margin: 12px 0 10px; opacity: .85; }
.lock-ko { font-family: var(--f-min); color: rgba(242,166,194,.78); font-size: 14.5px; line-height: 1.95; margin-bottom: 26px; }
.pin-dots { display: flex; gap: 20px; justify-content: center; margin-bottom: 28px; }
.pin-dots .pd { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--crimson-br); transition: all .2s ease; }
.pin-dots .pd.on { background: radial-gradient(circle, #fff, var(--pink-glow)); box-shadow: 0 0 14px var(--pink-glow); border-color: var(--pink-glow); }
.keypad { display: grid; grid-template-columns: repeat(3, 74px); justify-content: center; gap: 16px; }
.key {
  width: 74px; height: 74px; border-radius: 50%; border: 1px solid rgba(241,84,111,.45);
  background: radial-gradient(circle at 35% 28%, rgba(88,19,56,.75), rgba(10,3,6,.92));
  color: var(--pink-glow); font-family: var(--f-min); font-size: 28px;
  cursor: pointer; display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 16px rgba(0,0,0,.5);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select: none;
}
.key:hover { background: radial-gradient(circle at 35% 28%, rgba(126,47,119,.85), rgba(20,5,16,.95)); box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 18px rgba(241,84,111,.35); }
.key:active { transform: scale(.92); box-shadow: inset 0 0 18px rgba(241,84,111,.6); }
.key.k0 { grid-column: 2; }
.lock-back { margin: 28px auto 0; font-family: var(--f-min); font-size: 14px; letter-spacing: .1em; color: rgba(242,166,194,.62); border: 1px solid rgba(242,166,194,.22); background: transparent; padding: 11px 28px; border-radius: 999px; cursor: pointer; transition: all .3s; }
.lock-back:hover { color: var(--pink-glow); border-color: rgba(242,166,194,.5); }

/* unlock flash overlay */
.unlock-flash {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  display: grid; place-items: center; opacity: 0;
  background: radial-gradient(circle, rgba(40,8,28,.96), rgba(10,3,6,.99));
  transition: opacity .5s ease;
}
.unlock-flash.show { opacity: 1; }
.unlock-flash .uf-txt {
  font-family: var(--f-min); font-size: clamp(26px,4vw,44px);
  letter-spacing: .2em; text-align: center;
  background: linear-gradient(110deg, var(--gold2), var(--crimson-br), var(--purple-glow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: scale(.85); transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.unlock-flash.show .uf-txt { transform: scale(1); }

/* ============================================================
   5. HONMARU HERO — the reveal
   ============================================================ */
#reveal {
  background:
    radial-gradient(120% 90% at 50% 0%, var(--wine) 0%, var(--ink2) 45%, var(--ink) 100%);
  min-height: 128vh;
  padding: clamp(210px, 22vh, 280px) 0 clamp(210px, 22vh, 290px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#reveal .vignette { position: absolute; inset: 0; box-shadow: inset 0 0 200px 60px rgba(0,0,0,.8); pointer-events: none; }
.kanji-accent { font-family: var(--f-brush); letter-spacing: .15em;
  background: linear-gradient(120deg, var(--gold2) 0%, var(--vermilion) 45%, var(--purple-glow) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
#reveal .secret-en { font-family: var(--f-en); font-style: italic; font-size: 17px; letter-spacing: .12em; color: var(--gold); opacity: .8; }
#reveal h2 {
  font-family: var(--f-min); font-weight: 800;
  font-size: clamp(34px, 5.5vw, 76px); line-height: 1.32;
  margin: 22px auto 0; max-width: 18ch; color: #F4E4EC;
  text-shadow: 0 4px 40px rgba(206,53,83,.4);
}
#reveal h2 .em { color: var(--crimson-br); }
#reveal .reveal-sub { color: rgba(244,228,236,.7); font-family: var(--f-min); font-size: 17px; margin: 28px auto 0; max-width: 38ch; line-height: 2; }
#reveal .safety-note {
  margin: 30px auto 0;
  max-width: 40ch;
  color: rgba(244,228,236,.82);
  font-family: var(--f-min);
  font-size: 15.5px;
  line-height: 2;
  padding: 18px 20px;
  border: 1px solid rgba(227,187,107,.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(42,10,30,.58), rgba(91,18,58,.32));
  box-shadow: 0 22px 54px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
}
#reveal .true-name {
  margin-top: clamp(96px, 15vh, 170px);
  margin-bottom: clamp(96px, 13vh, 150px);
  min-height: clamp(138px, 18vw, 190px);
  display: inline-grid;
  grid-template-areas: "stack";
  place-items: center;
  isolation: isolate;
}
#reveal .true-name > * { grid-area: stack; }
#reveal .true-name .fake-name {
  font-family: var(--f-cute);
  font-size: clamp(38px, 4.6vw, 62px);
  letter-spacing: .08em;
  color: var(--pink-glow);
  text-shadow: 0 0 18px rgba(242,166,194,.45);
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
#reveal .true-name .lbl {
  align-self: start;
  font-size: 12px;
  letter-spacing: .45em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
}
#reveal .true-name .nm {
  align-self: end;
  display: inline-flex;
  gap: .18em;
  font-family: var(--f-en);
  font-size: clamp(54px, 7vw, 86px);
  letter-spacing: .08em;
  font-weight: 600;
  line-height: 1;
}
#reveal .true-name .nm span {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold2), var(--crimson-br), var(--purple-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(42px) scale(.92);
  filter: blur(10px);
}
#reveal .true-name.name-revealed .fake-name { animation: fakeNameDissolve 1.65s cubic-bezier(.2,.8,.2,1) both; }
#reveal .true-name.name-revealed .lbl { animation: trueNameLabel .9s ease .95s both; }
#reveal .true-name.name-revealed .nm span { animation: muteLetterRise .82s cubic-bezier(.18,.85,.2,1) calc(1.12s + var(--i) * .12s) both; }
@keyframes fakeNameDissolve {
  0% { opacity: 0; transform: translateY(20px) scale(.96); filter: blur(8px); }
  22% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  58% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-28px) scale(1.04); filter: blur(14px); }
}
@keyframes trueNameLabel {
  from { opacity: 0; transform: translateY(12px); filter: blur(8px); }
  to { opacity: .78; transform: translateY(0); filter: blur(0); }
}
@keyframes muteLetterRise {
  0% { opacity: 0; transform: translateY(46px) scale(.92); filter: blur(12px); }
  72% { opacity: 1; transform: translateY(-5px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* decorative bow + chain (svg) sit at top of reveal */
.reveal-bow { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); z-index: 3; opacity: .9; }

/* ============================================================
   6. HONMARU FEATURES
   ============================================================ */
#honmaru-features { background: var(--ink); padding: 40px 0 120px; }
.hm-sec-head { text-align: center; margin-bottom: 70px; }
.hm-sec-head .eyebrow { color: var(--crimson); }
.hm-sec-head h2 { font-family: var(--f-min); font-size: clamp(28px,4vw,46px); color: #F4E4EC; margin-top: 12px; }

.hm-feature { display: grid; grid-template-columns: 1fr 256px; gap: 60px; align-items: center; margin-bottom: 110px; }
.hm-feature:nth-child(even) { grid-template-columns: 256px 1fr; }
.hm-feature:nth-child(even) .hm-phone { order: -1; }
.hm-num { font-family: var(--f-en); font-size: 16px; letter-spacing: .3em; color: var(--gold); opacity: .65; }
.hm-feature h3 { font-family: var(--f-brush); font-size: clamp(34px, 4.4vw, 56px); margin: 8px 0 6px;
  background: linear-gradient(120deg, var(--gold2), var(--vermilion) 55%, var(--purple-glow));
  -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: .12em; }
.hm-feature .romaji { font-family: var(--f-en); letter-spacing: .26em; font-size: 13px; color: var(--crimson); text-transform: uppercase; margin-bottom: 18px; }
.hm-feature p { color: rgba(244,228,236,.72); font-family: var(--f-min); font-size: 16px; line-height: 2; max-width: 40ch; }
.hm-feature .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hm-feature .chip { font-size: 13px; font-family: var(--f-round); color: var(--pink-glow); padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(241,84,111,.35); background: rgba(53,12,38,.5); }
.hm-phone { position: relative; }
.hm-phone .glow { position: absolute; inset: -20% -10%; background: radial-gradient(circle, rgba(206,53,83,.32), transparent 65%); filter: blur(20px); z-index: 0; }
.hm-phone .phone { position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,.7)); }

/* ============================================================
   7. VALUE
   ============================================================ */
#value { background: radial-gradient(120% 80% at 50% 100%, var(--wine) 0%, var(--ink) 60%); padding: 110px 0 120px; }
#value .vhead { text-align: center; margin-bottom: 60px; }
#value .vhead h2 { font-family: var(--f-min); font-size: clamp(28px,4vw,48px); color: #F4E4EC; line-height: 1.5; }
#value .vhead h2 .em { color: var(--crimson-br); }
.value-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.value-row {
  display: flex; align-items: center; gap: 22px;
  padding: 26px 30px; border-radius: 16px;
  border: 1px solid rgba(241,84,111,.14);
  background: linear-gradient(100deg, rgba(53,12,38,.5), rgba(20,5,16,.3));
  transition: all .4s ease;
}
.value-row:hover { border-color: rgba(241,84,111,.4); background: linear-gradient(100deg, rgba(88,19,56,.6), rgba(20,5,16,.4)); }
.value-row .vn { font-family: var(--f-en); font-size: 22px; color: var(--gold); opacity: .6; min-width: 40px; }
.value-row .vt { font-family: var(--f-min); font-size: clamp(17px,2vw,22px); color: #F0DCE6; }

/* ============================================================
   8. FAQ
   ============================================================ */
#faq { background: var(--ink); padding: 100px 0 110px; }
#faq .wrap { max-width: 800px; }
#faq h2 { text-align: center; font-family: var(--f-min); font-size: clamp(26px,3.6vw,40px); color: #F4E4EC; margin-bottom: 44px; }
.faq-item { border-bottom: 1px solid rgba(241,84,111,.16); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 4px; cursor: pointer; font-family: var(--f-min); font-size: 18px; color: #F0DCE6; }
.faq-q .qmk { color: var(--gold); margin-right: 12px; font-family: var(--f-en); }
.faq-q .ar { color: var(--crimson); transition: transform .35s ease; font-size: 22px; }
.faq-item.open .faq-q .ar { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; color: rgba(244,228,236,.66); font-family: var(--f-min); font-size: 15.5px; line-height: 2; padding: 0 4px; }
.faq-item.open .faq-a { max-height: 260px; padding: 0 4px 26px; }

/* ============================================================
   9. CTA / FOOTER
   ============================================================ */
#cta { background: radial-gradient(110% 100% at 50% 120%, var(--wine2) 0%, var(--wine) 30%, var(--ink) 75%); padding: 130px 0 60px; text-align: center; position: relative; overflow: hidden; }
#cta .icon-big { width: 110px; height: 110px; border-radius: 28px; margin: 0 auto 30px; box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(241,84,111,.2); }
#cta h2 { font-family: var(--f-min); font-size: clamp(32px,5vw,64px); color: #F4E4EC; line-height: 1.3; }
#cta h2 .em { background: linear-gradient(120deg, var(--gold2), var(--crimson-br), var(--purple-glow)); -webkit-background-clip: text; background-clip: text; color: transparent; }
#cta p { color: rgba(244,228,236,.7); font-family: var(--f-min); margin: 22px auto 40px; max-width: 32ch; font-size: 17px; }
.btn-dark {
  font-family: var(--f-min); font-size: 18px; letter-spacing: .12em;
  padding: 18px 46px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(120deg, var(--gold), var(--vermilion) 50%, var(--purple));
  color: #fff; box-shadow: 0 16px 40px rgba(206,53,83,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(206,53,83,.65); }
#cta .micro { margin-top: 18px; font-size: 13px; color: rgba(242,166,194,.55); font-family: var(--f-round); letter-spacing: .04em; }
.footer { margin-top: 90px; border-top: 1px solid rgba(241,84,111,.14); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: rgba(242,166,194,.5); font-size: 13px; font-family: var(--f-round); }
.footer .fnav { display: flex; gap: 22px; }
.footer .fnav a:hover { color: var(--pink-glow); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  #hero { padding: 130px 0 80px; }
  #hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  #hero .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .cute-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cute-showcase { grid-template-columns: minmax(0,280px); }
  #lock { padding: 80px 16px; }
  .hm-feature, .hm-feature:nth-child(even) { grid-template-columns: 1fr; gap: 34px; justify-items: center; text-align: center; }
  .hm-feature:nth-child(even) .hm-phone { order: 0; }
  .hm-phone { width: min(280px, 80%); }
  .hm-feature p { margin: 0 auto; }
  .hm-feature .chips { justify-content: center; }
  .value-row { padding: 20px 22px; }
}
@media (max-width: 520px) {
  #hero h1 { font-size: 48px; }
  .keypad { gap: 12px; }
  .key { font-size: 24px; }
}

/* Asset-based passcode scene */
.lock-scene.lock-scene-asset {
  width: min(560px, 94vw);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.lock-scene.lock-scene-asset::before,
.lock-scene.lock-scene-asset::after { display: none; }
.passcode-unlock {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 34px 90px rgba(0,0,0,.66)) drop-shadow(0 0 38px rgba(206,53,83,.22));
  transition: transform .35s ease, filter .35s ease;
}
.passcode-unlock:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 40px 100px rgba(0,0,0,.72)) drop-shadow(0 0 48px rgba(241,84,111,.32));
}
.passcode-img {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 28px;
}
.lock-back.lock-back-asset {
  display: block;
  margin-top: 18px;
  background: rgba(10,3,6,.34);
  backdrop-filter: blur(10px);
}
@media (max-width: 640px) {
  .lock-scene.lock-scene-asset { width: min(390px, 96vw); }
  .passcode-img { max-height: 78vh; border-radius: 22px; }
}

/* Passcode asset final fit adjustments */
.lock-scene.lock-scene-asset { width: min(500px, 92vw); }
.passcode-img { max-height: 80vh; }
@media (min-width: 900px) {
  #lock { padding-top: 84px; padding-bottom: 84px; }
}

@media (max-width: 640px) { .hero-lock-hint { right: 50%; transform: translateX(50%); bottom: -20px; font-size: 12px; } }

/* Hero cute image clarity / mobile fit */
@media (max-width: 520px) {
  #hero { padding-bottom: 64px; }
  #hero .wrap { gap: 34px; }
  .hero-phone { width: min(190px, 62%); }
}

@media (max-width: 520px) {
  #tease { padding-top: 112px; padding-bottom: 150px; }
  #tease .eyebrow { font-size: 42px; letter-spacing: .1em; }
  #tease h2 { font-size: 31px; line-height: 1.58; margin-top: 30px; }
  #tease .sub { margin-top: 52px; font-size: 15.5px; line-height: 2; max-width: 21em; }
}

@media (max-width: 520px) {
  #reveal { min-height: 132vh; padding-top: 180px; padding-bottom: 210px; }
  #reveal .true-name { margin-top: 92px; margin-bottom: 112px; min-height: 150px; }
  #reveal .true-name .fake-name { font-size: 40px; }
  #reveal .true-name .nm { font-size: 58px; }
}

/* Mobile responsive hardening v2 */
html, body { overflow-x: hidden; }
@media (max-width: 520px) {
  .topbar { top: 10px; left: 12px; right: 12px; height: 54px; padding: 8px 12px; border-radius: 999px; }
  .brand-name { font-size: 14px; }
  .topbar .ico { width: 30px; height: 30px; }
  .topbar .nav-cta { font-size: 12px; padding: 9px 12px; }
  section { scroll-margin-top: 74px; }
  .wrap { padding-left: 18px; padding-right: 18px; }

  #hero { padding: 104px 0 68px; min-height: auto; }
  #hero .wrap { gap: 24px; }
  .hero-badge { font-size: 12px; padding: 7px 13px; margin-bottom: 16px; }
  #hero h1 { font-size: 42px; line-height: 1.08; }
  #hero h1 .sm { font-size: .45em; margin-bottom: 5px; }
  #hero .lede { font-size: 14.5px; line-height: 1.85; margin-top: 18px; max-width: 24em; }
  .hero-cta { margin-top: 20px; gap: 10px; }
  .btn-cute { padding: 13px 20px; font-size: 14px; }
  .hero-note { font-size: 12px; color: rgba(156,87,112,.92); }
  .hero-phone { width: min(150px, 48vw); margin-top: 2px; }
  .hero-lock-hint { display: none; }
  .cute-deco { opacity: .38; transform: scale(.72); }

  #cute-features { padding: 70px 0 82px; }
  .sec-head { margin-bottom: 34px; }
  .sec-head h2 { font-size: 32px; line-height: 1.35; }
  .sec-head p { font-size: 14.5px; line-height: 1.8; max-width: 23em; margin-left: auto; margin-right: auto; }
  .cute-grid { gap: 18px; }
  .cute-card { padding: 22px 20px 24px; border-radius: 22px; }
  .cute-card p { font-size: 14px; line-height: 1.75; }
  .cute-showcase { margin-top: 42px; grid-template-columns: minmax(0, 170px); gap: 22px; }

  #tease { padding: 108px 0 132px; }
  #tease .eyebrow { font-size: 38px; letter-spacing: .1em; }
  #tease h2 { font-size: 28px; line-height: 1.62; margin-top: 28px; color: #fff; text-shadow: 0 3px 24px rgba(50,22,48,.72); }
  #tease .sub { margin-top: 48px; font-size: 15px; line-height: 2; color: rgba(255,255,255,.98); max-width: 20.5em; text-shadow: 0 2px 16px rgba(45,18,42,.78), 0 0 2px rgba(45,18,42,.62); }

  #lock { min-height: 100svh; padding: 88px 18px 72px; }
  .lock-scene.lock-scene-asset { width: min(320px, 88vw); }
  .passcode-img { max-height: 72svh; border-radius: 22px; filter: brightness(1.08) contrast(1.04); }

  #reveal { min-height: auto; padding: 118px 0 138px; }
  .reveal-bow { top: 18px; transform: translateX(-50%) scale(.78); opacity: .76; }
  #reveal .secret-en { font-size: 13px; letter-spacing: .1em; }
  #reveal h2 { font-size: 36px; line-height: 1.42; margin-top: 18px; }
  #reveal .reveal-sub { font-size: 14.8px; line-height: 2; margin-top: 24px; max-width: 23em; }
  #reveal .true-name { margin-top: 72px; margin-bottom: 80px; min-height: 142px; }
  #reveal .true-name .fake-name { font-size: 38px; }
  #reveal .true-name .lbl { font-size: 10px; letter-spacing: .38em; }
  #reveal .true-name .nm { font-size: 54px; gap: .13em; }

  #honmaru-features { padding: 32px 0 74px; }
  .hm-sec-head { margin-bottom: 48px; }
  .hm-sec-head h2 { font-size: 29px; line-height: 1.45; }
  .hm-feature, .hm-feature:nth-child(even) { gap: 24px; margin-bottom: 76px; }
  .hm-phone { width: min(210px, 62vw); }
  .hm-phone .glow { inset: -14% -18%; opacity: .8; }
  .hm-feature h3 { font-size: 38px; margin-top: 6px; }
  .hm-feature .romaji { font-size: 11px; letter-spacing: .2em; margin-bottom: 14px; }
  .hm-feature p { font-size: 14.8px; line-height: 1.9; color: rgba(244,228,236,.86); max-width: 23em; }
  .hm-feature .chips { gap: 8px; margin-top: 16px; }
  .hm-feature .chip { font-size: 12px; padding: 6px 11px; }

  #value { padding: 82px 0 88px; }
  #value .vhead { margin-bottom: 38px; }
  .value-row { gap: 14px; padding: 18px 16px; }
  .value-row .vn { font-size: 17px; min-width: 34px; }
  .value-row .vt { font-size: 16px; line-height: 1.65; }

  #faq { padding: 82px 0 86px; }
  .faq-q { font-size: 16px; line-height: 1.55; padding: 20px 0; }
  .faq-a { font-size: 14px; line-height: 1.85; }

  #cta { padding: 94px 0 44px; }
  #cta .icon-big { width: 82px; height: 82px; border-radius: 22px; }
  #cta h2 { font-size: 34px; }
  #cta p { font-size: 15px; line-height: 1.9; }
  .footer { margin-top: 58px; justify-content: center; text-align: center; }
}

/* Mobile readability pass v3 */
@media (max-width: 520px) {
  #tease {
    background:
      linear-gradient(180deg, rgba(249,224,234,.96) 0%, rgba(203,148,174,.94) 28%, rgba(103,62,93,.98) 68%, rgba(45,22,42,1) 100%);
    padding-top: 96px;
    padding-bottom: 112px;
  }
  #tease .eyebrow { color: #fff; text-shadow: 0 4px 22px rgba(42,18,40,.72); }
  #tease h2 {
    color: #fff;
    text-shadow: 0 3px 24px rgba(30,12,28,.92), 0 0 2px rgba(30,12,28,.72);
  }
  #tease .sub {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 3px 18px rgba(18,8,18,.95), 0 0 3px rgba(18,8,18,.9);
  }

  #reveal {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 108px;
  }
  .reveal-bow { top: 12px; transform: translateX(-50%) scale(.68); opacity: .62; }
  #reveal .secret-en { margin-top: 12px; }
  #reveal .true-name { margin-top: 50px; margin-bottom: 54px; min-height: 132px; }
  #reveal .reveal-sub { margin-top: 20px; }

  .hm-feature p { color: rgba(244,228,236,.94); }
  .hm-feature .chip { color: #ffd3e3; background: rgba(88,19,56,.62); }
}

/* Mobile final tightening v4 */
@media (max-width: 520px) {
  #tease .wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%; top: 50%;
    width: min(340px, 92vw); height: 520px;
    transform: translate(-50%, -45%);
    background: radial-gradient(circle, rgba(45,18,42,.42) 0%, rgba(45,18,42,.22) 42%, transparent 72%);
    filter: blur(2px);
    pointer-events: none;
  }
  #tease h2 { font-weight: 800; color: rgba(255,255,255,1); }
  #tease .sub { font-size: 15.5px; color: rgba(255,255,255,1); }

  #reveal { padding-top: 74px; padding-bottom: 82px; }
  #reveal h2 { font-size: 34px; line-height: 1.36; }
  #reveal .reveal-sub { font-size: 14.5px; line-height: 1.88; max-width: 22em; }
  #reveal .true-name { margin-top: 30px; margin-bottom: 34px; min-height: 118px; }
  #reveal .true-name .fake-name { font-size: 34px; }
  #reveal .true-name .nm { font-size: 50px; }

  .hm-phone { width: min(180px, 54vw); }
  .hm-feature p { font-size: 15.2px; line-height: 1.92; color: rgba(248,235,242,.96); }
  .hm-feature { margin-bottom: 66px; }
}

/* Mobile contrast correction v5 */
@media (max-width: 520px) {
  #tease {
    background:
      linear-gradient(180deg, #f7dce7 0%, #c58ba8 22%, #74415f 46%, #2c172b 78%, #130812 100%);
  }
  #tease .wrap::before {
    width: min(360px, 96vw); height: 620px;
    background: radial-gradient(circle, rgba(24,8,22,.72) 0%, rgba(24,8,22,.48) 48%, rgba(24,8,22,.12) 76%, transparent 100%);
  }
  #tease .eyebrow,
  #tease h2,
  #tease .sub {
    color: #fff !important;
    text-shadow: 0 3px 18px rgba(0,0,0,.95), 0 0 3px rgba(0,0,0,.9), 0 0 26px rgba(255,255,255,.12);
  }
  #tease .sub span { color: #ff9ac2 !important; text-shadow: 0 3px 18px rgba(0,0,0,.95), 0 0 16px rgba(255,120,165,.34); }
  .hm-feature .romaji { color: #ff6f8f; }
  .hm-num { opacity: .9; }
}

/* Hero CTA button removed: note-only layout */
.hero-cta-noteonly { margin-top: 22px; }
.hero-cta-noteonly .hero-note { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.62); border: 1px solid rgba(238,143,177,.28); color: rgba(156,87,112,.92); box-shadow: 0 10px 24px rgba(238,143,177,.16); }
@media (max-width: 520px) { .hero-cta-noteonly { margin-top: 18px; } .hero-cta-noteonly .hero-note { font-size: 12px; padding: 7px 12px; } }

/* Mobile: cute feature cards as horizontal slider */
@media (max-width: 520px) {
  .cute-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    max-width: none;
    margin: 0 -18px;
    padding: 4px 18px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    -webkit-overflow-scrolling: touch;
  }
  .cute-grid::-webkit-scrollbar { display: none; }
  .cute-grid { scrollbar-width: none; }
  .cute-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 220px;
    scroll-snap-align: center;
    padding: 28px 24px 30px;
    border-radius: 26px;
  }
  .cute-card h3 { font-size: 23px; margin-bottom: 12px; }
  .cute-card p { font-size: 14.5px; line-height: 1.9; }
  .cute-card .emojibox { width: 72px; height: 72px; border-radius: 22px; font-size: 32px; margin-bottom: 18px; }
}

/* Make mobile card slider affordance clearer */
@media (max-width: 520px) {
  .cute-grid { gap: 14px; }
  .cute-card { flex-basis: min(76vw, 296px); }
}

/* Mobile: cute phone screenshots as horizontal slider */
@media (max-width: 520px) {
  .cute-showcase {
    display: flex;
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 16px;
    margin: 42px -18px 0;
    padding: 4px 18px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cute-showcase::-webkit-scrollbar { display: none; }
  .cute-showcase .phone {
    flex: 0 0 min(72vw, 280px);
    width: auto;
    scroll-snap-align: center;
  }
}

/* Mobile lock image should be an entrance part, not full-screen artwork */
@media (max-width: 520px) {
  #lock {
    min-height: auto;
    padding: 86px 18px 92px;
  }
  .lock-scene.lock-scene-asset {
    width: min(245px, 64vw);
  }
  .passcode-img {
    max-height: 56svh;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.04) drop-shadow(0 22px 48px rgba(0,0,0,.48));
  }
  .passcode-unlock {
    filter: drop-shadow(0 24px 54px rgba(0,0,0,.56)) drop-shadow(0 0 28px rgba(206,53,83,.22));
  }
}

/* Cute screenshots cleanup: remove secret-room badge and reduce mobile image scale */
@media (max-width: 520px) {
  .hero-phone { width: min(124px, 38vw); }
  .cute-showcase .phone { flex-basis: min(56vw, 218px); }
}
@media (min-width: 521px) {
  .cute-showcase { grid-template-columns: repeat(2, minmax(0, 185px)); }
}

/* Cute screenshots phone-only transparent crops: smaller + no white frame */
@media (max-width: 520px) {
  .hero-phone { width: min(112px, 34vw); }
  .cute-showcase .phone { flex-basis: min(48vw, 188px); }
}
@media (min-width: 521px) {
  .hero-phone { width: min(200px, 68%); }
  .cute-showcase { grid-template-columns: repeat(2, minmax(0, 170px)); }
}

/* Cute mockups: use original pink canvas cropped, smaller on mobile */
.hero-phone .phone,
.cute-showcase .phone { filter: drop-shadow(0 18px 38px rgba(120,40,80,.16)); }
@media (max-width: 520px) {
  .hero-phone { width: min(118px, 36vw); }
  .cute-showcase .phone { flex-basis: min(44vw, 172px); }
  .cute-showcase { gap: 12px; }
}
@media (min-width: 521px) {
  .hero-phone { width: min(190px, 64%); }
  .cute-showcase { grid-template-columns: repeat(2, minmax(0, 160px)); }
}

/* Mobile controlled line breaks */
.sp-only { display: none; }
@media (max-width: 520px) {
  .sp-only { display: inline; }
  .sec-head h2 { font-size: 30px; line-height: 1.5; letter-spacing: .02em; }
  .sec-head p { line-height: 2; }
}

/* Generated feature-card artwork */
.cute-card .feature-art {
  width: 96px;
  height: 96px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 16px 34px rgba(238,143,177,.18);
}
.cute-card .feature-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.cute-card {
  position: relative;
  overflow: hidden;
}
.cute-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 8%, rgba(255,228,238,.55), transparent 42%);
  opacity: .85;
}
.cute-card > * { position: relative; z-index: 1; }
@media (max-width: 520px) {
  .cute-card .feature-art { width: 104px; height: 104px; margin-bottom: 20px; }
}

/* Tease section spacing / transition refinement v6 */
#tease {
  background: linear-gradient(180deg,
    #f9e0ea 0%,
    #f0cbd9 28%,
    #c994b0 43%,
    #7a4b70 58%,
    #3f223f 78%,
    #1a0c18 100%);
  padding: clamp(150px, 15vw, 220px) 0 clamp(170px, 16vw, 240px);
}
#tease .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tease .eyebrow {
  margin-top: clamp(18px, 3vw, 44px);
  font-size: clamp(42px, 5.4vw, 76px);
  color: rgba(255,255,255,.95);
  text-shadow: 0 5px 28px rgba(65,31,62,.62), 0 0 18px rgba(255,255,255,.16);
}
#tease h2 {
  margin-top: clamp(46px, 5vw, 72px);
  max-width: none;
  white-space: nowrap;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.55;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 30px rgba(33,13,31,.78), 0 0 2px rgba(33,13,31,.7);
}
#tease .sub {
  margin-top: clamp(74px, 7vw, 112px);
  max-width: 41ch;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 2.15;
  color: rgba(255,255,255,.98);
  text-shadow: 0 3px 22px rgba(16,6,16,.86), 0 0 2px rgba(16,6,16,.75);
}
@media (max-width: 520px) {
  #tease {
    background: linear-gradient(180deg,
      #f9e0ea 0%,
      #efc8d8 25%,
      #c98fac 41%,
      #79466b 57%,
      #351b35 78%,
      #130812 100%);
    padding: 132px 0 154px;
  }
  #tease .wrap::before {
    top: 58%;
    height: 660px;
    background: radial-gradient(circle, rgba(24,8,22,.58) 0%, rgba(24,8,22,.36) 50%, rgba(24,8,22,.08) 78%, transparent 100%);
  }
  #tease .eyebrow {
    margin-top: 10px;
    font-size: 40px;
    letter-spacing: .11em;
  }
  #tease h2 {
    margin-top: 50px;
    font-size: clamp(30px, 7.95vw, 32px);
    line-height: 1.62;
    letter-spacing: .01em;
    max-width: none;
    white-space: nowrap;
  }
  #tease .sub {
    margin-top: 84px;
    max-width: 21.5em;
    font-size: 15.5px;
    line-height: 2.12;
  }
}

/* Lock section: generated secret background + smaller passcode artwork */
#lock {
  background:
    linear-gradient(180deg, rgba(38,10,30,.34), rgba(8,3,8,.72)),
    url("assets/lock-secret-bg.png?v=20260605-0134") center / cover no-repeat,
    linear-gradient(180deg, #5E3F5A 0%, #34122B 24%, var(--ink2) 58%, var(--ink) 100%);
}
.lock-scene.lock-scene-asset { width: min(420px, 88vw); }
.passcode-img { max-height: 74vh; }
@media (max-width: 520px) {
  #lock {
    background-position: center;
    padding-top: 92px;
    padding-bottom: 104px;
  }
  .lock-scene.lock-scene-asset { width: min(218px, 58vw); }
  .passcode-img { max-height: 50svh; }
}

/* Reveal heading: keep the secret sentence on one line */
#reveal h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(34px, 4.6vw, 64px);
}
@media (max-width: 520px) {
  #reveal h2 {
    font-size: clamp(25px, 7vw, 28px);
    line-height: 1.45;
    letter-spacing: -.035em;
  }
}

/* Reveal heading mobile fit correction */
@media (max-width: 520px) {
  #reveal h2 {
    width: max-content;
    max-width: calc(100vw - 28px);
    font-size: clamp(22px, 6.15vw, 25px);
    letter-spacing: -.08em;
    transform: translateX(.02em);
  }
}

/* TRUE NAME label spacing refinement */
#reveal .true-name .lbl {
  letter-spacing: .78em;
  padding-left: .78em;
}
@media (max-width: 520px) {
  #reveal .true-name .lbl {
    letter-spacing: .64em;
    padding-left: .64em;
  }
}

/* Feature cards: align with Fuwa Memo app design */
.cute-card {
  border-radius: 34px;
  border: 0;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  box-shadow: 0 22px 54px rgba(203, 108, 148, .18);
  padding: 34px 30px 34px;
}
.cute-card::before {
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255,232,240,.72), transparent 48%);
}
.cute-card .feature-art {
  width: 116px;
  height: 116px;
  margin-bottom: 28px;
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(203,108,148,.22);
}
.cute-card .feature-art img {
  border-radius: 30px;
}
.cute-card h3 {
  font-family: var(--f-cute);
  font-size: clamp(26px, 3vw, 34px);
  color: #c85b87;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.cute-card p {
  color: rgba(116,73,82,.8);
  line-height: 1.9;
}
@media (max-width: 520px) {
  .cute-grid {
    gap: 18px;
    padding-top: 8px;
  }
  .cute-card {
    flex-basis: min(78vw, 304px);
    min-height: 292px;
    padding: 32px 24px 30px;
    border-radius: 32px;
  }
  .cute-card .feature-art {
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }
  .cute-card h3 {
    font-size: 29px;
    margin-bottom: 14px;
  }
  .cute-card p {
    font-size: 14px;
    line-height: 1.82;
  }
}

/* Fuwa card polish: keep all cards equally readable */
.cute-card { opacity: 1 !important; }
.cute-card h3,
.cute-card p { opacity: 1; }
@media (min-width: 901px) {
  #cute-features { padding-top: 110px; padding-bottom: 132px; }
  .cute-grid { align-items: stretch; }
}
@media (max-width: 520px) {
  .cute-card { flex-basis: min(74vw, 288px); }
}

/* Fuwa Memo cards: closer to in-app reference design */
#cute-features {
  background: linear-gradient(180deg, #ffe4ee 0%, #ffdce9 100%);
}
#cute-features .wrap {
  max-width: 1180px;
}
.cute-grid {
  gap: 32px;
}
.cute-card {
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 12px 34px rgba(198, 95, 136, .08);
  padding: 36px 28px 38px;
  min-height: 374px;
  justify-content: flex-start;
}
.cute-card::before {
  background: linear-gradient(180deg, rgba(255,246,249,.85), rgba(255,255,255,0) 44%);
}
.cute-card .feature-art {
  width: 124px;
  height: 124px;
  margin-bottom: 22px;
  border-radius: 31px;
  box-shadow: 0 10px 24px rgba(191, 98, 136, .15);
}
.cute-card .feature-art img {
  border-radius: 31px;
}
.cute-card h3 {
  font-size: clamp(30px, 3.1vw, 36px);
  color: #c95b87;
  margin-bottom: 18px;
  text-shadow: none;
}
.cute-card p {
  color: rgba(118, 72, 86, .72);
  font-size: 15px;
  line-height: 1.9;
  max-width: 18em;
}
@media (min-width: 901px) {
  .cute-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  #cute-features { padding-top: 92px; }
  .cute-grid {
    gap: 32px;
    padding-left: 18px;
    padding-right: 18px;
    scroll-padding-left: 18px;
  }
  .cute-card {
    flex-basis: min(82vw, 320px);
    min-height: 356px;
    padding: 34px 24px 34px;
    border-radius: 34px;
    box-shadow: 0 10px 28px rgba(198, 95, 136, .08);
  }
  .cute-card .feature-art {
    width: 118px;
    height: 118px;
    margin-bottom: 23px;
  }
  .cute-card h3 {
    font-size: 31px;
    margin-bottom: 16px;
  }
}

/* Layered design system: background image + UI overlay + CSS foreground depth */
#hero {
  position: relative;
  background:
    radial-gradient(90% 70% at 62% 42%, rgba(255,255,255,.92) 0%, rgba(255,240,246,.72) 38%, rgba(255,226,238,.42) 62%, transparent 78%),
    linear-gradient(180deg, #fff8f3 0%, #ffe6ef 100%);
}
#hero::before {
  content: "";
  position: absolute;
  inset: 5% 4% 4%;
  background: url("assets/cute-layer-bg.png?v=20260605-0134") center / cover no-repeat;
  opacity: .42;
  border-radius: 56px;
  filter: saturate(.95) contrast(.96);
  transform: translateY(10px) scale(.98);
  z-index: 0;
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 46%, rgba(255,255,255,.72), transparent 19%),
    radial-gradient(circle at 74% 44%, rgba(246,148,184,.22), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.84) 0%, transparent 46%, rgba(255,229,239,.42) 100%);
  z-index: 1;
  pointer-events: none;
}
#hero .wrap,
#hero .cute-deco { position: relative; z-index: 2; }
.hero-phone {
  isolation: isolate;
  width: min(236px, 76%);
}
.hero-phone::before {
  content: "";
  position: absolute;
  inset: -12% -28%;
  z-index: 0;
  border-radius: 48px;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,.95) 0%, rgba(255,242,248,.78) 36%, rgba(248,180,205,.34) 62%, transparent 74%);
  filter: blur(1px);
  box-shadow: 0 30px 88px rgba(218,101,150,.20);
}
.hero-phone::after {
  content: "";
  position: absolute;
  inset: -18% -24%;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 72%, rgba(255,255,255,.72) 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 0 43%, rgba(255,255,255,.28) 45%, transparent 53%);
  opacity: .72;
  mix-blend-mode: screen;
}
.hero-phone .blob { z-index: 1; }
.hero-phone .phone {
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(122,57,88,.22)) drop-shadow(0 0 22px rgba(255,255,255,.72));
}

#lock {
  isolation: isolate;
  background: linear-gradient(180deg, #4e273e 0%, #2c1028 36%, #120812 100%);
}
#lock::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 0;
  background: url("assets/lock-secret-bg.png?v=20260605-0134") center / cover no-repeat;
  opacity: .82;
  filter: saturate(1.08) contrast(1.04) brightness(.92);
  transform: scale(1.03);
  pointer-events: none;
}
#lock::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255,210,226,.18), transparent 24%),
    radial-gradient(ellipse at 50% 52%, transparent 0%, transparent 28%, rgba(8,2,8,.36) 72%, rgba(8,2,8,.78) 100%),
    linear-gradient(115deg, transparent 0 42%, rgba(255,185,213,.12) 47%, transparent 56%);
  mix-blend-mode: screen;
}
#lock .lock-smoke { z-index: 1; }
#lock .lock-scene.lock-scene-asset { z-index: 3; }
#lock .passcode-unlock {
  filter: drop-shadow(0 40px 92px rgba(0,0,0,.72)) drop-shadow(0 0 46px rgba(241,84,111,.24));
}
#lock .passcode-img {
  box-shadow: 0 0 0 1px rgba(255,180,210,.14), 0 28px 76px rgba(0,0,0,.42);
}
@media (max-width: 520px) {
  #hero::before {
    inset: 7% -22% 8%;
    opacity: .38;
    border-radius: 0;
    background-position: center;
  }
  #hero::after {
    background:
      radial-gradient(circle at 50% 58%, rgba(255,255,255,.72), transparent 26%),
      linear-gradient(180deg, rgba(255,255,255,.88), transparent 48%, rgba(255,225,238,.46));
  }
  .hero-phone { width: min(156px, 48vw); }
  .hero-phone::before { inset: -15% -34%; }
  #lock::before { opacity: .86; background-position: center; }
  #lock::after {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(255,210,226,.16), transparent 27%),
      radial-gradient(ellipse at 50% 50%, transparent 0%, transparent 34%, rgba(9,2,9,.38) 76%, rgba(9,2,9,.82) 100%);
  }
}

/* Layer polish: remove flat screenshot feel, strengthen front/back depth */
.hero-phone .phone img { border-radius: 34px; }
.hero-phone .phone {
  filter: drop-shadow(0 30px 58px rgba(118,46,82,.28)) drop-shadow(0 0 34px rgba(255,255,255,.92)) drop-shadow(0 0 26px rgba(246,148,184,.18));
}
#lock .passcode-unlock { position: relative; isolation: isolate; }
#lock .passcode-unlock::before {
  content: ""; position: absolute; inset: -10% -18%; z-index: -1; border-radius: 42px;
  background: radial-gradient(ellipse at 50% 44%, rgba(255,164,205,.22), transparent 34%), radial-gradient(ellipse at 50% 56%, rgba(96,31,92,.62), transparent 72%);
  filter: blur(16px);
}
#lock .passcode-unlock::after {
  content: ""; position: absolute; inset: -4% -8%; z-index: 2; pointer-events: none; border-radius: 38px;
  background: radial-gradient(circle at 82% 20%, rgba(255,186,218,.7) 0 2px, transparent 3px), radial-gradient(circle at 18% 76%, rgba(255,151,201,.52) 0 2px, transparent 3px), linear-gradient(116deg, transparent 0 38%, rgba(255,202,226,.13) 45%, transparent 53%);
  mix-blend-mode: screen; opacity: .85;
}
#lock .passcode-img {
  position: relative; z-index: 1;
  box-shadow: 0 0 0 1px rgba(255,180,210,.16), 0 34px 90px rgba(0,0,0,.56), 0 0 42px rgba(170,57,127,.22);
}
@media (max-width: 520px) {
  .hero-phone .phone img { border-radius: 26px; }
  #lock .passcode-unlock::before { inset: -11% -24%; }
}

/* Layer polish v2: make cute background layer feel airy, not rectangular */
#hero::before {
  inset: 3% -6% 2% 38%;
  opacity: .34;
  border-radius: 999px;
  transform: translateY(12px) scale(1.08) rotate(-2deg);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 48%, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 48%, transparent 74%);
}
#hero::after {
  background:
    radial-gradient(circle at 72% 46%, rgba(255,255,255,.68), transparent 18%),
    radial-gradient(circle at 74% 44%, rgba(246,148,184,.20), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, transparent 54%, rgba(255,229,239,.30) 100%);
}
@media (max-width: 520px) {
  #hero::before {
    inset: 18% -36% 5% 8%;
    opacity: .30;
    border-radius: 999px;
    transform: translateY(4px) scale(1.05);
  }
}

/* Correct layered background set: existing background + transparent foreground stage props */
#hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% -10%, #FFFFFF 0%, var(--cream) 40%, var(--cream2) 100%);
  overflow: hidden;
  isolation: isolate;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.58), transparent 36%),
    linear-gradient(90deg, rgba(255,255,255,.62), transparent 34%, transparent 66%, rgba(255,232,241,.42));
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: url("assets/fuwa-foreground-set.png?v=20260605-0134") center / min(980px, 118vw) auto no-repeat;
  opacity: .96;
  filter: drop-shadow(0 28px 36px rgba(223,115,158,.14));
}
#hero .wrap,
#hero .cute-deco { position: relative; z-index: 3; }
#hero .hero-copy { position: relative; z-index: 5; }
#hero .hero-phone { position: relative; z-index: 3; isolation: isolate; width: min(220px, 72%); }
#hero .hero-phone::before {
  content: "";
  position: absolute;
  inset: -10% -22%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.82), rgba(255,226,239,.35) 52%, transparent 74%);
  filter: blur(2px);
}
#hero .hero-phone::after { display: none; }
#hero .hero-phone .phone { position: relative; z-index: 2; filter: drop-shadow(0 24px 48px rgba(122,57,88,.22)); }

#lock {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(38,10,30,.34), rgba(8,3,8,.72)),
    url("assets/lock-secret-bg.png?v=20260605-0134") center / cover no-repeat,
    linear-gradient(180deg, #5E3F5A 0%, #34122B 24%, var(--ink2) 58%, var(--ink) 100%);
}
#lock::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 48%, rgba(255,201,223,.16), transparent 28%), radial-gradient(ellipse at 50% 50%, transparent 0 42%, rgba(8,2,8,.46) 86%);
}
#lock::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: url("assets/secret-foreground-set.png?v=20260605-0134") center / min(880px, 118vw) auto no-repeat;
  opacity: .96;
  filter: drop-shadow(0 34px 46px rgba(0,0,0,.34));
  mix-blend-mode: normal;
}
#lock .lock-smoke { z-index: 2; }
#lock .lock-scene.lock-scene-asset { position: relative; z-index: 3; width: min(420px, 88vw); }
#lock .passcode-unlock::before,
#lock .passcode-unlock::after { display: none; }
#lock .passcode-img { box-shadow: 0 28px 80px rgba(0,0,0,.5); }
@media (max-width: 520px) {
  #hero::after { background-size: 132vw auto; background-position: center 52%; }
  #hero .hero-phone { width: min(150px, 46vw); }
  #lock::after { background-size: 130vw auto; background-position: center 50%; }
  #lock .lock-scene.lock-scene-asset { width: min(218px, 58vw); }
}

/* Stage foreground fit: keep cute props outside the center/phone area */
#hero::after {
  background-size: min(1320px, 132vw) auto;
  background-position: center 50%;
}
@media (max-width: 520px) {
  #hero::after {
    background-size: 150vw auto;
    background-position: center 52%;
  }
}

/* Tease added tap hint */
#tease .tap-hint {
  display: inline-block;
  color: rgba(255,214,229,.96);
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 3px 18px rgba(0,0,0,.9), 0 0 16px rgba(255,120,165,.28);
}
#reveal .reveal-sub {
  max-width: 46em;
}
@media (max-width: 520px) {
  #tease .tap-hint {
    font-size: 14.5px;
    letter-spacing: .02em;
  }
  #reveal .reveal-sub {
    max-width: 23.5em;
  }
}

/* Reveal heading longer copy mobile fit */
@media (max-width: 520px) {
  #reveal h2 {
    font-size: clamp(20px, 5.45vw, 23px);
    letter-spacing: -.105em;
    max-width: calc(100vw - 34px);
  }
}

/* Tease eyebrow alignment: center BUT, attach dots as side ornament */
#tease .eyebrow {
  position: relative;
  display: inline-block;
  width: max-content;
  letter-spacing: .18em;
  padding-left: .18em;
  text-transform: uppercase;
}
#tease .eyebrow .tease-but {
  display: inline-block;
}
#tease .eyebrow .tease-dots {
  position: absolute;
  right: calc(100% + .18em);
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: .16em;
  padding-left: .16em;
  opacity: .98;
}
@media (max-width: 520px) {
  #tease .eyebrow {
    letter-spacing: .16em;
    padding-left: .16em;
  }
  #tease .eyebrow .tease-dots {
    right: calc(100% + .14em);
    letter-spacing: .12em;
    padding-left: .12em;
  }
}

/* Tease eyebrow optical correction: remove decorative spacing from centering box */
#tease .eyebrow {
  padding-left: 0;
}
#tease .eyebrow .tease-but {
  margin-right: -.18em;
}
#tease .eyebrow .tease-dots {
  padding-left: 0;
}
@media (max-width: 520px) {
  #tease .eyebrow .tease-but {
    margin-right: -.16em;
  }
}

/* Mobile dark feature stage layers: make decoration visible like PC */
@media (max-width: 520px) {
  #honmaru-features {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 8%, rgba(80,24,66,.34), transparent 34%),
      linear-gradient(180deg, #10050d 0%, #160712 44%, #0b0308 100%);
  }
  .hm-feature,
  .hm-feature:nth-child(even) {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 30px;
    margin-bottom: 88px;
  }
  .hm-feature::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -18px -46px -34px;
    pointer-events: none;
    background:
      url("assets/secret-foreground-set.png?v=20260605-0134") center 44% / 138vw auto no-repeat,
      radial-gradient(ellipse at 50% 76%, rgba(196,52,104,.28), transparent 46%),
      radial-gradient(circle at 18% 38%, rgba(255,120,165,.16), transparent 22%),
      radial-gradient(circle at 82% 42%, rgba(140,71,176,.18), transparent 24%);
    opacity: .76;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,.36));
  }
  .hm-feature::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 132px;
    width: min(340px, 96vw);
    height: 380px;
    transform: translateX(-50%);
    pointer-events: none;
    background:
      radial-gradient(ellipse at 50% 78%, rgba(255,78,130,.28), transparent 38%),
      radial-gradient(ellipse at 50% 82%, rgba(0,0,0,.58), transparent 54%),
      linear-gradient(115deg, transparent 0 38%, rgba(255,180,210,.12) 45%, transparent 54%);
    filter: blur(.3px);
    mix-blend-mode: screen;
  }
  .hm-feature:nth-child(2)::before { background-position: center 47%, center, center, center; opacity: .82; }
  .hm-feature:nth-child(3)::before { background-position: center 50%, center, center, center; opacity: .72; transform: scaleX(-1); }
  .hm-feature:nth-child(4)::before { background-position: center 42%, center, center, center; opacity: .78; }
  .hm-feature:nth-child(5)::before { background-position: center 49%, center, center, center; opacity: .82; transform: scaleX(-1); }

  .hm-feature .hm-copy,
  .hm-feature .hm-phone {
    position: relative;
    z-index: 2;
  }
  .hm-phone {
    width: min(205px, 62vw);
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .hm-phone::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -20% -34% -18%;
    pointer-events: none;
    border-radius: 999px;
    background:
      radial-gradient(ellipse at 50% 56%, rgba(255,83,142,.28), transparent 38%),
      radial-gradient(ellipse at 50% 64%, rgba(97,28,85,.66), transparent 72%);
    filter: blur(12px);
  }
  .hm-phone::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: -18% -28%;
    pointer-events: none;
    background:
      radial-gradient(circle at 16% 28%, rgba(255,190,112,.86) 0 2px, transparent 3px),
      radial-gradient(circle at 84% 24%, rgba(255,112,168,.78) 0 2px, transparent 3px),
      radial-gradient(circle at 14% 78%, rgba(167,92,216,.58) 0 2px, transparent 3px),
      radial-gradient(circle at 86% 76%, rgba(255,214,147,.64) 0 2px, transparent 3px),
      linear-gradient(105deg, transparent 0 40%, rgba(255,170,205,.16) 46%, transparent 54%);
    opacity: .82;
    mix-blend-mode: screen;
  }
  .hm-phone .glow {
    inset: -26% -32%;
    opacity: 1;
    background:
      radial-gradient(circle, rgba(241,84,111,.42), transparent 58%),
      radial-gradient(ellipse at 50% 76%, rgba(255,92,150,.26), transparent 54%);
    filter: blur(18px);
  }
  .hm-phone .phone {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 34px 66px rgba(0,0,0,.78)) drop-shadow(0 0 26px rgba(241,84,111,.24));
  }
}

/* Mobile feature 04 clarity correction */
@media (max-width: 520px) {
  .hm-feature:nth-child(5)::before {
    opacity: .62;
  }
  .hm-feature:nth-child(5)::after {
    background:
      radial-gradient(ellipse at 50% 78%, rgba(255,78,130,.18), transparent 36%),
      radial-gradient(ellipse at 50% 82%, rgba(0,0,0,.34), transparent 52%),
      linear-gradient(115deg, transparent 0 40%, rgba(255,180,210,.08) 46%, transparent 54%);
  }
  .hm-feature:nth-child(5) .hm-phone .glow {
    opacity: .78;
  }
}

/* Mobile orphan-line fix: avoid 1-2 character second lines */
@media (max-width: 520px) {
  #value .vhead h2,
  #cta h2 {
    white-space: nowrap;
    letter-spacing: -.06em;
  }
  #value .vhead h2 {
    font-size: clamp(27px, 7.1vw, 29px);
  }
  #cta h2 {
    font-size: clamp(31px, 8.6vw, 35px);
  }
  .value-row {
    padding-left: 13px;
    padding-right: 13px;
    gap: 10px;
  }
  .value-row .vn {
    min-width: 29px;
  }
  .value-row .vt {
    white-space: nowrap;
    font-size: clamp(14.2px, 3.9vw, 15.4px);
    letter-spacing: -.045em;
  }
  #cta .micro {
    white-space: nowrap;
    font-size: clamp(10.4px, 2.82vw, 11.2px);
    letter-spacing: -.02em;
  }
}

/* Mobile CTA microcopy: keep one line but improve readability */
@media (max-width: 520px) {
  #cta .micro {
    display: block;
    width: 100%;
    max-width: none;
    font-size: clamp(11px, 3.02vw, 11.8px);
    letter-spacing: -.055em;
    line-height: 1.6;
    text-align: center;
  }
}

/* Tease pacing: use vertical space and reveal the thought slowly */
#tease {
  min-height: 118vh;
}
#tease .tease-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(54px, 6vw, 96px);
}
#tease .tease-story p {
  margin: 0;
}
#tease .tease-line {
  max-width: 38ch;
}
#tease .tease-question {
  font-size: 1.12em;
  color: rgba(255,245,250,.98);
  letter-spacing: .06em;
}
#tease .tap-hint {
  margin-top: clamp(8px, 2vw, 24px);
}
@media (max-width: 520px) {
  #tease {
    min-height: 148svh;
    padding-top: 132px;
    padding-bottom: 188px;
  }
  #tease h2 {
    margin-top: 58px;
  }
  #tease .sub.tease-story {
    margin-top: 112px;
    gap: 76px;
    max-width: 22em;
  }
  #tease .tease-line {
    line-height: 2.08;
  }
  #tease .tease-question {
    font-size: 17px;
    line-height: 1.8;
  }
  #tease .tap-hint {
    margin-top: 10px;
    line-height: 1.9;
  }
}

/* Tease pacing final: keep next section from entering too soon */
@media (min-width: 521px) {
  #tease {
    min-height: 136vh;
    padding-bottom: clamp(240px, 22vw, 340px);
  }
}
@media (max-width: 520px) {
  #tease {
    padding-bottom: 220px;
  }
}

/* Tease pacing desktop extra outro space */
@media (min-width: 521px) {
  #tease {
    min-height: 158vh;
    padding-bottom: clamp(360px, 30vw, 520px);
  }
}
@media (max-width: 520px) {
  #tease {
    padding-top: 148px;
  }
}

/* Move tap hint onto passcode screen, above password */
.lock-scene.lock-scene-asset {
  position: relative;
}
.lock-tap-hint {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 13.5%;
  transform: translateX(-50%);
  width: 86%;
  margin: 0;
  text-align: center;
  font-family: var(--f-min);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.65;
  letter-spacing: .035em;
  color: rgba(255,224,236,.96);
  text-shadow: 0 3px 16px rgba(0,0,0,.95), 0 0 14px rgba(255,104,160,.28);
  pointer-events: none;
}
@media (max-width: 520px) {
  .lock-tap-hint {
    top: 13%;
    width: 90%;
    font-size: 11.5px;
    line-height: 1.55;
    letter-spacing: .01em;
  }
}

/* Lock tap hint vertical adjustment: place above password area */
.lock-tap-hint { top: 20%; }
@media (max-width: 520px) {
  .lock-tap-hint { top: 20%; }
}

/* Feature card 01: use generated cute artwork, reduce plain white-box feel */
.cute-card.c1 {
  background:
    radial-gradient(circle at 50% 10%, rgba(255,226,238,.96), transparent 42%),
    linear-gradient(180deg, #fffdfc 0%, #fff1f7 100%);
  box-shadow: 0 16px 38px rgba(205,96,142,.12);
}
.cute-card.c1::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,186,213,.34) 0 7px, transparent 8px),
    radial-gradient(circle at 84% 22%, rgba(255,216,142,.30) 0 6px, transparent 7px),
    radial-gradient(circle at 20% 84%, rgba(186,230,213,.24) 0 7px, transparent 8px),
    radial-gradient(circle at 78% 82%, rgba(255,186,213,.26) 0 5px, transparent 6px);
  opacity: 1;
}
.cute-card.c1 .feature-art {
  width: 136px;
  height: 136px;
  border-radius: 36px;
  box-shadow: 0 14px 32px rgba(205,96,142,.14);
}
.cute-card.c1 .feature-art img {
  border-radius: 36px;
}
@media (max-width: 520px) {
  .cute-card.c1 .feature-art {
    width: 132px;
    height: 132px;
  }
}

/* Per-feature decoration layers: each dark feature gets its own stage props */
.hm-feature:nth-child(2) { --feature-deco: url("assets/deco-mitsudan.png?v=20260605-0134"); }
.hm-feature:nth-child(3) { --feature-deco: url("assets/deco-otakiage.png?v=20260605-0134"); }
.hm-feature:nth-child(4) { --feature-deco: url("assets/deco-calendar.png?v=20260605-0134"); }
.hm-feature:nth-child(5) { --feature-deco: url("assets/deco-doll.png?v=20260605-0134"); }

@media (min-width: 521px) {
  #honmaru-features .hm-feature {
    position: relative;
    isolation: isolate;
  }
  #honmaru-features .hm-feature::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -58px -92px -62px;
    pointer-events: none;
    background: var(--feature-deco) center / min(760px, 64vw) auto no-repeat;
    opacity: .34;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,.32));
  }
  #honmaru-features .hm-feature:nth-child(even)::before {
    background-position: 18% 50%;
  }
  #honmaru-features .hm-feature:nth-child(odd)::before {
    background-position: 82% 50%;
  }
  #honmaru-features .hm-feature > * {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 520px) {
  .hm-feature::before {
    background:
      var(--feature-deco) center 46% / 142vw auto no-repeat,
      radial-gradient(ellipse at 50% 76%, rgba(196,52,104,.22), transparent 46%),
      radial-gradient(circle at 18% 38%, rgba(255,120,165,.12), transparent 22%),
      radial-gradient(circle at 82% 42%, rgba(140,71,176,.14), transparent 24%) !important;
    opacity: .82;
  }
  .hm-feature:nth-child(2)::before { background-position: center 45%, center, center, center !important; opacity: .76; }
  .hm-feature:nth-child(3)::before { background-position: center 46%, center, center, center !important; opacity: .86; transform: none; }
  .hm-feature:nth-child(4)::before { background-position: center 48%, center, center, center !important; opacity: .80; transform: none; }
  .hm-feature:nth-child(5)::before { background-position: center 47%, center, center, center !important; opacity: .78; transform: none; }
}

/* Lock tap hint: place just above the passcode image, not over it */
.lock-scene.lock-scene-asset {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lock-tap-hint {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  z-index: 6;
  width: min(100%, 34em);
  margin: 0 0 18px;
  padding: 0 4px;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 520px) {
  .lock-tap-hint {
    width: min(92vw, 26em);
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Lock tap hint readability */
@media (max-width: 520px) {
  .lock-tap-hint {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/* Cute phone clarity + mobile bear peek layer */
.hero-phone,
.cute-showcase .phone {
  overflow: visible;
}
.hero-phone .phone img,
.cute-showcase .phone img {
  image-rendering: auto;
  border-radius: 34px;
}
.hero-phone .phone {
  filter: drop-shadow(0 26px 54px rgba(122,57,88,.24));
}
.hero-phone .phone::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -42px;
  top: 20%;
  width: 112px;
  height: 176px;
  background: url("assets/bear-peek.png?v=20260605-0134") right center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(214,110,150,.20));
  pointer-events: none;
}
@media (min-width: 521px) {
  .hero-phone .phone::after {
    right: -58px;
    top: 18%;
    width: 148px;
    height: 234px;
  }
}
@media (max-width: 520px) {
  .hero-phone {
    width: min(168px, 52vw);
  }
  .hero-phone .phone::after {
    right: -44px;
    top: 18%;
    width: 104px;
    height: 164px;
    z-index: -1;
  }
  .hero-phone .phone img,
  .cute-showcase .phone img {
    border-radius: 28px;
  }
}

/* Cute showcase alignment: keep boundary between two phones on center axis */
@media (max-width: 520px) {
  .cute-showcase {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, min(43vw, 172px))) !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 46px 0 0 !important;
    padding: 0 0 18px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
  .cute-showcase .phone {
    width: 100% !important;
    flex: initial !important;
    flex-basis: auto !important;
  }
}

/* Tease mobile frame + orphan character fix */
@media (max-width: 520px) {
  #tease .wrap::before {
    width: 100vw !important;
    height: 760px !important;
    left: 50% !important;
    border-radius: 0 !important;
    background:
      radial-gradient(ellipse at 50% 45%, rgba(24,8,22,.70) 0%, rgba(24,8,22,.54) 45%, rgba(24,8,22,.18) 74%, transparent 100%) !important;
  }
  #tease .sub.tease-story {
    max-width: calc(100vw - 22px);
    width: calc(100vw - 22px);
    padding-left: 0;
    padding-right: 0;
  }
  #tease .tease-line {
    max-width: none;
    width: 100%;
    font-size: clamp(13.9px, 3.75vw, 14.7px);
    line-height: 2.15;
    letter-spacing: -.08em;
  }
  #tease .tease-line .nowrap-line {
    white-space: nowrap;
    display: inline-block;
  }
}

/* Tease PC top breathing room */
@media (min-width: 521px) {
  #tease {
    padding-top: clamp(180px, 17vw, 260px);
  }
}

/* Tease top safety: prevent BUT from touching viewport edge */
#tease .eyebrow {
  margin-top: clamp(48px, 5vw, 76px);
}
@media (max-width: 520px) {
  #tease .eyebrow {
    margin-top: 42px;
  }
}

/* Tease question: center it in the empty dark screen */
#tease .tease-question {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  width: 100%;
}
#tease .tease-question br {
  display: none;
}
@media (max-width: 520px) {
  #tease .tease-question {
    min-height: 92svh;
    font-size: 17px;
  }
}

/* Tease question screen: put the question in the center of its own dark viewport */
#tease .tease-question {
  display: grid !important;
  place-items: center !important;
  min-height: 100vh !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255,245,250,.98) !important;
  text-align: center !important;
}
#tease .tease-question .question-text {
  display: block;
  line-height: 1.8;
  text-shadow: 0 3px 18px rgba(0,0,0,.95), 0 0 18px rgba(255,190,220,.18);
}
@media (max-width: 520px) {
  #tease .tease-question {
    min-height: 100svh !important;
  }
  #tease .tease-question .question-text {
    font-size: 17px;
  }
}

/* Optical center correction for question text */
#tease .tease-question .question-text {
  transform: translateY(-26vh);
}
@media (max-width: 520px) {
  #tease .tease-question .question-text {
    transform: translateY(-20vh);
  }
}

/* Question text contrast */
#tease .tease-question .question-text {
  color: rgba(255,255,255,.98);
  text-shadow: 0 4px 22px rgba(0,0,0,.98), 0 0 24px rgba(255,205,228,.26);
  font-weight: 800;
}

/* Question text final size */
#tease .tease-question .question-text {
  font-size: clamp(18px, 1.65vw, 24px);
}
@media (max-width: 520px) {
  #tease .tease-question .question-text {
    font-size: 18px;
  }
}

/* TRUE NAME / MUTE spacing request: 10-line breathing room */
#reveal .true-name {
  margin-top: calc(clamp(96px, 15vh, 170px) + 12.5rem) !important;
  margin-bottom: calc(clamp(96px, 13vh, 150px) + 12.5rem) !important;
}
@media (max-width: 520px) {
  #reveal .true-name {
    margin-top: calc(50px + 10.5rem) !important;
    margin-bottom: calc(54px + 10.5rem) !important;
  }
}

/* CTA copy orphan fix: keep 「ている。」 on the same line */
#cta .cta-nowrap {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 520px) {
  #cta p {
    max-width: calc(100vw - 20px);
    font-size: clamp(13.4px, 3.55vw, 15px);
    letter-spacing: -.08em;
  }
}

/* Cute hero: no baked phone frame, bear peeks from the screen edge */
.hero-phone .phone {
  filter: drop-shadow(0 22px 44px rgba(238,143,177,.22)) !important;
}
.hero-phone .phone img {
  border-radius: 30px !important;
}
.hero-phone .phone::after {
  right: -50px !important;
  top: 17% !important;
  z-index: -1 !important;
}
@media (min-width: 521px) {
  .hero-phone .phone::after {
    right: -66px !important;
    top: 17% !important;
  }
}
@media (max-width: 520px) {
  .hero-phone .phone::after {
    right: -46px !important;
    top: 16% !important;
  }
}

/* MUTE bottom spacing: reduce from 10 lines to about 3 lines */
#reveal .true-name {
  margin-bottom: calc(clamp(96px, 13vh, 150px) + 3.75rem) !important;
}
@media (max-width: 520px) {
  #reveal .true-name {
    margin-bottom: calc(54px + 3.15rem) !important;
  }
}

/* Mobile dark feature readability: keep props away from copy */
@media (max-width: 520px) {
  .hm-feature::before {
    background-size: 126vw auto, auto, auto, auto !important;
    background-position: center 58%, center, center, center !important;
    opacity: .58 !important;
  }
  .hm-feature:nth-child(2)::before,
  .hm-feature:nth-child(3)::before,
  .hm-feature:nth-child(4)::before,
  .hm-feature:nth-child(5)::before {
    background-position: center 60%, center, center, center !important;
    opacity: .56 !important;
  }
  .hm-feature .hm-copy {
    position: relative;
    z-index: 4;
    padding: 10px 14px 12px;
    border-radius: 24px;
    background: radial-gradient(ellipse at 50% 50%, rgba(12,3,10,.78) 0%, rgba(12,3,10,.52) 56%, rgba(12,3,10,0) 100%);
    text-shadow: 0 3px 18px rgba(0,0,0,.98), 0 0 12px rgba(0,0,0,.72);
  }
}

/* Mobile calendar block: lift copy contrast after decoration shift */
@media (max-width: 520px) {
  .hm-feature:nth-child(4) .hm-copy {
    background: radial-gradient(ellipse at 50% 50%, rgba(12,3,10,.86) 0%, rgba(12,3,10,.62) 58%, rgba(12,3,10,0) 100%);
  }
  .hm-feature:nth-child(4) .hm-copy p {
    color: rgba(255,244,249,.90);
  }
}

/* Honmaru heading mobile: keep 「吐いて、焚き上げて、浄化。」 on one line */
@media (max-width: 520px) {
  #honmaru-features .hm-sec-head h2 {
    white-space: nowrap;
    font-size: clamp(22px, 6.15vw, 26px) !important;
    letter-spacing: -.09em;
    line-height: 1.35;
    max-width: calc(100vw - 18px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* Cute-to-dark bridge copy before BUT */
.cute-bridge {
  margin: clamp(34px, 6vw, 64px) auto 0;
  max-width: 36em;
  text-align: center;
  font-family: var(--f-min);
  color: rgba(121, 72, 92, .82);
  line-height: 2.05;
  letter-spacing: .04em;
  font-size: clamp(15px, 1.55vw, 18px);
}
.cute-bridge p {
  margin: 0;
}
.cute-bridge p + p {
  margin-top: .35em;
}
.cute-bridge p:last-child {
  margin-top: .65em;
  color: rgba(94, 47, 70, .90);
}
@media (max-width: 520px) {
  .cute-bridge {
    margin-top: 30px;
    max-width: calc(100vw - 34px);
    font-size: 14px;
    line-height: 1.95;
    letter-spacing: .01em;
  }
  .cute-bridge p + p {
    margin-top: .28em;
  }
}

/* Cute bridge readability polish */
.cute-bridge {
  color: rgba(96, 52, 72, .92);
}
.cute-bridge p:last-child {
  color: rgba(72, 35, 55, .96);
}
@media (max-width: 520px) {
  .cute-bridge {
    color: rgba(91, 48, 69, .95);
  }
}

/* Cute bridge final contrast */
.cute-bridge {
  color: rgba(78, 39, 61, .96) !important;
}
.cute-bridge p:last-child {
  color: rgba(55, 24, 43, .98) !important;
}

/* Cute bridge final final contrast */
.cute-bridge {
  color: #3b1c2d !important;
}
.cute-bridge p:last-child {
  color: #2d1322 !important;
}

/* Cute bridge weight for visibility */
.cute-bridge {
  color: #24101b !important;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}
.cute-bridge p:last-child {
  color: #1b0a14 !important;
}

/* Honmaru preview carousel before reveal */
#honmaru-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) 0 clamp(80px, 10vw, 132px);
  background:
    radial-gradient(ellipse at 50% 18%, rgba(74, 18, 58, .42), transparent 40%),
    radial-gradient(ellipse at 50% 72%, rgba(206, 53, 83, .18), transparent 48%),
    linear-gradient(180deg, #080206 0%, #120610 46%, #0b0308 100%);
  color: #f7e9ef;
  text-align: center;
}
#honmaru-preview .wrap {
  position: relative;
  z-index: 1;
}
.preview-head .eyebrow {
  color: var(--gold);
  letter-spacing: .24em;
}
.preview-head h2 {
  margin: 14px auto 0;
  font-family: var(--f-min);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.42;
  color: #f7e9ef;
  text-shadow: 0 8px 36px rgba(0,0,0,.62);
}
.preview-scroll {
  margin: clamp(38px, 5vw, 62px) calc(50% - 50vw) 0;
  padding: 8px max(24px, calc((100vw - 1120px) / 2)) 22px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: clamp(18px, 3vw, 34px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(206,53,83,.42) rgba(255,255,255,.06);
}
.preview-scroll::-webkit-scrollbar { height: 7px; }
.preview-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 99px; }
.preview-scroll::-webkit-scrollbar-thumb { background: rgba(206,53,83,.45); border-radius: 99px; }
.preview-phone {
  scroll-snap-align: center;
  position: relative;
  width: 100%;
  filter: drop-shadow(0 26px 48px rgba(0,0,0,.56));
}
.preview-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.preview-words {
  margin: clamp(36px, 5vw, 60px) auto 0;
  max-width: 44em;
  font-family: var(--f-min);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.05;
  letter-spacing: .04em;
  color: rgba(247,233,239,.84);
  text-shadow: 0 4px 22px rgba(0,0,0,.80);
}
.preview-words p { margin: 0; }
.preview-words p + p { margin-top: .42em; }
.preview-words p:last-child {
  color: rgba(255,244,249,.94);
}
@media (max-width: 520px) {
  #honmaru-preview {
    padding: 76px 0 78px;
  }
  .preview-head h2 {
    max-width: calc(100vw - 40px);
    font-size: 25px;
  }
  .preview-scroll {
    margin-top: 34px;
    grid-auto-columns: minmax(138px, 43vw);
    gap: 16px;
    padding: 4px 22px 20px;
  }
  .preview-phone img {
    border-radius: 24px;
  }
  .preview-words {
    margin-top: 34px;
    max-width: calc(100vw - 36px);
    font-size: 14px;
    line-height: 1.92;
    letter-spacing: .01em;
  }
}

/* Hero bridge: place app explanation directly under the first phone */
#hero .hero-bridge {
  grid-column: 1 / -1;
  margin-top: clamp(26px, 4vw, 46px);
  max-width: 40em;
}
@media (max-width: 720px) {
  #hero .hero-bridge {
    margin-top: 26px;
    max-width: calc(100vw - 34px);
    font-size: 13.8px;
    line-height: 1.9;
  }
}
@media (min-width: 721px) {
  #hero .hero-bridge {
    transform: translateY(-6px);
  }
}

/* Hero bridge fix: keep it readable above cute foreground decorations */
#hero .hero-bridge {
  position: relative;
  z-index: 8;
  margin-top: 18px !important;
  padding: 14px 16px 16px;
  border-radius: 24px;
  background: rgba(255, 248, 244, .78);
  border: 1px solid rgba(238, 143, 177, .20);
  box-shadow: 0 14px 34px rgba(214, 110, 150, .12);
}
@media (max-width: 720px) {
  #hero .hero-bridge {
    margin-top: 18px !important;
    font-size: 13.2px;
    line-height: 1.72;
    padding: 12px 13px 13px;
  }
  #hero .hero-bridge p + p {
    margin-top: .18em;
  }
}

/* Hero bridge final layer order: decorations must not cover text */
#hero .cute-deco {
  z-index: 0 !important;
}
#hero .wrap {
  position: relative;
  z-index: 5;
}
#hero .hero-bridge {
  z-index: 30 !important;
  background: rgba(255, 250, 247, .94) !important;
}
@media (max-width: 520px) {
  #hero .cute-deco {
    opacity: .34 !important;
  }
}

/* Hero bear: real peek from screen edge, no postcard/block */
.hero-phone .phone {
  position: relative;
  overflow: visible !important;
}
.hero-phone .phone img {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 30px !important;
}
.hero-phone .phone::after {
  z-index: 4 !important;
  right: -34px !important;
  top: 18% !important;
  width: 104px !important;
  height: 164px !important;
  background: url("assets/bear-peek.png?v=20260605-0134") right center / contain no-repeat !important;
  filter: drop-shadow(0 12px 18px rgba(214,110,150,.20)) !important;
}
@media (min-width: 521px) {
  .hero-phone .phone::after {
    right: -52px !important;
    top: 18% !important;
    width: 138px !important;
    height: 218px !important;
  }
}
@media (max-width: 520px) {
  .hero-phone .phone::after {
    right: -31px !important;
    top: 18% !important;
    width: 96px !important;
    height: 152px !important;
  }
}

/* Cute showcase: add iPhone frame to the right screenshot so both match */
.cute-showcase .phone:nth-child(2) img {
  border: 6px solid #171116 !important;
  border-radius: 36px !important;
  background: #171116;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.22),
    0 0 0 1px rgba(60,35,48,.28),
    0 18px 38px rgba(120,40,80,.16);
}
@media (max-width: 520px) {
  .cute-showcase .phone:nth-child(2) img {
    border-width: 5px !important;
    border-radius: 34px !important;
  }
}

/* Cute showcase: force both phone cards to identical iPhone proportions */
.cute-showcase .phone {
  aspect-ratio: 512 / 1080;
}
.cute-showcase .phone img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.cute-showcase .phone:nth-child(2) img {
  box-sizing: border-box;
}

/* Cute showcase right phone: real visible iPhone shell overlay */
.cute-showcase .phone:nth-child(2) {
  position: relative;
  overflow: visible !important;
  filter: drop-shadow(0 18px 38px rgba(120,40,80,.18));
}
.cute-showcase .phone:nth-child(2) img {
  border: none !important;
  box-shadow: none !important;
  border-radius: 34px !important;
  position: relative;
  z-index: 1;
}
.cute-showcase .phone:nth-child(2)::before {
  content: "";
  position: absolute;
  z-index: 5;
  pointer-events: none;
  inset: -5px;
  border: 7px solid #171216;
  border-radius: 42px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.20),
    0 0 0 1px rgba(40,24,32,.55),
    0 16px 34px rgba(74,38,58,.22);
}
.cute-showcase .phone:nth-child(2)::after {
  content: "";
  position: absolute;
  z-index: 6;
  pointer-events: none;
  left: -8px;
  top: 22%;
  width: 3px;
  height: 58px;
  border-radius: 999px;
  background: #171216;
  box-shadow:
    0 86px 0 #171216,
    calc(100% + 174px) 70px 0 #171216;
  opacity: .95;
}
@media (max-width: 520px) {
  .cute-showcase .phone:nth-child(2)::before {
    inset: -4px;
    border-width: 6px;
    border-radius: 38px;
  }
  .cute-showcase .phone:nth-child(2)::after {
    left: -7px;
    top: 22%;
    height: 46px;
    box-shadow:
      0 68px 0 #171216,
      calc(100% + 172px) 56px 0 #171216;
  }
}

/* Right iPhone shell thickness tune */
.cute-showcase .phone:nth-child(2)::before {
  border-width: 6px !important;
  inset: -4px !important;
  border-radius: 40px !important;
}
@media (max-width: 520px) {
  .cute-showcase .phone:nth-child(2)::before {
    border-width: 5px !important;
    inset: -3px !important;
    border-radius: 37px !important;
  }
}

/* Hero bear true edge peek: bear sits behind the screen, not inside it */
.hero-phone .phone img {
  z-index: 3 !important;
}
.hero-phone .phone::after {
  z-index: 2 !important;
  right: -62px !important;
  top: 18% !important;
  width: 108px !important;
  height: 170px !important;
}
@media (min-width: 521px) {
  .hero-phone .phone::after {
    right: -88px !important;
    top: 18% !important;
    width: 150px !important;
    height: 236px !important;
  }
}
@media (max-width: 520px) {
  .hero-phone .phone::after {
    right: -66px !important;
    top: 18% !important;
    width: 110px !important;
    height: 174px !important;
  }
}

/* Hero bear final: move bear OUTSIDE .phone so it peeks from device edge */
.hero-phone {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate;
}
.hero-phone .phone::after {
  display: none !important;
  content: none !important;
}
.hero-phone .phone {
  position: relative !important;
  z-index: 4 !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background: #fff8f6 !important;
}
.hero-phone .phone img {
  position: relative !important;
  z-index: 5 !important;
  display: block !important;
  background: #fff8f6 !important;
}
.hero-phone::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  right: -48px;
  top: 18%;
  width: 112px;
  height: 176px;
  background: url("assets/bear-peek.png?v=20260605-0134") right center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(214,110,150,.20));
}
@media (min-width: 521px) {
  .hero-phone::after {
    right: -74px;
    top: 18%;
    width: 152px;
    height: 240px;
  }
}
@media (max-width: 520px) {
  .hero-phone::after {
    right: -52px;
    top: 18%;
    width: 112px;
    height: 176px;
  }
}

/* Hero bear edge tune: closer to phone edge but still behind the phone */
.hero-phone::after {
  right: -40px !important;
}
@media (min-width: 521px) {
  .hero-phone::after {
    right: -58px !important;
  }
}
@media (max-width: 520px) {
  .hero-phone::after {
    right: -40px !important;
  }
}

/* Correct interpretation: bear peeks from the mobile SITE viewport edge, not the app phone edge */
#hero {
  position: relative;
  overflow: hidden;
}
.hero-phone::after {
  display: none !important;
  content: none !important;
}
#hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
  right: -34px;
  top: 48%;
  width: 112px;
  height: 176px;
  background: url("assets/bear-peek.png?v=20260605-0134") right center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(214,110,150,.20));
}
@media (max-width: 520px) {
  #hero::after {
    right: -38px;
    top: 50%;
    width: 110px;
    height: 174px;
  }
}
@media (min-width: 521px) {
  #hero::after {
    right: clamp(-58px, -3vw, -34px);
    top: 48%;
    width: 150px;
    height: 236px;
  }
}

/* Dedicated bear element: peeks from the SITE viewport right edge */
#hero .site-edge-bear {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  right: -34px;
  top: 50%;
  width: 112px;
  height: 176px;
  background: url("assets/bear-peek.png?v=20260605-0134") right center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(214,110,150,.20));
}
#hero .hero-phone::after,
#hero .phone::after {
  display: none !important;
  content: none !important;
}
@media (max-width: 520px) {
  #hero .site-edge-bear {
    right: -40px;
    top: 50%;
    width: 112px;
    height: 176px;
  }
}
@media (min-width: 521px) {
  #hero .site-edge-bear {
    right: -56px;
    top: 48%;
    width: 150px;
    height: 236px;
  }
}

/* Remove old hero pseudo decoration so only right site-edge bear remains */
#hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}
#hero .site-edge-bear {
  display: block !important;
}

/* Remove soap-bubble wrapping around hero smartphone UI */
#hero .hero-phone .blob,
#hero .hero-phone::before,
#hero .hero-phone::after,
#hero .hero-phone .phone::after {
  display: none !important;
  content: none !important;
  background: none !important;
}
#hero .hero-phone {
  isolation: auto !important;
}
#hero .hero-phone .phone {
  background: transparent !important;
  box-shadow: none !important;
}
#hero .hero-phone .phone img {
  box-shadow: none !important;
}

/* Hero right-edge bear: larger + extra cute decorations, no bubble wrapper */
#hero .site-edge-bear {
  right: -48px !important;
  top: 49% !important;
  width: 138px !important;
  height: 218px !important;
}
#hero .site-edge-bear::before,
#hero .site-edge-bear::after {
  position: absolute;
  pointer-events: none;
  font-family: var(--f-cute, sans-serif);
  text-shadow: 0 6px 16px rgba(214,110,150,.18);
}
#hero .site-edge-bear::before {
  content: "♡";
  left: -18px;
  top: -10px;
  font-size: 24px;
  color: rgba(238, 143, 177, .88);
  transform: rotate(-14deg);
}
#hero .site-edge-bear::after {
  content: "✦";
  left: 6px;
  bottom: 12px;
  font-size: 22px;
  color: rgba(244, 196, 111, .90);
  transform: rotate(12deg);
}
#hero .edge-mini-deco {
  display: none;
}
@media (max-width: 520px) {
  #hero .site-edge-bear {
    right: -50px !important;
    top: 49% !important;
    width: 136px !important;
    height: 214px !important;
  }
  #hero .site-edge-bear::before {
    left: -16px;
    top: -8px;
    font-size: 22px;
  }
  #hero .site-edge-bear::after {
    left: 4px;
    bottom: 10px;
    font-size: 20px;
  }
}
@media (min-width: 521px) {
  #hero .site-edge-bear {
    right: -78px !important;
    top: 48% !important;
    width: 190px !important;
    height: 300px !important;
  }
  #hero .site-edge-bear::before {
    left: -22px;
    top: -12px;
    font-size: 30px;
  }
  #hero .site-edge-bear::after {
    left: 10px;
    bottom: 18px;
    font-size: 28px;
  }
}

/* Cute feature cards compact: this section is supporting, not primary */
#cute-features {
  padding-top: clamp(74px, 8vw, 104px) !important;
  padding-bottom: clamp(58px, 7vw, 92px) !important;
}
#cute-features .sec-head {
  margin-bottom: 34px !important;
}
.cute-grid {
  gap: 22px !important;
}
.cute-card {
  min-height: 292px !important;
  padding: 26px 22px 28px !important;
  border-radius: 28px !important;
}
.cute-card .feature-art {
  width: 92px !important;
  height: 92px !important;
  margin-bottom: 15px !important;
  border-radius: 24px !important;
}
.cute-card .feature-art img {
  border-radius: 24px !important;
}
.cute-card h3 {
  font-size: clamp(23px, 2.45vw, 29px) !important;
  margin-bottom: 10px !important;
}
.cute-card p {
  font-size: 13.6px !important;
  line-height: 1.68 !important;
  max-width: 19em !important;
}
@media (max-width: 520px) {
  #cute-features {
    padding-top: 62px !important;
    padding-bottom: 58px !important;
  }
  #cute-features .sec-head {
    margin-bottom: 24px !important;
  }
  .cute-grid {
    gap: 18px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cute-card {
    flex-basis: min(72vw, 270px) !important;
    min-height: 258px !important;
    padding: 22px 18px 23px !important;
    border-radius: 26px !important;
  }
  .cute-card .feature-art {
    width: 76px !important;
    height: 76px !important;
    margin-bottom: 12px !important;
    border-radius: 20px !important;
  }
  .cute-card .feature-art img {
    border-radius: 20px !important;
  }
  .cute-card h3 {
    font-size: 23px !important;
    margin-bottom: 8px !important;
  }
  .cute-card p {
    font-size: 12.8px !important;
    line-height: 1.58 !important;
  }
}

/* Tease question bottom space: reduce oversized lower blank area by about half */
@media (max-width: 520px) {
  #tease {
    padding-bottom: 108px !important;
    min-height: auto !important;
  }
  #tease .tease-question {
    min-height: 54svh !important;
  }
  #tease .tease-question .question-text {
    transform: translateY(-8vh) !important;
  }
}
@media (min-width: 521px) {
  #tease {
    min-height: 118vh !important;
    padding-bottom: clamp(170px, 16vw, 260px) !important;
  }
  #tease .tease-question {
    min-height: 64vh !important;
  }
  #tease .tease-question .question-text {
    transform: translateY(-12vh) !important;
  }
}

/* Honmaru preview words moved above app screens */
.preview-words.preview-words-top {
  margin: clamp(24px, 4vw, 42px) auto clamp(28px, 4.5vw, 50px) !important;
}
.preview-words.preview-words-top p + p {
  margin-top: .55em;
}
@media (max-width: 520px) {
  .preview-words.preview-words-top {
    margin: 24px auto 28px !important;
    max-width: calc(100vw - 32px);
    font-size: 14px;
    line-height: 1.9;
  }
  .preview-scroll {
    margin-top: 0 !important;
  }
}

/* Topbar should not follow while scrolling */
.topbar {
  position: absolute !important;
  top: 18px !important;
  left: 24px !important;
  right: 24px !important;
}
@media (max-width: 520px) {
  .topbar {
    position: absolute !important;
    top: 10px !important;
    left: 12px !important;
    right: 12px !important;
  }
}

/* Tease lower blank area: tighten a bit more */
@media (max-width: 520px) {
  #tease {
    padding-bottom: 64px !important;
  }
  #tease .tease-question {
    min-height: 42svh !important;
  }
  #tease .tease-question .question-text {
    transform: translateY(-5vh) !important;
  }
}
@media (min-width: 521px) {
  #tease {
    padding-bottom: clamp(110px, 10vw, 180px) !important;
  }
  #tease .tease-question {
    min-height: 52vh !important;
  }
  #tease .tease-question .question-text {
    transform: translateY(-8vh) !important;
  }
}

/* 2026-06-05 adopted copy/animation refinements */
#tease .tease-bridge {
  max-width: 30ch;
  color: rgba(255,238,246,.9);
  font-family: var(--f-min);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2;
  letter-spacing: .04em;
}
#tease .tease-bridge + .tease-line {
  margin-top: clamp(-16px, -1vw, -8px);
}
#reveal .safety-note {
  position: relative;
}
#reveal .safety-note::before,
#reveal .safety-note::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,187,107,.58), transparent);
}
#reveal .safety-note::before { right: calc(100% + 12px); }
#reveal .safety-note::after { left: calc(100% + 12px); }
#cta .waitlist-note {
  max-width: 39ch;
  margin-top: 4px;
  margin-bottom: 36px;
  color: rgba(248,235,242,.82);
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: .01em;
}
#cta .waitlist-note + .btn-dark {
  margin-top: 4px;
}

/* MUTE feature reveal: side flames/smoke, not soft cute float */
#honmaru-features .hm-feature.reveal {
  --flame-x: -54px;
  --flame-clip-start: inset(0 72% 0 0 round 28px);
  opacity: 0;
  transform: translateX(var(--flame-x)) translateY(22px) scale(.985);
  filter: blur(10px) saturate(.72) brightness(.72);
  transition:
    opacity 1.05s cubic-bezier(.16,.84,.24,1),
    transform 1.05s cubic-bezier(.16,.84,.24,1),
    filter 1.05s cubic-bezier(.16,.84,.24,1);
}
#honmaru-features .hm-feature.reveal:nth-child(odd) {
  --flame-x: 54px;
  --flame-clip-start: inset(0 0 0 72% round 28px);
}
#honmaru-features .hm-feature.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}
#honmaru-features .hm-feature.reveal::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -42px -40px;
  pointer-events: none;
  opacity: 0;
  clip-path: var(--flame-clip-start);
  background:
    radial-gradient(ellipse at 8% 50%, rgba(225,42,76,.34), transparent 36%),
    radial-gradient(ellipse at 92% 48%, rgba(225,42,76,.34), transparent 36%),
    radial-gradient(ellipse at 16% 60%, rgba(114,39,121,.46), transparent 42%),
    radial-gradient(ellipse at 84% 58%, rgba(114,39,121,.46), transparent 42%),
    linear-gradient(90deg, rgba(12,2,9,0), rgba(252,126,95,.10), rgba(12,2,9,0));
  mix-blend-mode: screen;
  filter: blur(20px) contrast(1.12);
  transition: opacity 1.05s ease, clip-path 1.15s cubic-bezier(.16,.84,.24,1), filter 1.05s ease;
}
#honmaru-features .hm-feature.reveal.in::after {
  opacity: .9;
  clip-path: inset(0 0 0 0 round 28px);
  animation: muteFlameBreath 3.4s ease-in-out .55s infinite;
}
@keyframes muteFlameBreath {
  0%,100% { transform: translateY(0) scale(1); opacity: .62; filter: blur(20px) contrast(1.08); }
  45% { transform: translateY(-10px) scale(1.02); opacity: .92; filter: blur(16px) contrast(1.2); }
  72% { transform: translateY(-3px) scale(.99); opacity: .72; }
}
@media (max-width: 520px) {
  #tease .tease-bridge {
    font-size: 15px;
    line-height: 2.05;
  }
  #reveal .safety-note {
    max-width: 22.5em;
    padding: 16px 15px;
    font-size: 13.8px;
    line-height: 1.95;
  }
  #reveal .safety-note::before,
  #reveal .safety-note::after { display: none; }
  #cta .waitlist-note {
    max-width: 25em;
    font-size: 13.8px;
    line-height: 1.9;
    letter-spacing: 0 !important;
    margin-bottom: 32px;
  }
  #cta .micro {
    color: rgba(248,196,216,.76) !important;
    line-height: 1.7;
  }
  #honmaru-features .hm-feature.reveal,
  #honmaru-features .hm-feature.reveal:nth-child(odd) {
    --flame-x: 0;
    --flame-clip-start: inset(0 0 66% 0 round 24px);
    transform: translateY(34px) scale(.98);
    filter: blur(8px) saturate(.78) brightness(.74);
  }
  #honmaru-features .hm-feature.reveal::after {
    inset: -24px -10px;
    filter: blur(16px) contrast(1.08);
  }
}

/* 2026-06-05: cute feature cards should not rise from below */
#cute-features .cute-card {
  opacity: 1 !important;
  transform: none !important;
  transition: box-shadow .2s ease, border-color .2s ease !important;
}

/* 2026-06-05: move app description below THE BACK ROOM heading, no frame */
#reveal .safety-note {
  display: none !important;
}
#honmaru-features .hm-sec-head .app-description {
  margin: 26px auto 0;
  max-width: 38em;
  color: rgba(244,228,236,.76);
  font-family: var(--f-min);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 2;
  letter-spacing: .035em;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}
@media (max-width: 520px) {
  #honmaru-features .hm-sec-head .app-description {
    margin-top: 22px;
    max-width: 23.5em;
    font-size: 14.4px;
    line-height: 1.95;
    letter-spacing: .01em;
  }
}

/* 2026-06-05: restore richer cute hero side decorations */
#hero .hero-cute-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
#hero .hero-cute-layer .hcl {
  position: absolute;
  display: grid;
  place-items: center;
  opacity: .82;
  filter: drop-shadow(0 8px 14px rgba(215,117,153,.16));
  animation: heroDecorFloat 6.4s ease-in-out infinite;
}
#hero .hcl-heart {
  color: rgba(238,143,177,.9);
  font-family: var(--f-cute, sans-serif);
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 700;
}
#hero .hcl-flower {
  width: clamp(26px, 3.6vw, 44px);
  height: clamp(26px, 3.6vw, 44px);
  border-radius: 999px;
  color: #fff;
  background: radial-gradient(circle at 50% 50%, #fff 0 18%, #cdb7ff 19% 44%, #f6d88f 45% 54%, transparent 55%);
  font-size: 0;
}
#hero .hcl-star {
  color: rgba(244,196,111,.95);
  font-size: clamp(18px, 2.6vw, 30px);
}
#hero .hcl-cloud {
  width: clamp(38px, 6vw, 72px);
  height: clamp(22px, 3.4vw, 40px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 58%, rgba(255,255,255,.96) 0 42%, transparent 43%),
    radial-gradient(circle at 55% 42%, rgba(255,255,255,.96) 0 48%, transparent 49%),
    radial-gradient(circle at 76% 62%, rgba(255,255,255,.96) 0 38%, transparent 39%);
  opacity: .7;
}
#hero .hcl-dot {
  width: clamp(10px, 1.6vw, 18px);
  height: clamp(10px, 1.6vw, 18px);
  border-radius: 999px;
  background: rgba(255,205,221,.9);
}
#hero .hcl-l1 { left: clamp(28px, 8vw, 120px); top: 18%; transform: rotate(-12deg); animation-delay: -.8s; }
#hero .hcl-l2 { left: clamp(18px, 5vw, 78px); top: 45%; animation-delay: -2.1s; }
#hero .hcl-l3 { left: clamp(42px, 10vw, 150px); bottom: 20%; animation-delay: -3.4s; }
#hero .hcl-l4 { left: clamp(92px, 17vw, 250px); bottom: 33%; animation-delay: -1.6s; }
#hero .hcl-r1 { right: clamp(62px, 12vw, 180px); top: 12%; transform: rotate(12deg); animation-delay: -1.2s; }
#hero .hcl-r2 { right: clamp(34px, 8vw, 130px); bottom: 26%; animation-delay: -2.9s; }
#hero .hcl-r3 { right: clamp(106px, 17vw, 260px); bottom: 37%; animation-delay: -1.9s; }
#hero .hcl-r4 { right: clamp(28px, 7vw, 98px); top: 34%; animation-delay: -4.1s; }
@keyframes heroDecorFloat {
  0%, 100% { translate: 0 0; }
  45% { translate: 0 -8px; }
  72% { translate: 3px -2px; }
}
@media (max-width: 520px) {
  #hero .hero-cute-layer { z-index: 4; }
  #hero .hero-cute-layer .hcl { opacity: .74; }
  #hero .hcl-l1 { left: 22px; top: 18%; }
  #hero .hcl-l2 { left: 12px; top: 44%; width: 24px; height: 24px; }
  #hero .hcl-l3 { left: 22px; bottom: 20%; width: 42px; height: 24px; }
  #hero .hcl-l4 { left: 92px; bottom: 31%; }
  #hero .hcl-r1 { right: 62px; top: 10%; }
  #hero .hcl-r2 { right: 18px; bottom: 24%; width: 27px; height: 27px; }
  #hero .hcl-r3 { right: 88px; bottom: 36%; }
  #hero .hcl-r4 { right: 14px; top: 34%; }
}

/* Keep restored cute decorations behind the phone/content */
#hero .hero-cute-layer { z-index: 2 !important; }
#hero .wrap,
#hero .hero-copy,
#hero .hero-phone { position: relative; z-index: 5 !important; }
#hero .site-edge-bear { z-index: 4 !important; }

/* 2026-06-05: brighten dark feature kanji headings for readability */
#honmaru-features .hm-feature h3 {
  background: linear-gradient(118deg,
    #fff0b8 0%,
    #f8d889 24%,
    #eaa05f 52%,
    #f06f78 78%,
    #d96da7 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(255,214,143,.28)) drop-shadow(0 6px 12px rgba(0,0,0,.42));
  opacity: 1 !important;
}
#honmaru-features .hm-feature .romaji {
  color: #ff8ba3 !important;
  text-shadow: 0 0 10px rgba(255,92,130,.24);
}
#honmaru-features .hm-num {
  color: #f5d48b !important;
  opacity: .86 !important;
  text-shadow: 0 0 10px rgba(245,212,139,.18);
}
@media (max-width: 520px) {
  #honmaru-features .hm-feature h3 {
    filter: drop-shadow(0 0 7px rgba(255,216,150,.34)) drop-shadow(0 5px 10px rgba(0,0,0,.42));
  }
}

/* Slightly improve dark feature body readability without flattening the mood */
#honmaru-features .hm-feature p:not(.romaji) {
  color: rgba(252,239,245,.88) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.34);
}

/* 2026-06-05: stronger readability pass for dark feature kanji */
#honmaru-features .hm-feature h3 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #ffd98f !important;
  -webkit-text-fill-color: #ffd98f !important;
  text-shadow:
    0 0 1px rgba(255,245,210,.95),
    0 0 12px rgba(255,197,105,.42),
    0 3px 12px rgba(0,0,0,.62) !important;
  filter: none !important;
}
#honmaru-features .hm-feature h3::first-letter {
  color: #ffe6ad;
}

/* 2026-06-05: crisp overlay titles on dark phone screenshots */
.preview-phone,
.hm-phone .phone {
  position: relative;
}
.preview-phone .screen-title,
.hm-phone .phone .screen-title {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 5.2%;
  text-align: center;
  pointer-events: none;
  font-family: var(--f-brush), 'Shippori Mincho B1', serif;
  font-size: clamp(20px, 7.2vw, 42px);
  line-height: 1;
  letter-spacing: .18em;
  color: #ffe0a0;
  -webkit-text-fill-color: #ffe0a0;
  text-shadow:
    0 0 2px rgba(255,250,220,.96),
    0 0 10px rgba(255,199,101,.46),
    0 3px 8px rgba(0,0,0,.78);
}
.preview-phone .screen-title.long,
.hm-phone .phone .screen-title.long {
  font-size: clamp(16px, 5.6vw, 34px);
  letter-spacing: .12em;
}
.hm-phone .phone .screen-title::before,
.preview-phone .screen-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 1.65em;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(34,5,24,.68), rgba(34,5,24,.34) 54%, transparent 76%);
}
.preview-phone .screen-title {
  top: 5.1%;
  font-size: clamp(14px, 4.4vw, 22px);
}
.preview-phone .screen-title.long {
  font-size: clamp(11px, 3.25vw, 17px);
  letter-spacing: .08em;
}
@media (min-width: 521px) {
  .hm-phone .phone .screen-title {
    font-size: 35px;
  }
  .hm-phone .phone .screen-title.long {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .hm-phone .phone .screen-title {
    top: 5.4%;
    font-size: 31px;
  }
  .hm-phone .phone .screen-title.long {
    font-size: 23px;
    letter-spacing: .08em;
  }
}

/* 2026-06-05: final stronger phone title readability */
.hm-phone .phone .screen-title {
  top: 7.2% !important;
  font-size: 42px !important;
  letter-spacing: .16em !important;
  color: #fff0b8 !important;
  -webkit-text-fill-color: #fff0b8 !important;
  text-shadow:
    0 0 1px #fff9dc,
    0 0 8px rgba(255,220,135,.82),
    0 3px 8px rgba(0,0,0,.92) !important;
}
.hm-phone .phone .screen-title.long {
  font-size: 32px !important;
  letter-spacing: .07em !important;
}
.hm-phone .phone .screen-title::before {
  width: 94% !important;
  height: 1.95em !important;
  background: radial-gradient(ellipse at center, rgba(24,2,18,.88), rgba(24,2,18,.66) 55%, transparent 78%) !important;
}
.preview-phone .screen-title {
  top: 7% !important;
  font-size: 22px !important;
  color: #fff0b8 !important;
  -webkit-text-fill-color: #fff0b8 !important;
}
.preview-phone .screen-title.long {
  font-size: 16px !important;
  letter-spacing: .05em !important;
}
@media (max-width: 520px) {
  .hm-phone .phone .screen-title {
    top: 7.2% !important;
    font-size: 40px !important;
  }
  .hm-phone .phone .screen-title.long {
    font-size: 30px !important;
  }
}

/* 2026-06-05: readability priority for phone UI titles */
.hm-phone .phone .screen-title {
  top: 6.6% !important;
  font-family: 'Shippori Mincho B1', var(--f-brush), serif !important;
  font-weight: 800 !important;
  font-size: 48px !important;
  letter-spacing: .12em !important;
  color: #fff4c7 !important;
  -webkit-text-fill-color: #fff4c7 !important;
  -webkit-text-stroke: .35px rgba(255,255,245,.75) !important;
  text-shadow:
    0 0 2px rgba(255,255,232,1),
    0 0 10px rgba(255,214,126,.95),
    0 4px 10px rgba(0,0,0,1) !important;
}
.hm-phone .phone .screen-title.long {
  font-size: 35px !important;
  letter-spacing: .03em !important;
}
.hm-phone .phone .screen-title::before {
  width: 104% !important;
  height: 2.12em !important;
  background: radial-gradient(ellipse at center, rgba(12,0,9,.96), rgba(12,0,9,.74) 58%, transparent 82%) !important;
}
@media (max-width: 520px) {
  .hm-phone .phone .screen-title { font-size: 46px !important; }
  .hm-phone .phone .screen-title.long { font-size: 34px !important; }
}

/* 2026-06-05: restore original rich side decoration layers in cute hero */
#hero .hero-rich-decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(38vw, 330px);
  min-width: 150px;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .92;
  filter: saturate(1.04) brightness(1.02) drop-shadow(0 10px 22px rgba(223,138,170,.12));
}
#hero .hero-rich-decor-left {
  left: 0;
  background-image: url("assets/hero-decor/hero-decor-left.png?v=20260605-1306");
  background-position: left center;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}
#hero .hero-rich-decor-right {
  right: 0;
  background-image: url("assets/hero-decor/hero-decor-right.png?v=20260605-1306");
  background-position: right center;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 72%, transparent 100%);
}
#hero .hero-cute-layer {
  z-index: 2 !important;
}
#hero .wrap,
#hero .hero-copy,
#hero .hero-phone {
  position: relative;
  z-index: 5 !important;
}
#hero .site-edge-bear {
  z-index: 3 !important;
  opacity: .72;
}
@media (max-width: 520px) {
  #hero .hero-rich-decor {
    width: 42vw;
    min-width: 142px;
    opacity: .88;
  }
  #hero .hero-rich-decor-left {
    left: -8px;
  }
  #hero .hero-rich-decor-right {
    right: -8px;
  }
  #hero .site-edge-bear {
    opacity: .62;
  }
}

/* Keep hero copy readable after restoring rich side decoration */
#hero .hero-copy {
  border-radius: 28px;
  padding: 8px 10px 10px;
  background: radial-gradient(ellipse at center, rgba(255,249,246,.55), rgba(255,249,246,.22) 58%, transparent 78%);
}
#hero .hero-copy .lede {
  text-shadow: 0 1px 0 rgba(255,255,255,.72), 0 4px 14px rgba(188,119,142,.16);
}
@media (max-width: 520px) {
  #hero .hero-copy {
    padding: 6px 8px 8px;
    background: radial-gradient(ellipse at center, rgba(255,249,246,.64), rgba(255,249,246,.24) 62%, transparent 82%);
  }
}

/* 2026-06-05: replace cute feature cards with horizontal UI screenshot carousel */
#cute-features .cute-ui-scroll {
  display: flex;
  gap: clamp(18px, 3vw, 30px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px max(18px, calc((100vw - 980px) / 2 + 18px)) 20px;
  margin: 10px calc(50% - 50vw) 0;
  scrollbar-width: none;
}
#cute-features .cute-ui-scroll::-webkit-scrollbar { display: none; }
#cute-features .cute-ui-slide {
  flex: 0 0 min(82vw, 450px);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,238,246,.88));
  box-shadow: 0 24px 56px rgba(220,129,166,.20), 0 0 0 1px rgba(255,184,207,.42);
}
#cute-features .cute-ui-slide.wide {
  flex-basis: min(88vw, 520px);
}
#cute-features .cute-ui-slide img {
  display: block;
  width: 100%;
  height: auto;
}
#cute-features .cute-ui-hint {
  margin: 12px auto 0;
  text-align: center;
  font-family: var(--f-round);
  font-size: 13px;
  color: rgba(164,104,116,.68);
  letter-spacing: .04em;
}
@media (min-width: 900px) {
  #cute-features .cute-ui-scroll {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  #cute-features .sec-head {
    margin-bottom: 18px !important;
  }
  #cute-features .cute-ui-scroll {
    gap: 16px;
    padding: 8px 20px 18px;
  }
  #cute-features .cute-ui-slide {
    flex-basis: 82vw;
    border-radius: 28px;
  }
  #cute-features .cute-ui-slide.wide {
    flex-basis: 86vw;
  }
  #cute-features .cute-ui-hint {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* Mobile readability pass for cute UI carousel */
@media (max-width: 520px) {
  #cute-features .cute-ui-slide {
    flex-basis: 88vw !important;
  }
  #cute-features .cute-ui-slide.wide {
    flex-basis: 92vw !important;
  }
  #cute-features .cute-ui-hint {
    color: rgba(132,78,92,.82) !important;
    font-weight: 700;
  }
}

/* 2026-06-05: split cute UI carousel into 4 per-screen assets */
#cute-features .cute-ui-scroll.split-ui {
  align-items: center;
}
#cute-features .cute-ui-slide.single-ui {
  flex: 0 0 min(66vw, 285px) !important;
  border-radius: 30px;
  background: transparent !important;
  box-shadow: 0 24px 56px rgba(220,129,166,.18);
}
#cute-features .cute-ui-slide.single-ui img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#cute-features .cute-ui-slide.single-ui.tall-ui {
  flex-basis: min(68vw, 300px) !important;
}
@media (min-width: 900px) {
  #cute-features .cute-ui-scroll.split-ui {
    justify-content: flex-start;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 520px) {
  #cute-features .cute-ui-scroll.split-ui {
    gap: 18px;
    padding-left: 24px;
    padding-right: 24px;
  }
  #cute-features .cute-ui-slide.single-ui {
    flex-basis: 70vw !important;
    border-radius: 28px;
  }
  #cute-features .cute-ui-slide.single-ui.tall-ui {
    flex-basis: 72vw !important;
  }
}

/* Make each split UI slide easier to inspect one-by-one on mobile */
@media (max-width: 520px) {
  #cute-features .cute-ui-slide.single-ui {
    flex-basis: 82vw !important;
  }
  #cute-features .cute-ui-slide.single-ui.tall-ui {
    flex-basis: 84vw !important;
  }
}

/* 2026-06-05: fit split phone UI assets fully inside carousel viewport */
#cute-features .cute-ui-scroll.split-ui {
  align-items: flex-start !important;
}
#cute-features .cute-ui-slide.single-ui,
#cute-features .cute-ui-slide.single-ui.tall-ui {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  overflow: visible !important;
  box-shadow: none !important;
  background: transparent !important;
}
#cute-features .cute-ui-slide.single-ui img {
  width: auto !important;
  max-width: none !important;
  height: min(64vh, 560px) !important;
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(220,129,166,.18);
}
@media (max-width: 520px) {
  #cute-features .cute-ui-scroll.split-ui {
    gap: 20px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  #cute-features .cute-ui-slide.single-ui img {
    height: min(58vh, 490px) !important;
    border-radius: 26px;
  }
}

/* Final fit: keep phone UI bottoms inside the mobile viewport */
@media (max-width: 520px) {
  #cute-features .cute-ui-slide.single-ui img {
    height: min(52vh, 440px) !important;
  }
}

/* 2026-06-05: animate restored layer assets on scroll */
#hero .hero-rich-decor.reveal {
  opacity: 0;
  transition:
    opacity 1.05s cubic-bezier(.2,.75,.2,1),
    transform 1.05s cubic-bezier(.2,.75,.2,1),
    filter 1.05s cubic-bezier(.2,.75,.2,1);
  will-change: opacity, transform, filter;
}
#hero .hero-rich-decor-left.reveal {
  transform: translateX(-34px) translateY(14px) scale(.985);
  filter: blur(8px) saturate(.95) brightness(1.02) drop-shadow(0 10px 22px rgba(223,138,170,.12));
}
#hero .hero-rich-decor-right.reveal {
  transform: translateX(34px) translateY(14px) scale(.985);
  filter: blur(8px) saturate(.95) brightness(1.02) drop-shadow(0 10px 22px rgba(223,138,170,.12));
}
#hero .hero-rich-decor.reveal.in {
  opacity: .92;
  transform: none;
  filter: saturate(1.04) brightness(1.02) drop-shadow(0 10px 22px rgba(223,138,170,.12));
}
#hero .hero-rich-decor.reveal.in.hero-rich-decor-left {
  animation: softLayerFloatLeft 7.2s ease-in-out 1.05s infinite;
}
#hero .hero-rich-decor.reveal.in.hero-rich-decor-right {
  animation: softLayerFloatRight 7.6s ease-in-out 1.1s infinite;
}
@keyframes softLayerFloatLeft {
  0%,100% { translate: 0 0; }
  48% { translate: 0 -8px; }
  72% { translate: 4px -2px; }
}
@keyframes softLayerFloatRight {
  0%,100% { translate: 0 0; }
  48% { translate: 0 -9px; }
  72% { translate: -4px -2px; }
}
@media (max-width: 520px) {
  #hero .hero-rich-decor.reveal.in { opacity: .88; }
  #hero .hero-rich-decor-left.reveal { transform: translateX(-22px) translateY(10px) scale(.99); }
  #hero .hero-rich-decor-right.reveal { transform: translateX(22px) translateY(10px) scale(.99); }
}
@media (prefers-reduced-motion: reduce) {
  #hero .hero-rich-decor.reveal,
  #hero .hero-rich-decor.reveal.in {
    opacity: .9 !important;
    transform: none !important;
    animation: none !important;
    filter: saturate(1.04) brightness(1.02) !important;
  }
}

/* 2026-06-05: remove extra overlay titles from dark phone screenshots */
.preview-phone .screen-title,
.hm-phone .phone .screen-title {
  display: none !important;
  content: none !important;
}

/* 2026-06-05: fit newly supplied cute app screenshots without bottom clipping */
@media (max-width: 520px) {
  #cute-features .cute-ui-slide.single-ui img {
    height: min(49vh, 415px) !important;
  }
}

/* Give the horizontal UI carousel a little breathing room below screenshots */
@media (max-width: 520px) {
  #cute-features .cute-ui-scroll.split-ui {
    padding-bottom: 18px !important;
  }
}

/* 2026-06-05: make cute app screenshots smaller and place copy block below carousel */
#cute-features .cute-copy-under {
  margin-top: 18px;
  margin-bottom: 0;
}
#cute-features .cute-copy-under h2 {
  margin-top: 8px;
}
#cute-features .cute-ui-slide.single-ui img {
  height: min(54vh, 470px) !important;
}
@media (max-width: 520px) {
  #cute-features .cute-ui-scroll.split-ui {
    gap: 18px !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
    padding-bottom: 14px !important;
  }
  #cute-features .cute-ui-slide.single-ui img {
    height: min(43vh, 365px) !important;
    border-radius: 24px !important;
  }
  #cute-features .cute-copy-under {
    margin-top: 12px;
  }
}

/* 2026-06-05: second pass — make carousel screenshots visibly smaller */
#cute-features .cute-ui-slide.single-ui img {
  height: min(48vh, 420px) !important;
}
@media (max-width: 520px) {
  #cute-features .cute-ui-scroll.split-ui {
    gap: 16px !important;
    padding-left: 42px !important;
    padding-right: 42px !important;
    padding-bottom: 8px !important;
  }
  #cute-features .cute-ui-slide.single-ui img {
    height: min(39vh, 330px) !important;
  }
  #cute-features .cute-copy-under {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  #cute-features .cute-ui-hint {
    margin-top: 4px !important;
  }
}

/* 2026-06-05: third pass — clearly smaller cute screenshots */
@media (max-width: 520px) {
  #cute-features .cute-ui-slide.single-ui img {
    height: min(36vh, 300px) !important;
  }
  #cute-features .cute-copy-under {
    margin-top: 18px !important;
  }
}

/* 2026-06-05: tighten spacing after moving cute copy under carousel */
@media (max-width: 520px) {
  #cute-features {
    padding-top: 34px !important;
    padding-bottom: 50px !important;
  }
  #cute-features .cute-copy-under {
    margin-top: 12px !important;
    margin-bottom: 6px !important;
  }
  #cute-features .cute-copy-under .eyebrow {
    margin-bottom: 6px !important;
  }
  #cute-features .cute-copy-under h2 {
    font-size: clamp(31px, 8.2vw, 38px) !important;
    line-height: 1.18 !important;
    margin-bottom: 10px !important;
  }
  #cute-features .cute-copy-under p {
    font-size: 13.8px !important;
    line-height: 1.7 !important;
  }
}

/* 2026-06-05: final scale-down for cute app screenshots */
@media (max-width: 520px) {
  #cute-features .cute-ui-slide.single-ui img {
    height: min(33vh, 270px) !important;
  }
  #cute-features .cute-ui-scroll.split-ui {
    padding-top: 8px !important;
    padding-bottom: 10px !important;
  }
}

/* 2026-06-05: restore original cute feature card block below carousel */
#cute-features .cute-cards-restored {
  margin-top: 24px;
}
#cute-features .cute-cards-restored .cute-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,247,251,.92));
  border: 2px solid rgba(255,255,255,.9);
}
#cute-features .cute-cards-restored .feature-art {
  background: transparent !important;
}
@media (max-width: 520px) {
  #cute-features .cute-cards-restored {
    margin-top: 18px !important;
    padding-top: 4px !important;
  }
  #cute-features .cute-cards-restored .cute-card {
    flex-basis: min(82vw, 320px) !important;
    min-height: 346px !important;
    padding: 30px 24px 32px !important;
    border-radius: 34px !important;
  }
  #cute-features .cute-cards-restored .feature-art {
    width: 118px !important;
    height: 118px !important;
    margin-bottom: 22px !important;
  }
  #cute-features .cute-cards-restored h3 {
    font-size: 31px !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }
  #cute-features .cute-cards-restored p {
    font-size: 14px !important;
    line-height: 1.85 !important;
  }
}

/* 2026-06-05: tighten restored card block vertical rhythm */
@media (max-width: 520px) {
  #cute-features .cute-cards-restored .cute-card {
    min-height: 326px !important;
    padding-bottom: 26px !important;
  }
  #cute-features .cute-cards-restored p {
    line-height: 1.75 !important;
  }
}

/* 2026-06-05: requested copy edits and one-line mobile handling */
.tease-actually {
  margin-top: 18px;
  font-family: var(--f-cute);
  font-size: clamp(24px, 4vw, 36px);
  color: #ffd2df;
  text-shadow: 0 6px 22px rgba(0,0,0,.45);
}
@media (max-width: 520px) {
  .one-line-mobile {
    white-space: nowrap;
    display: inline-block;
    font-size: clamp(10.5px, 2.85vw, 12.5px);
    letter-spacing: -0.04em;
  }
  .app-description {
    line-height: 1.85 !important;
  }
  .waitlist-note .one-line-mobile {
    font-size: clamp(11px, 3vw, 13px);
  }
  #tease .tease-bridge {
    font-size: clamp(22px, 6.2vw, 30px) !important;
    line-height: 1.55 !important;
  }
  #tease .tease-actually {
    margin-top: 12px;
    font-size: 26px;
  }
}
