/* ============ 2026 additions: tax banner · cost calc · voice · marquee · bento ============ */

/* ---------- Tax banner ---------- */
.tax-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--green-bg);
  border-bottom: 0.5px solid rgba(111,175,42,0.25);
  padding: 9px 20px;
  font-size: 12.5px;
  color: var(--black);
  text-decoration: none;
  transition: background 200ms ease;
}
.tax-banner:hover { background: #EDF7E0; }
.tax-banner .tb-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-en);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--green-text);
  background: white; border: 0.5px solid rgba(111,175,42,0.35);
  border-radius: 999px; padding: 3px 10px;
  white-space: nowrap;
}
.tax-banner .tb-ping {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green);
  animation: softPulse 2s ease-in-out infinite;
}
.tax-banner .tb-text strong { font-weight: 600; }
.tax-banner .tb-arrow { color: var(--green-text); transition: transform 200ms ease; }
.tax-banner:hover .tb-arrow { transform: translateX(3px); }
@media (max-width: 640px) {
  .tax-banner { flex-wrap: wrap; gap: 8px; font-size: 11.5px; padding: 8px 14px; text-align: center; }
}

/* ---------- Cost comparison ---------- */
.cost-card {
  background: white;
  border: 0.5px solid var(--border-card);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 880px;
  margin: 0 auto;
}
.cost-slider-row { margin-bottom: 36px; }
.cost-slider-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--text-dim); margin-bottom: 14px;
}
.cost-slider-val {
  font-family: var(--font-en);
  font-size: 22px; font-weight: 600; color: var(--black);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.cost-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 999px;
  background: linear-gradient(to right, var(--brand-green) 0%, var(--brand-green) var(--fill, 12%), rgba(0,0,0,0.08) var(--fill, 12%));
  outline: none; cursor: pointer;
}
.cost-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: white; border: 2px solid var(--brand-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: grab;
}
.cost-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: white; border: 2px solid var(--brand-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: grab;
}
.cost-slider-scale {
  display: flex; justify-content: space-between;
  font-family: var(--font-en); font-size: 10px; color: var(--text-quiet);
  margin-top: 8px;
}
.cost-compare {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: stretch;
}
.cost-col {
  border: 0.5px solid var(--border-subtle);
  border-radius: 12px; padding: 26px 28px;
  background: var(--bg-off-white);
}
.cost-col.highlight {
  background: var(--green-bg);
  border-color: rgba(111,175,42,0.3);
}
.cost-col-label {
  font-family: var(--font-en);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text-dimmer); margin-bottom: 12px; text-transform: uppercase;
}
.cost-col.highlight .cost-col-label { color: var(--green-text); }
.cost-col-num {
  font-family: var(--font-en);
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 600;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.cost-col-num.dim { color: var(--text-dim); text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: rgba(0,0,0,0.25); }
.cost-col-num.green { color: var(--green-text); }
.cost-col-note { font-size: 12px; color: var(--text-dim); line-height: 1.7; }
.cost-arrow {
  display: flex; align-items: center; font-size: 22px; color: var(--text-quiet);
}
.cost-foot {
  margin-top: 28px; font-size: 11px; color: var(--text-quiet); line-height: 1.8;
}
@media (max-width: 720px) {
  .cost-card { padding: 28px 22px; }
  .cost-compare { grid-template-columns: 1fr; gap: 12px; }
  .cost-arrow { justify-content: center; transform: rotate(90deg); }
}

/* ---------- Solution — Mobbin-style animated cards ---------- */
.sol-logo {
  height: 34px; width: auto;
  display: inline-block;
  vertical-align: -4px;
}
.tm-inline {
  height: 0.92em; width: auto;
  display: inline-block;
  vertical-align: -0.06em;
}
@media (max-width: 780px) { .sol-logo { height: 26px; vertical-align: -3px; } }
.solx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.solx-grid > .reveal { height: 100%; }
.solx-card {
  height: 100%;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: 18px 18px 26px;
  display: flex; flex-direction: column;
}
.solx-visual {
  background: #F7F7F5;
  border-radius: 12px;
  min-height: 160px;
  flex-shrink: 0;
  margin-bottom: 22px;
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 9px;
  justify-content: center;
  overflow: hidden;
}
.solx-chip {
  display: flex; align-items: center; gap: 9px;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 10px; padding: 9px 12px;
  font-size: 11.5px; font-weight: 500;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,0.12);
}
.solx-chip.dim { opacity: 0.65; }
.solx-chip em { font-style: normal; margin-left: auto; font-size: 10px; color: var(--green-text); font-weight: 600; }
.solx-chip em.green { color: var(--green-text); }
.solx-avatar {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-green); color: white;
  font-size: 10px; font-weight: 600;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.solx-avatar.blue { background: var(--blue-text); }
.solx-avatar.lg { width: 34px; height: 34px; font-size: 14px; }
.solx-task {
  display: flex; align-items: center; gap: 9px;
  font-size: 11.5px; color: var(--text-dim);
}
.solx-task i {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-green); color: white;
  font-size: 10px; font-style: normal;
  display: inline-flex; align-items: center; justify-content: center;
}
.solx-profile {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 12px; padding: 11px 12px;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,0.12);
}
.solx-name { font-size: 12px; font-weight: 600; }
.solx-meta { font-size: 10px; color: var(--text-dim); margin-top: 1px; }
.solx-badge {
  margin-left: auto;
  font-size: 9px; font-weight: 600; padding: 3px 8px;
  background: var(--yellow-bg); color: var(--yellow-text);
  border-radius: 999px; white-space: nowrap;
}
.solx-cat {
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.1em;
  color: var(--text-quiet); margin-bottom: 8px; padding: 0 6px;
}
.solx-title { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; padding: 0 6px; }
.solx-body { font-size: 13px; line-height: 1.85; color: var(--text-dim); margin: 0; padding: 0 6px; }
/* looping micro-animations */
@keyframes solxPop {
  0% { opacity: 0; transform: translateY(10px) scale(0.94); }
  12%, 82% { opacity: 1; transform: translateY(0) scale(1); }
  94%, 100% { opacity: 0; transform: translateY(-6px) scale(0.97); }
}
.solx-anim-pop { animation: solxPop 5.2s ease-in-out infinite; }
.solx-anim-pop.d2 { animation-delay: 0.9s; }
@keyframes solxCheck {
  0% { opacity: 0.25; }
  18%, 100% { opacity: 1; }
}
.solx-anim-check { animation: solxCheck 4.2s ease-in-out infinite; }
.solx-anim-check i { transform-origin: center; }
.solx-anim-check.d0 { animation-delay: 0s; }
.solx-anim-check.d1 { animation-delay: 0.7s; }
.solx-anim-check.d2 { animation-delay: 1.4s; }
@keyframes solxPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.solx-anim-pulse { animation: solxPulse 2.4s ease-in-out infinite; }
html[data-motion="off"] .solx-anim-pop,
html[data-motion="off"] .solx-anim-check,
html[data-motion="off"] .solx-anim-pulse { animation: none; }
@media (max-width: 860px) {
  .solx-grid { grid-template-columns: 1fr; }
}

/* ---------- Voice — testimonial card grid ---------- */
.voice-grid {
  columns: 3;
  column-gap: 14px;
  margin-bottom: 8px;
}
.voice-grid > .reveal {
  break-inside: avoid;
  margin-bottom: 14px;
  display: block;
}
.voice-tile {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
  transition: transform 250ms cubic-bezier(.16,1,.3,1), box-shadow 250ms ease;
}
.voice-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -22px rgba(0,0,0,0.16); }
.vt-quote {
  font-size: 13.5px; line-height: 2; color: var(--black);
  margin: 0 0 20px; text-wrap: pretty;
}
.vt-person { display: flex; align-items: center; gap: 12px; border-top: 0.5px solid var(--border-subtle); padding-top: 16px; }
.vt-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: #F7F7F5; border: 0.5px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vt-avatar img { width: 100%; height: 100%; object-fit: cover; }
.vt-who { display: flex; flex-direction: column; gap: 1px; }
.vt-name { font-size: 13px; font-weight: 600; }
.vt-role { font-size: 11px; color: var(--text-dim); }
@media (max-width: 960px) {
  .voice-grid { columns: 2; }
}
@media (max-width: 640px) {
  .voice-grid { columns: 1; }
}

/* ---------- Voice / testimonial ---------- */
.voice-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 0; background: white;
  border: 0.5px solid var(--border-card);
  border-radius: 16px; overflow: hidden;
  max-width: 980px; margin: 0 auto;
}
.voice-photo { min-height: 340px; padding: 16px; min-width: 0; position: relative; }
.voice-photo image-slot { position: absolute; inset: 16px; width: auto; height: auto; }
.voice-body {
  padding: 44px 48px; display: flex; flex-direction: column; justify-content: center;
  position: relative; min-width: 0;
}
.voice-quote-mark {
  font-family: var(--font-jp-serif);
  font-size: 64px; line-height: 1; color: var(--brand-green);
  opacity: 0.5; margin-bottom: 4px;
}
.voice-quote {
  font-family: var(--font-jp-serif);
  font-size: clamp(17px, 2vw, 21px); font-weight: 400;
  line-height: 2; color: var(--black);
  margin: 0 0 28px 0; text-wrap: pretty;
}
.voice-attr { border-top: 0.5px solid var(--border-subtle); padding-top: 18px; }
.voice-attr-name { font-size: 14px; font-weight: 600; letter-spacing: 0.01em; }
.voice-attr-role { font-size: 12px; color: var(--text-dim); margin-top: 3px; }
@media (max-width: 800px) {
  .voice-card { grid-template-columns: 1fr; }
  .voice-photo { min-height: 240px; }
  .voice-body { padding: 30px 26px; }
}

.clients-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-top: 36px;
}
.client-chip {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 999px; padding: 9px 18px;
}
.client-chip .client-name { font-size: 13px; font-weight: 500; color: var(--black); }
.client-chip .client-note {
  font-family: var(--font-en); font-size: 9.5px; letter-spacing: 0.08em;
  color: var(--text-quiet);
}
.client-chip.upcoming { border-style: dashed; background: transparent; }
.client-chip.upcoming .client-name { color: var(--text-dim); }
.client-chip.upcoming .client-note { color: var(--yellow-stroke); font-weight: 600; }

/* ---------- Integration marquee ---------- */
.marquee-strip {
  padding: 36px 0 44px;
}
.marquee-label {
  font-family: var(--font-en);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-quiet);
  text-align: center; margin-bottom: 22px;
}
.marquee-window {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marqueeScroll 52s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-en);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: rgba(0,0,0,0.5); white-space: nowrap;
}
.marquee-logo {
  height: 24px; width: auto; display: block;
  mix-blend-mode: multiply;
}
/* the animated track is its own compositing layer — give it the strip's
   background so multiply has a base to blend white logo boxes into.
   flows right→left, slower than the screens marquee. */
.marquee-track { background: white; }
.marquee-ico {
  width: 22px; height: 22px; border-radius: 6px;
  display: block; object-fit: contain;
}
.marquee-jp {
  font-family: var(--font-jp);
  font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.5);
}
.marquee-item.upcoming { color: rgba(0,0,0,0.22); }
.marquee-soon {
  font-family: var(--font-en);
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--yellow-stroke);
  border: 0.5px dashed var(--yellow-stroke);
  border-radius: 999px; padding: 2px 7px;
}
.marquee-new {
  font-family: var(--font-en);
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--green-text);
  background: var(--green-bg);
  border: 0.5px solid rgba(111,175,42,0.35);
  border-radius: 999px; padding: 2px 7px;
}
.marquee-via {
  font-family: var(--font-en);
  font-size: 8.5px; letter-spacing: 0.06em;
  color: var(--text-quiet);
  border: 0.5px solid var(--border-subtle);
  border-radius: 999px; padding: 2px 7px;
  background: white;
}
.marquee-foot {
  text-align: center; margin-top: 18px;
  font-size: 10.5px; color: var(--text-quiet);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[data-motion="off"] .marquee-track { animation: none; }

/* ---------- Screens gallery (Mobbin-style row) ---------- */
.screens-section { overflow: hidden; }
.sg-head { text-align: center; }
.sg-head .section-title { margin-left: auto; margin-right: auto; }
.sg-tabs-wrap { display: flex; justify-content: center; margin-bottom: 40px; max-width: 100%; }
.sg-tabs {
  display: flex; gap: 2px;
  background: #EFEFEC;
  border-radius: 999px;
  padding: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.sg-tabs::-webkit-scrollbar { display: none; }
.sg-tabs button {
  appearance: none; border: none; cursor: pointer;
  background: transparent;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  font-family: var(--font-jp);
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.sg-tabs button:hover { color: var(--black); }
.sg-tabs button.active {
  background: white; color: var(--black); font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.sg-bleed { width: 100%; }
.sg-window {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  padding: 8px 0 22px;
}
.sg-track {
  display: flex; width: max-content;
  animation: sgFlow 70s linear infinite;
}
.sg-set { display: flex; gap: 22px; padding-right: 22px; }
@keyframes sgFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sg-window:hover .sg-track { animation-play-state: paused; }
html[data-motion="off"] .sg-track { animation: none; }
.sg-item { flex-shrink: 0; width: 250px; }
.sg-label {
  text-align: center;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.screen-card.sg-tall {
  width: 100%; height: 420px;
  padding: 14px 16px 16px;
}
.sc-chrome { display: flex; gap: 5px; margin-bottom: 16px; flex-shrink: 0; }
.sc-chrome i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
}
.sg-tall .sc-body { justify-content: flex-start; gap: 10px; }
.sg-tall .sc-body.sc-center { justify-content: center; }
.sg-tall .sc-cap { margin-top: auto; }
@keyframes sgIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.sg-anim { animation: sgIn 480ms cubic-bezier(.16,1,.3,1) both; }
html[data-motion="off"] .sg-anim { animation: none; }

/* ---------- Screen card looping micro-animations (Mobbin-style) ---------- */
@keyframes scDrawLine { 0% { stroke-dashoffset: 400; } 45%, 92% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
.screen-card[data-k="dash"] .sc-chart polyline {
  stroke-dasharray: 400;
  animation: scDrawLine 5.5s ease-in-out infinite;
}
@keyframes scGrow { 0% { transform: scaleY(0.15); } 35%, 90% { transform: scaleY(1); } 100% { transform: scaleY(1); } }
.screen-card[data-k="sales"] .sc-bars i {
  transform-origin: bottom;
  animation: scGrow 5s cubic-bezier(.16,1,.3,1) infinite;
}
.screen-card[data-k="sales"] .sc-bars i:nth-child(2) { animation-delay: 0.08s; }
.screen-card[data-k="sales"] .sc-bars i:nth-child(3) { animation-delay: 0.16s; }
.screen-card[data-k="sales"] .sc-bars i:nth-child(4) { animation-delay: 0.24s; }
.screen-card[data-k="sales"] .sc-bars i:nth-child(5) { animation-delay: 0.32s; }
.screen-card[data-k="sales"] .sc-bars i:nth-child(6) { animation-delay: 0.4s; }
.screen-card[data-k="sales"] .sc-bars i:nth-child(7) { animation-delay: 0.48s; }
@keyframes scRowIn {
  0% { opacity: 0; transform: translateY(7px); }
  9%, 90% { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
.screen-card[data-k="crm"] .sc-cust,
.screen-card[data-k="survey"] .sc-line,
.screen-card[data-k="detail"] .sc-line {
  animation: scRowIn 5.5s ease infinite;
}
.screen-card[data-k="crm"] .sc-cust:nth-child(2),
.screen-card[data-k="survey"] .sc-line:nth-child(2),
.screen-card[data-k="detail"] .sc-line:nth-child(3) { animation-delay: 0.3s; }
.screen-card[data-k="crm"] .sc-cust:nth-child(3),
.screen-card[data-k="survey"] .sc-line:nth-child(3),
.screen-card[data-k="detail"] .sc-line:nth-child(4) { animation-delay: 0.6s; }
.screen-card[data-k="crm"] .sc-cust:nth-child(4),
.screen-card[data-k="survey"] .sc-line:nth-child(4),
.screen-card[data-k="detail"] .sc-line:nth-child(5) { animation-delay: 0.9s; }
@keyframes scPress {
  0%, 54% { transform: none; }
  58% { transform: scale(0.96); }
  62%, 100% { transform: none; }
}
.screen-card[data-k="pay"] .sc-book-btn,
.screen-card[data-k="booking"] .sc-book-btn,
.screen-card[data-k="booking"] .mb-search-btn {
  animation: scPress 3.8s ease infinite;
}
@keyframes scPinIn {
  0% { opacity: 0; transform: translateY(6px) scale(0.9); }
  10%, 88% { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
.screen-card[data-k="lock"] .sc-pin i { animation: scPinIn 4.6s cubic-bezier(.16,1,.3,1) infinite; }
.screen-card[data-k="lock"] .sc-pin i:nth-child(2) { animation-delay: 0.18s; }
.screen-card[data-k="lock"] .sc-pin i:nth-child(3) { animation-delay: 0.36s; }
.screen-card[data-k="lock"] .sc-pin i:nth-child(4) { animation-delay: 0.54s; }
@keyframes scQr { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
.screen-card[data-k="checkin"] .sc-qr { animation: scQr 3.2s ease-in-out infinite; }
@keyframes scBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.screen-card .sc-line strong.wait { animation: scBlink 1.6s ease-in-out infinite; }
@keyframes scPopLoop {
  0% { opacity: 0; transform: scaleX(0.4); }
  12%, 86% { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
.screen-card[data-k="ledger"] .sc-ledger-row:nth-child(3) .sc-track i {
  transform-origin: left center;
  animation: scPopLoop 5s cubic-bezier(.16,1,.3,1) infinite;
}
@keyframes scCellSel {
  0%, 35%, 100% { box-shadow: none; }
  45%, 85% { box-shadow: inset 0 0 0 1.5px var(--brand-green); }
}
.screen-card[data-k="rate"] .sc-mcell.hot { animation: scCellSel 4.4s ease infinite; }
.screen-card[data-k="rate"] .sc-mcell.peak { animation: scCellSel 4.4s ease infinite 0.25s; }
@keyframes scBubble {
  0% { opacity: 0; transform: translateY(8px) scale(0.96); }
  10%, 90% { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
.screen-card[data-k="ai"] .sc-bubble { animation: scBubble 6s ease infinite; }
.screen-card[data-k="ai"] .sc-bubble:nth-child(2) { animation-delay: 0.7s; }
.screen-card[data-k="ai"] .sc-bubble:nth-child(3) { animation-delay: 1.4s; }
.screen-card[data-k="ai"] .sc-bubble:nth-child(4) { animation-delay: 2.1s; }
html[data-motion="off"] .screen-card * { animation: none !important; }
.sg-featlist {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin-top: 36px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.sg-feat {
  display: inline-flex; align-items: center; gap: 7px;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-dim);
}
.sg-feat svg { flex-shrink: 0; }
.sc-book-btn {
  background: var(--brand-green); color: white;
  border-radius: 999px;
  text-align: center;
  font-size: 12px; font-weight: 600;
  padding: 9px 0;
  margin: 6px 0;
}
.sc-pin {
  display: flex; gap: 8px; justify-content: center;
  padding: 10px 0 6px;
}
.sc-pin i {
  width: 38px; height: 46px;
  background: var(--green-bg);
  border: 1px solid rgba(111,175,42,0.35);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-style: normal;
  font-size: 21px; font-weight: 600; color: var(--green-text);
  font-variant-numeric: tabular-nums;
}
/* online payment card — matches demo-yoyaku form language */
.sc-recap {
  display: flex; align-items: center; gap: 9px;
  background: var(--green-bg);
  border: 0.5px solid rgba(111,175,42,0.25);
  border-radius: 10px;
  padding: 9px 11px;
}
.sc-recap-icon {
  width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
  background: white; border: 0.5px solid rgba(111,175,42,0.3);
  display: flex; align-items: center; justify-content: center;
}
.sc-recap-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sc-recap-main strong { font-size: 11px; font-weight: 600; letter-spacing: -0.01em; }
.sc-recap-main em { font-style: normal; font-size: 9.5px; color: var(--text-dim); }
.sc-field { display: flex; flex-direction: column; gap: 5px; }
.sc-field-label { font-size: 10px; font-weight: 500; color: var(--text-dim); }
.sc-field-input {
  display: flex; align-items: center;
  background: var(--bg-off-white);
  border: 0.5px solid var(--border-card);
  border-radius: 9px;
  padding: 8px 11px;
  font-family: var(--font-en);
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--black);
}
.sc-field-input i {
  margin-left: auto;
  font-style: normal; font-size: 8.5px; font-weight: 700;
  color: #1A1F71; letter-spacing: 0.04em;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 4px; padding: 2px 5px;
}
.sc-secure {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 9.5px; color: var(--text-quiet);
}
.sc-cap {
  margin-top: 12px; padding-top: 12px;
  border-top: 0.5px solid var(--border-subtle);
  font-size: 11px; line-height: 1.6; color: var(--text-dim);
}
.sc-memo { font-size: 11px; color: var(--text-dim); line-height: 1.6; padding: 0 2px; }
.sc-tags-row { display: flex; gap: 5px; margin-top: auto; }
.sc-rate-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.sc-rate-cell {
  background: var(--bg-off-white); border-radius: 6px;
  padding: 6px 2px; text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.sc-rate-cell span { font-size: 8px; color: var(--text-quiet); }
.sc-rate-cell strong { font-family: var(--font-en); font-size: 9.5px; letter-spacing: -0.02em; }
.sc-rate-cell.hot { background: var(--green-bg); }
.sc-rate-cell.hot strong { color: var(--green-text); }
/* month rate calendar */
.sc-month-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.sc-month-head span { font-size: 11.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.sc-month-head em { font-style: normal; font-size: 9px; color: var(--text-quiet); }
.sc-month-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.sc-mwd { text-align: center; font-size: 7.5px; color: var(--text-quiet); padding-bottom: 2px; }
.sc-mcell {
  background: var(--bg-off-white);
  border-radius: 4px;
  padding: 2px 0 3px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.sc-mcell > span { font-size: 6.5px; color: var(--text-quiet); line-height: 1.3; }
.sc-mcell strong { font-family: var(--font-en); font-size: 8.5px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.sc-mcell.hot { background: var(--green-bg); }
.sc-mcell.hot strong { color: var(--green-text); }
.sc-mcell.peak { background: var(--yellow-bg); }
.sc-mcell.peak strong { color: var(--yellow-text); }
/* room optimization */
.sc-track i.moved {
  outline: 1.5px solid var(--brand-green);
  outline-offset: 1px;
  animation: scMoved 2.4s ease-in-out infinite;
}
@keyframes scMoved {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(-3px); opacity: 0.85; }
}
html[data-motion="off"] .sc-track i.moved { animation: none; }
.sc-track.empty {
  border: 1px dashed rgba(0,0,0,0.15);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.sc-track.empty em {
  font-style: normal; font-size: 8px; color: var(--text-quiet); letter-spacing: 0.02em;
}
.sc-center { align-items: center; justify-content: center; gap: 12px; }
.sc-qr {
  display: grid; grid-template-columns: repeat(5, 10px);
  grid-auto-rows: 10px; gap: 3px;
  padding: 10px; background: white;
  border: 0.5px solid var(--border-subtle); border-radius: 10px;
}
.sc-qr i { background: transparent; border-radius: 2px; }
.sc-qr i.on { background: var(--black); }
@media (max-width: 1000px) { .sg-item { width: 230px; } }

/* ---------- Screens marquee ---------- */
.screens-section { padding-bottom: 100px; overflow: hidden; }
.screens-window {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.screens-track {
  display: flex; gap: 18px; width: max-content;
  animation: marqueeScroll 44s linear infinite;
  padding: 8px 0 16px;
}
.screens-window:hover .screens-track { animation-play-state: paused; }
html[data-motion="off"] .screens-track { animation: none; }
.screen-card {
  width: 264px; height: 196px; flex-shrink: 0;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.12);
  transition: transform 250ms cubic-bezier(.16,1,.3,1);
}
.screen-card:hover { transform: translateY(-4px); }
.sc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.sc-dot { width: 8px; height: 8px; border-radius: 50%; }
.screen-card.green .sc-dot { background: var(--brand-green); }
.screen-card.yellow .sc-dot { background: var(--brand-yellow, #F5D938); }
.screen-card.blue .sc-dot { background: var(--brand-blue, #9ED4E2); }
.sc-title { font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em; }
.sc-body { flex: 1; display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.sc-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sc-tile {
  background: var(--bg-off-white); border-radius: 8px; padding: 8px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.sc-tile span { font-size: 9.5px; color: var(--text-quiet); }
.sc-tile strong { font-family: var(--font-en); font-size: 15px; letter-spacing: -0.01em; }
.sc-chart { width: 100%; height: 52px; margin-top: auto; }
.sc-ledger-row { display: flex; align-items: center; gap: 10px; }
.sc-room { font-size: 10px; color: var(--text-dim); width: 42px; flex-shrink: 0; }
.sc-track { position: relative; flex: 1; height: 16px; background: var(--bg-off-white); border-radius: 5px; }
.sc-track i { position: absolute; top: 2px; bottom: 2px; border-radius: 4px; }
.sc-track i.green { background: rgba(111,175,42,0.35); }
.sc-track i.yellow { background: rgba(245,217,56,0.55); }
.sc-track i.blue { background: rgba(158,212,226,0.6); }
.sc-cust { display: flex; align-items: center; gap: 9px; background: var(--bg-off-white); border-radius: 8px; padding: 7px 10px; }
.sc-cust i {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-green); color: white; font-style: normal;
  font-size: 10px; font-weight: 600;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.sc-cust i > * { line-height: 1; flex: none; font-size: inherit; font-weight: inherit; }
.sc-cust > span { font-size: 11px; font-weight: 500; flex: 1; }
.sc-cust > em { font-style: normal; font-size: 9px; color: var(--text-quiet); }
.sc-line {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; color: var(--text-dim);
  padding: 6px 2px; border-bottom: 0.5px solid var(--border-subtle);
}
.sc-line strong { font-family: var(--font-en); font-size: 11.5px; color: var(--black); font-weight: 600; }
.sc-line.total strong, .sc-line strong.ok { color: var(--green-text); }
.sc-line strong.wait { color: var(--yellow-stroke); }
.sc-tax-opt {
  font-style: normal; font-size: 8.5px; font-weight: 600; color: var(--green-text);
  background: var(--green-bg); border-radius: 4px; padding: 1.5px 5px; margin-left: 6px;
  white-space: nowrap; vertical-align: 1px;
}
.sc-bars { flex-direction: row; align-items: flex-end; gap: 9px; padding: 4px 6px 0; }
.sc-bars i { flex: 1; background: rgba(158,212,226,0.65); border-radius: 5px 5px 2px 2px; }
.sc-bars i:nth-child(odd) { background: rgba(111,175,42,0.4); }
.sc-bubble {
  font-size: 10.5px; line-height: 1.6; padding: 7px 11px; border-radius: 11px;
  max-width: 88%;
}
.sc-bubble.user { background: var(--bg-off-white); align-self: flex-end; }
.sc-bubble.ai { background: var(--blue-bg); color: var(--blue-text); align-self: flex-start; }

/* ---------- Hero: Mobbin-style stat headline + floating logos ---------- */
.hero-lines { display: flex; flex-direction: column; gap: 2px; }
.hero-lines .hl-intro { display: block; }
.hero-lines .hl-stat {
  display: block;
  color: rgba(0,0,0,0.35);
}
.hero-lines .hl-stat em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  margin-right: 12px;
}
.hero-lines .hl-stat em.green { color: var(--green-text); }
.hero-lines .hl-stat em.yellow { color: #B8880A; }
.hero-lines .hl-stat em.blue { color: var(--blue-text); }
.hero-float {
  position: absolute;
  width: 108px; height: 52px;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  box-shadow: 0 16px 40px -18px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  padding: 9px 12px;
  animation: heroFloat 7s ease-in-out infinite alternate;
  z-index: 1;
}
.hero-float img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes heroFloat {
  from { transform: translateY(-7px) rotate(-1.2deg); }
  to { transform: translateY(9px) rotate(1.2deg); }
}
html[data-motion="off"] .hero-float { animation: none; }
@media (max-width: 1100px) {
  .hero-float { display: none; }
}

/* ---------- Solution flip cards ---------- */
.sol-switch-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 36px;
}
.sol-switch-label {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-quiet);
  transition: color 300ms ease;
}
.sol-switch-label.active { color: var(--black); }
.sol-switch-label.green.active { color: var(--green-text); }
.sol-switch {
  width: 58px; height: 32px; border-radius: 999px;
  border: 0.5px solid var(--border-card);
  background: rgba(0,0,0,0.08);
  padding: 3px; cursor: pointer;
  transition: background 350ms ease, border-color 350ms ease;
  display: flex; align-items: center;
}
.sol-switch.on { background: var(--brand-green); border-color: var(--brand-green); }
.sol-knob {
  width: 24px; height: 24px; border-radius: 50%;
  background: white; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 350ms cubic-bezier(.16,1,.3,1);
}
.sol-switch.on .sol-knob { transform: translateX(26px); }

.sol-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.sol-flip { perspective: 1400px; height: 230px; }
.sol-flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 750ms cubic-bezier(.16,1,.3,1);
}
.sol-flip.on .sol-flip-inner { transform: rotateY(180deg); }
.sol-face {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 14px; padding: 26px 28px;
  display: flex; flex-direction: column;
}
.sol-front {
  background: white;
  border: 0.5px solid var(--border-card);
}
.sol-back {
  background: var(--green-bg);
  border: 0.5px solid rgba(111,175,42,0.3);
  transform: rotateY(180deg);
}
.sol-cat {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px;
}
.sol-cat-jp { font-size: 13px; font-weight: 600; }
.sol-cat-en {
  font-family: var(--font-en); font-size: 9.5px;
  letter-spacing: 0.1em; color: var(--text-quiet);
}
.sol-state-label {
  font-family: var(--font-en);
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--text-quiet); margin-bottom: 10px;
}
.sol-state-label.green { color: var(--green-text); }
.sol-text {
  font-size: 19px; font-weight: 500; line-height: 1.6;
  letter-spacing: -0.01em; text-wrap: balance;
}
.sol-front .sol-text { color: var(--text-dim); }
.sol-sub {
  margin-top: auto; font-size: 12px; line-height: 1.8;
  color: var(--text-quiet);
}
html[data-motion="off"] .sol-flip-inner { transition: none; }

/* ---------- Sticky scroll-telling highlights ---------- */
.shl-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 72px; align-items: start;
}
.shl-block {
  min-height: 72vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 0;
  opacity: 0.3;
  transition: opacity 500ms ease;
}
.shl-block.active { opacity: 1; }
.shl-block h2 {
  font-size: 34px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.35; margin: 0 0 18px 0; text-wrap: balance;
}
.shl-inline-visual { display: none; margin-top: 28px; }
.shl-visual-col { position: relative; align-self: stretch; }
.shl-sticky {
  position: sticky; top: 14vh;
  height: 72vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.shl-pane {
  position: absolute;
  width: 100%;
  max-width: 480px;
  height: 408px;
  display: flex; align-items: stretch;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 550ms ease, transform 650ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.shl-pane > * {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column; justify-content: center;
  box-sizing: border-box;
}
.shl-pane.show { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; z-index: 2; }
.shl-pane.above { opacity: 0; transform: translate(-50%, calc(-50% - 44px)) scale(0.94); pointer-events: none; z-index: 1; }
.shl-pane.below { opacity: 0; transform: translate(-50%, calc(-50% + 44px)) scale(0.94); pointer-events: none; z-index: 1; }
.shl-dots {
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
}
.shl-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--border-card);
  transition: all 350ms cubic-bezier(.16,1,.3,1);
}
.shl-dot.on { height: 22px; }
@media (max-width: 900px) {
  .shl-grid { grid-template-columns: 1fr; gap: 0; }
  .shl-visual-col { display: none; }
  .shl-block { min-height: 0; opacity: 1; padding: 36px 0; }
  .shl-inline-visual { display: block; }
}
html[data-motion="off"] .shl-block { opacity: 1; }

/* ---------- Global micro-interaction support ---------- */
.btn { transition: transform 180ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease; }
.bento-cell, .strength-card, .pv2-card { transform-style: preserve-3d; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
.site-nav { transition: transform 350ms cubic-bezier(.16,1,.3,1), border-color 200ms ease, background 200ms ease !important; }
.site-nav.nav-hidden { transform: translateY(-100%); }

/* ---------- Hero mock — interactive views ---------- */
.mock-view { animation: mockViewIn 480ms cubic-bezier(.16,1,.3,1) both; }
@keyframes mockViewIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mock-nav-item.dim { opacity: 0.45; cursor: default; }
.mock-nav-item:not(.dim) { cursor: pointer; }
/* guest booking view in hero mock */
.mock-outer { }
.mock-mode-tabs {
  display: inline-flex; gap: 2px;
  background: #EFEFEC;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 18px;
}
.mock-mode-tabs button {
  appearance: none; border: none; cursor: pointer;
  background: transparent;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-dim);
  font-family: var(--font-jp);
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.mock-mode-tabs button:hover { color: var(--black); }
.mock-mode-tabs button.active {
  background: white; color: var(--black); font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.mock-guest { background: white; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-start; }
/* e-guesthouse style booking page */
.mb2 { display: flex; flex-direction: column; height: 100%; min-height: 511px; text-align: left; }
.mb2-top {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 14px 22px 10px;
}
.mb2-login { font-size: 10px; color: var(--text-dim); grid-column: 3; justify-self: end; display: inline-flex; gap: 12px; align-items: center; }
.mb2-logo {
  grid-column: 2;
  justify-self: center;
  display: inline-flex; align-items: center;
}
.mb2-logo img { height: 20px; width: auto; display: block; object-fit: contain; }
.mb2-lang { grid-column: 3; justify-self: end; display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--text-dim); margin-left: 12px; }
.mb2-top .mb2-login { grid-column: 1; justify-self: start; }
.mb2-filter {
  display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr auto;
  gap: 4px; align-items: center;
  margin: 4px 20px 14px;
  padding: 7px 8px 7px 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  box-shadow: 0 6px 20px -14px rgba(0,0,0,0.18);
}
.mb2-fcell { display: flex; flex-direction: column; gap: 2px; padding-right: 10px; border-right: 1px solid rgba(0,0,0,0.06); }
.mb2-fcell:nth-child(4) { border-right: none; }
.mb2-fcell span { font-size: 8px; color: var(--text-quiet); }
.mb2-fcell strong { font-size: 10.5px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.mb2-fcell strong.mute { color: var(--text-quiet); font-weight: 400; }
.mb2-fcell.right { text-align: left; }
.mb2-search-ico {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand-green); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mb2-body { flex: 1; background: #F5F5F3; padding: 14px 20px; display: flex; flex-direction: column; gap: 10px; }
.mb2-notice {
  background: rgba(0,0,0,0.035);
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 9px; line-height: 1.7; color: var(--text-dim);
}
.mb2-room {
  background: white; border: none;
  border-radius: 16px;
  padding: 16px 18px 14px;
  box-shadow: 0 10px 30px -22px rgba(0,0,0,0.2);
}
.mb2-room-name { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.mb2-room-desc { font-size: 9.5px; line-height: 1.8; color: var(--text-dim); margin-bottom: 12px; }
.mb2-plan {
  display: flex; gap: 14px;
  border-top: 0.5px solid var(--border-subtle);
  padding-top: 12px;
}
.mb2-photo {
  width: 122px; height: 78px; border-radius: 10px; flex-shrink: 0;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.32), rgba(0,0,0,0.05) 55%),
    repeating-linear-gradient(45deg, #C9BBA6, #C9BBA6 6px, #B8A78F 6px, #B8A78F 12px);
}
.mb2-plan-main { display: flex; flex-direction: column; gap: 4px; }
.mb2-plan-name { font-size: 10.5px; font-weight: 500; color: var(--text-dim); }
.mb2-plan-price { font-family: var(--font-en); font-size: 15px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.mb2-select {
  margin-top: 4px;
  align-self: flex-start;
  background: #111; color: white;
  border: none;
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  padding: 6px 18px;
}
.mb2-thumbs { display: flex; gap: 6px; margin-top: 10px; }
.mb2-thumbs i {
  width: 36px; height: 26px; border-radius: 6px;
  background: repeating-linear-gradient(45deg, #D8CDBB, #D8CDBB 4px, #CCBFA9 4px, #CCBFA9 8px);
}
.mb2-foot {
  border-top: 0.5px solid var(--border-subtle);
  padding: 9px 0;
  text-align: center;
  font-size: 10px; color: var(--text-dim);
  background: white;
}
.mb2-foot strong { color: var(--black); font-weight: 600; }
/* guest my page — 予約一覧 (matches real product) */
.mp2 { display: flex; flex-direction: column; height: 100%; min-height: 480px; text-align: left; background: white; }
.mp2-nav {
  display: flex; align-items: center; gap: 18px;
  padding: 13px 22px;
  border-bottom: 0.5px solid var(--border-subtle);
}
.mp2-logo { height: 14px; width: auto; display: block; margin-right: 4px; }
.mp2-item {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; color: var(--text-dim);
}
.mp2-item.active { color: var(--black); font-weight: 600; }
.mp2-user { margin-left: auto; font-size: 10px; color: var(--text-dim); }
.mp2-body { flex: 1; padding: 18px 22px; display: flex; flex-direction: column; gap: 13px; }
.mp2-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.mp2-tabs {
  display: flex; gap: 20px;
  font-size: 10.5px; color: var(--text-dim);
  border-bottom: 0.5px solid var(--border-subtle);
  padding-bottom: 9px;
}
.mp2-tabs b { color: var(--black); font-weight: 600; position: relative; }
.mp2-tabs b::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--black);
}
.mp2-card {
  position: relative;
  display: flex; gap: 14px; align-items: flex-start;
  border: 0.5px solid var(--border-card);
  border-radius: 10px;
  padding: 13px;
}
.mp2-photo {
  width: 132px; height: 88px; border-radius: 6px; flex-shrink: 0;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.28), rgba(0,0,0,0.04) 55%),
    repeating-linear-gradient(45deg, #9DB89A, #9DB89A 6px, #8CA989 6px, #8CA989 12px);
}
.mp2-main { flex: 1; display: flex; flex-direction: column; gap: 7px; padding-top: 2px; }
.mp2-room { font-size: 12.5px; font-weight: 700; }
.mp2-dates { display: flex; align-items: center; gap: 16px; }
.mp2-date { display: inline-flex; flex-direction: column; gap: 2px; }
.mp2-date span { font-size: 8.5px; color: var(--text-quiet); }
.mp2-date strong { font-size: 11px; font-weight: 600; letter-spacing: -0.01em; }
.mp2-arrow { color: var(--text-quiet); font-size: 11px; }
.mp2-meta { font-size: 9.5px; color: var(--text-dim); line-height: 1.75; }
.mp2-detail {
  position: absolute; right: 13px; bottom: 13px;
  background: #2E2724; color: white;
  font-size: 10px; font-weight: 600;
  border-radius: 6px; padding: 6px 15px;
}
.mp2-member {
  display: flex; align-items: center; gap: 10px;
  border: 0.5px solid var(--border-card);
  border-radius: 10px;
  padding: 11px 13px;
}
.mp2-member-title { font-size: 11px; font-weight: 700; }
.mp2-badge {
  background: #E4B62E; color: #4A3A06;
  font-size: 9px; font-weight: 600;
  border-radius: 999px; padding: 3px 10px;
}
.mp2-valid {
  background: var(--yellow-bg); color: var(--yellow-text);
  font-size: 9px; font-weight: 600;
  border-radius: 6px; padding: 3px 8px;
}
.mp2-member-meta { font-size: 9.5px; color: var(--text-dim); }

/* ---------- About — 3 businesses with logos ---------- */
.biz-lead {
  font-size: 13.5px; font-weight: 700; letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.biz-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 9px;
}
.biz-logo { width: auto; display: block; }
.biz-role {
  font-size: 10px; font-weight: 600;
  border-radius: 999px; padding: 3px 11px;
  white-space: nowrap;
}
.biz-yellow .biz-role { background: var(--yellow-bg); color: var(--yellow-text); }
.biz-green .biz-role { background: var(--green-bg); color: var(--green-text); }
.biz-blue .biz-role { background: var(--blue-bg); color: var(--blue-text); }
.biz-proof {
  display: inline-block;
  font-size: 9.5px; font-weight: 600;
  color: var(--blue-text);
  border: 1px dashed rgba(90, 141, 158, 0.5);
  border-radius: 999px; padding: 2px 9px;
  margin-bottom: 8px;
}
.biz-flow {
  text-align: center;
  color: var(--text-quiet);
  font-size: 12px; line-height: 1;
  margin: -4px 0;
}
.biz-loop {
  font-size: 11px; color: var(--text-dim); line-height: 1.8;
  padding-top: 2px;
}

/* ---------- About v2 — modern business cards ---------- */
.ramps-lead {
  text-align: center;
  font-size: 14.5px; font-weight: 700; letter-spacing: -0.005em;
  margin-bottom: 22px;
}
.ramps-biz {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  align-items: stretch;
}
.rb-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 250ms cubic-bezier(.16,1,.3,1), box-shadow 250ms ease;
}
.rb-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -22px rgba(0,0,0,0.16); }
.rb-visual {
  position: relative;
  height: 128px;
  background: #F7F7F5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px;
}
.rb-visual img { display: block; }
.rb-role {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 600;
  border-radius: 999px; padding: 3px 11px;
}
.rb-role.yellow { background: var(--yellow-bg); color: var(--yellow-text); }
.rb-role.green { background: var(--green-bg); color: var(--green-text); }
.rb-role.blue { background: var(--blue-bg); color: var(--blue-text); }
.rb-dmp {
  font-family: var(--font-en);
  font-size: 21px; font-weight: 600; letter-spacing: -0.02em;
}
.rb-proof {
  font-size: 9.5px; font-weight: 600;
  color: var(--blue-text);
  border: 1px dashed rgba(90, 141, 158, 0.5);
  border-radius: 999px; padding: 2px 10px;
}
.rb-body { padding: 16px 20px 20px; }
.rb-cat {
  font-family: var(--font-en);
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--text-quiet);
  margin-bottom: 6px;
}
.rb-body p { margin: 0; font-size: 13px; line-height: 1.9; color: var(--text-dim); }
a.rb-card { text-decoration: none; color: inherit; }
.rb-ext {
  position: absolute; top: 10px; right: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-dim);
  opacity: 0; transform: translateY(2px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.rb-card:hover .rb-ext { opacity: 1; transform: none; }
.ramps-loop {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  margin-top: 26px;
  font-size: 12.5px; font-weight: 600;
}
.ramps-loop i { color: var(--text-quiet); font-style: normal; font-weight: 400; }
.ramps-loop .loop-back { color: var(--green-text); }
.ramps-sub {
  text-align: center;
  font-size: 11.5px; color: var(--text-dim);
  margin-top: 10px;
}
.ramps-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px 36px;
  border-top: 1px solid #ECECEA;
  margin-top: 46px;
  padding-top: 30px;
}
.rf-k { font-size: 10.5px; color: var(--text-quiet); margin-bottom: 4px; }
.rf-v { font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em; }
@media (max-width: 860px) {
  .ramps-biz { grid-template-columns: 1fr; }
  .ramps-facts { grid-template-columns: 1fr 1fr; }
}

/* ---------- Purpose / Mission — modern override ---------- */
.purpose-mission {
  margin: 72px auto 0;
  max-width: none;
  background: #F4F4F1;
  border: none;
  border-radius: 24px;
  padding: 64px 56px;
  gap: 48px;
}
.pm-label { font-weight: 600; letter-spacing: 0.16em; }
.pm-text { font-size: 21px; line-height: 1.95; }
.pm-divider { height: 100%; min-height: 96px; background: rgba(0,0,0,0.08); }
@media (max-width: 780px) {
  .purpose-mission { padding: 40px 28px; margin-top: 48px; }
  .pm-divider { min-height: 0; height: 1px; }
}
.mock-grid.guest .mock-sidebar { opacity: 0.35; pointer-events: auto; }
.mb-wrap { padding: 14px 18px 10px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.mb-head { display: flex; justify-content: space-between; align-items: center; }
.mb-inn { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.mb-inn span { font-size: 9.5px; font-weight: 500; color: var(--text-quiet); margin-left: 7px; }
.mb-lang {
  display: inline-flex; border: 0.5px solid var(--border-card); border-radius: 999px; overflow: hidden;
}
.mb-lang b, .mb-lang i {
  font-size: 9px; font-style: normal; padding: 3px 9px; font-weight: 500;
}
.mb-lang b { background: var(--black); color: white; }
.mb-lang i { color: var(--text-dim); }
.mb-search {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 6px;
  background: var(--bg-off-white);
  border: 0.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 7px;
}
.mb-search-cell { display: flex; flex-direction: column; gap: 1px; padding: 4px 8px; }
.mb-search-cell span { font-size: 8px; color: var(--text-quiet); }
.mb-search-cell strong { font-size: 10.5px; font-weight: 600; white-space: nowrap; }
.mb-search-btn {
  align-self: center;
  background: var(--brand-green); color: white;
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  padding: 8px 14px;
  white-space: nowrap;
}
.mb-rooms { display: flex; flex-direction: column; gap: 8px; }
.mb-room {
  display: flex; align-items: center; gap: 11px;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 11px; padding: 9px 11px;
}
.mb-room-thumb {
  width: 52px; height: 40px; border-radius: 8px; flex-shrink: 0;
  background: repeating-linear-gradient(45deg, #EDEBE4, #EDEBE4 4px, #F5F3EE 4px, #F5F3EE 8px);
  border: 0.5px solid var(--border-subtle);
}
.mb-room-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mb-room-main strong { font-size: 11.5px; font-weight: 600; }
.mb-room-main em { font-style: normal; font-size: 9.5px; color: var(--text-dim); }
.mb-room-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.mb-room-cta > strong { font-family: var(--font-en); font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; }
.mb-room-cta > strong span { font-family: var(--font-jp); font-size: 8.5px; color: var(--text-quiet); font-weight: 400; }
.mb-book-btn {
  background: var(--brand-green); color: white;
  border-radius: 999px; font-size: 9.5px; font-weight: 600;
  padding: 4px 13px;
}
.mb-book-btn.ghost { background: white; color: var(--green-text); border: 0.5px solid rgba(111,175,42,0.4); }
.mb-foot { text-align: center; font-size: 9px; color: var(--text-quiet); }
.mock-view-dots {
  display: flex; gap: 7px; justify-content: center;
  padding: 10px 0 14px;
}
.mvd {
  width: 7px; height: 7px; border-radius: 999px;
  border: none; padding: 0; cursor: pointer;
  background: var(--border-card);
  transition: all 300ms cubic-bezier(.16,1,.3,1);
}
.mvd.on { width: 22px; background: var(--brand-green); }
.mvd-arrow {
  width: 22px; height: 22px; border-radius: 999px;
  border: 0.5px solid var(--border-subtle); background: white;
  color: var(--text-dim); cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 160ms ease; margin: 0 5px;
}
.mvd-arrow:hover { color: var(--black); border-color: #D9D7CF; }

/* customers view */
.mock-customers { padding: 14px 18px 6px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.mc-row {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 10px; padding: 10px 14px;
}
.mc-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  line-height: 1;
}
.mc-main { flex: 1; min-width: 0; }
.mc-name { font-size: 12.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.mc-repeat {
  font-size: 9px; font-weight: 500; padding: 2px 8px;
  background: var(--yellow-bg); color: var(--yellow-text);
  border-radius: 999px; white-space: nowrap;
}
.mc-area { font-size: 10.5px; color: var(--text-dim); margin-top: 2px; }
.mc-tags { display: flex; gap: 5px; flex-shrink: 0; }
.mc-tag {
  font-size: 9.5px; font-weight: 500; padding: 3px 9px; border-radius: 999px;
}
.mc-tag.green { background: var(--green-bg); color: var(--green-text); }
.mc-tag.yellow { background: var(--yellow-bg); color: var(--yellow-text); }
.mc-tag.blue { background: var(--blue-bg); color: var(--blue-text); }
@media (max-width: 640px) {
  .mc-tags { display: none; }
}

/* ---------- Hero mock — 宿泊台帳 ledger ---------- */
.mock-ledger { padding: 14px 18px 12px; text-align: left; }
.ml-grid { display: grid; border: 0.5px solid var(--border-subtle); border-radius: 10px; overflow: hidden; background: white; }
.ml-corner {
  padding: 8px 10px; font-size: 10px; color: var(--text-quiet);
  background: var(--bg-off-white); border-bottom: 0.5px solid var(--border-subtle);
}
.ml-day {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 6px 0; border-bottom: 0.5px solid var(--border-subtle);
  border-left: 0.5px solid rgba(0,0,0,0.04);
  background: var(--bg-off-white);
}
.ml-day .wk { font-size: 8.5px; color: var(--text-quiet); }
.ml-day .num { font-family: var(--font-en); font-size: 11px; font-weight: 600; color: var(--text-dim); }
.ml-day.weekend { background: #F3F1EC; }
.ml-day.today { background: var(--green-bg); }
.ml-day.today .num { color: var(--green-text); }
.ml-room {
  padding: 9px 10px; font-size: 11px; font-weight: 600;
  display: flex; flex-direction: column; gap: 1px;
  border-bottom: 0.5px solid rgba(0,0,0,0.05);
  background: white;
}
.ml-room .type { font-size: 8.5px; font-weight: 400; color: var(--text-quiet); }
.ml-cell {
  position: relative; min-height: 38px;
  border-left: 0.5px solid rgba(0,0,0,0.04);
  border-bottom: 0.5px solid rgba(0,0,0,0.05);
}
.ml-cell.weekend { background: rgba(0,0,0,0.015); }
.ml-booking {
  position: absolute; top: 5px; left: 2.5px; bottom: 5px;
  border-radius: 6px; z-index: 2;
  display: flex; align-items: center;
  padding: 0 8px; font-size: 9.5px; font-weight: 600;
  white-space: nowrap; overflow: hidden;
}
.ml-booking.green { background: var(--green-bg); color: var(--green-text); border: 0.5px solid rgba(111,175,42,0.35); }
.ml-booking.blue { background: var(--blue-bg); color: var(--blue-text); border: 0.5px solid rgba(158,212,226,0.6); }
.ml-booking.yellow { background: var(--yellow-bg); color: var(--yellow-text); border: 0.5px solid rgba(201,156,11,0.3); }
.ml-booking.ml-new { animation: mlPop 600ms cubic-bezier(.16,1,.3,1) both; }
@keyframes mlPop {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.ml-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 4px 0; font-size: 10.5px; color: var(--text-dim);
}
.ml-legend { display: flex; gap: 14px; }
.ml-legend span { display: inline-flex; align-items: center; gap: 5px; }
.ml-legend i { width: 8px; height: 8px; border-radius: 3px; display: inline-block; }
.ml-legend i.green { background: var(--brand-green); }
.ml-legend i.blue { background: var(--brand-blue, #9ED4E2); }
.ml-legend i.yellow { background: var(--brand-yellow, #F5D938); }
@media (max-width: 640px) {
  .ml-grid { grid-template-columns: 72px repeat(10, 1fr) !important; }
  .ml-booking { font-size: 8px; padding: 0 4px; }
}

/* ---------- Pricing v2 ---------- */
.pv2-wrap { max-width: 1008px; margin: 0 auto; }
.pv2-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  align-items: stretch;
}
.pv2-card {
  position: relative;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform 250ms cubic-bezier(.16,1,.3,1), box-shadow 250ms ease;
}
.pv2-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px -20px rgba(0,0,0,0.14); }
.pv2-popular {
  background: #F4F4F1;
  border-color: transparent;
}
.pv2-name {
  font-family: var(--font-en);
  font-size: 27px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pv2-btn { width: 100%; justify-content: center; margin-top: 22px; }
.pv2-dark {
  background: white;
  border: 1.5px solid #111;
  color: var(--black);
}
.pv2-badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; font-weight: 600;
  background: var(--brand-green); color: white;
  border-radius: 999px; padding: 4px 12px;
}
.pv2-label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  color: var(--text-dimmer); margin-bottom: 14px;
}
.pv2-dark .pv2-label { color: var(--green-text); }
.pv2-title {
  font-size: 24px; font-weight: 500; letter-spacing: -0.015em;
  margin: 0 0 6px 0;
}
.pv2-dark .pv2-title { color: var(--black); }
.pv2-blurb { font-size: 13px; color: var(--text-dim); margin: 0 0 26px 0; min-height: 48px; }
.pv2-dark .pv2-blurb { color: var(--text-dim); }
.pv2-price {
  display: flex; align-items: flex-end; gap: 6px;
  flex-wrap: wrap;
  padding-top: 22px;
  min-height: 72px;
  border-top: 0.5px solid var(--border-subtle);
}
.pv2-unit { white-space: nowrap; }
.pv2-dark .pv2-price { border-top-color: var(--border-subtle); }
.pv2-currency {
  font-family: var(--font-en);
  font-size: 26px; font-weight: 500; color: var(--black);
}
.pv2-num {
  font-family: var(--font-en);
  font-size: 46px; font-weight: 600; letter-spacing: -0.03em;
  line-height: 1; color: var(--black);
  font-variant-numeric: proportional-nums;
}
.pv2-num-sm { font-size: 42px; font-family: var(--font-jp); font-weight: 500; letter-spacing: -0.01em; }
@media (max-width: 1100px) {
  .pv2-num { font-size: 36px; }
  .pv2-num-sm { font-size: 33px; }
}
.pv2-num-md { font-size: 36px; }
.pv2-price2 {
  font-size: 14px; font-weight: 600; color: var(--black);
  margin-top: 10px; min-height: 22px;
}
.pv2-price2 .pv2-pct { font-family: var(--font-en); }
.pv2-pct-sm { font-family: var(--font-en); }
.pv2-dark .pv2-num, .pv2-dark .pv2-currency { color: var(--black); }
.pv2-unit { font-size: 13px; color: var(--text-dim); margin-left: 4px; }
.pv2-caption { font-size: 12px; color: var(--text-quiet); margin-top: 8px; min-height: 42px; }
.pv2-dark .pv2-caption { color: var(--text-quiet); }
.pv2-incl {
  margin-top: 22px;
  font-size: 12px; font-weight: 600; color: var(--black);
  padding-top: 20px;
  border-top: 0.5px solid var(--border-subtle);
}
.pv2-features {
  list-style: none; padding: 14px 0 22px; margin: 0;
  display: flex; flex-direction: column; gap: 13px;
  flex: 1;
}
.pv2-dark .pv2-features { border-top-color: transparent; }
.pv2-features li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13px; line-height: 1.6; color: var(--text-dim);
}
.pv2-dark .pv2-features li { color: var(--text-dim); }
.pv2-features li svg.feat-icon {
  flex-shrink: 0; margin-top: 3px;
  color: var(--black);
  opacity: 0.75;
}
.pv2-more a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
}
.pv2-more a:hover { color: var(--black); text-decoration: underline; }
.pv2-cta {
  background: white !important; color: #24390F !important;
  border: none;
}
.pv2-cta:hover { background: #EDF7E0 !important; }

.pv2-ai {
  margin-top: 16px;
  background: var(--blue-bg);
  border: 0.5px solid rgba(158,212,226,0.5);
  border-radius: 16px;
  padding: 22px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.pv2-ai-label {
  font-family: var(--font-en);
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--blue-text); margin-bottom: 5px;
}
.pv2-ai-title { font-size: 15px; font-weight: 500; letter-spacing: -0.005em; }
.pv2-ai-sub { font-size: 12px; color: var(--text-dim); margin-top: 3px; }
.pv2-ai-right { text-align: right; flex-shrink: 0; }
.pv2-ai-price { display: block; font-family: var(--font-en); font-size: 16px; font-weight: 600; color: var(--blue-text); }
.pv2-ai-unit { font-size: 11px; color: var(--text-dim); }
@media (max-width: 900px) {
  .pv2-grid { grid-template-columns: 1fr; }
  .pv2-card { padding: 28px 24px; }
  .pv2-ai { flex-direction: column; align-items: flex-start; padding: 22px 24px; }
  .pv2-ai-right { text-align: left; }
}
@media (max-width: 860px) {
  .sol-cards { grid-template-columns: 1fr; }
  .sol-flip { height: 190px; }
}

/* ---------- Bento features ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "pay pay crm crm"
    "pay pay ai ai"
    "book ops link link";
  gap: 14px;
}
.bento-cell {
  background: white;
  border: 0.5px solid var(--border-card);
  border-radius: 14px;
  padding: 26px 28px;
  display: flex; flex-direction: column;
  transition: transform 250ms cubic-bezier(.16,1,.3,1), box-shadow 250ms ease;
}
.bento-cell:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bento-cell.area-pay  { grid-area: pay; background: var(--green-bg); border-color: rgba(111,175,42,0.25); }
.bento-cell.area-crm  { grid-area: crm; }
.bento-cell.area-ai   { grid-area: ai; background: var(--blue-bg); border-color: rgba(158,212,226,0.5); }
.bento-cell.area-book { grid-area: book; }
.bento-cell.area-ops  { grid-area: ops; }
.bento-cell.area-link { grid-area: link; }
.bento-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.bento-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: white; border: 0.5px solid var(--border-subtle);
  color: var(--text-dim); flex-shrink: 0;
}
.area-pay .bento-icon { color: var(--green-text); border-color: rgba(111,175,42,0.3); }
.area-ai .bento-icon { color: var(--blue-text); border-color: rgba(158,212,226,0.6); }
.bento-cat {
  font-family: var(--font-en); font-size: 9.5px; letter-spacing: 0.1em;
  color: var(--text-quiet);
}
.bento-cell h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 6px 0; }
.bento-cell.area-pay h4 { font-size: 21px; }
.bento-tagline { font-size: 12.5px; font-weight: 500; color: var(--green-text); margin-bottom: 10px; }
.area-ai .bento-tagline { color: var(--blue-text); }
.area-crm .bento-tagline, .area-book .bento-tagline, .area-ops .bento-tagline, .area-link .bento-tagline { color: var(--text-dim); }
.bento-body { font-size: 12.5px; line-height: 1.9; color: var(--text-dim); }
.bento-body strong { color: var(--black); font-weight: 600; }

/* mini receipt inside the payment cell */
.bento-receipt {
  margin-top: auto; padding-top: 20px;
}
.bento-receipt-inner {
  background: white; border: 0.5px solid rgba(111,175,42,0.25);
  border-radius: 10px; padding: 16px 18px;
}
.bento-receipt-row {
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: var(--text-dim);
  padding: 4px 0;
}
.bento-receipt-row .val { font-family: var(--font-en); font-variant-numeric: tabular-nums; color: var(--black); }
.bento-receipt-row.total {
  border-top: 0.5px solid var(--border-subtle);
  margin-top: 6px; padding-top: 10px;
  font-weight: 600; color: var(--black);
}
.bento-receipt-row.total .val { color: var(--green-text); }
.bento-receipt-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; color: var(--green-text);
  background: var(--green-bg); border-radius: 999px; padding: 3px 10px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "pay pay"
      "crm ai"
      "book ops"
      "link link";
  }
}
@media (max-width: 560px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "pay" "crm" "ai" "book" "ops" "link";
  }
}

/* ---------- Pricing simulator ---------- */
.psim {
  max-width: 1008px; margin: 40px auto 0;
  background: var(--bg-off-white);
  border: 0.5px solid var(--border-subtle);
  border-radius: 16px;
  padding: 34px 38px 30px;
}
.psim-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.psim-title { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.psim-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--text-dim);
  cursor: pointer; user-select: none;
}
.psim-toggle input { accent-color: var(--brand-green); width: 15px; height: 15px; cursor: pointer; }
.psim-slider-row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px;
  margin-bottom: 24px;
}
.psim-slider-label { font-size: 13px; color: var(--text-dim); white-space: nowrap; }
.psim-slider-value {
  font-family: var(--font-en); font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em; min-width: 88px; text-align: right;
  font-variant-numeric: proportional-nums;
}
.psim-results { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.psim-result {
  position: relative;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 12px; padding: 20px 22px 18px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.psim-result.win { border-color: var(--brand-green); box-shadow: 0 4px 16px -10px rgba(0,0,0,0.18); }
.psim-plan {
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dimmer); margin-bottom: 8px;
}
.psim-fee {
  font-family: var(--font-en); font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1; color: var(--black);
  font-variant-numeric: proportional-nums;
}
.psim-fee span { font-family: var(--font-jp); font-size: 12px; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.psim-detail { font-size: 11.5px; color: var(--text-quiet); margin-top: 8px; }
.psim-win-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--brand-green); color: white;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 999px; padding: 4px 10px;
}
.psim-note { font-size: 11.5px; color: var(--text-quiet); line-height: 1.8; margin: 16px 0 0; }
.psim-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.psim-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 0.5px solid var(--border-subtle);
  border-radius: 999px; padding: 6px 13px;
  font-size: 11.5px; font-weight: 500; color: var(--text-dim);
}
@media (max-width: 720px) {
  .psim { padding: 26px 22px 24px; }
  .psim-slider-row { grid-template-columns: 1fr auto; }
  .psim-slider-label { grid-column: 1 / -1; }
  .psim-results { grid-template-columns: 1fr; }
}

/* option / upsell rows — photo thumbnail list */
.sc-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 2px; border-bottom: 0.5px solid var(--border-subtle);
}
.sc-opt-thumb {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: var(--green-bg); border: 0.5px solid rgba(111,175,42,0.28);
  color: var(--green-text);
}
.sc-opt-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.sc-opt-main strong { font-size: 10.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-opt-main em { font-style: normal; font-size: 9px; color: var(--text-quiet); }
.sc-opt-add { font-family: var(--font-en); font-size: 11px; font-weight: 600; color: var(--green-text); flex-shrink: 0; }

/* accepted card brands — online payment card */
.sc-brands { display: flex; flex-wrap: nowrap; gap: 3px; margin-top: -3px; }
.sc-brands span {
  font-family: var(--font-en); font-size: 7.5px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap; color: var(--text-dim); background: white;
  border: 0.5px solid var(--border-subtle); border-radius: 4px; padding: 2px 4px;
}
