  :root {
    --bg: #0b0d0c;
    --panel: #14171400;
    --card: #14181500;
    --card-solid: #15191600;
    --text: #f3f5f0;
    --muted: #9aa39a;
    --faint: #666e66;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.18);
    --accent: #a6e64d;
    --accent-2: #c9ff62;
    --accent-dim: rgba(166, 230, 77, 0.14);
    --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
    --sans: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
    --mono: "Space Grotesk", "Noto Sans JP", sans-serif;
    --brand: "Manrope", "Noto Sans JP", sans-serif;
    --maxw: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.85;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  /* film grain */
  body::after {
    content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none;
    opacity: 0.04; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
  em { font-style: normal; color: var(--accent); }
  .np { font-family: var(--brand); font-weight: 700; letter-spacing: -0.005em; }

  /* ===== Reveal animation ===== */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  /* Hero entrance (JS非依存・読み込み時に必ず表示) */
  @keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  .hero .kicker { animation: heroIn 0.8s var(--ease) both; }
  .hero .title { animation: heroIn 0.8s var(--ease) 0.08s both; }
  .hero .hero-lead { animation: heroIn 0.8s var(--ease) 0.16s both; }
  .hero .hero-actions { animation: heroIn 0.8s var(--ease) 0.16s both; }
  .hero .hero-stats { animation: heroIn 0.8s var(--ease) 0.24s both; }
  .hero-media { animation: heroIn 1s var(--ease) 0.1s both; }
  @media (prefers-reduced-motion: reduce) { .hero .kicker, .hero .title, .hero .hero-lead, .hero .hero-actions, .hero .hero-stats, .hero-media { animation: none; } }

  /* ===== Section label ===== */
  .section { padding: 120px 0; position: relative; }
  .sec-label {
    display: flex; align-items: baseline; gap: 14px; margin-bottom: 40px;
    font-family: var(--mono); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted);
  }
  .sec-label .num { color: var(--accent); font-weight: 600; }
  .sec-label .jp { font-family: var(--sans); letter-spacing: 0.04em; text-transform: none; color: var(--faint); font-size: 13px; }
  .sec-label::after { content: ""; flex: 1; height: 1px; background: var(--line); align-self: center; }

  .h-serif { font-family: var(--serif); font-weight: 700; line-height: 1.3; letter-spacing: 0.01em; }

  /* ===== Header ===== */
  header.site {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    background: rgba(11, 13, 12, 0.62);
    -webkit-backdrop-filter: blur(12px) saturate(1.2); backdrop-filter: blur(12px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  header.site.scrolled {
    background: rgba(11, 13, 12, 0.85);
    border-bottom-color: var(--line-strong);
  }
  header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
  .brand { font-family: var(--brand); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
  .brand b { color: var(--accent); font-weight: 700; }
  .nav { display: flex; align-items: center; gap: 34px; }
  .nav a.link { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; color: var(--muted); transition: color 0.25s; }
  .nav a.link:hover { color: var(--text); }
  .nav a.link[aria-current="page"] { color: var(--accent); }
  .btn {
    display: inline-flex; align-items: center; gap: 11px; font-weight: 700;
    border-radius: 999px; padding: 13px 24px; font-size: 15px; transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
  }
  .btn .ico { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; padding: 0; border-radius: 7px; overflow: hidden; }
  .btn .ico svg { width: 26px; height: 26px; display: block; }
  .btn.primary { background: var(--accent); color: #10230a; box-shadow: 0 10px 30px rgba(166, 230, 77, 0.28); }
  .btn.primary:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 16px 40px rgba(166, 230, 77, 0.4); }
  .btn.ghost { border: 1px solid var(--line-strong); color: var(--text); }
  .btn.ghost:hover { border-color: var(--accent); color: var(--accent); }
  .nav .btn { padding: 11px 20px; font-size: 14px; }

  /* ===== Hero ===== */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .hero-bg::before {
    content: ""; position: absolute; width: 900px; height: 900px; right: -180px; top: -260px;
    background: radial-gradient(circle, rgba(166, 230, 77, 0.16), rgba(166, 230, 77, 0) 62%);
  }
  .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px; opacity: 0.35;
    mask-image: radial-gradient(120% 80% at 50% 20%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(120% 80% at 50% 20%, #000 30%, transparent 75%);
  }
  .hero-inner { position: relative; z-index: 2; width: 100%; }
  .hero-copy { max-width: 520px; text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5); }
  .hero-photo { position: absolute; top: 0; bottom: 0; left: 50%; right: max(24px, calc((100% - 1180px) / 2)); z-index: 0;
    display: flex; align-items: flex-end; justify-content: center; }
  .hero-photo img { width: auto; height: 100%; max-width: 100%; object-fit: contain; object-position: bottom center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%); }
  .hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(42% 62% at 72% 56%, rgba(210,222,236,0.09), transparent 72%),
      linear-gradient(180deg, rgba(11,13,12,0.32) 0%, transparent 20%, transparent 84%, var(--bg) 100%);
  }
  .kicker {
    display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono);
    font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
    border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; margin-bottom: 28px;
    align-self: flex-start;
  }
  .kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
  .kicker.limited { border-color: rgba(166, 230, 77, 0.45); color: var(--accent-2); background: var(--accent-dim); font-weight: 600; }
  .kicker.limited .dot { animation: pulseDot 1.8s ease-in-out infinite; }
  @keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
  h1.title { font-family: var(--serif); font-weight: 800; font-size: clamp(46px, 5.4vw, 70px); line-height: 1.18; margin: 0 0 26px; letter-spacing: 0.01em; }
  h1.title .nb { white-space: nowrap; }
  .hero-lead { font-size: clamp(16px, 1.9vw, 19px); color: #eaede5; font-weight: 500; margin: 0 0 38px; max-width: 24em; }
  .hero-lead b { color: #fff; font-weight: 700; }
  .hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 34px; }
  .btn.big { padding: 18px 30px; font-size: 17px; }
  .price-tag { display: flex; align-items: baseline; gap: 7px; font-family: var(--mono); color: var(--muted); }
  .price-tag b { font-size: 26px; color: var(--text); font-weight: 700; }
  .hero-stats { list-style: none; display: flex; gap: 30px; padding: 26px 0 0; margin: 0; border-top: 1px solid var(--line); }
  .hero-stats li { display: flex; flex-direction: column; gap: 2px; }
  .hero-stats .n { font-family: var(--mono); font-size: 24px; font-weight: 600; color: var(--text); }
  .hero-stats .l { font-size: 12px; color: var(--faint); letter-spacing: 0.04em; }

  .hero-media { position: relative; }
  .media-frame {
    position: relative; border-radius: 220px 220px 26px 26px; overflow: hidden;
    border: 1px solid var(--line-strong); background: linear-gradient(180deg, #1a1f1b, #0d0f0e);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  }
  .media-frame img { width: 100%; }
  .media-frame::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(115% 85% at 50% 24%, transparent 42%, rgba(11, 13, 12, 0.62) 100%);
  }
  .media-ring { position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(166, 230, 77, 0.18); border-radius: 220px 220px 26px 26px; }
  .floaty {
    position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
    background: rgba(20, 24, 21, 0.78); backdrop-filter: blur(10px); border: 1px solid var(--line-strong);
    border-radius: 14px; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--text);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  }
  .floaty .pt { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
  .floaty.a { left: -26px; top: 20%; animation: bob 5s ease-in-out infinite; }
  .floaty.b { right: -20px; bottom: 16%; animation: bob 6s ease-in-out infinite 0.5s; }
  @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .scroll-hint { position: absolute; left: 32px; bottom: 26px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--faint); z-index: 2; }
  .scroll-hint::before { content: ""; display: inline-block; width: 1px; height: 30px; background: linear-gradient(var(--accent), transparent); vertical-align: middle; margin-right: 12px; animation: grow 2s var(--ease) infinite; transform-origin: top; }
  @keyframes grow { 0%, 100% { transform: scaleY(0.4); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

  /* ===== Marquee ===== */
  .marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: #0d100e; }
  .marquee-track { display: flex; gap: 34px; white-space: nowrap; width: max-content; animation: slide 26s linear infinite; }
  .marquee span { font-family: var(--brand); font-size: 24px; font-weight: 800; letter-spacing: 0.01em; color: var(--faint); }
  .marquee span.hot { color: var(--accent); }
  .marquee .sep { color: rgba(255,255,255,0.16); }
  @keyframes slide { to { transform: translateX(-50%); } }

  /* ===== Problems ===== */
  .prob-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .prob {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
    border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px 32px; position: relative;
    transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
  }
  .prob:hover { transform: translateY(-6px); border-color: var(--line-strong); background: linear-gradient(180deg, rgba(166,230,77,0.06), rgba(255,255,255,0)); }
  .prob .pn { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
  .prob .pic { width: 46px; height: 46px; color: var(--accent); margin: 20px 0 18px; }
  .prob p { margin: 0; font-size: 17px; font-weight: 500; line-height: 1.6; }

  /* ===== Why ===== */
  .why-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
  .big-head { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.3; margin: 0 0 20px; }
  .why-desc { color: var(--muted); margin: 0 0 40px; font-size: 17px; }
  .eq { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: stretch; }
  .eq .plus { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 26px; font-weight: 300; }
  .eq-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px 16px; text-align: center; background: rgba(255,255,255,0.02); }
  .eq-card .ic { width: 34px; height: 34px; color: var(--accent); margin: 0 auto 12px; }
  .eq-card .t { font-family: var(--mono); font-weight: 600; font-size: 15px; }
  .eq-card .g { color: var(--accent); font-size: 12.5px; margin: 6px 0 8px; font-weight: 500; }
  .eq-card .s { color: var(--faint); font-size: 12px; line-height: 1.6; }
  .flow-arrow { text-align: center; color: var(--accent); font-size: 22px; margin: 14px 0; opacity: 0.7; }
  .flow-line { border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px; background: rgba(255,255,255,0.02); }
  .flow-line.hot { border-color: rgba(166,230,77,0.35); background: var(--accent-dim); }
  .flow-line .ttl { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--text); }
  .flow-line .ttl em { color: var(--accent); }
  .flow-line .sub { color: var(--muted); font-size: 14px; }
  .flow-line .sub .em { color: var(--accent); font-weight: 700; }

  .why-side .imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
  .pcircle { aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); }
  .pcircle img { width: 100%; height: 100%; object-fit: cover; }
  .quote-block { border-left: 2px solid var(--accent); padding: 6px 0 6px 24px; }
  .quote-block p { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 27px); line-height: 1.75; margin: 0; color: var(--text); }

  /* ===== Service ===== */
  .service { background: linear-gradient(180deg, #0d100e, #0b0d0c); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .svc-top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 56px; }
  .svc-statement { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.8vw, 46px); line-height: 1.4; margin: 0; }
  .svc-photo { border-radius: 22px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
  .svc-photo img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
  .feat3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .feat { border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; background: rgba(255,255,255,0.02); transition: border-color 0.3s, transform 0.3s var(--ease); }
  .feat:hover { border-color: var(--line-strong); transform: translateY(-4px); }
  .feat .ic { width: 42px; height: 42px; color: var(--accent); margin-bottom: 18px; }
  .feat h4 { font-family: var(--serif); font-size: 20px; margin: 0 0 8px; font-weight: 700; }
  .feat p { margin: 0; color: var(--muted); font-size: 14.5px; }

  /* ===== Profile ===== */
  .profile-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: center; }
  .profile-photo { border-radius: 20px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.45); background: #141815; aspect-ratio: 4 / 5; }
  .profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
  .p-role { font-family: var(--mono); color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; margin: 0 0 12px; }
  .p-name { font-family: var(--serif); font-weight: 800; font-size: clamp(30px, 4vw, 46px); line-height: 1.2; margin: 0 0 26px; }
  .p-name span { display: block; font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0.12em; margin-top: 8px; }
  .p-bio { color: var(--muted); font-size: 16px; margin: 0 0 28px; max-width: 42em; }
  .p-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
  .p-points li { position: relative; padding-left: 28px; color: #d6dbd2; }
  .p-points li::before { content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 2px; background: var(--accent); }

  /* ===== Flow / how it works ===== */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
  .step { position: relative; border: 1px solid var(--line); border-radius: 20px; padding: 40px 28px 34px; background: rgba(255,255,255,0.02); }
  .step .sn { font-family: var(--mono); font-size: 52px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(166,230,77,0.55); text-stroke: 1px rgba(166,230,77,0.55); }
  .step h4 { font-family: var(--serif); font-size: 22px; margin: 18px 0 10px; font-weight: 700; }
  .step p { margin: 0; color: var(--muted); font-size: 14.5px; }

  /* ===== Pricing ===== */
  .pricing { position: relative; overflow: hidden; }
  .pricing .glow { position: absolute; left: 50%; top: 30%; width: 640px; height: 460px; transform: translateX(-50%); background: radial-gradient(circle, rgba(166,230,77,0.14), transparent 62%); pointer-events: none; }
  .price-card {
    max-width: 620px; margin: 0 auto; border: 1px solid var(--line-strong); border-radius: 26px;
    background: linear-gradient(180deg, rgba(21,25,22,0.9), rgba(13,16,14,0.9)); padding: 52px 44px; text-align: center;
    box-shadow: 0 40px 90px rgba(0,0,0,0.5); position: relative; overflow: hidden;
  }
  .price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
  .price-card .badge { display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(166,230,77,0.4); border-radius: 999px; padding: 6px 16px; margin-bottom: 26px; }
  .price-amt { display: flex; align-items: baseline; justify-content: center; gap: 12px; white-space: nowrap; margin-top: 4px; }
  .price-card .amt { font-family: var(--serif); font-weight: 800; font-size: clamp(50px, 13vw, 74px); line-height: 1; letter-spacing: -0.01em; }
  .price-card .per { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--muted); }
  .price-card .per .tax { font-size: 12px; font-weight: 500; margin-left: 4px; }
  .price-card ul { list-style: none; padding: 0; margin: 32px auto 34px; text-align: left; display: inline-block; }
  .price-card li { position: relative; padding-left: 32px; margin: 14px 0; color: #d6dbd2; }
  .price-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-dim); box-shadow: inset 0 0 0 1px var(--accent); }
  .price-card li::after { content: "✓"; position: absolute; left: 4px; top: 0; color: var(--accent); font-size: 12px; font-weight: 700; }
  .price-card .btn { width: 100%; justify-content: center; }
  .price-note { text-align: center; color: var(--faint); font-size: 13px; margin-top: 20px; }
  .more-btn { text-align: center; margin: 40px 0 0; }
  .more-btn .btn span:last-child { transition: transform 0.25s var(--ease); }
  .more-btn .btn:hover span:last-child { transform: translateX(4px); }
  .faq-link { text-align: center; margin: 30px 0 0; }
  .faq-link a { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14.5px; border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
  .faq-link a span { transition: transform 0.25s var(--ease); }
  .faq-link a:hover { color: var(--accent); border-color: var(--accent); }
  .faq-link a:hover span { transform: translateX(4px); }

  /* ===== FAQ accordion (shared: LP + FAQ page) ===== */
  .faq-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.02);
    margin-bottom: 12px; overflow: hidden; transition: border-color 0.25s var(--ease), background 0.25s var(--ease); }
  .faq-item[open] { border-color: var(--line-strong); background: rgba(166, 230, 77, 0.04); }
  .faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: clamp(15px, 2.4vw, 16.5px);
    line-height: 1.6; display: flex; align-items: center; gap: 14px; color: var(--text); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .q { color: var(--accent); font-family: var(--mono); font-weight: 700; flex-shrink: 0; }
  .faq-item summary .ic { margin-left: auto; flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform 0.3s var(--ease); color: var(--muted); }
  .faq-item summary .ic::before, .faq-item summary .ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
  .faq-item summary .ic::before { left: 0; right: 0; top: 9px; height: 2px; }
  .faq-item summary .ic::after { top: 0; bottom: 0; left: 9px; width: 2px; transition: opacity 0.25s var(--ease); }
  .faq-item[open] summary .ic { color: var(--accent); }
  .faq-item[open] summary .ic::after { opacity: 0; }
  .faq-a { padding: 0 22px 22px 56px; color: var(--muted); line-height: 1.95; font-size: 15px; }
  .faq-a b { color: var(--text); font-weight: 700; }
  .faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
  .faq-check { list-style: none; margin: 4px 0 0; padding: 0; }
  .faq-check li { position: relative; padding-left: 26px; margin-bottom: 6px; }
  .faq-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
  @media (max-width: 560px) { .faq-a { padding-left: 22px; } }

  /* ===== Cause / dialogue / honest / summary (shared: LP + Service page) ===== */
  .sub-head { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 3.6vw, 34px); line-height: 1.4; margin: 6px 0 30px; }
  .compare { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
  .panel { border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; background: rgba(255, 255, 255, 0.02); }
  .panel .tag { display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--faint); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; margin-bottom: 18px; }
  .panel.hot { background: rgba(166, 230, 77, 0.05); border-color: rgba(166, 230, 77, 0.28); }
  .panel.hot .tag { color: var(--accent); border-color: rgba(166, 230, 77, 0.4); }
  .panel h3 { font-size: 18px; margin: 0 0 14px; font-weight: 700; }
  .advice { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .advice li { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 10px; padding: 9px 14px; font-size: 13.5px; color: var(--muted); }
  .panel .again { font-size: 13.5px; color: var(--faint); margin: 0 0 14px; }
  .panel .bad { display: flex; align-items: center; gap: 10px; background: #0d100e; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; color: var(--text); }
  .panel .bad .x { color: #ff6b6b; font-weight: 700; }
  .panel.hot .nplead { color: var(--muted); font-size: 14.5px; line-height: 1.9; margin: 0; }
  .cause { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; margin-top: 30px; }
  .cause-side { display: flex; flex-direction: column; gap: 14px; }
  .cause-center { width: 168px; height: 168px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #1c211d, #050605); border: 1px solid var(--line-strong);
    display: grid; place-items: center; text-align: center; padding: 16px; box-shadow: 0 0 0 6px rgba(166, 230, 77, 0.06), 0 20px 50px rgba(0, 0, 0, 0.5); }
  .cause-center .ce-t { font-weight: 700; font-size: 16px; color: var(--text); }
  .cause-center .ce-s { font-size: 11px; color: var(--faint); margin-top: 4px; }
  .factor { border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; background: rgba(255, 255, 255, 0.02); display: flex; gap: 12px; align-items: flex-start; }
  .factor .fic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-dim); color: var(--accent); }
  .factor .fic svg { width: 18px; height: 18px; }
  .factor .ft { font-weight: 700; font-size: 14px; color: var(--text); }
  .factor .fd { font-size: 12.5px; color: var(--muted); line-height: 1.7; margin-top: 2px; }
  @media (max-width: 760px) { .cause { grid-template-columns: 1fr 1fr; gap: 14px; } .cause-center { grid-column: 1 / -1; order: -1; margin: 0 auto 4px; } }
  @media (max-width: 460px) { .cause { grid-template-columns: 1fr; } }
  .result-flow { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
  .result-flow .rf { border: 1px solid var(--line-strong); border-radius: 999px; padding: 11px 20px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
  .result-flow .rf .i { color: var(--accent); display: inline-grid; }
  .result-flow .rf.last { background: var(--accent); color: #0b0d0c; border-color: var(--accent); }
  .result-flow .arw { color: var(--accent); font-weight: 700; }
  @media (max-width: 760px) {
    .result-flow { flex-direction: column; gap: 10px; }
    .result-flow .rf { width: 100%; max-width: 320px; justify-content: center; }
    .result-flow .arw { transform: rotate(90deg); }
  }
  .tsteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  @media (max-width: 820px) { .tsteps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 470px) { .tsteps { grid-template-columns: 1fr; } }
  .tstep { border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; background: rgba(255, 255, 255, 0.02); position: relative; }
  .tstep .sn { font-family: var(--mono); font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 0.08em; }
  .tstep h4 { font-size: 15.5px; margin: 10px 0 8px; font-weight: 700; }
  .tstep p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.8; }
  .aim { margin-top: 26px; border: 1px solid rgba(166, 230, 77, 0.3); background: var(--accent-dim); border-radius: 16px; padding: 26px; text-align: center; }
  .aim .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; }
  .aim h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(20px, 3vw, 26px); margin: 10px 0 6px; }
  .aim p { color: var(--muted); font-size: 14px; margin: 0; }
  .cc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  @media (max-width: 820px) { .cc { grid-template-columns: 1fr; } }
  .cc-col { border-radius: 18px; padding: 30px 26px; border: 1px solid var(--line); }
  .cc-col.can { background: rgba(166, 230, 77, 0.05); border-color: rgba(166, 230, 77, 0.28); }
  .cc-col > h3 { font-size: 17px; margin: 0 0 6px; font-weight: 700; }
  .cc-col > .note { font-size: 12.5px; color: var(--faint); margin: 0 0 20px; }
  .cc-item { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
  .cc-item:first-of-type { border-top: none; }
  .cc-item .ci { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
  .cc-col.cant .ci { background: rgba(255, 255, 255, 0.06); color: var(--muted); }
  .cc-col.can .ci { background: var(--accent); color: #0b0d0c; }
  .cc-item .ct { font-size: 14.5px; font-weight: 700; color: var(--text); }
  .cc-item .cd { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.7; }
  .cc-flag { margin-top: 18px; display: flex; gap: 10px; align-items: flex-start; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 13px; color: var(--muted); }
  .cc-flag .fi { color: var(--accent); font-weight: 700; }
  .sum-lead { text-align: center; margin-bottom: 40px; }
  .sum-lead .s1 { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); margin: 0 0 8px; }
  .sum-lead .s2 { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 3.8vw, 34px); line-height: 1.5; margin: 0; }
  .feats4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 760px) { .feats4 { grid-template-columns: 1fr 1fr; } }
  .feat4 { text-align: center; border: 1px solid var(--line); border-radius: 16px; padding: 26px 18px; background: rgba(255, 255, 255, 0.02); }
  .feat4 .f4i { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-dim); color: var(--accent); }
  .feat4 .f4i svg { width: 24px; height: 24px; }
  .feat4 p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.75; }
  .feat4 b { color: var(--text); display: block; font-size: 15px; margin-bottom: 5px; }

  /* ===== Final CTA ===== */
  .final { text-align: center; padding: 130px 0; position: relative; }
  .final h2 { font-family: var(--serif); font-weight: 800; font-size: clamp(34px, 6vw, 74px); line-height: 1.2; margin: 0 0 16px; }
  .final p { color: var(--muted); margin: 0 0 40px; font-size: 17px; }

  /* ===== Footer ===== */
  footer.site { border-top: 1px solid var(--line); padding: 56px 0 40px; }
  footer.site .fwrap { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
  footer.site .brand { font-size: 24px; }
  footer.site nav { display: flex; gap: 22px; flex-wrap: wrap; }
  footer.site nav a { color: var(--muted); font-size: 14px; transition: color 0.25s; }
  footer.site nav a:hover { color: var(--accent); }
  footer.site .copy { color: var(--faint); font-size: 12px; margin-top: 36px; font-family: var(--mono); letter-spacing: 0.04em; }

  /* ===== Mobile sticky CTA ===== */
  .mobile-cta { display: none; }

  /* ===== Responsive ===== */
  @media (max-width: 940px) {
    .section { padding: 84px 0; }
    .nav .link { display: none; }
    .hero { align-items: flex-end; }
    .hero-copy { max-width: 560px; }
    .hero-photo { position: absolute; inset: 0; width: auto; display: block; padding: 0; }
    .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%;
      -webkit-mask-image: none; mask-image: none; }
    .hero-scrim { background:
      linear-gradient(180deg, rgba(11,13,12,0.5) 0%, transparent 26%, rgba(11,13,12,0.5) 58%, rgba(11,13,12,0.9) 80%, var(--bg) 100%); }
    .prob-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .svc-top { grid-template-columns: 1fr; gap: 32px; }
    .svc-photo { order: -1; }
    .profile-grid { grid-template-columns: 1fr; gap: 26px; }
    .profile-photo { max-width: 300px; }
    .feat3 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .scroll-hint { display: none; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    .section { padding: 68px 0; }
    .hero { padding: 92px 0 96px; min-height: 100svh; align-items: stretch; }
    .hero-inner { display: flex; }
    .hero-copy { display: flex; flex-direction: column; flex: 1; }
    .hero .kicker.limited { margin-top: auto; margin-bottom: 14px; }
    .hero-lead { margin-top: 0; margin-bottom: 0; }
    .hero-actions { display: none; }
    .hero-stats { display: none; }
    .hero-photo img { object-position: 50% 15%; }
    .hero-scrim { background: linear-gradient(180deg,
      rgba(11,13,12,0.5) 0%,
      rgba(11,13,12,0.34) 34%,
      rgba(11,13,12,0.62) 55%,
      rgba(11,13,12,0.9) 78%,
      var(--bg) 100%); }
    .hero-copy { max-width: none; }
    h1.title { font-size: clamp(34px, 11vw, 54px); }
    .sub-head { font-size: clamp(18px, 5.1vw, 26px); }
    .hero-actions { gap: 16px; }
    .hero-actions .btn.big { width: 100%; justify-content: center; }
    .hero-stats { gap: 18px; }
    .hero-stats .n { font-size: 20px; }
    .prob-grid { grid-template-columns: 1fr; }
    .eq { grid-template-columns: 1fr; }
    .eq .plus { display: none; }
    .marquee span { font-size: 20px; }
    .nav .btn { display: none; }
    header.site .wrap { height: 64px; }
    /* sticky mobile CTA */
    .mobile-cta {
      display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
      background: rgba(11, 13, 12, 0.86); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
    }
    .mobile-cta .btn { flex: 1; justify-content: center; padding: 15px; }
    body { padding-bottom: 84px; }
  }

  /* ===== Sub-page hero (legal / profile) ===== */
  .page-lead-hero { padding: 140px 0 30px; position: relative; overflow: hidden; }
  .page-lead-hero::after { content: ""; position: absolute; width: 640px; height: 640px; right: -220px; top: -300px; z-index: 0; pointer-events: none;
    background: radial-gradient(circle, rgba(166,230,77,0.12), rgba(166,230,77,0) 62%); }
  .page-lead-hero .wrap { position: relative; z-index: 1; }
  .page-lead-hero h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(28px, 4.6vw, 46px); line-height: 1.25; margin: 16px 0 12px; letter-spacing: 0.01em; }
  .page-lead-hero p { color: var(--muted); margin: 0; max-width: 34em; line-height: 1.9; }

  /* ===== Legal prose ===== */
  .legal { padding: 24px 0 100px; }
  .legal .wrap { max-width: 880px; }
  .legal h2 { font-size: 17px; margin: 42px 0 12px; font-weight: 700; color: var(--text); border-left: 3px solid var(--accent); padding-left: 12px; line-height: 1.5; }
  .legal h2:first-of-type { margin-top: 0; }
  .legal p, .legal li { color: var(--muted); font-size: 15px; line-height: 1.95; }
  .legal p { margin: 8px 0; }
  .legal ol, .legal ul { padding-left: 1.4em; margin: 10px 0; }
  .legal li { margin-bottom: 6px; }
  .legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
  .legal .updated { color: var(--faint); font-size: 13px; margin-top: 48px; }
  .legal .ph { color: var(--accent-2); background: var(--accent-dim); padding: 1px 7px; border-radius: 5px; font-size: 0.92em; white-space: nowrap; }
  .legal .note { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 13.5px; color: var(--muted); margin: 0 0 28px; }
  .legal table { width: 100%; border-collapse: collapse; margin: 8px 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
  .legal th, .legal td { text-align: left; vertical-align: top; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.8; }
  .legal tr:last-child th, .legal tr:last-child td { border-bottom: none; }
  .legal th { width: 32%; color: var(--text); font-weight: 700; background: rgba(255,255,255,0.02); }
  .legal td { color: var(--muted); }
  @media (max-width: 600px) {
    .legal th, .legal td { display: block; width: 100%; }
    .legal th { border-bottom: none; padding: 14px 16px 2px; }
    .legal td { padding: 2px 16px 14px; }
  }

  /* ===== Profile (about) page ===== */
  .story-item { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 32px 0; border-top: 1px solid var(--line); }
  .story-item:first-of-type { border-top: none; }
  .story-item .snum { font-family: var(--mono); font-size: 40px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(166,230,77,0.6); }
  .story-item h3 { font-family: var(--serif); font-size: clamp(19px, 2.6vw, 24px); margin: 0 0 12px; font-weight: 700; }
  .story-item p { color: var(--muted); font-size: 15px; line-height: 1.95; margin: 0; }
  @media (max-width: 560px) { .story-item { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; } .story-item .snum { font-size: 30px; } }
  .achieve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
  @media (max-width: 820px) { .achieve-grid { grid-template-columns: 1fr; } }
  .achieve-list { list-style: none; margin: 0; padding: 0; }
  .achieve-list li { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .achieve-list li:last-child { border-bottom: none; }
  .achieve-list .ai { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-dim); color: var(--accent); }
  .achieve-list .ai svg { width: 22px; height: 22px; }
  .achieve-list .at { font-size: 15.5px; color: var(--text); font-weight: 600; }
  .achieve-list .at b { color: var(--accent-2); font-weight: 700; }
  .achieve-photo { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); position: relative; }
  .achieve-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .achieve-photo figcaption { position: absolute; left: 20px; bottom: 18px; right: 20px; font-family: var(--serif); font-weight: 700; font-size: clamp(16px, 2.2vw, 20px); color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.7); line-height: 1.6; }
