/* Landing v3 — loaded only by index-v2.html (/preview). The live page never
   sees this file. The v2 draft read as an amateur blog (owner verdict):
   pictorial icons, competing motion, an input that didn't lead. v3 is the
   professional read — tool first, editorial numerals, one accent, restraint. */

:root {
  --v3-ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Palette audit 2026-08-15: the hero footage clusters at hue 24-34° (lit
     wood #c68c4e, skin, candle bokeh) while the accent sat at 17.5° — ten to
     fifteen degrees redder than the light it lives next to. Hue-corrected
     toward the footage, same saturation and lightness, family intact.
     Preview-only: this file never loads on the live page. */
  --accent: #c97d4a;
  --accent-deep: #99582e;
  /* Typography audit 2026-08-15 (specimen A/B, evidence in bench4/): the serif
     and Klee stay; the body sans moves to Murecho — warmer counters beside
     Shippori's brush terminals, where Zen Kaku read corporate-cold against the
     paper. Murecho sits tighter and taller, hence the tracking/leading bumps. */
  --sans: 'Murecho', 'Zen Kaku Gothic New', sans-serif;
}
body { font-family: var(--sans); letter-spacing: 0.045em; }
p, li { line-height: 1.88; }
/* ZKGN's 300-weight captions have no Murecho twin in the 3-file set: same
   weight, quieter ink instead */
.hero__kicker { font-weight: 400; opacity: 0.92; }

/* ── shared vocabulary ── */
.v3eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.26em; color: var(--accent-deep, #a2542f);
}
.v3eyebrow__free {
  margin-left: 10px; padding: 2px 10px; border-radius: 999px;
  background: var(--accent, #c96f4a); color: #fff; letter-spacing: 0.1em;
}
.v2flow { background: var(--paper, #f7f1e8); }

/* ── entry: the tool comes first ── */
.v3entry { padding: 128px 6vw 96px; }
.v3entry__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px 64px; align-items: center;
}
.v3entry__title { line-height: 1.5; margin: 14px 0 16px; word-break: keep-all; }
.v3entry__lead { font-size: 14.5px; color: var(--ink-soft, #5c5248); margin: 0; }
.v3entry__panel {
  background: #fffdf9;
  border: 1px solid rgba(33, 28, 24, 0.1);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(33, 28, 24, 0.09);
  padding: 30px 28px 22px;
}
.v3form { flex-wrap: nowrap; gap: 12px; }
.v3field {
  flex: 1; min-width: 0;
  border: 2px solid rgba(201, 111, 74, 0.55);
  border-radius: 14px;
  padding: 8px 8px 8px 18px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
/* the highlight the owner asked for: a slow warm sheen while idle,
   a firm accent ring the moment it is touched */
@keyframes v3sheen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 111, 74, 0); }
  50% { box-shadow: 0 0 0 6px rgba(201, 111, 74, 0.28); }
}
.v3field { animation: v3sheen 3.2s ease-in-out infinite; }
.v3field:focus-within {
  animation: none;
  border-color: var(--accent, #c96f4a);
  box-shadow: 0 0 0 4px rgba(201, 111, 74, 0.32);
}
.v3field .input__handle { font-size: 17px; width: 100%; }
.v3go {
  white-space: nowrap;
  background: var(--accent, #c96f4a) !important;
  color: #fff !important;
  border-radius: 14px !important;
  padding: 18px 34px !important;
  font-size: 15.5px;
  transition: background 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
}
.v3go:hover { background: var(--accent-deep, #a2542f) !important; box-shadow: 0 12px 30px rgba(201, 111, 74, 0.35); }
.v3go:active { transform: scale(0.98); }
.v3entry__meta {
  font-size: 12.5px; color: var(--ink-soft, #5c5248);
  margin: 14px 2px 0; text-align: left; line-height: 2;
}
.v3demo {
  font-family: var(--sans); font-size: 12.5px; color: var(--accent-deep, #a2542f);
  background: none; border: none; border-bottom: 1px solid rgba(162, 84, 47, 0.45);
  padding: 0 1px 1px; margin: 0 3px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.v3demo:hover { color: var(--accent, #c96f4a); border-color: var(--accent, #c96f4a); }
.v3mode { margin-top: 16px; font-size: 12.5px; }
.v3note { margin-top: 10px; font-size: 11.5px; }

/* ── how: editorial numerals ── */
.v3how { padding: 96px 6vw 96px; background: #fdfaf4; border-block: 1px solid rgba(33,28,24,0.05); }
.v3how__head { max-width: 1080px; margin: 0 auto 44px; }
.v3how__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(24px, 2.6vw, 34px); color: var(--ink);
  margin-top: 12px; word-break: keep-all;
}
/* one h2 scale for the whole page (measured: the draft ran four sizes and two
   weights across six sections — the second amateur marker) */
.v3entry__title, .proof__title { font-size: clamp(24px, 2.6vw, 34px) !important; font-weight: 600 !important; }
.v3how__steps {
  list-style: none; margin: 0 auto; padding: 0; max-width: 1080px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px;
}
.v3step {
  border-top: 1px solid rgba(33, 28, 24, 0.18);
  padding: 22px 0 8px;
  position: relative;
}
/* the rule grows and warms when the visitor attends to it */
.v3step::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 34px; height: 2px; background: var(--accent, #c96f4a);
  transition: width 0.5s var(--v3-ease);
}
.v3step:hover::before { width: 100%; }
.v3step__no {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 3.4vw, 46px); line-height: 1;
  color: rgba(33, 28, 24, 0.22);
  transition: color 0.4s;
}
.v3step:hover .v3step__no { color: var(--accent, #c96f4a); }
.v3step__name {
  font-family: var(--serif); font-weight: 700; font-size: 17.5px;
  color: var(--ink); margin: 14px 0 10px; word-break: keep-all;
}
.v3step__body { font-size: 13.5px; line-height: 2; color: var(--ink-soft, #5c5248); }

/* ── marquee: larger, slower, monochrome until touched ── */
.v3marquee { padding: 72px 0 96px; overflow: hidden; }
.v3marquee__label { text-align: center; display: block; margin-bottom: 22px; }
.v2marquee__viewport { overflow: hidden; }
.v2marquee__track {
  display: flex; gap: 26px; width: max-content;
  animation: v2drift 70s linear infinite;
}
.v2marquee__viewport:hover .v2marquee__track { animation-play-state: paused; }
@keyframes v2drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.v2mq { flex: 0 0 auto; width: 150px; }
.v2mq img {
  width: 150px; height: 150px; object-fit: contain;
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(33, 28, 24, 0.08);
  filter: grayscale(0.85) contrast(0.96);
  transition: filter 0.4s, transform 0.35s var(--v3-ease), box-shadow 0.35s;
}
.v2mq:hover img {
  filter: none; transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(33, 28, 24, 0.14);
}
.v2mq figcaption { display: none; }

/* ── scroll reveal ── */
.v2-reveal { opacity: 0; transform: translateY(26px); }
.v2-reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--v3-ease), transform 0.9s var(--v3-ease);
}

/* ── sample rail on PC: contained grid (owner-caught cut card) ── */
@media (min-width: 1024px) {
  .sample__panel { max-width: 1320px; }
  .sample__rail {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
    overflow: visible; margin-inline: 0; padding: 8px 0 10px; cursor: default;
  }
  .sample__rail .gift { flex: none; min-width: 0; padding: 18px 16px; }
  .sample__rail .gift__name { font-size: 16.5px; }
  .sample__rail .gift__desc, .sample__rail .gift__reason { font-size: 12.5px; }
  .sample__rail .gift__reason {
    display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
  }
  .sample__rail .gift:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(33, 28, 24, 0.14);
  }
  .sample__swipe { display: none; }
}

/* feats + faq get the same quiet hover language */
.feat { transition: transform 0.35s var(--v3-ease); }
.feat:hover { transform: translateX(6px); }
.feat:hover .feat__no { color: var(--accent, #c96f4a); }
.feat__no { transition: color 0.35s; }

@media (max-width: 900px) {
  .v3entry__inner { grid-template-columns: 1fr; gap: 26px; }
  .v3entry__copy { text-align: center; }
  .v3form { flex-wrap: wrap; }
  .v3go { width: 100%; }
  .v3how__steps { grid-template-columns: 1fr; gap: 8px; }
  .v3step { padding: 18px 0 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-reveal { opacity: 1; transform: none; }
  .v3field { animation: none; }
  .v2marquee__track { animation: none; }
  .v3step, .v3step::before, .v3go, .feat, .v2mq img { transition: none; }
}

/* ── entry v3b: the arc and the instrument ── */
.v3entry__howline {
  margin-top: 18px; font-family: var(--serif); font-weight: 600;
  font-size: 15.5px; color: var(--accent-deep, #a2542f);
}
.v3entry__panelwrap {
  /* the gradient edge is the quality signal — one warm line of light */
  padding: 1.5px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(201,111,74,0.55), rgba(201,111,74,0.12) 40%, rgba(201,111,74,0.45));
  box-shadow: 0 30px 80px rgba(33, 28, 24, 0.12);
}
.v3entry__panel {
  border: none; border-radius: 20.5px; box-shadow: none;
  padding: 26px 28px 22px;
  background:
    radial-gradient(120% 140% at 85% -20%, rgba(201, 111, 74, 0.07), transparent 60%),
    #fffdf9;
}
.v3panel__label {
  font-size: 11.5px; letter-spacing: 0.2em; font-weight: 700;
  color: var(--ink-soft, #5c5248); margin-bottom: 14px;
}
.v3field { background: #fff; }
.v3field .input__handle { height: 44px; }

/* ── proof band ── */
.v3proof { padding: 88px 0 96px; }
.v3stats {
  max-width: 1080px; margin: 0 auto 64px; padding: 0 6vw;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: center;
}
.v3stat__num {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1.1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.v3stat__num::after { content: ""; }
.v3stat__label { margin-top: 10px; font-size: 13px; color: var(--ink-soft, #5c5248); }
.v3stat__unit { font-size: 11.5px; color: rgba(92, 82, 72, 0.7); letter-spacing: 0.12em; }
.v3proof__label { display: block; text-align: center; margin-bottom: 22px; }
/* edge fades make the drift read as designed, not accidental */
.v3showcase {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v3showcase .v2mq img { filter: none; }

/* ── voices ── */
.v3voices { padding: 96px 6vw; background: #fdfaf4; border-top: 1px solid rgba(33,28,24,0.05); }
.v3voices__mock { margin-left: 10px; font-size: 10.5px; letter-spacing: 0.06em; color: rgba(92,82,72,0.65); font-weight: 500; }
.v3voices__grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.v3voice {
  background: #fffdf9; border: 1px solid rgba(33, 28, 24, 0.08);
  border-radius: 18px; padding: 26px 24px;
  transition: transform 0.35s var(--v3-ease), box-shadow 0.35s;
}
.v3voice:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(33, 28, 24, 0.1); }
.v3voice__face {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; box-shadow: 0 6px 18px rgba(33, 28, 24, 0.15);
}
.v3voice__quote {
  margin: 18px 0 14px; font-size: 14px; line-height: 2; color: var(--ink);
  font-family: var(--serif);
}
.v3voice__who { font-size: 12px; color: var(--ink-soft, #5c5248); }

/* ── the pulse: quiet proof of life, bottom-left ── */
.v3pulse {
  position: fixed; left: 22px; bottom: 22px; z-index: 40;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255, 253, 249, 0.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(33, 28, 24, 0.1); border-radius: 999px;
  padding: 9px 16px; box-shadow: 0 10px 30px rgba(33, 28, 24, 0.12);
  font-size: 12px; color: var(--ink-soft, #5c5248);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--v3-ease), transform 0.5s var(--v3-ease);
  pointer-events: none;
}
.v3pulse.is-on { opacity: 1; transform: none; }
.v3pulse__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #43a047;
  box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.4);
  animation: v3ping 2s ease-out infinite;
}
@keyframes v3ping {
  0% { box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.4); }
  70% { box-shadow: 0 0 0 7px rgba(67, 160, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(67, 160, 71, 0); }
}
body.is-result .v3pulse { display: none; }

/* ── sample panel: breathe like the rest of the page ── */
@media (min-width: 1024px) {
  .sample__panel { max-width: 1080px; margin-inline: auto; }
  .sample__rail { gap: 14px; padding: 10px 0 18px; }
  .sample__rail .gift { padding: 16px 14px; }
}

@media (max-width: 900px) {
  .v3stats { grid-template-columns: 1fr; gap: 30px; }
  .v3voices__grid { grid-template-columns: 1fr; }
  .v3pulse { left: 12px; bottom: 12px; max-width: 78vw; }
}
@media (prefers-reduced-motion: reduce) {
  .v3pulse__dot { animation: none; }
  .v3voice { transition: none; }
}

/* ── one page, one rhythm: the shared sections join the v3 grid ──
   Measured: .proof__inner ran at 880px while everything above it ran 1080px
   with a fixed 96/128px vertical scale — the proportion break the owner saw. */
.proof__inner { max-width: 1080px !important; }
.proof { padding: 96px 6vw 24px !important; }
.feats { margin-top: 96px !important; }
#coda .coda__inner { max-width: 1080px; }
@media (min-width: 1024px) {
  .sample__panel { max-width: 100%; }   /* fills the unified 1080 column */
}

/* ── the showcase becomes cards of the house, not pasted cutouts ── */
.v2mq { flex: 0 0 auto; width: 176px; }
.v2mq__frame {
  background: #fffdf9;
  border: 1px solid rgba(33, 28, 24, 0.09);
  border-radius: 16px;
  padding: 16px;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(33, 28, 24, 0.06);
  transition: transform 0.35s var(--v3-ease), box-shadow 0.35s, border-color 0.35s;
}
.v2mq img {
  width: 132px; height: 132px; object-fit: contain;
  background: transparent; border: none; border-radius: 0;
  filter: none; box-shadow: none; transition: none;
  mix-blend-mode: multiply;   /* the white amazon ground dissolves into the card */
}
.v2mq:hover img { transform: none; box-shadow: none; filter: none; }
.v2mq:hover .v2mq__frame {
  transform: translateY(-6px);
  border-color: rgba(201, 125, 74, 0.45);
  box-shadow: 0 18px 40px rgba(33, 28, 24, 0.12);
}
.v2mq__cap {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 4px 0; text-align: left;
}
.v2mq__name {
  font-family: var(--serif); font-size: 12px; font-weight: 600;
  color: var(--ink); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.v2mq__price { font-size: 11px; color: var(--accent-deep, #99582e); }
.v2mq figcaption { display: flex; }

/* ── NOSHI window-shopping above the marquee ─────────────────────────────
   The stage is a quiet strip above the gift cards; the sprite is positioned
   by JS (translateX). Empty stage = zero visual footprint. */
.noshi-stage {
  position: relative;
  max-width: 1080px;
  height: 170px; /* headroom for the 1.5x zoom-in when she points */
  margin: -34px auto -10px;
  pointer-events: none;
  overflow: hidden;
}
.noshi-stage__sprite {
  position: absolute;
  bottom: 0; left: 0;
  height: 108px; width: auto;
  opacity: 0;
  transform-origin: bottom center;
  will-change: transform;
}
.noshi-stage__sprite.is-on { opacity: 1; transition: opacity 0.4s ease; }
@media (max-width: 720px) {
  /* zoom headroom on phones too: 80px sprite × 1.5 = 120px needs to fit
     (measured 2026-08-15: 86px stage beheaded her by 34px mid-point) */
  .noshi-stage { height: 130px; margin: -44px auto -6px; }
  .noshi-stage__sprite { height: 80px; }
}

/* the bridge into VOICES: the gift reaches its person */
.v3handoff { display: flex; justify-content: center; margin: 0 auto clamp(28px, 4vw, 44px); }
.v3handoff img { height: clamp(128px, 17vw, 188px); width: auto; }

/* ── entry v3c: the instrument gets its finish ─────────────────────────
   Same layout, deeper craft: a made @-badge, a taller field with an inner
   top-light, a button that leans forward, and one slow ambient glow drifting
   inside the panel. Nothing here hides the money elements — the entry stays
   visible with JS off. */
.v3entry__panelwrap { position: relative; }
.v3entry__panel { position: relative; overflow: hidden; }
.v3entry__panel::before {
  /* the ambient: one warm light slowly wandering behind the content */
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 340px; height: 340px; top: -160px; right: -120px;
  background: radial-gradient(closest-side, rgba(201, 111, 74, 0.13), transparent 70%);
  animation: v3drift 14s ease-in-out infinite alternate;
}
@keyframes v3drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-190px, 110px) scale(1.25); }
}
.v3entry__panel > * { position: relative; z-index: 1; }

.v3field {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 10px; border-radius: 16px;
  background: linear-gradient(#ffffff, #fffdf9);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(201, 111, 74, 0.08);
}
.v3field .input__at {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(160deg, var(--accent, #c97d4a), var(--accent-deep, #99582e));
  color: #fff; font-size: 18px; font-weight: 600; font-family: var(--sans);
  box-shadow: 0 4px 10px rgba(153, 88, 46, 0.28);
}
.v3field .input__handle { height: 48px; letter-spacing: 0.02em; }
.v3field .input__handle::placeholder { color: rgba(92, 82, 72, 0.52); }

.v3go {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(160deg, var(--accent, #c97d4a), var(--accent-deep, #99582e)) !important;
  box-shadow: 0 10px 26px rgba(153, 88, 46, 0.28);
  overflow: hidden;
}
.v3go__arrow { display: inline-block; transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
.v3go:hover .v3go__arrow { transform: translateX(5px); }
.v3go::after {
  /* one shine pass on hover — a finish, not a firework */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-110%);
}
.v3go:hover::after { transition: transform 0.7s ease; transform: translateX(110%); }

.v3demo {
  border: 1px solid rgba(162, 84, 47, 0.3); border-radius: 999px;
  padding: 3px 10px; margin: 0 3px; background: rgba(201, 111, 74, 0.06);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.v3demo:hover { background: rgba(201, 111, 74, 0.13); transform: translateY(-1px); }

/* mobile: the panel is the product on a phone — give it the full width and
   finger-sized targets */
@media (max-width: 900px) {
  .v3entry { padding: 84px 5vw 64px; }
  .v3entry__howline { text-align: center; }
  .v3entry__panel { padding: 22px 18px 18px; }
  .v3form { gap: 10px; }
  .v3field { width: 100%; }
  .v3field .input__handle { height: 46px; font-size: 16px; }
  .v3go { justify-content: center; padding: 16px 20px !important; }
  .v3entry__meta { line-height: 2.2; }
  .v3demo { padding: 4px 12px; }
  .noshi-stage { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .v3entry__panel::before { animation: none; }
  .v3go::after { display: none; }
}

/* ── B+C: the Instagram signal, dosed exactly where it means something ──
   The gradient lives in three small places only — the @-badge story ring,
   the field's focus ring, and the word インスタ itself. Everything else
   stays in the house palette. No IG logo, no wordmark. */
.v3field .input__at {
  background:
    linear-gradient(#fffdf9, #fffdf9) content-box,
    linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7) border-box;
  padding: 3px;
  color: var(--accent-deep, #99582e);
  font-size: 17px;
  box-shadow: 0 4px 10px rgba(153, 88, 46, 0.18);
}
.v3field:focus-within {
  animation: none;
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #fffdf9) padding-box,
    linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7) border-box;
  box-shadow: 0 8px 22px rgba(238, 42, 123, 0.13);
}
.v3ig {
  font-weight: 600;
  color: #ee2a7b; /* fallback when background-clip:text is unsupported */
  background: linear-gradient(92deg, #6228d7, #ee2a7b 48%, #f9a13c 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* the field's gradient ring IS the focus indicator — the input's own outline
   would draw a second box inside it */
.v3field .input__handle:focus,
.v3field .input__handle:focus-visible { outline: none; }
/* the pulse cycles stored (masked) analyses, not live events — the label keeps
   it honest until it is wired to real activity (ステマ規制) */
.v3pulse__mock { font-size: 9.5px; color: rgba(92, 82, 72, 0.55); margin-left: 8px; letter-spacing: 0.05em; }

/* ── the peek duo: they rise from behind the panel and look at the field ──
   The stage's bottom edge sits on the panel top; sprites hang a little below
   it so their bodies read as hidden behind the card. */
.entry-peek {
  position: absolute; left: 0; right: 0;
  top: -86px; height: 88px;
  pointer-events: none; overflow: hidden; z-index: 2;
}
.entry-peek__n, .entry-peek__s {
  position: absolute; bottom: -16px; height: 96px; width: auto;
  transform: translateY(115%);
  transition: transform 0.65s cubic-bezier(0.34, 1.3, 0.64, 1);
  will-change: transform;
}
.entry-peek__s { left: 18%; }                        /* over the field she points at */
.entry-peek__n { right: 10%; transition-delay: 0.16s; } /* the concierge watches on */
.entry-peek.is-up .entry-peek__n,
.entry-peek.is-up .entry-peek__s { transform: translateY(0); }
@media (max-width: 900px) {
  /* the copy sits right above the panel on phones — give the peekers their
     own headroom so no face lands on a sentence */
  .v3entry__panelwrap { margin-top: 62px; }
  .entry-peek { top: -70px; height: 72px; }
  .entry-peek__n, .entry-peek__s { height: 78px; bottom: -14px; }
  .entry-peek__s { left: 8%; }
  .entry-peek__n { right: 5%; }
}
@media (prefers-reduced-motion: reduce) {
  .entry-peek__n, .entry-peek__s { transition: none; transform: translateY(0); }
}

/* the moment she points, the field answers with the IG ring */
.v3field.is-noshi-lit {
  animation: none;
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #fffdf9) padding-box,
    linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7) border-box;
  box-shadow: 0 8px 24px rgba(238, 42, 123, 0.16);
}

/* 景表法: the ad label sits directly under the ad units it labels */
.v3adnote { text-align: center; font-size: 11px; color: rgba(92, 82, 72, 0.6); margin: 16px 6vw 0; letter-spacing: 0.04em; }
a.v2mq { text-decoration: none; color: inherit; display: block; cursor: pointer; }
/* owner note 2026-08-16: the typed example starts a touch too far right —
   pull the input text closer to the @ badge (class mounted per page) */
.v3field--tight { gap: 6px; }
.v3field--tight .input__handle { padding-left: 0; }
