/* =========================================================
   会社案内無料診断 LP — ブラッシュアップ版 スタイル
   モノクロ／明朝×ゴシック／診断サービスのスコアUIモチーフ
   ========================================================= */

:root {
  /* --- Surfaces (warm neutral) --- */
  --paper:      #ffffff;
  --bg-soft:    #f5f4f0;
  --bg-faint:   #faf9f6;
  --bg-dark:    #2c2520;

  /* --- Ink --- */
  --ink-900:    #1a1a17;
  --ink-700:    #3a3a35;
  --ink-500:    #8a877d;
  --ink-300:    #c3c0b6;
  --line:       #e7e4dc;
  --line-2:     #d9d6cc;
  --line-strong:#2a2a25;

  /* --- Accent (togg-able via Tweaks; default = mono ink) --- */
  --accent:     #1a1a17;
  --accent-soft:#1a1a17;

  /* --- CTA / brand accent (WHARF lime) --- */
  --cta:        #b6d23c;   /* lime fill — buttons, bands, dots */
  --cta-dark:   #a6c52c;   /* lime hover */
  --cta-ink:    #7c9618;   /* deeper olive-lime for text/glyphs on light */
  --cta-on:     #2c2520;   /* espresso text/glyph that sits ON a lime fill */
  --cta-glow:   rgba(160, 196, 40, 0.45);
  --cta-light:  #cbe45c;   /* bright lime for text on dark sections */

  /* --- Dark section surface --- */
  --surface-dark: #2c2520;

  /* --- Type --- */
  --serif:   "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --sans:    "Noto Sans JP", "游ゴシック", "Yu Gothic", sans-serif;
  --display: "Cormorant Garamond", "Noto Serif JP", serif;
  --heading: var(--serif);

  /* --- Layout --- */
  --container: 1180px;
  --gutter: 24px;
  --sec-pad: 128px;   /* spacious by default */
}

[data-density="standard"] { --sec-pad: 104px; }

* { margin: 0; padding: 0; box-sizing: border-box; }

/* paper grain over everything (very subtle, print feel) */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045; mix-blend-mode: multiply;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.85;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--ink-900); color: #fff; }

/* ========== Layout primitives ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--sec-pad) 0; position: relative; }
.section--soft  { background: var(--bg-soft); }
.section--dark  { background: var(--bg-dark); color: #fff; }

/* ========== Section header system ========== */
.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cta-ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cta);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.s-head { margin-bottom: 64px; position: relative; }
.s-head--center { text-align: center; }
.s-head--center .eyebrow { justify-content: center; }

/* ghost section numerals */
.s-head[data-no]::before {
  content: attr(data-no);
  position: absolute; top: -58px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(110px, 13vw, 168px); line-height: 1;
  color: rgba(26, 26, 23, 0.062);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.s-head:not(.s-head--center)[data-no]::before { left: -8px; transform: none; }
.s-head .eyebrow, .s-head .s-title, .s-head .s-lead { position: relative; }

.s-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--ink-900);
  margin-top: 22px;
  text-wrap: balance;
}
.s-title em {
  font-style: normal;
  background: linear-gradient(transparent 66%, rgba(26,26,23,0.12) 66%);
  padding: 0 2px;
}

.s-lead {
  margin-top: 26px;
  font-size: 15px;
  line-height: 2.15;
  color: var(--ink-700);
  max-width: 760px;
}
.s-head--center .s-lead { margin-left: auto; margin-right: auto; }
.s-head--center .s-lead--left { text-align: left; }
.s-lead--left + .s-lead--left { margin-top: 18px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 21px 46px;
  background-color: var(--ink-900);
  background-image: linear-gradient(#434036, #434036);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.18em;
  border: 1px solid var(--ink-900);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: background-size .55s cubic-bezier(.22,1,.36,1), color .35s ease;
}
.btn__arrow { transition: transform .35s ease; display: inline-block; }
.btn:hover { background-size: 100% 100%; }
.btn:hover .btn__arrow { transform: translateX(6px); }
.btn--block { width: 100%; }
.btn--light {
  background-color: #fff;
  background-image: linear-gradient(var(--ink-900), var(--ink-900));
  color: var(--ink-900); border-color: #fff;
}
.btn--light:hover { color: #fff; }

/* prominent primary CTA — pops against the monochrome palette */
.btn--accent {
  background-color: var(--cta);
  background-image: linear-gradient(var(--cta-dark), var(--cta-dark));
  border-color: var(--cta);
  color: var(--cta-on);
  font-size: 21px;
  min-height: 72px;
  padding: 0 48px;
  width: 441px;
  max-width: 100%;
  box-shadow: 0 18px 40px -12px var(--cta-glow), 0 4px 12px rgba(124, 150, 24, 0.22);
}
.btn--accent:hover { color: var(--cta-on); }
html.anim-live[data-motion="on"] .btn--accent {
  animation: ctaPulse 2.8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 18px 40px -12px var(--cta-glow), 0 4px 12px rgba(124, 150, 24, 0.22); }
  50%      { box-shadow: 0 18px 50px -8px var(--cta-glow), 0 4px 12px rgba(124, 150, 24, 0.22); }
}

.cta-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.12em;
  line-height: 1.9;
}
.section--dark .cta-note { color: rgba(255,255,255,0.55); }

/* ========== Header ========== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.05); }
.header__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
}
.header__logo { display: block; height: 26px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__phone {
  font-family: var(--display);
  font-size: 15px; letter-spacing: 0.12em; color: var(--ink-700);
  text-decoration: none; white-space: nowrap;
}
.header__phone span { font-size: 11px; letter-spacing: 0.2em; color: var(--ink-500); margin-right: 8px; font-family: var(--sans); }
.header__cta {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; padding: 13px 24px;
  background: var(--cta); color: var(--cta-on); text-decoration: none;
  border: 1px solid var(--cta);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.header__cta:hover { background: var(--cta-dark); border-color: var(--cta-dark); color: var(--cta-on); }

/* =========================================================
   FV / Hero
   ========================================================= */
.fv {
  position: relative;
  background:
    radial-gradient(90% 70% at 84% 0%, #ffffff 0%, transparent 55%),
    radial-gradient(120% 90% at 88% 8%, var(--bg-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-faint), var(--paper) 55%, var(--bg-soft) 100%);
  overflow: hidden;
}
.fv::before {
  /* ruled report paper */
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(26,26,23,0.05) 0 1px, transparent 1px 64px);
  -webkit-mask-image: linear-gradient(105deg, transparent 38%, #000 76%);
  mask-image: linear-gradient(105deg, transparent 38%, #000 76%);
}
/* oversized watermark + diagnostic ring motif */
.fv__deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.fv__deco-word {
  position: absolute; left: -2vw; bottom: -3.2vw;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(110px, 17vw, 270px); line-height: 1; white-space: nowrap;
  color: rgba(26,26,23,0.045); user-select: none;
}
.fv__deco-ring {
  position: absolute; top: -120px; right: -120px; width: 420px; height: 420px;
  border-radius: 50%; border: 1px solid rgba(26,26,23,0.08);
}
.fv__deco-ring::after {
  content: ""; position: absolute; inset: 46px; border-radius: 50%;
  border: 1px dashed rgba(26,26,23,0.09);
}
.fv__grid {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(52px, 6.5vw, 88px) var(--gutter) clamp(60px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  grid-template-areas: "top visual" "bottom visual";
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 0;
  align-items: start;
}

.fv__copy { max-width: 560px; }
.fv__copy--top { grid-area: top; }
.fv__copy--bottom { grid-area: bottom; }
/* eyebrow → premium pill badge with status dot */
.fv__eyebrow {
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 13px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line-2);
  border-radius: 999px; backdrop-filter: blur(4px);
  font-family: var(--display); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cta-ink); font-weight: 600;
}
.fv__eyebrow::before { content: none; }
.fv__eyebrow .fv__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cta);
  box-shadow: 0 0 0 4px rgba(160,196,40,0.20); flex-shrink: 0;
}
html.anim-live[data-motion="on"] .fv__eyebrow-dot { animation: dotpulse 2.6s ease-in-out infinite; }
@keyframes dotpulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(160,196,40,0.20); }
  50% { box-shadow: 0 0 0 8px rgba(160,196,40,0.06); }
}
.fv__q {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  position: relative; display: inline;
}
.fv__q .fv__q-hi {
  background: linear-gradient(transparent 56%, rgba(160,196,40,0.34) 56%, rgba(160,196,40,0.34) 90%, transparent 90%);
  padding: 0 4px;
}
.fv__rule {
  width: 56px; height: 1px; background: var(--ink-900);
  margin: 26px 0;
}
.fv__title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(34px, 5.3vw, 66px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.fv__title-line { line-height: 1.1; }
.fv__title-note {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--ink-500); line-height: 1.6;
  margin-bottom: 2px;
}
.fv__title-mark {
  display: inline-block;
  background: var(--ink-900);
  color: #fff;
  padding: 0.1em 0.36em 0.18em;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 9px 9px 0 rgba(26,26,23,0.13);
}
[data-fv-layout="centered"] .fv__title { align-items: center; }
.fv__sub {
  margin-top: 24px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-700);
}
.fv__sub b { font-weight: 700; }

.fv__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 30px 0 36px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.06em; color: var(--ink-700);
  padding: 9px 16px 9px 13px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
}
.pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.pill svg path { stroke: var(--cta-ink); stroke-width: 2.4; fill: none; }

.fv__cta-row { display: flex; flex-direction: column; align-items: flex-start; }
/* trust proof strip under the CTA */
.fv__proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
}
.fv__proof-item {
  display: inline-flex; align-items: baseline; gap: 7px;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-700);
}
.fv__proof-item b {
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: 17px; color: var(--ink-900); letter-spacing: 0.02em;
}
.fv__proof-sep { width: 1px; height: 22px; background: var(--line-2); }
.fv__proof-item b.fv__proof-jp {
  font-family: inherit; font-style: normal; font-weight: 600;
  font-size: inherit; color: var(--ink-900); letter-spacing: inherit;
}
[data-fv-layout="centered"] .fv__proof { justify-content: center; }

/* --- FV report card (HTML score UI) --- */
.fv__visual { position: relative; grid-area: visual; align-self: center; }
.report {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(20,20,15,0.28), 0 4px 16px rgba(20,20,15,0.04);
  padding: 34px 34px 30px;
  position: relative;
  z-index: 2;
}
.report::before {  /* paper stack hint */
  content: "";
  position: absolute; inset: 14px -14px -14px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  z-index: -1;
}
.report::after {  /* second sheet, deeper */
  content: "";
  position: absolute; inset: 30px -27px -27px 30px;
  background: var(--bg-faint);
  border: 1px solid var(--line);
  z-index: -2;
}

/* --- photographic report variant --- */
.report--photo {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.report--photo::before, .report--photo::after { display: none; }
.report__frame {
  position: relative; background: #fff; padding: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 50px 90px -42px rgba(20,20,15,0.42), 0 8px 24px rgba(20,20,15,0.10);
}
.report__img {
  display: block; width: 100%; height: auto;
}
.report__foot--photo {
  margin: 0; padding: 14px 8px 4px;
  border-top: none; justify-content: center;
}

/* --- FV floating chips (depth + value framing) --- */
.fv__chip {
  position: absolute; z-index: 4;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 26px 50px -22px rgba(20,20,15,0.36), 0 4px 14px rgba(20,20,15,0.07);
}
.fv__chip--verdict {
  right: -16px; bottom: 66px;
  display: flex; align-items: center; gap: 13px;
  padding: 13px 18px 13px 14px;
}
.fv__chip__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cta); color: var(--cta-on); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(160,196,40,0.32);
}
.fv__chip__icon svg { width: 19px; height: 19px; }
.fv__chip__body { display: block; }
.fv__chip__t {
  display: block; font-family: var(--heading); font-weight: 700;
  font-size: 16px; letter-spacing: 0.04em; color: var(--ink-900); line-height: 1.2;
  white-space: nowrap;
}
.fv__chip__s {
  display: block; font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--ink-500); margin-top: 4px; white-space: nowrap;
}
.fv__chip--sample {
  top: -18px; left: -28px;
  padding: 9px 15px;
  background: var(--ink-900); border-color: var(--ink-900);
}
.fv__chip__sample-en {
  display: block; font-family: var(--display); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); font-weight: 500;
}
.fv__chip__sample-jp {
  display: block; font-family: var(--heading); font-size: 12px;
  letter-spacing: 0.1em; color: #fff; margin-top: 3px; font-weight: 600;
}
html.anim-live[data-motion="on"] .fv__chip--verdict { animation: chipfloat 6.5s ease-in-out infinite; }
html.anim-live[data-motion="on"] .fv__chip--sample { animation: chipfloat 7.8s ease-in-out infinite reverse; }
@keyframes chipfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* =========================================================
   FV enrichment — depth, drama, premium entrance
   ========================================================= */

/* warm spotlight that lifts the report off the page */
.fv__visual::before {
  content: "";
  position: absolute; z-index: 0; pointer-events: none;
  left: 50%; top: 47%;
  width: 132%; height: 128%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(closest-side, rgba(47,69,0,0.11) 0%, rgba(47,69,0,0) 73%);
  filter: blur(4px);
}

/* richer report frame — deeper lift + crisp keyline */
.report__frame {
  box-shadow:
    0 64px 116px -48px rgba(20,20,15,0.52),
    0 14px 34px rgba(20,20,15,0.13),
    0 0 0 1px var(--line);
}
html.anim-live[data-motion="on"] .report--photo.is-in .report__frame,
html.anim-live[data-motion="on"] .report--photo .report__frame {
  animation: reportRise 1s cubic-bezier(.22,1,.36,1) .2s both;
}
@keyframes reportRise {
  0%   { transform: translateY(26px) scale(.985); }
  100% { transform: none; }
}

/* premium green mark — stamp-in entrance + single gloss sweep */
.fv__title-mark {
  position: relative;
  overflow: hidden;
  box-shadow:
    10px 10px 0 rgba(26,26,23,0.16),
    0 20px 44px -18px rgba(47,69,0,0.55);
}
.fv__title-mark::after {
  content: "";
  position: absolute; top: -10%; left: -65%;
  width: 42%; height: 120%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.40), transparent);
  transform: skewX(-16deg);
  pointer-events: none; opacity: 0;
}
html.anim-live[data-motion="on"] .fv__title-mark {
  animation: markStamp .72s cubic-bezier(.18,1.08,.32,1) .28s both;
}
html.anim-live[data-motion="on"] .fv__title-mark::after {
  animation: markGloss 1.15s ease 1.0s 1;
}
@keyframes markStamp {
  0%   { transform: scale(.93) translateY(7px); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: none; opacity: 1; }
}
@keyframes markGloss {
  0%   { left: -65%; opacity: 0; }
  16%  { opacity: 1; }
  100% { left: 135%; opacity: 0; }
}

/* rule draws in on entrance */
html.anim-live[data-motion="on"] .fv__rule {
  animation: ruleDraw .9s cubic-bezier(.22,1,.36,1) .5s both;
  transform-origin: left center;
}
[data-fv-layout="centered"] html.anim-live[data-motion="on"] .fv__rule,
html.anim-live[data-motion="on"] .fv__copy--top .fv__rule { transform-origin: center; }
@keyframes ruleDraw {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

/* eyebrow → slightly richer glassy badge */
.fv__eyebrow {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.62));
  box-shadow: 0 2px 10px -4px rgba(20,20,15,0.10), inset 0 1px 0 rgba(255,255,255,0.7);
}

/* --- print trim marks (トンボ) --- */
.tombo { position: absolute; inset: -15px; pointer-events: none; display: block; }
.tombo i { position: absolute; width: 19px; height: 19px; display: block; }
.tombo i::before, .tombo i::after { content: ""; position: absolute; background: var(--ink-300); }
.tombo i:nth-child(1) { top: 0; left: 0; }
.tombo i:nth-child(1)::before { top: 15px; left: 0; width: 10px; height: 1px; }
.tombo i:nth-child(1)::after  { left: 15px; top: 0; width: 1px; height: 10px; }
.tombo i:nth-child(2) { top: 0; right: 0; }
.tombo i:nth-child(2)::before { top: 15px; right: 0; width: 10px; height: 1px; }
.tombo i:nth-child(2)::after  { right: 15px; top: 0; width: 1px; height: 10px; }
.tombo i:nth-child(3) { bottom: 0; left: 0; }
.tombo i:nth-child(3)::before { bottom: 15px; left: 0; width: 10px; height: 1px; }
.tombo i:nth-child(3)::after  { left: 15px; bottom: 0; width: 1px; height: 10px; }
.tombo i:nth-child(4) { bottom: 0; right: 0; }
.tombo i:nth-child(4)::before { bottom: 15px; right: 0; width: 10px; height: 1px; }
.tombo i:nth-child(4)::after  { right: 15px; bottom: 0; width: 1px; height: 10px; }

/* --- rotating free-diagnosis seal --- */
.seal { position: absolute; top: -34px; right: -16px; width: 108px; height: 108px; z-index: 3; }
.seal svg { width: 100%; height: 100%; overflow: visible; transform-origin: 50% 50%; }
html.anim-live[data-motion="on"] .seal svg { animation: sealspin 30s linear infinite; }
@keyframes sealspin { to { transform: rotate(360deg); } }
.seal text {
  font-family: var(--display); font-size: 10.5px; letter-spacing: 0.3em;
  text-transform: uppercase; fill: var(--ink-500); font-weight: 500;
}
.seal__core {
  position: absolute; inset: 27px; border-radius: 50%;
  border: 1px solid var(--ink-900); background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 14px; font-weight: 600;
  letter-spacing: 0.14em; line-height: 1.5; text-align: center; color: var(--ink-900);
  box-shadow: 0 8px 20px rgba(20,20,15,0.10);
}
.report__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.report__kicker {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-500); font-weight: 500;
}
.report__meta { text-align: right; font-size: 9px; letter-spacing: 0.08em; color: var(--ink-500); line-height: 1.8; padding-right: 64px; white-space: nowrap; }
.report__title {
  font-family: var(--heading); font-weight: 700;
  font-size: 23px; letter-spacing: 0.04em; color: var(--ink-900);
  margin: 14px 0 4px;
}
.report__desc { font-size: 11.5px; color: var(--ink-500); letter-spacing: 0.04em; }

.report__score {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
  margin: 20px 0 18px; padding: 18px 20px;
  border: 1px solid var(--line); background: var(--bg-faint);
}
.gauge { position: relative; width: 104px; height: 104px; flex-shrink: 0; }
.gauge svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.gauge__track { fill: none; stroke: var(--line-2); stroke-width: 9; }
.gauge__bar {
  fill: none; stroke: var(--accent); stroke-width: 9; stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(.22,1,.36,1);
}
.gauge__val {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.gauge__num { font-family: var(--display); font-size: 33px; font-weight: 600; line-height: 1; color: var(--ink-900); }
.gauge__den { font-size: 9.5px; letter-spacing: 0.1em; color: var(--ink-500); margin-top: 3px; white-space: nowrap; }

.grade { text-align: left; }
.grade__label { font-size: 10.5px; letter-spacing: 0.18em; color: var(--ink-500); margin-bottom: 4px; }
.grade__val { font-family: var(--display); font-size: 52px; font-weight: 500; line-height: 0.9; color: var(--ink-900); }
.grade__note { font-size: 10px; line-height: 1.7; color: var(--ink-500); margin-top: 8px; max-width: 150px; }

.report__cat-label {
  font-size: 11px; letter-spacing: 0.16em; color: var(--ink-500);
  margin: 4px 0 12px; font-weight: 500;
}
.bars { display: grid; gap: 11px; }
.bar { display: grid; grid-template-columns: 86px 1fr 30px; align-items: center; gap: 12px; }
.bar__name { font-size: 11px; letter-spacing: 0.04em; color: var(--ink-700); white-space: nowrap; }
.bar__track { height: 7px; background: var(--line); position: relative; overflow: hidden; }
.bar__fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--ink-900);
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.bar__num { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--ink-900); text-align: right; }
.report__foot {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.06em; line-height: 1.7;
  display: flex; align-items: center; gap: 8px;
}
.report__foot b { color: var(--ink-900); font-weight: 700; }

/* centered FV variant */
[data-fv-layout="centered"] .fv__grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
[data-fv-layout="centered"] .fv__copy { max-width: 720px; }
[data-fv-layout="centered"] .fv__eyebrow { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
[data-fv-layout="centered"] .fv__rule { margin-left: auto; margin-right: auto; }
[data-fv-layout="centered"] .fv__cta-row { align-items: center; }
[data-fv-layout="centered"] .fv__pills { justify-content: center; }
[data-fv-layout="centered"] .fv__visual { max-width: 560px; width: 100%; margin-top: 8px; }
[data-fv-layout="centered"] .report::before { inset: 14px 0 -14px 0; }
[data-fv-layout="centered"] .report::after { display: none; }

/* =========================================================
   Trust Bar
   ========================================================= */
.trust {
  background: var(--bg-dark); color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  padding: 38px 24px; text-align: center; position: relative;
}
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: 0; top: 28px; bottom: 28px;
  width: 1px; background: rgba(255,255,255,0.12);
}
.trust__value {
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 22px); font-weight: 500; line-height: 1;
  color: #fff; letter-spacing: 0.02em;
  display: flex; align-items: flex-end; justify-content: center; gap: 4px; flex-wrap: nowrap; white-space: nowrap;
}
.trust__value > span { line-height: 1; }
.trust__value .unit { font-size: 0.92em; letter-spacing: 0.06em; }
.trust__value [data-countup] { font-size: 1.34em; letter-spacing: 0.01em; }
.trust__value--sm { font-family: var(--heading); font-size: clamp(18px, 1.9vw, 22px); font-weight: 600; }
.trust__en {
  font-family: var(--display); font-style: italic; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 12px;
}
[data-trust-style="inline"] .trust__en { display: none; }
.trust__label {
  margin-top: 12px; font-size: 11.5px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
}

/* inline trust variant */
[data-trust-style="inline"] .trust__inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 44px; padding: 26px var(--gutter);
}
[data-trust-style="inline"] .trust__item { padding: 0; display: flex; align-items: baseline; gap: 12px; }
[data-trust-style="inline"] .trust__item + .trust__item::before { display: none; }
[data-trust-style="inline"] .trust__value { font-size: 20px; }
[data-trust-style="inline"] .trust__value--sm { font-size: 16px; }
[data-trust-style="inline"] .trust__label { margin-top: 0; order: -1; }

/* =========================================================
   Problem
   ========================================================= */
.problem { background: var(--bg-soft); position: relative; overflow: hidden; }
.problem__bg {
  /* 使われない会社案内が散乱しているイメージ（薄く） */
  position: absolute; inset: 0; pointer-events: none;
  background: url('assets/problem_scatter2.jpg') center / cover no-repeat;
  opacity: 0.15;
}
.problem .container { position: relative; z-index: 1; }
/* readability scrims behind text that overlaps the scattered bg */
.problem .s-head { position: relative; }
.problem .s-head::after {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 150%; height: 230%;
  background: radial-gradient(60% 60% at 50% 50%,
    rgba(245,244,240,0.95) 0%, rgba(245,244,240,0.85) 42%, rgba(245,244,240,0) 74%);
  pointer-events: none;
}
.problem__close { position: relative; z-index: 1; }
.problem__close::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 130%; height: 200%;
  background: radial-gradient(58% 60% at 50% 50%,
    rgba(245,244,240,0.95) 0%, rgba(245,244,240,0.85) 44%, rgba(245,244,240,0) 76%);
  pointer-events: none;
}
.problem .container { position: relative; z-index: 1; }
.problem__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-bottom: 56px;
  counter-reset: prob;
}
.problem__item {
  background: var(--paper); padding: 28px 96px 28px 32px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: background .3s ease;
  counter-increment: prob; position: relative;
}
.problem__item::after {
  content: "0" counter(prob);
  position: absolute; top: 14px; right: 18px;
  font-family: var(--display); font-style: italic; font-size: 14px;
  letter-spacing: 0.12em; color: var(--ink-300);
}
.problem__item:hover { background: var(--bg-faint); }
.problem__check {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: 2px;
  border: 1px solid var(--ink-300);
  display: flex; align-items: center; justify-content: center;
}
.problem__check svg { width: 14px; height: 14px; }
.problem__check svg path { stroke: var(--accent); stroke-width: 2.4; fill: none; stroke-dasharray: 22; stroke-dashoffset: 0; }
html.anim-live[data-motion="on"] .problem__check svg path { stroke-dashoffset: 22; }
html.anim-live[data-motion="on"] .problem__item.is-in .problem__check svg path { animation: draw .5s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.problem__text { font-size: 15px; line-height: 1.85; color: var(--ink-700); }
.problem__close {
  text-align: center; max-width: 760px; margin: 0 auto;
  font-family: var(--heading); font-size: 17px; font-weight: 500;
  line-height: 2.2; letter-spacing: 0.06em; color: var(--ink-700);
  white-space: pre-line;
}
.problem__close strong { font-weight: 700; color: var(--ink-900); }

/* =========================================================
   Diagnosis (3 perspectives)
   ========================================================= */
.persp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.persp {
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  box-shadow: 0 18px 40px -30px rgba(20,20,15,0.30);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.persp:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -34px rgba(20,20,15,0.34);
  z-index: 2;
}
[data-motion="off"] .persp,
[data-motion="off"] .persp:hover { transform: none; }
.persp__media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--bg-faint);
  padding: 18px 18px 22px;
}
/* the photo inside sits tilted, like a pasted print */
.persp__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.01);
  box-shadow: 0 12px 26px -12px rgba(20,20,15,0.45);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.persp:nth-child(1) .persp__media img { transform: rotate(-3.4deg); }
.persp:nth-child(2) .persp__media img { transform: rotate(2.6deg); }
.persp:nth-child(3) .persp__media img { transform: rotate(-2.2deg); }
.persp:hover .persp__media img { transform: rotate(0deg) scale(1.02); }
[data-motion="off"] .persp__media img { transform: none !important; }
.persp__slot {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  filter: grayscale(1) contrast(1.02);
  background:
    repeating-linear-gradient(135deg, rgba(26,26,23,0.03) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, var(--bg-soft), var(--bg-faint));
}
.persp:hover .persp__media img { transform: scale(1.05); }
.persp__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,15,0) 45%, rgba(20,20,15,0.34) 100%);
}
.persp__badge {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  display: flex; align-items: baseline; gap: 9px;
  background: var(--ink-900); color: #fff;
  padding: 12px 22px 12px 24px;
  font-family: var(--display); line-height: 1;
}
.persp__badge b { font-size: 34px; font-weight: 600; font-style: italic; letter-spacing: 0.02em; }
.persp__badge i { font-size: 11px; font-style: italic; letter-spacing: 0.22em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.persp__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.persp__kicker {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-500); font-weight: 500;
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.persp__kicker::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.persp__title {
  font-family: var(--heading); font-size: clamp(20px, 1.7vw, 24px); font-weight: 600;
  line-height: 1.6; letter-spacing: 0.03em; margin: 0 0 22px; min-height: 76px;
}
.persp__bar { height: 5px; background: var(--line); position: relative; margin-bottom: 18px; overflow: hidden; }
.persp__bar::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--w, 70%);
  background: var(--accent);
}
.persp__desc { font-size: 14px; line-height: 2; color: var(--ink-700); margin-top: auto; }
.diag-note {
  margin-top: 48px; text-align: center; font-size: 13px;
  color: var(--ink-500); letter-spacing: 0.06em; line-height: 2;
}
.diag-note b { color: var(--ink-900); font-weight: 700; }

/* =========================================================
   Inline CTA
   ========================================================= */
.inline-cta {
  background: var(--bg-dark); color: #fff; text-align: center;
  padding: clamp(88px, 10vw, 118px) var(--gutter) clamp(72px, 9vw, 104px);
  position: relative; overflow: hidden;
}
.inline-cta__marquee {
  position: absolute; top: 0; left: 0; right: 0;
  overflow: hidden; white-space: nowrap; display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.10); padding: 13px 0;
}
.inline-cta__marquee span {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.42em;
  text-transform: uppercase; color: rgba(255,255,255,0.34); flex-shrink: 0;
}
html.anim-live[data-motion="on"] .inline-cta__marquee span { animation: marquee 40s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }
.inline-cta__big {
  font-family: var(--display); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(120px, 26vw, 360px); color: rgba(255,255,255,0.03);
  letter-spacing: 0.1em; pointer-events: none; user-select: none; white-space: nowrap;
}
.inline-cta__inner { position: relative; z-index: 1; }
.inline-cta__title {
  font-family: var(--heading); font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500; letter-spacing: 0.08em; line-height: 1.7; margin-bottom: 34px;
}
.inline-cta__sub { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.16em; }

/* =========================================================
   Reasons
   ========================================================= */
.reasons { position: relative; overflow: hidden; }
.reasons__bg {
  position: absolute; top: 0; right: 0; width: 46%; height: 100%;
  background: url('assets/documents.jpg') center right / cover no-repeat;
  opacity: 0.09; pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%);
  mask-image: linear-gradient(to left, #000 30%, transparent 100%);
}
.reasons .container { position: relative; z-index: 1; }
.reasons__list { max-width: 980px; }
.reason {
  display: grid; grid-template-columns: 132px 1fr; gap: 44px;
  padding: 46px 0; border-top: 1px solid var(--line); align-items: start;
}
.reason:first-child { border-top: none; }
.reason__num {
  font-family: var(--display); font-size: 64px; font-weight: 400; font-style: italic;
  color: var(--ink-900); line-height: 0.9; position: relative;
}
.reason__num::after { content: ""; display: block; width: 36px; height: 1px; background: var(--accent); margin-top: 16px; }
.reason__title {
  font-family: var(--heading); font-size: clamp(18px, 2vw, 22px); font-weight: 600;
  line-height: 1.7; letter-spacing: 0.04em; margin-bottom: 14px;
}
.reason__body { font-size: 14px; line-height: 2.05; color: var(--ink-700); }
.reason__body strong { font-weight: 700; color: var(--ink-900); }

/* =========================================================
   Items (20 diagnosis items)
   ========================================================= */
.items { background: var(--bg-soft); }
.items__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.item-card {
  background: var(--paper); padding: 38px 36px; border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease;
}
.item-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -28px rgba(20,20,15,0.22); }
.item-card__head {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--line); position: relative;
}
.item-card__head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 36px; height: 1px; background: var(--accent); }
.item-card__idx { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.2em; color: var(--ink-500); }
.item-card__title { font-family: var(--heading); font-size: 17px; font-weight: 600; letter-spacing: 0.06em; }
.item-card__list { list-style: none; }
.item-card__list li {
  padding: 9px 0 9px 28px; position: relative; font-size: 14px; line-height: 1.8; color: var(--ink-700);
}
.item-card__list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 15px; height: 15px; border: 1px solid var(--ink-300);
  background:
    linear-gradient(45deg, transparent 42%, var(--accent) 42%, var(--accent) 56%, transparent 56%) no-repeat,
    linear-gradient(-45deg, transparent 56%, var(--accent) 56%, var(--accent) 64%, transparent 64%) no-repeat;
  background-size: 9px 9px, 9px 9px; background-position: 3px 5px, 1px 1px;
}
.items__more { text-align: center; font-size: 13px; color: var(--ink-500); margin-bottom: 40px; letter-spacing: 0.1em; }
.items__highlight {
  max-width: 880px; margin: 0 auto; padding: 38px 48px;
  background: var(--ink-900); color: #fff; text-align: center;
}
.items__highlight p { font-family: var(--heading); font-size: 17px; font-weight: 400; line-height: 2.1; letter-spacing: 0.06em; }
.items__highlight strong { font-weight: 700; background: linear-gradient(transparent 60%, rgba(255,255,255,0.22) 60%); }

/* =========================================================
   Steps
   ========================================================= */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 48px; position: relative; }
.steps__grid::before {
  content: ""; position: absolute; top: 44px; left: 16%; right: 16%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step { text-align: center; padding: 0 28px; position: relative; z-index: 1; }
.step__badge {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--paper); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.step__badge svg { width: 34px; height: 34px; stroke: var(--ink-900); fill: none; stroke-width: 1.4; }
.step__no {
  position: absolute; top: -8px; right: -8px; width: 28px; height: 28px;
  border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--display); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step__time { font-size: 11px; color: var(--ink-500); letter-spacing: 0.16em; margin-bottom: 10px; }
.step__title { font-family: var(--heading); font-size: 18px; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 12px; }
.step__desc { font-size: 13.5px; line-height: 1.95; color: var(--ink-700); }
.steps__note {
  max-width: 880px; margin: 0 auto; padding: 32px 40px;
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 2px solid var(--accent);
}
.steps__note p { font-size: 14px; line-height: 1.95; color: var(--ink-700); }
.steps__note strong { font-family: var(--heading); font-weight: 700; color: var(--ink-900); display: block; margin-bottom: 6px; font-size: 15px; }
.steps__seal {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: var(--ink-900); font-size: 14px; letter-spacing: 0.06em;
}
.steps__seal svg { width: 18px; height: 18px; }
.steps__seal svg path { stroke: var(--accent); stroke-width: 2.2; fill: none; }

/* =========================================================
   Cases
   ========================================================= */
.case { margin-bottom: 56px; }
.case:last-child { margin-bottom: 0; }
.case__head {
  display: flex; align-items: baseline; gap: 20px; margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.case__idx { font-family: var(--display); font-size: 14px; letter-spacing: 0.26em; color: var(--ink-500); font-weight: 600; }
.case__title { font-family: var(--heading); font-size: 20px; font-weight: 600; letter-spacing: 0.06em; }
.case__compare { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 28px; align-items: stretch; margin-bottom: 26px; }
.case__col { display: flex; flex-direction: column; }
.case__label {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.34em; font-weight: 600;
  padding: 7px 16px; margin-bottom: 18px; width: fit-content;
}
.case__label--before { background: var(--bg-soft); color: var(--ink-500); border: 1px solid var(--line-2); }
.case__label--after { background: var(--accent); color: #fff; }
.case__list { list-style: none; }
.case__list li { position: relative; padding-left: 18px; margin-bottom: 11px; font-size: 13.5px; color: var(--ink-700); line-height: 1.85; }
.case__list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 1px; background: var(--ink-500); }
.case__arrow { display: flex; align-items: center; justify-content: center; }
.case__arrow span { font-family: var(--display); font-size: 30px; color: var(--ink-300); }

/* case score figure */
.case__figure {
  margin: 4px 0 26px; padding: 24px 28px;
  background: var(--bg-faint); border: 1px solid var(--line);
}
.case__figure-label { font-size: 11px; letter-spacing: 0.16em; color: var(--ink-500); margin-bottom: 16px; }
.cfig { display: grid; gap: 13px; }
.cfig__row { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 14px; }
.cfig__name { font-size: 12px; color: var(--ink-700); letter-spacing: 0.02em; }
.cfig__track { height: 8px; background: var(--line); position: relative; }
.cfig__before { position: absolute; left: 0; top: 0; bottom: 0; width: var(--b, 30%); background: var(--ink-300); }
.cfig__after {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent);
  transition: width 1.3s cubic-bezier(.22,1,.36,1);
}
.cfig__delta { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--ink-900); letter-spacing: 0.04em; }
[data-cases-figure="off"] .case__figure { display: none; }

.case__result { background: var(--ink-900); color: #fff; padding: 22px 30px; display: flex; align-items: center; gap: 18px; }
.case__result-tag {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.24em; font-weight: 600;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,0.3); flex-shrink: 0;
}
.case__result p { font-family: var(--heading); font-size: 15px; line-height: 1.7; letter-spacing: 0.04em; }

/* =========================================================
   Profile
   ========================================================= */
.profile { background: var(--bg-soft); position: relative; overflow: hidden; }
.profile__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: url('assets/profile_scatter.jpg') center / cover no-repeat;
  opacity: 0.32;
  -webkit-mask-image: radial-gradient(120% 78% at 50% 50%, transparent 30%, #000 72%);
  mask-image: radial-gradient(120% 78% at 50% 50%, transparent 30%, #000 72%);
}
.profile .container { position: relative; z-index: 1; }
.profile__card {
  max-width: 980px; margin: 0 auto; background: var(--paper);
  padding: 60px; display: grid; grid-template-columns: 200px 1fr; gap: 56px;
  align-items: center; border: 1px solid var(--line);
}
.profile__photo {
  width: 200px; height: 200px; border-radius: 50%;
  background: url('assets/profile.jpg') center/cover no-repeat;
  flex-shrink: 0; position: relative;
}
.profile__photo::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid var(--line-2);
}
.profile__tagline {
  font-size: 11.5px; letter-spacing: 0.08em; color: var(--ink-500);
  line-height: 1.5; margin-bottom: 10px; white-space: nowrap;
}
.profile__name { font-family: var(--heading); font-size: 22px; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 6px; }
.profile__name-en { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 0.74em; letter-spacing: 0.06em; color: var(--ink-500); }
.profile__role { font-family: var(--display); font-size: 13px; letter-spacing: 0.24em; color: var(--ink-500); margin-bottom: 22px; }
.profile__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.profile__badge {
  font-family: var(--display); font-size: 11px; letter-spacing: 0.16em; font-weight: 600;
  padding: 6px 14px; border: 1px solid var(--ink-900); color: var(--ink-900);
}
.profile__hr { width: 40px; height: 1px; background: var(--accent); margin-bottom: 22px; }
.profile__bio { font-size: 14px; line-height: 2.05; color: var(--ink-700); }
.profile__bio strong { font-weight: 700; color: var(--ink-900); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { max-width: 920px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; gap: 22px; padding: 30px 4px; cursor: pointer;
  transition: padding-left .3s ease;
}
.faq__q:hover { padding-left: 12px; }
.faq__mark { font-family: var(--display); font-size: 17px; letter-spacing: 0.2em; color: var(--ink-500); font-style: italic; font-weight: 600; }
.faq__qt { flex: 1; font-family: var(--heading); font-size: 16px; font-weight: 600; letter-spacing: 0.04em; line-height: 1.7; }
.faq__toggle { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__toggle::before, .faq__toggle::after {
  content: ""; position: absolute; background: var(--ink-700); transition: transform .35s ease, opacity .35s ease;
}
.faq__toggle::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq__toggle::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq__item.open .faq__toggle::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq__item.open .faq__a { max-height: 420px; }
.faq__at {
  padding: 0 4px 32px 39px; font-size: 14px; line-height: 2.05; color: var(--ink-700); position: relative;
}
.faq__at::before {
  content: "A."; position: absolute; left: 4px; top: 0;
  font-family: var(--display); font-style: italic; color: var(--ink-500); letter-spacing: 0.16em; font-weight: 600;
}

/* =========================================================
   Closing / Form
   ========================================================= */
.closing {
  background:
    radial-gradient(120% 80% at 50% -10%, #393029 0%, transparent 60%),
    var(--surface-dark);
  color: #fff;
  padding: 0 0 var(--sec-pad);
  position: relative; overflow: hidden;
}
.closing::before {
  /* ruled-paper texture, faint */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.04) 0 1px, transparent 1px 70px);
  -webkit-mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent);
}
.closing__watermark {
  position: absolute; top: clamp(140px, 18vw, 260px); left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(120px, 22vw, 320px); line-height: 1; white-space: nowrap;
  color: rgba(255,255,255,0.05); pointer-events: none; user-select: none; z-index: 0;
}
.closing__banner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: var(--cta); color: var(--cta-on);
  padding: 16px 24px; text-align: center; flex-wrap: wrap;
  box-shadow: 0 14px 30px -16px var(--cta-glow);
}
.closing__banner b { font-family: var(--heading); font-weight: 700; font-size: clamp(15px, 1.7vw, 18px); letter-spacing: 0.06em; color: var(--cta-on); }
.closing__banner span { font-size: 12px; letter-spacing: 0.14em; color: rgba(44,37,32,0.78); }
.closing__banner .closing__banner-tag {
  font-family: var(--display); font-style: italic; font-size: 12px; letter-spacing: 0.2em;
  border: 1px solid rgba(44,37,32,0.42); padding: 5px 14px; border-radius: 999px;
}
.closing .container { position: relative; z-index: 1; padding-top: clamp(64px, 8vw, 104px); }
.closing__head { text-align: center; max-width: 940px; margin: 0 auto 48px; }
.closing__head .eyebrow { color: rgba(255,255,255,0.7); }
.closing__head .eyebrow::before { background: rgba(255,255,255,0.45); }
.closing__title {
  font-family: var(--heading); font-size: clamp(26px, 3.4vw, 40px); font-weight: 600;
  letter-spacing: 0.06em; line-height: 1.5; margin: 20px 0 18px; text-wrap: balance; color: #fff;
}
.closing__title em { font-style: normal; color: var(--cta-light); }
.closing__sub { font-size: 14px; line-height: 2.05; color: rgba(255,255,255,0.82); max-width: 660px; margin: 0 auto; text-wrap: pretty; }

/* --- two-column CTA layout --- */
.closing__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; max-width: 1080px; margin: 0 auto;
}

/* --- deliverable preview: "こんな診断が届く" --- */
.deliverable {
  position: sticky; top: 96px;
}
.deliverable__label { text-align: left; margin-bottom: 22px; }
.deliverable__label .eyebrow { color: rgba(255,255,255,0.7); }
.deliverable__label .eyebrow::before { background: rgba(255,255,255,0.45); }
.deliverable__lead {
  font-family: var(--heading); font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600; line-height: 1.6; letter-spacing: 0.04em; margin-top: 14px; color: #fff;
}
.deliverable__lead em {
  font-style: normal; color: var(--cta-light);
}
.deliverable__sheet {
  position: relative; background: var(--paper);
  border: 1px solid var(--line-2); padding: 32px 32px 26px;
  box-shadow: 0 40px 80px -44px rgba(20,20,15,0.34);
}
.deliverable__sheet::before {
  content: ""; position: absolute; inset: 9px; border: 1px solid var(--line); pointer-events: none;
}
.deliverable__sheet-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid var(--line);
}
.deliverable__sheet-title {
  font-family: var(--heading); font-size: 22px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--ink-900); margin-top: 8px;
}
.deliverable__score { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.gauge--sm { width: 74px; height: 74px; }
.gauge--sm .gauge__num { font-size: 24px; }
.gauge--sm .gauge__den { font-size: 8px; }
.gauge--sm .gauge__track, .gauge--sm .gauge__bar { stroke-width: 7; }
.deliverable__grade {
  font-size: 11px; letter-spacing: 0.12em; color: var(--ink-500); white-space: nowrap;
}
.deliverable__grade b {
  display: block; font-family: var(--display); font-size: 30px; font-weight: 600;
  color: var(--ink-900); line-height: 1; margin-top: 4px;
}
.deliverable__points-label {
  font-size: 12px; letter-spacing: 0.16em; color: var(--ink-500); margin-bottom: 16px;
}
.deliverable__points-label b { color: var(--cta-ink); font-weight: 700; }
.deliverable__points { list-style: none; counter-reset: none; display: grid; gap: 2px; }
.deliverable__points li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 10px 4px; border-top: 1px solid var(--line);
}
.deliverable__points li:first-child { border-top: none; }
.deliverable__pt-no {
  font-family: var(--display); font-style: italic; font-size: 17px; font-weight: 600;
  color: var(--cta-ink); flex-shrink: 0; width: 26px;
}
.deliverable__pt-txt { font-size: 14px; line-height: 1.7; color: var(--ink-900); letter-spacing: 0.02em; }
.deliverable__foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--ink-700); letter-spacing: 0.04em;
}
.deliverable__foot svg { stroke: var(--cta-ink); flex-shrink: 0; }
.deliverable__foot b { color: var(--ink-900); font-weight: 700; }
.deliverable__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-top: none; margin-top: -1px;
}
.deliverable__meta-item {
  background: var(--bg-faint); padding: 20px 16px; text-align: center;
}
.deliverable__meta-item b {
  display: block; font-family: var(--heading); font-size: 18px; font-weight: 700;
  color: var(--ink-900); letter-spacing: 0.04em; margin-bottom: 4px;
}
.deliverable__meta-item span { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-500); }

.trust-list {
  list-style: none; max-width: 560px; margin: 0 auto 36px;
  padding: 22px 30px; background: var(--paper); border: 1px solid var(--line);
  display: grid; gap: 4px;
}
.trust-list li {
  padding: 7px 0 7px 30px; position: relative; font-size: 14px; color: var(--ink-900);
  letter-spacing: 0.04em;
}
.trust-list li::before {
  content: ""; position: absolute; left: 0; top: 11px; width: 16px; height: 16px;
  background:
    linear-gradient(45deg, transparent 42%, var(--accent) 42%, var(--accent) 56%, transparent 56%) no-repeat,
    linear-gradient(-45deg, transparent 56%, var(--accent) 56%, var(--accent) 64%, transparent 64%) no-repeat;
  background-size: 10px 10px, 10px 10px; background-position: 3px 5px, 1px 1px;
}

.form {
  max-width: none; margin: 0; background: var(--paper); color: var(--ink-700);
  padding: 40px 38px; border: 1px solid var(--line-2);
  position: relative;
  box-shadow: 0 36px 80px -56px rgba(20,20,15,0.35);
}
.form::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid var(--line); pointer-events: none;
}
.form__head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form__head-title { font-family: var(--heading); font-size: 21px; font-weight: 700; letter-spacing: 0.06em; margin-top: 10px; color: var(--ink-900); }
.form__field { margin-bottom: 18px; }
.form__label { display: block; font-family: var(--heading); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 10px; color: var(--ink-900); }
.form__label .required { color: var(--accent); font-weight: 700; margin-left: 5px; font-family: var(--sans); }
.form__input, .form__textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-2);
  background: var(--bg-faint); font-family: var(--sans); font-size: 14px;
  letter-spacing: 0.04em; transition: border-color .3s ease, background .3s ease; color: var(--ink-900);
}
.form__input:focus, .form__textarea:focus { outline: none; border-color: var(--ink-900); background: var(--paper); }
.form__textarea { min-height: 100px; resize: vertical; }
.form__file { display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch; }
.form__file-name {
  flex: 1 1 200px; min-width: 0; padding: 14px 16px; border: 1px solid var(--line-2);
  background: var(--bg-faint); font-family: var(--sans); font-size: 13px; color: var(--ink-700); cursor: default;
}
.form__file-button, .form__file-clear {
  padding: 0 18px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; cursor: pointer;
  border: 1px solid var(--ink-900); background: var(--ink-900); color: #fff; transition: all .3s ease; white-space: nowrap;
}
.form__file-button:hover { background: #322f29; }
.form__file-clear { background: transparent; color: var(--ink-700); border-color: var(--line-2); }
.form__file-clear:hover:not(:disabled) { background: var(--bg-faint); color: var(--ink-900); }
.form__file-clear:disabled { opacity: 0.4; cursor: not-allowed; }
.form__file-hint { margin-top: 8px; font-size: 11px; color: var(--ink-500); letter-spacing: 0.04em; line-height: 1.6; }
.form__check { display: flex; align-items: center; gap: 11px; margin: 20px 0; padding: 10px 0; font-size: 13px; color: var(--ink-700); cursor: pointer; }
.form__check label { cursor: pointer; line-height: 1.5; }
.form__check input[type="checkbox"] { flex: none; width: 22px; height: 22px; accent-color: var(--cta); cursor: pointer; }
.form__check-link { color: var(--ink-900); text-decoration: underline; text-underline-offset: 2px; }
.form__check-link:hover { color: var(--cta-dark); }
.form__submit {
  width: 100%; padding: 24px; background: var(--cta); color: var(--cta-on); border: 1px solid var(--cta);
  font-family: var(--sans); font-weight: 700; font-size: 17px; letter-spacing: 0.16em; cursor: pointer;
  transition: background .3s ease, box-shadow .3s ease;
  box-shadow: 0 14px 30px -12px var(--cta-glow);
}
.form__submit:hover { background: var(--cta-dark); box-shadow: 0 16px 36px -10px var(--cta-glow); }
.form__note { margin-top: 16px; text-align: center; font-size: 11px; color: var(--ink-500); letter-spacing: 0.12em; }
.form__recaptcha-note {
  margin-top: 10px; text-align: center; font-size: 10.5px; line-height: 1.7;
  color: var(--ink-400, #9b988f); letter-spacing: 0.02em;
}
.form__recaptcha-note a { color: var(--ink-500); text-decoration: underline; text-underline-offset: 2px; }
.form__recaptcha-note a:hover { color: var(--cta-dark); }
/* hide the floating reCAPTCHA v3 badge (attribution provided in-form per Google ToS) */
.grecaptcha-badge { visibility: hidden !important; }
.form__optional { margin-bottom: 18px; border: 1px dashed var(--line-2); }
.form__optional-toggle {
  list-style: none; cursor: pointer; padding: 14px 18px;
  font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-700);
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 10px;
  transition: background .25s ease, color .25s ease;
}
.form__optional-toggle::-webkit-details-marker { display: none; }
.form__optional-toggle::before {
  content: "+"; font-family: var(--display); font-size: 18px; line-height: 1;
  color: var(--cta); width: 16px; text-align: center; transition: transform .25s ease;
}
.form__optional[open] .form__optional-toggle::before { content: "−"; }
.form__optional-toggle:hover { background: var(--bg-faint); color: var(--ink-900); }
.form__optional[open] .form__optional-toggle { border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.form__optional .form__field { padding: 0 18px; }
.form__optional .form__field:first-of-type { padding-top: 14px; }
.form__optional .form__field:last-of-type { padding-bottom: 16px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--bg-dark); color: #fff; padding: 72px 0 36px; text-align: center; }
.footer__logo { font-family: var(--display); font-size: 22px; letter-spacing: 0.26em; margin-bottom: 22px; }
.footer__info { font-size: 12px; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); line-height: 2.1; margin-bottom: 30px; }
.footer__links { display: flex; justify-content: center; gap: 32px; margin-bottom: 30px; font-size: 12px; flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,0.6); text-decoration: none; letter-spacing: 0.1em; transition: color .3s ease; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-family: var(--display); font-size: 11px; letter-spacing: 0.24em; color: rgba(255,255,255,0.4); }

/* =========================================================
   Sticky CTA
   ========================================================= */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: var(--cta); color: var(--cta-on); padding: 17px 28px; text-decoration: none;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22); border: 1px solid var(--ink-900);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .3s ease;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--cta-dark); }
.sticky-cta__arrow { transition: transform .3s ease; }
.sticky-cta:hover .sticky-cta__arrow { transform: translateX(4px); }

/* =========================================================
   Reveal animation
   Base state is ALWAYS visible. Hidden/animated state only
   applies when JS confirms the animation clock is alive
   (html.anim-live). This guarantees content is never stuck
   invisible if rAF/transitions are throttled or disabled.
   ========================================================= */
.reveal { opacity: 1; transform: none; }

html.anim-live[data-motion="on"] .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
html.anim-live[data-motion="on"] .reveal.is-in { opacity: 1; transform: none; }
html.anim-live[data-motion="on"] .reveal[data-delay="1"] { transition-delay: .08s; }
html.anim-live[data-motion="on"] .reveal[data-delay="2"] { transition-delay: .16s; }
html.anim-live[data-motion="on"] .reveal[data-delay="3"] { transition-delay: .24s; }
html.anim-live[data-motion="on"] .reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  html.anim-live[data-motion="on"] .fv__chip--verdict,
  html.anim-live[data-motion="on"] .fv__chip--sample,
  html.anim-live[data-motion="on"] .fv__title-mark,
  html.anim-live[data-motion="on"] .fv__title-mark::after,
  html.anim-live[data-motion="on"] .report--photo .report__frame,
  html.anim-live[data-motion="on"] .fv__rule,
  html.anim-live[data-motion="on"] .fv__eyebrow-dot { animation: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  :root { --sec-pad: 80px; }
  .fv__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "top" "visual" "bottom"; column-gap: 0; row-gap: 40px; text-align: center; height: auto !important; }
  .fv__copy { max-width: 640px; margin: 0 auto; }
  .fv__eyebrow { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .fv__rule { margin-left: auto; margin-right: auto; }
  .fv__cta-row { align-items: center; }
  .fv__title { align-items: center; }
  .fv__pills { justify-content: center; }
  .fv__proof { justify-content: center; }
  .fv__visual { max-width: 420px; width: 100%; min-width: 0; margin: 8px auto 0; }
  .fv__copy--top, .fv__copy--bottom { min-width: 0; max-width: 100%; }
  .report--photo { margin-left: auto; margin-right: auto; }
  .report__img { max-width: 100%; }
  .report::before { inset: 12px 0 -12px 0; }
  .report::after { display: none; }
  .report__frame { width: 100% !important; height: auto !important; }
  .report__img { width: 100% !important; height: auto !important; }
  .persp-grid { grid-template-columns: 1fr; gap: 22px; padding: 0; }
  .persp__title { min-height: 0; }
  .reasons__bg { width: 100%; opacity: 0.05; }
  .closing__grid { grid-template-columns: 1fr; gap: 36px; max-width: 680px; }
  .deliverable { position: static; top: auto; }
}

/* ---- Phones ---- */
@media (max-width: 720px) {
  :root { --sec-pad: 64px; --gutter: 20px; }

  /* header */
  .header__inner { padding: 14px var(--gutter); }
  .header__logo { height: 22px; }
  .header__phone { display: none; }
  .header__cta { font-size: 11px; padding: 11px 16px; letter-spacing: 0.06em; }

  /* buttons */
  .btn { padding: 18px 26px; font-size: 13.5px; letter-spacing: 0.1em; }
  .btn--accent { width: 100%; font-size: 17px; min-height: 64px; padding: 0 24px; }

  /* section heads */
  .s-head { margin-bottom: 44px; }
  .s-title { font-size: clamp(17px, 5.1vw, 24px); letter-spacing: 0.01em; line-height: 1.6; }
  .s-lead { font-size: 14px; line-height: 2.0; }
  .s-head[data-no]::before { font-size: 84px; top: -32px; }

  /* FV */
  .fv__q { font-size: clamp(16px, 5.3vw, 21px) !important; line-height: 1.55 !important; letter-spacing: 0.02em; font-weight: 700 !important; }
  .fv__q span { white-space: nowrap; }
  .fv__rule { margin: 22px auto; }
  .fv__title-note { white-space: nowrap; font-size: clamp(10px, 3.25vw, 13.5px) !important; letter-spacing: 0.02em; }
  .fv__title-mark { box-shadow: 5px 5px 0 rgba(26,26,23,0.10); }
  /* floating chips */
  .fv__chip--verdict { right: -4px; bottom: 38px; padding: 10px 13px 10px 11px; gap: 9px; }
  .fv__chip__icon { width: 30px; height: 30px; }
  .fv__chip__icon svg { width: 16px; height: 16px; }
  .fv__chip__t { font-size: 13.5px; }
  .fv__chip__s { display: none; }
  .fv__chip--sample { top: -12px; left: -4px; padding: 7px 12px; }
  .fv__chip__sample-en { font-size: 9px; letter-spacing: 0.2em; }
  .fv__chip__sample-jp { font-size: 11px; }
  .fv__sub { font-size: 15px !important; line-height: 1.85 !important; margin-top: 20px; }
  .fv__pills { gap: 8px; margin: 24px 0 28px; }
  .pill { font-size: 12px; padding: 8px 13px 8px 11px; }
  .cta-note { white-space: nowrap; font-size: clamp(9px, 2.8vw, 11px); letter-spacing: 0.01em; }
  .fv__proof { gap: 8px 14px; padding-top: 16px; }

  /* trust */
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item { padding: 26px 14px; }
  .trust__value, .trust__value--sm { font-size: clamp(13px, 3.6vw, 16px); min-height: 1.55em; align-items: center; line-height: 1.1; }
  .trust__value [data-countup] { line-height: 1; }
  .trust__item:nth-child(odd)::before { display: none; }
  .trust__item:nth-child(n+3)::after {
    content: ""; position: absolute; top: 0; left: 14px; right: 14px;
    height: 1px; background: rgba(255,255,255,0.12);
  }

  /* problem */
  .problem__grid { grid-template-columns: 1fr; margin-bottom: 40px; }
  .problem__item { padding: 24px 60px 24px 22px; }
  .problem__item::after { top: 10px; right: 14px; font-size: 12px; }
  .problem__text { font-size: 14.5px !important; }
  .problem__close { font-size: 16px !important; line-height: 2.05; }

  /* diagnosis */
  .persp__body { padding: 26px 24px 30px; }
  .diag-note { margin-top: 36px; }

  /* inline cta */
  .inline-cta__title { margin-bottom: 28px; }

  /* reasons */
  .reason { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .reason__num { font-size: 44px; }
  .reason__num::after { margin-top: 10px; }

  /* items */
  .items__grid { grid-template-columns: 1fr; gap: 18px; }
  .item-card { padding: 30px 26px; }
  .items__highlight { padding: 30px 24px; }
  .items__highlight p { font-size: 16px; }

  /* steps */
  .steps__grid { grid-template-columns: 1fr; gap: 40px; }
  .steps__grid::before { display: none; }
  .steps__note { padding: 26px 24px; }

  /* cases */
  .case { margin-bottom: 44px; }
  .case__head { flex-direction: column; gap: 6px; align-items: flex-start; }
  .case__compare { grid-template-columns: 1fr; gap: 20px; }
  .case__arrow { display: none; }
  .case__figure { padding: 20px 20px; }
  .cfig__row { grid-template-columns: 78px 1fr auto; gap: 10px; }
  .cfig__name { font-size: 11.5px; }
  .case__result { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px 22px; }

  /* profile */
  .profile__card { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; text-align: center; }
  .profile__photo { margin: 0 auto; }
  .profile__tagline { white-space: normal; font-size: 11px; }
  .profile__badges { justify-content: center; }
  .profile__hr { margin-left: auto; margin-right: auto; }

  /* faq */
  .faq__q { gap: 16px; padding: 24px 2px; }
  .faq__qt { font-size: 15px; }
  .faq__at { padding: 0 2px 28px 34px; }

  /* closing / form */
  .closing__banner { gap: 10px; padding: 14px 18px; }
  .closing__title { font-size: 25px !important; line-height: 1.55; }
  .closing__sub { font-size: 13px; }
  .form { padding: 34px 20px; }
  .form::before { inset: 6px; }
  .form__file { flex-direction: column; }
  .form__file-button, .form__file-clear { padding: 13px 18px; }
  .form__submit { padding: 20px; font-size: 15px; letter-spacing: 0.1em; }
  .deliverable__sheet { padding: 28px 20px 24px; }
  .deliverable__sheet-head { flex-direction: column; gap: 16px; }
  .deliverable__score { align-self: flex-start; }
  .deliverable__meta { grid-template-columns: 1fr; }

  /* footer */
  .footer { padding: 56px 0 104px; }
  .footer__links { flex-direction: column; gap: 12px; }

  /* sticky cta → full-width bottom bar */
  .sticky-cta {
    left: 12px; right: 12px; bottom: 12px; justify-content: center;
    padding: 16px; font-size: 13px; letter-spacing: 0.08em;
  }

  /* report (deliverable gauge layout) */
  .report__score { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .grade { text-align: center; }
  .grade__note { margin-left: auto; margin-right: auto; }

  /* decorative */
  .seal { width: 78px; height: 78px; top: -20px; right: -4px; }
  .seal__core { inset: 19px; font-size: 11px; }
  .tombo { inset: -11px; }
  .tombo i::before, .tombo i::after { display: none; }
}

/* ---- Small phones ---- */
@media (max-width: 430px) {
  :root { --gutter: 16px; }
  .fv__title { font-size: 30px; }
  .fv__title-mark { box-shadow: 4px 4px 0 rgba(26,26,23,0.10); }
  .fv__proof-sep { display: none; }
  .fv__proof { gap: 6px 16px; }
  .closing__title { font-size: 22px !important; }
  .case__result-tag { align-self: flex-start; }
  .deliverable__points li { gap: 12px; }
  .deliverable__pt-txt { font-size: 13.5px; }
}

/* =========================================================
   myasp validationEngine overrides
   Keep required fields / messages on-brand (the injected
   validationEngine.css would otherwise paint them pink).
   ========================================================= */
.form__input.required,
.form__textarea.required,
.form__file-name.required {
  background-color: var(--bg-faint) !important;
  border-color: var(--line-2) !important;
}
.form__input.required:focus,
.form__textarea.required:focus {
  background-color: var(--paper) !important;
  border-color: var(--ink-900) !important;
}
