/* =====================================================
   MIRASISONE 屋内プロジェクションマッピングLP
   Mobile-first / 配色は mirasisone.com 採色
   ===================================================== */
:root {
  --navy: #0E1424;
  --navy-2: #131B31;
  --navy-3: #1A2340;
  --aqua: #6FC6E0;
  --lilac: #6B82CE;
  --indigo: #3E4F85;
  --white: #FBFBFB;
  --text: #EDF1F7;
  --muted: #A9B4CC;
  --line: rgba(251, 251, 251, 0.12);
  --card: rgba(14, 20, 36, 0.55);
  --radius: 6px;
  --cta-h: 52px;
  --sec-y: 56px;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-aqua: 0 8px 28px rgba(111, 198, 224, .28);
}
@media (min-width: 900px) { :root { --sec-y: 88px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.4; letter-spacing: .03em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
@media (min-width: 900px) { .container { width: min(100% - 80px, var(--container)); } }

/* --- 星空の地（全体） --- */
.bg-stars {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 30%, rgba(255,255,255,.45) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(111,198,224,.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 90% 82%, rgba(255,255,255,.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 25% 90%, rgba(107,130,206,.6) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 60% 12%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 5% 55%, rgba(255,255,255,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 68% 58%, rgba(111,198,224,.5) 50%, transparent 51%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(62,79,133,.35), transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(62,79,133,.25), transparent 70%),
    var(--navy);
  background-size: 900px 900px, 900px 900px, 900px 900px, 900px 900px, 900px 900px, 900px 900px, 900px 900px, 900px 900px, 100% 100%, 100% 100%, 100% 100%;
}

/* --- 見出し --- */
.sec-head { margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(22px, 4.6vw, 32px); }
.sec-head .lead { color: var(--muted); margin-top: 10px; font-size: 15px; }
.sec-head .en { display: block; font-size: 12px; letter-spacing: .22em; color: var(--aqua); margin-bottom: 8px; text-transform: uppercase; }
.em { color: var(--aqua); }
.note-ph { color: #FFD79A; font-weight: 500; }  /* 【要確認】プレースホルダの視認用 */

/* --- CTAボタン --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--cta-h); padding: 0 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; letter-spacing: .04em; line-height: 1.2;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn .arr { font-size: 14px; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--aqua); color: var(--navy); box-shadow: var(--shadow-aqua); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(111,198,224,.4); }
.btn-ghost { border: 1px solid rgba(251,251,251,.5); color: var(--white); background: rgba(14,20,36,.35); }
.btn-ghost:hover { border-color: var(--aqua); color: var(--aqua); }
.btn-indigo { background: var(--indigo); color: var(--white); }
.btn-indigo:hover { background: #4A5C99; transform: translateY(-2px); }
.btn-block { width: 100%; }
.cta-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) { .cta-row { flex-direction: row; } }
.cta-center { display: flex; justify-content: center; margin-top: 36px; }
.cta-sub { text-align: center; color: var(--muted); font-size: 13px; margin-top: 12px; }

/* --- ヘッダー --- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 14px 0; transition: background .3s, padding .3s, box-shadow .3s;
}
.header.is-scrolled { background: rgba(14,20,36,.88); backdrop-filter: blur(10px); padding: 8px 0; box-shadow: 0 1px 0 var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: .12em; font-size: 15px; color: var(--white); }
.logo svg { width: 26px; height: 26px; }
.nav { display: none; gap: 26px; font-size: 13px; color: var(--muted); }
.nav a { transition: color .2s; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--aqua); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header .btn { min-height: 40px; padding: 0 16px; font-size: 14px; }
.header .btn-primary { box-shadow: none; }
.tel-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(251,251,251,.4); display: grid; place-items: center; }
.tel-icon svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .nav { display: flex; } }

/* --- S1 ヒーロー --- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 110px 0 60px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-media .fallback { position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 72% 42%, rgba(255,196,110,.16), transparent 70%),
    radial-gradient(ellipse 45% 40% at 60% 45%, rgba(111,198,224,.12), transparent 70%),
    linear-gradient(180deg, #0B1020 0%, #121A33 60%, #0E1424 100%); }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-beam { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-beam::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 120%; height: 140%;
  background: conic-gradient(from 215deg at 100% 0%, transparent 0deg, rgba(111,198,224,.14) 8deg, rgba(255,255,255,.05) 14deg, transparent 22deg);
  animation: beam 9s ease-in-out infinite alternate; transform-origin: 100% 0;
}
@keyframes beam { from { transform: rotate(-4deg); opacity: .8; } to { transform: rotate(5deg); opacity: 1; } }
.hero-overlay { position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(90deg, rgba(14,20,36,.92) 0%, rgba(14,20,36,.78) 40%, rgba(14,20,36,.35) 75%, rgba(14,20,36,.55) 100%),
    linear-gradient(180deg, rgba(14,20,36,.6) 0%, transparent 30%, transparent 70%, var(--navy) 100%); }
.hero .container { position: relative; z-index: 4; }
.hero-inner { max-width: 620px; }
.hero h1 { font-size: clamp(30px, 7.4vw, 56px); line-height: 1.25; letter-spacing: .04em; text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero .h1-sub { display: block; font-size: clamp(18px, 4.4vw, 26px); margin-top: 14px; font-weight: 700; color: var(--white); }
.hero .lead { margin-top: 20px; font-size: 15px; color: #D5DCEA; font-weight: 500; }
@media (min-width: 600px) { .hero .lead { font-size: 17px; } }
.hero .cta-row { margin-top: 30px; }
.trust { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 30px; font-size: 13px; color: var(--muted); }
.trust li { display: flex; align-items: center; gap: 8px; }
.trust svg { width: 22px; height: 22px; color: var(--aqua); }
.trust b { color: var(--white); font-weight: 700; }
.hero-scroll { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 4; font-size: 10px; letter-spacing: .3em; color: var(--muted); display: none; }
.hero-scroll::after { content: ""; display: block; width: 1px; height: 36px; margin: 8px auto 0; background: linear-gradient(var(--aqua), transparent); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (min-width: 900px) { .hero-scroll { display: block; } }
/* 初回表示のみ段階フェード（スクロール非依存） */
.hero .fx { opacity: 0; transform: translateY(14px); animation: heroIn .8s var(--ease) forwards; }
.hero .fx:nth-child(1) { animation-delay: .1s; } .hero .fx:nth-child(2) { animation-delay: .25s; }
.hero .fx:nth-child(3) { animation-delay: .4s; } .hero .fx:nth-child(4) { animation-delay: .55s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* --- 共通セクション --- */
.sec { padding: var(--sec-y) 0; position: relative; }
.sec + .sec { border-top: 1px solid var(--line); }
.sec-alt { background: linear-gradient(180deg, rgba(19,27,49,.6), rgba(14,20,36,0)); }

/* --- S2 課題提起 + Before/After --- */
.problem-grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .problem-grid { grid-template-columns: 1fr 1.35fr; align-items: center; gap: 56px; } }
.problem h2 { font-size: clamp(26px, 6vw, 40px); line-height: 1.35; }
.problem .body { margin-top: 20px; color: #D5DCEA; }
.problem .solution { margin-top: 22px; color: var(--aqua); font-weight: 700; font-size: 17px; }
.ba { position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; user-select: none; touch-action: none; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.ba .layer { position: absolute; inset: 0; }
.ba .layer img { width: 100%; height: 100%; object-fit: cover; }
.ba .before .fallback { background: linear-gradient(180deg, #2A2418 0%, #1B1811 55%, #0F0D09 100%); }
.ba .after .fallback { background: linear-gradient(180deg, #1C2A44 0%, #14203A 55%, #0E1424 100%); }
.ba .after .fallback::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,214,140,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 20%, rgba(111,198,224,.7) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 45%, rgba(255,214,140,.5) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 60%, rgba(111,198,224,.6) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 70%, rgba(255,214,140,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 80%, rgba(107,130,206,.7) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.5) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.5) 0 1px, transparent 2px);
  background-size: 180px 140px; animation: drift 14s linear infinite; opacity: .9; }
@keyframes drift { to { background-position: 180px 140px; } }
.ba .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--white); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 14px rgba(111,198,224,.8); }
.ba .handle::after { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 15px; letter-spacing: .05em; }
.ba .tag { position: absolute; bottom: 14px; padding: 6px 12px; font-size: 12px; letter-spacing: .18em; font-weight: 700; background: rgba(14,20,36,.7); border: 1px solid rgba(251,251,251,.35); backdrop-filter: blur(6px); }
.ba .tag-before { left: 14px; } .ba .tag-after { right: 14px; color: var(--aqua); }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: ew-resize; }
.ba-hint { text-align: center; color: var(--muted); font-size: 12px; margin-top: 10px; letter-spacing: .1em; }

/* --- 写真スロット（未配置時の表示） --- */
.ph { position: relative; overflow: hidden; background: var(--navy-3); }
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ph .fallback { position: absolute; inset: 0; display: none; }
.ph.is-missing img { display: none; }
.ph.is-missing .fallback { display: block; }
.ph .fallback::before { content: attr(data-label); position: absolute; left: 10px; bottom: 8px; font-size: 10px; letter-spacing: .1em; color: rgba(251,251,251,.45); }
.ph-glow { background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,196,110,.22), transparent 70%), radial-gradient(ellipse 60% 50% at 30% 70%, rgba(111,198,224,.18), transparent 70%), linear-gradient(180deg, #1B2340, #0E1424); }
.ph-warm { background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,170,90,.25), transparent 70%), linear-gradient(180deg, #2B2113, #0F0D09); }

/* --- S3 業種 --- */
.spaces { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .spaces { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 1100px) { .spaces { grid-template-columns: repeat(8, 1fr); gap: 10px; } }
.space { display: block; border: 1px solid var(--line); border-radius: 8px; background: var(--card); overflow: hidden; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.space:hover { border-color: rgba(111,198,224,.6); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.space:hover img { transform: scale(1.06); }
.space .ph { aspect-ratio: 1 / 1; }
.space .body { padding: 12px 12px 14px; }
.space .ico { width: 24px; height: 24px; color: var(--aqua); margin-bottom: 6px; }
.space h3 { font-size: 14px; line-height: 1.4; }
.space p { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
@media (min-width: 1100px) { .space .body { padding: 10px 10px 12px; } .space h3 { font-size: 13px; } .space p { font-size: 11px; } }

/* --- S4 事例 --- */
.cases { display: grid; gap: 16px; }
@media (min-width: 640px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.case { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--card); display: flex; flex-direction: column; transition: border-color .3s, transform .3s var(--ease); }
.case:hover { border-color: rgba(111,198,224,.5); transform: translateY(-3px); }
.case .ph { aspect-ratio: 4 / 3; }
.case .body { padding: 16px; }
.case .cat { font-size: 11px; letter-spacing: .16em; color: var(--aqua); font-weight: 700; }
.case h3 { font-size: 16px; margin-top: 6px; }
.case .meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.case dl { margin: 12px 0 0; font-size: 13px; display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; }
.case dt { color: var(--aqua); font-weight: 700; white-space: nowrap; }
.case dd { margin: 0; color: #D5DCEA; }
.case .voice { margin-top: 12px; padding: 10px 12px; border-left: 2px solid var(--lilac); background: rgba(107,130,206,.08); font-size: 13px; color: var(--muted); }

/* --- S5 屋内だからできること --- */
.indoor-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .indoor-grid { grid-template-columns: .9fr 1.4fr; align-items: center; gap: 48px; } }
.merits li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.merits li:last-child { border-bottom: 0; }
.merits svg { width: 32px; height: 32px; color: var(--aqua); margin-top: 3px; }
.merits h3 { font-size: 15px; }
.merits p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.daynight { position: relative; aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.daynight .layer { position: absolute; inset: 0; transition: opacity .9s var(--ease); }
.daynight .layer img { width: 100%; height: 100%; object-fit: cover; }
.daynight .day .fallback { display: block; background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(255,240,210,.5), transparent 70%), linear-gradient(180deg, #6E7A8E 0%, #3E4A5F 60%, #262E40 100%); }
.daynight .night .fallback { display: block; background: radial-gradient(ellipse 60% 60% at 60% 45%, rgba(111,198,224,.35), transparent 70%), linear-gradient(180deg, #0E1424 0%, #121A33 60%, #0B0F1C 100%); }
.daynight .day .fallback::after, .daynight .night .fallback::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,214,140,.7) 0 2px, transparent 3px), radial-gradient(circle at 65% 30%, rgba(111,198,224,.8) 0 2px, transparent 3px), radial-gradient(circle at 80% 60%, rgba(255,214,140,.6) 0 3px, transparent 4px), radial-gradient(circle at 45% 70%, rgba(111,198,224,.7) 0 2px, transparent 3px), radial-gradient(circle at 15% 75%, rgba(107,130,206,.8) 0 3px, transparent 4px);
  background-size: 200px 150px; animation: drift 16s linear infinite; }
.daynight .day .fallback::after { opacity: .5; }
.daynight.is-night .day { opacity: 0; }
.daynight .badge { position: absolute; top: 16px; width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(251,251,251,.5); background: rgba(14,20,36,.55); backdrop-filter: blur(6px); display: grid; place-items: center; text-align: center; font-size: 10px; line-height: 1.3; transition: opacity .5s; }
.daynight .badge b { display: block; font-size: 13px; letter-spacing: .12em; }
.daynight .badge-day { left: 16px; } .daynight .badge-night { right: 16px; }
.daynight.is-night .badge-day, .daynight:not(.is-night) .badge-night { opacity: .35; }
.daynight .ring { position: absolute; left: 50%; top: 50%; width: 120px; height: 120px; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(251,251,251,.45); background: rgba(14,20,36,.5); backdrop-filter: blur(6px); display: grid; place-items: center; text-align: center; font-size: 12px; font-weight: 700; line-height: 1.5; pointer-events: none; }
.daynight .ring::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px dashed rgba(111,198,224,.6); animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dn-toggle { display: flex; justify-content: center; margin-top: 14px; }
.dn-toggle button { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.dn-toggle .sw { width: 38px; height: 20px; border-radius: 999px; background: rgba(251,251,251,.2); position: relative; transition: background .3s; }
.dn-toggle .sw::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); transition: transform .3s var(--ease); }
.dn-toggle button[aria-pressed=true] .sw { background: var(--aqua); }
.dn-toggle button[aria-pressed=true] .sw::after { transform: translateX(18px); }

/* --- S6 技術仕様 --- */
.spec-grid { display: grid; gap: 32px; }
@media (min-width: 1000px) { .spec-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; } }
.iso-wrap { position: relative; }
.iso { width: 100%; height: auto; }
.iso .ln { fill: none; stroke: rgba(111,198,224,.85); stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; }
.iso .ln-dim { stroke: rgba(111,198,224,.35); stroke-dasharray: 4 5; }
.iso .face { fill: rgba(111,198,224,0); transition: fill .4s; }
.iso .face.is-on, .iso g.is-on .face { fill: rgba(111,198,224,.22); }
.iso .beam { fill: url(#beamGrad); opacity: .55; }
.iso .glow { fill: rgba(111,198,224,.35); filter: url(#blur); }
.iso.draw .ln { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw 2.2s var(--ease) forwards; }
.iso.draw .ln:nth-child(n+6) { animation-delay: .4s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.iso-labels { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
@media (min-width: 1000px) { .iso-labels { position: absolute; right: 0; top: 8px; flex-direction: column; align-items: flex-end; margin: 0; } }
.iso-labels button { padding: 6px 12px; border: 1px solid var(--line); border-radius: 4px; font-size: 12px; color: var(--muted); background: rgba(14,20,36,.6); transition: all .3s; }
.iso-labels button.is-on { border-color: var(--aqua); color: var(--aqua); background: rgba(111,198,224,.1); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 32%; color: var(--aqua); font-weight: 700; white-space: nowrap; }
.spec-table td { color: #D5DCEA; }
.spec-note { font-size: 12px; color: var(--muted); margin-top: 12px; }
.honest { margin-top: 20px; padding: 14px 16px; border: 1px solid rgba(107,130,206,.5); border-radius: 6px; background: rgba(107,130,206,.08); font-size: 13px; }
.honest b { color: var(--white); }

/* --- 白カード（S7費用・S10FAQ） --- */
.white-card { background: var(--white); color: #1E2536; border-radius: 10px; padding: 24px 18px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
@media (min-width: 900px) { .white-card { padding: 40px; } }
.white-card h2, .white-card h3 { color: var(--navy); }
.white-card .sec-head .lead { color: #58627A; }
.white-card .sec-head .en { color: var(--indigo); }

/* --- S7 費用 --- */
.plans { display: grid; gap: 14px; }
@media (min-width: 800px) { .plans { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.plan { border: 1px solid #DDE2EC; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; background: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30,37,54,.12); }
.plan .head { padding: 12px 16px; text-align: center; font-weight: 700; font-size: 14px; letter-spacing: .1em; background: var(--indigo); color: #fff; }
.plan.is-featured .head { background: var(--navy); }
.plan.is-featured { border-color: var(--indigo); box-shadow: 0 8px 30px rgba(62,79,133,.18); }
.plan .price { text-align: center; padding: 20px 16px 6px; }
.plan .price .num { font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: .02em; }
.plan .price .num small { font-size: 16px; }
.plan .price .for { font-size: 12px; color: #58627A; margin-top: 6px; }
.plan .incl { padding: 12px 16px 18px; font-size: 13px; flex: 1; }
.plan .incl h4 { font-size: 12px; letter-spacing: .1em; color: var(--indigo); margin: 10px 0 6px; }
.plan .incl li { padding-left: 18px; position: relative; color: #303A50; line-height: 1.7; }
.plan .incl li::before { content: "✓"; position: absolute; left: 0; color: var(--indigo); font-weight: 700; }
.plan .incl .no li::before { content: "－"; color: #98A2B8; }
.price-vars { margin-top: 24px; padding: 16px; background: #F2F4F9; border-radius: 6px; font-size: 13px; color: #303A50; }
.price-vars h3 { font-size: 14px; margin-bottom: 8px; }
.price-vars ul { display: flex; flex-wrap: wrap; gap: 6px 10px; }
.price-vars li { padding: 4px 10px; background: #fff; border: 1px solid #DDE2EC; border-radius: 999px; font-size: 12px; }
.price-foot { margin-top: 20px; font-size: 13px; color: #58627A; }

/* --- S8 制作の流れ --- */
.flow { display: grid; gap: 10px; counter-reset: step; position: relative; }
@media (min-width: 900px) { .flow { grid-template-columns: repeat(6, 1fr); gap: 12px; } }
.step { position: relative; padding: 18px 16px 18px 64px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
@media (min-width: 900px) { .step { padding: 56px 14px 18px; text-align: center; } }
.step .n { position: absolute; left: 16px; top: 16px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--aqua); color: var(--aqua); display: grid; place-items: center; font-size: 13px; font-weight: 700; background: var(--navy); }
@media (min-width: 900px) { .step .n { left: 50%; top: 12px; transform: translateX(-50%); } }
.step h3 { font-size: 15px; }
.step p { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.step .time { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--aqua); border: 1px solid rgba(111,198,224,.4); padding: 2px 8px; border-radius: 999px; }
@media (min-width: 900px) {
  .step:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 30px; width: 12px; height: 1px; background: var(--aqua); opacity: .6; }
}
.flow-line { display: none; }
.lead-time { margin-top: 24px; padding: 18px 20px; border-radius: 8px; border: 1px solid rgba(111,198,224,.35); background: rgba(111,198,224,.06); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.lead-time b { font-size: 17px; color: var(--white); }
.lead-time span { font-size: 13px; color: var(--muted); }

/* --- S9 選ばれる理由 --- */
.reasons { display: grid; gap: 14px; }
@media (min-width: 800px) { .reasons { grid-template-columns: repeat(3, 1fr); } }
.reason { padding: 22px 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.reason svg { width: 40px; height: 40px; color: var(--aqua); margin-bottom: 12px; }
.reason h3 { font-size: 16px; }
.reason p { font-size: 13px; color: var(--muted); margin-top: 8px; }
.company-line { margin-top: 24px; font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 20px; }
.company-line a { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }

/* --- S10 FAQ --- */
.faq { display: grid; gap: 8px; }
.faq details { border: 1px solid #DDE2EC; border-radius: 6px; background: #fff; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 48px 16px 18px; font-weight: 700; font-size: 15px; color: var(--navy); position: relative; line-height: 1.5; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; color: var(--indigo); margin-right: 10px; font-weight: 700; }
.faq summary::after { content: ""; position: absolute; right: 18px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--indigo); border-bottom: 2px solid var(--indigo); transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq .a { padding: 0 18px 18px 18px; font-size: 14px; color: #303A50; line-height: 1.8; }
.faq .a::before { content: "A"; color: var(--aqua); font-weight: 700; margin-right: 10px; }
.faq .a a { color: var(--indigo); text-decoration: underline; }

/* --- S11 お問い合わせ --- */
.contact-grid { display: grid; gap: 28px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .9fr 1.2fr; gap: 48px; align-items: start; } }
.contact-intro h2 { font-size: clamp(22px, 4.6vw, 30px); }
.contact-intro .lead { color: var(--muted); margin-top: 12px; font-size: 14px; }
.contact-points { display: grid; gap: 12px; margin-top: 24px; }
.contact-points li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; font-size: 13px; color: var(--muted); }
.contact-points svg { width: 30px; height: 30px; color: var(--aqua); }
.contact-points b { display: block; color: var(--white); font-size: 14px; }
.tel-box { margin-top: 28px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.tel-box .num { font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: .04em; display: inline-flex; align-items: center; gap: 10px; }
.tel-box .num svg { width: 22px; height: 22px; color: var(--aqua); }
.tel-box small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.form-card { background: var(--white); color: #1E2536; border-radius: 10px; padding: 22px 18px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
@media (min-width: 700px) { .form-card { padding: 32px; } }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field .req { color: #D64545; font-size: 11px; margin-left: 6px; }
.field .opt { color: #7A849A; font-size: 11px; margin-left: 6px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid #C9D0DE; border-radius: 6px; background: #fff; color: #1E2536;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233E4F85' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(62,79,133,.18); }
.field.is-error input, .field.is-error select { border-color: #D64545; }
.field .err { display: none; color: #D64545; font-size: 12px; margin-top: 6px; }
.field.is-error .err { display: block; }
.form-foot { margin-top: 18px; }
.form-foot .btn { min-height: 56px; font-size: 17px; }
.form-foot .sub { text-align: center; font-size: 12px; color: #58627A; margin-top: 10px; line-height: 1.7; }
.form-foot .sub a { color: var(--indigo); text-decoration: underline; }

/* --- フッター --- */
.footer { padding: 40px 0 110px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
@media (min-width: 900px) { .footer { padding-bottom: 40px; } }
.footer .container { display: grid; gap: 20px; }
@media (min-width: 900px) { .footer .container { grid-template-columns: auto 1fr auto; align-items: start; } }
.footer .logo { font-size: 16px; }
.footer address { font-style: normal; line-height: 1.9; }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer nav a:hover { color: var(--aqua); }
.footer .copy { font-size: 12px; }

/* --- モバイル固定CTA --- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(14,20,36,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line); display: flex; gap: 10px; transform: translateY(110%); transition: transform .4s var(--ease); }
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; min-height: 48px; font-size: 15px; padding: 0 12px; }
.sticky-cta .btn-tel { flex: 0 0 auto; width: 52px; padding: 0; border: 1px solid rgba(251,251,251,.4); border-radius: var(--radius); display: grid; place-items: center; }
.sticky-cta .btn-tel svg { width: 20px; height: 20px; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* --- スクロール連動（控えめ） --- */
.rv { opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transition-delay 0s, transform .5s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .06s; } .rv-d2 { transition-delay: .12s; } .rv-d3 { transition-delay: .18s; } .rv-d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero .fx { animation: none; opacity: 1; transform: none; }
  .hero-beam::before, .ba .after .fallback::after, .daynight .fallback::after, .daynight .ring::before, .hero-scroll::after { animation: none; }
  .iso.draw .ln { animation: none; stroke-dashoffset: 0; }
}

/* PC専用改行 */
br.pc { display: none; }
@media (min-width: 700px) { br.pc { display: inline; } }

/* 固定ヘッダー分のアンカー余白 */
.sec, #contact { scroll-margin-top: 72px; }

/* --- 背景演出キャンバス --- */
.bg-fx { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; image-rendering: auto; }
/* ヒーローの下地を半透明にして背景演出を透過 */
.hero-media .fallback { background:
    radial-gradient(ellipse 60% 55% at 72% 42%, rgba(255,196,110,.16), transparent 70%),
    radial-gradient(ellipse 45% 40% at 60% 45%, rgba(111,198,224,.12), transparent 70%),
    linear-gradient(180deg, rgba(11,16,32,.55) 0%, rgba(18,26,51,.45) 60%, rgba(14,20,36,.6) 100%); }
.hero-overlay { background:
    linear-gradient(90deg, rgba(14,20,36,.85) 0%, rgba(14,20,36,.65) 40%, rgba(14,20,36,.25) 75%, rgba(14,20,36,.4) 100%),
    linear-gradient(180deg, rgba(14,20,36,.5) 0%, transparent 30%, transparent 75%, rgba(14,20,36,.85) 100%); }
/* セクション背景は演出を透かす */
.sec-alt { background: linear-gradient(180deg, rgba(19,27,49,.45), rgba(14,20,36,0)); }

/* --- ヒーロー動画 --- */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; opacity: 0; transition: opacity 1.2s ease; }
.hero-video.is-ready { opacity: 1; }
/* 動画上の文字可読性：左側を少し濃く、下端を地の紺へ溶かす */
.hero-overlay { background:
    linear-gradient(90deg, rgba(14,20,36,.9) 0%, rgba(14,20,36,.72) 38%, rgba(14,20,36,.28) 68%, rgba(14,20,36,.35) 100%),
    linear-gradient(180deg, rgba(14,20,36,.55) 0%, transparent 28%, transparent 70%, rgba(14,20,36,.92) 100%); }
.hero-beam { display: none; }

/* モバイルは動画上の文字を守るため少し濃く */
@media (max-width: 699px) {
  .hero-overlay { background:
    linear-gradient(180deg, rgba(14,20,36,.6) 0%, rgba(14,20,36,.45) 35%, rgba(14,20,36,.55) 70%, rgba(14,20,36,.95) 100%); }
}

/* --- ボタン：枠線 + ホバーで下から色が満ちる（液体フィル） --- */
.btn {
  position: relative; overflow: hidden; isolation: isolate; z-index: 0;
  background: transparent; border: 1px solid currentColor; letter-spacing: .06em;
  box-shadow: none; text-shadow: none;
  transition: color .2s ease-in, border-color .2s ease-in, transform .25s var(--ease), box-shadow .3s var(--ease);
}
.btn::before, .btn::after {
  content: ""; position: absolute; left: 50%; display: block; border-radius: 50%; z-index: -1; pointer-events: none;
  transition: all .5s .1s cubic-bezier(.55, 0, .1, 1);
}
.btn::before { top: 100%; width: 140%; height: 180%; transform: translateX(-50%) scaleY(1) scaleX(1.25); background: rgba(255,255,255,.06); }
.btn::after  { left: 55%; top: 180%; width: 160%; height: 190%; transform: translateX(-50%) scaleY(1) scaleX(1.45); }
.btn:hover::before { top: -35%; transform: translateX(-50%) scaleY(1.3) scaleX(.8); }
.btn:hover::after  { top: -45%; transform: translateX(-50%) scaleY(1.3) scaleX(.8); }
.btn:hover { transform: none; }
.btn:hover .arr { transform: translateX(4px); }

/* 紺地：水色の枠 → 水色で満ちて紺文字 */
.btn-primary { color: var(--aqua); border-color: var(--aqua); background: rgba(111,198,224,.08); box-shadow: 0 0 0 rgba(111,198,224,0); }
.btn-primary::before, .btn-primary::after { background-color: var(--aqua); }
.btn-primary::before { background-color: rgba(111,198,224,.35); }
.btn-primary:hover { color: var(--navy); border-color: var(--aqua); box-shadow: 0 10px 30px rgba(111,198,224,.35); }
.btn-primary:hover::before { background-color: var(--aqua); }
.header .btn-primary { box-shadow: none; }
.header .btn-primary:hover { box-shadow: none; }

/* 白カード内：濃い青紫の枠 → 青紫で満ちて白文字 */
.btn-indigo { color: var(--indigo); border-color: var(--indigo); background: rgba(62,79,133,.06); }
.btn-indigo::before { background-color: rgba(62,79,133,.25); }
.btn-indigo::after { background-color: var(--indigo); }
.btn-indigo:hover { color: var(--white); border-color: var(--indigo); box-shadow: 0 10px 30px rgba(62,79,133,.3); }
.btn-indigo:hover::before { background-color: var(--indigo); }

/* 副ボタン：白の細枠 → 白で満ちて紺文字 */
.btn-ghost { color: var(--white); border-color: rgba(251,251,251,.55); background: rgba(14,20,36,.25); backdrop-filter: blur(6px); }
.btn-ghost::before { background-color: rgba(251,251,251,.3); }
.btn-ghost::after { background-color: var(--white); }
.btn-ghost:hover { color: var(--navy); border-color: var(--white); }
.btn-ghost:hover::before { background-color: var(--white); }

/* タッチ端末（ホバーなし）は満ちた状態を既定にして押しやすさを優先 */
@media (hover: none) {
  .btn-primary { background: var(--aqua); color: var(--navy); }
  .btn-indigo { background: var(--indigo); color: var(--white); }
  .btn::before, .btn::after { display: none; }
}

/* --- 事例4件レイアウト / ヒーローキャプション --- */
@media (min-width: 1024px) { .cases.cases-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; } .cases-4 .case h3 { font-size: 15px; } }
.hero-caption { margin-top: 18px; font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.hero .fx:nth-child(5) { animation-delay: .7s; }

/* --- 公式ロゴ --- */
.logo-mark { width: 34px; height: auto; display: block; }
.footer .logo-mark { width: 40px; }

/* ===== 書体の刷新（Zen Kaku Gothic New + Manrope） ===== */
body { font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, system-ui, sans-serif; letter-spacing: .01em; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.005em; }
.sec-head h2 { font-size: clamp(24px, 4.4vw, 34px); font-weight: 700; letter-spacing: -.01em; }
.sec-head .en, .hero-scroll, .step .n, .ba .tag, .daynight .badge b, .plan .price .num, .btn, .logo, .nav, .cta-sub, .trust, .hero-caption { font-family: "Manrope", "Zen Kaku Gothic New", system-ui, sans-serif; }
.sec-head .en { font-weight: 700; letter-spacing: .28em; font-size: 11px; }
.btn { font-family: "Zen Kaku Gothic New", "Manrope", system-ui, sans-serif; font-weight: 700; letter-spacing: .08em; }
.logo { font-family: "Manrope", system-ui, sans-serif; font-weight: 800; letter-spacing: .14em; }
.nav { font-family: "Zen Kaku Gothic New", system-ui, sans-serif; font-weight: 500; }
.plan .price .num { font-weight: 800; letter-spacing: -.02em; }
.step .n { font-weight: 700; }

/* ===== ヒーロー：動画と共存する配置 ===== */
.hero { align-items: flex-end; padding: 120px 0 88px; }
.hero-inner { max-width: 760px; position: relative; }
.hero-inner::before { /* 文字の背後だけを柔らかく落とす */
  content: ""; position: absolute; inset: -40px -60px -40px -80px; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 30% 60%, rgba(14,20,36,.85), rgba(14,20,36,.55) 45%, rgba(14,20,36,0) 75%);
}
.hero-overlay { background:
    linear-gradient(90deg, rgba(14,20,36,.55) 0%, rgba(14,20,36,.25) 45%, rgba(14,20,36,.05) 75%, rgba(14,20,36,.2) 100%),
    linear-gradient(180deg, rgba(14,20,36,.45) 0%, transparent 25%, transparent 55%, rgba(14,20,36,.92) 100%); }
.hero h1 { font-size: clamp(25px, 5.4vw, 54px); line-height: 1.16; letter-spacing: -.015em; font-weight: 900; text-shadow: 0 2px 24px rgba(0,0,0,.55); }
.hero .h1-sub { font-size: clamp(16px, 2.1vw, 22px); font-weight: 500; letter-spacing: .02em; margin-top: 16px; color: #E8EDF6; }
.hero .lead { font-size: 15px; font-weight: 400; color: #D5DCEA; margin-top: 18px; max-width: 520px; }
.hero .cta-row { margin-top: 26px; }
.trust { margin-top: 24px; font-size: 12px; }
.hero-caption { font-size: 11px; opacity: .8; }
.hero-scroll { display: none !important; }
@media (max-width: 699px) {
  .hero { padding: 100px 0 90px; }
  .hero-inner::before { inset: -30px -40px -60px -40px; background: linear-gradient(180deg, rgba(14,20,36,0), rgba(14,20,36,.7) 30%, rgba(14,20,36,.85)); }
  .hero-overlay { background: linear-gradient(180deg, rgba(14,20,36,.35) 0%, rgba(14,20,36,.1) 30%, rgba(14,20,36,.6) 70%, rgba(14,20,36,.95) 100%); }
}

/* 屋内だからできること：昼間のBefore/After */
.ba-day { aspect-ratio: 3 / 2; }
.ba-badge { position: absolute; top: 14px; left: 14px; padding: 6px 12px; font-size: 11px; letter-spacing: .18em; font-weight: 700; background: rgba(14,20,36,.7); border: 1px solid rgba(251,251,251,.35); backdrop-filter: blur(6px); font-family: "Manrope", sans-serif; pointer-events: none; }
.ba-badge small { display: block; font-size: 10px; letter-spacing: .05em; font-weight: 500; font-family: "Zen Kaku Gothic New", sans-serif; opacity: .85; }
@media (min-width: 900px) and (max-width: 1100px) { #indoor .sec-head h2 { font-size: 26px; } }
.ba-season { aspect-ratio: 4 / 3; }
.ba-season .tag-after { color: #BFE6F5; }
.ba-wide { aspect-ratio: 16 / 9; }

/* S4 そのほかの屋内実績（ブログ事例へのリンク） */
.more-cases { margin-top: 28px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.03); }
.more-cases-h { font-size: 13px; color: var(--muted); letter-spacing: .04em; margin-bottom: 10px; }
.more-cases ul { list-style: none; display: grid; gap: 8px 20px; }
@media (min-width: 700px) { .more-cases ul { grid-template-columns: 1fr 1fr; } }
.more-cases li { font-size: 14px; padding-left: 14px; position: relative; }
.more-cases li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); }
.more-cases a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(111,198,224,.5); }
.more-cases a:hover { color: var(--aqua); }

/* ヒーロー：H1内のキッカー（検索キーワード）＋主コピー */
.hero .h1-kicker { display: block; width: fit-content; font-size: clamp(12px, 1.4vw, 14px); font-weight: 700; letter-spacing: .12em; color: var(--aqua); border: 1px solid rgba(111,198,224,.55); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px; background: rgba(14,20,36,.45); backdrop-filter: blur(4px); }
.hero .h1-sub { font-weight: 500; }
.hero .h1-sub b { color: var(--white); font-weight: 700; }

/* S2.5 体験設計：ゴールから逆算 */
.goals { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
@media (min-width: 640px) { .goals { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .goals { grid-template-columns: repeat(3, 1fr); } }
.goal { border: 1px solid var(--line); border-radius: 12px; padding: 20px 20px 18px; background: rgba(255,255,255,.03); position: relative; overflow: hidden; }
.goal::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(180deg, var(--aqua), var(--lilac)); }
.goal .g-label { font-family: "Manrope", sans-serif; font-size: 11px; letter-spacing: .22em; color: var(--aqua); font-weight: 700; }
.goal h3 { font-size: 17px; margin-top: 6px; color: var(--white); }
.goal p { font-size: 13.5px; line-height: 1.75; color: var(--muted); margin-top: 10px; }
.goal p b { display: block; font-size: 11px; letter-spacing: .12em; color: #9BB0D8; font-weight: 700; margin-bottom: 2px; }
.goal .g-kpi { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--line); color: #D5DCEA; }
.roles { display: grid; gap: 12px; margin-top: 28px; }
@media (min-width: 800px) { .roles { grid-template-columns: repeat(3, 1fr); } }
.role { display: grid; grid-template-columns: 44px 1fr; gap: 6px 12px; padding: 18px 18px 16px; border-radius: 12px; background: rgba(111,198,224,.06); border: 1px solid rgba(111,198,224,.22); }
.role .n { grid-row: 1 / 3; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 22px; color: var(--aqua); line-height: 1; }
.role h3 { font-size: 15px; color: var(--white); }
.role p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.approach-note { margin-top: 22px; text-align: center; font-size: 14px; color: var(--muted); }
.approach-note a { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }
