/* =====================================================
   ONE TEAM LAB — Online Salon LP  /  style.css  v4
   テーマ：明るい王道サロンLP（Sky Blue × Yellow marker）
   ===================================================== */

:root {
  --sky: #d9eefb;
  --sky-2: #eaf6ff;
  --blue: #1f86d6;
  --blue-d: #1268b0;
  --navy: #103a6b;
  --ink: #15375a;
  --ink-soft: #5a7388;
  --yellow: #fff14d;
  --ybtn: #ffe000;
  --ybtn-d: #e8bd00;
  --red: #ff2e2e;
  --orange: #ff7a1a;
  --line: #cfe4f4;
  --white: #ffffff;
  --green: #06c755;
  --green-d: #05b34c;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 44px rgba(31, 100, 170, 0.16);
  --shadow-sm: 0 10px 26px rgba(31, 100, 170, 0.12);
  --container: 1120px;
  --header-h: 84px;
  --ease: 0.35s cubic-bezier(0.22, 0.7, 0.25, 1);

  --font: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --font-jp: "Noto Sans JP", "M PLUS Rounded 1c", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--sky);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
body.menu-open { position: fixed; width: 100%; overflow: hidden; }
h1, h2, h3 { margin: 0; line-height: 1.4; font-family: var(--font); font-weight: 900; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 820px; }
.pc-br { display: inline; }
.sp-br { display: none; }

/* マーカー & 強調 */
.mk { background: linear-gradient(transparent 56%, var(--yellow) 56%); font-weight: 900; padding: 0 3px; }
.hl { color: var(--blue); font-weight: 900; }
.em-red { color: var(--red); font-weight: 900; }
.em-orange { color: var(--orange); font-weight: 900; }

/* 装飾排除（旧バージョン由来） */
.wave, .zig, .shape, .badge-sticker, .event-deco, .join-deco { display: none !important; }
.pillar-icon, .benefit-icon, .feature-icon, .voice-avatar, .hero-values li span { display: none !important; }

/* チェブロン導線 */
.chev { display: flex; justify-content: center; gap: 16px; margin: 6px 0 26px; }
.chev span { width: 20px; height: 20px; border-right: 5px solid var(--blue); border-bottom: 5px solid var(--blue); border-radius: 3px; transform: rotate(45deg); animation: chevBounce 1.4s ease-in-out infinite; }
.chev span:nth-child(2) { animation-delay: 0.15s; }
.chev span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chevBounce { 0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; } 50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; } }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px; padding: 0 34px; border: none; border-radius: 999px; font-family: var(--font); font-size: 16px; font-weight: 900; cursor: pointer; transition: transform var(--ease), box-shadow var(--ease), background var(--ease); white-space: nowrap; }
.btn--lg { min-height: 64px; padding: 0 46px; font-size: 18px; }
/* 黄色CTA（押せる立体感） */
.btn--primary, .cta { color: var(--navy); background: var(--ybtn); box-shadow: 0 6px 0 var(--ybtn-d), 0 16px 26px rgba(232, 189, 0, 0.32); }
.btn--primary:hover, .cta:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--ybtn-d), 0 12px 20px rgba(232, 189, 0, 0.32); }
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 60px; padding: 0 48px; border-radius: 999px; font-family: var(--font); font-size: 18px; font-weight: 900; }
.cta::after { content: ""; width: 11px; height: 11px; border-right: 3px solid var(--navy); border-bottom: 3px solid var(--navy); transform: rotate(45deg) translateY(-2px); }
.cta-wrap { text-align: center; margin-top: 40px; }
.btn--ghost { color: var(--blue-d); background: #fff; border: 2px solid var(--blue); }
.btn--ghost:hover { transform: translateY(-2px); background: var(--blue); color: #fff; }
.btn--line { color: #fff; background: var(--green); box-shadow: 0 6px 0 var(--green-d), 0 14px 24px rgba(6, 199, 85, 0.3); }
.btn--line:hover { color: #fff; transform: translateY(2px); box-shadow: 0 4px 0 var(--green-d), 0 12px 20px rgba(6, 199, 85, 0.3); }
.btn--line svg { width: 22px; height: 22px; }

/* ===== Header ===== */
.site-header { position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 1000; display: flex; align-items: center; background: rgba(255, 255, 255, 0.86); backdrop-filter: saturate(150%) blur(12px); -webkit-backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid transparent; transition: box-shadow var(--ease), border-color var(--ease); }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px rgba(31, 100, 170, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 64px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 21px; }
.site-nav a { font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--font); transition: color var(--ease); }
.site-nav a:not(.nav-cta) { position: relative; padding-left: 14px; }
.site-nav a:not(.nav-cta)::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(45deg); width: 5px; height: 5px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); }
.site-nav a:hover { color: var(--blue); }
.site-nav a:not(.nav-cta):hover::before { border-color: var(--blue-d); }
.site-nav .nav-cta { display: inline-flex; align-items: center; gap: 7px; color: #fff; padding: 11px 20px; border-radius: 999px; background: var(--green); box-shadow: 0 4px 0 var(--green-d); }
.site-nav .nav-cta:hover { color: #fff; transform: translateY(1px); box-shadow: 0 3px 0 var(--green-d); }
.site-nav .nav-cta svg { width: 17px; height: 17px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.6px; border-radius: 2px; background: var(--blue); transition: transform var(--ease), opacity var(--ease); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8.6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8.6px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: calc(var(--header-h) + 56px) 0 70px; background: linear-gradient(170deg, #eaf7ff 0%, #cfe8fb 100%); overflow: hidden; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 40px; align-items: center; }
.hero-eyebrow { display: inline-block; font-family: var(--font); font-size: 14px; font-weight: 800; color: #fff; background: var(--blue); padding: 7px 18px; border-radius: 999px; box-shadow: 0 4px 0 var(--blue-d); }
.hero-title { margin: 22px 0 0; font-size: clamp(21px, 4.4vw, 42px); font-weight: 900; line-height: 1.4; letter-spacing: -0.015em; color: var(--navy); white-space: nowrap; }
.hero-title .hl { color: var(--blue); }
.hero-lead { margin: 22px 0 0; font-size: clamp(15px, 1.8vw, 17px); color: var(--ink); max-width: 520px; font-weight: 500; }
.hero-values { margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-values li { font-family: var(--font); font-weight: 800; font-size: 13.5px; color: var(--blue-d); background: #fff; border: 2px solid var(--line); padding: 7px 15px; border-radius: 999px; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.polaroid { margin: 0; background: #fff; padding: 8px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transform: none !important; }
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.polaroid figcaption { display: none; }
.polaroid--a { grid-column: 1 / 3; aspect-ratio: 16 / 9; }
.polaroid--b, .polaroid--c { aspect-ratio: 1; }

/* ===== Sections ===== */
.section { position: relative; padding: clamp(64px, 9vw, 104px) 0; }
.section--cream { background: var(--white); }
.section--soft { background: var(--sky-2); }
.section--navy { background: linear-gradient(165deg, #2b93de 0%, #1f86d6 100%); color: #fff; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 58px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font); font-size: 14px; font-weight: 800; letter-spacing: 0.04em; color: var(--blue); margin-bottom: 14px; }
.eyebrow i { width: 24px; height: 3px; border-radius: 3px; background: var(--yellow); display: inline-block; }
.section-head--light .eyebrow { color: #fff; }
.section-head--light .eyebrow i { background: #fff; }
.section-title { font-size: clamp(25px, 4.2vw, 38px); font-weight: 900; line-height: 1.45; color: var(--navy); }
.section--navy .section-title { color: #fff; }
.section-lead { margin-top: 18px; font-size: 16px; color: var(--ink-soft); font-weight: 500; }
.section--navy .section-lead { color: rgba(255, 255, 255, 0.92); }
.marker { background: linear-gradient(transparent 56%, var(--yellow) 56%); padding: 0 4px; }

/* ===== Results (吹き出し＋円グラフ) ===== */
#results { position: relative; overflow: hidden; }
#results .container { position: relative; z-index: 1; }
.results-watermark { position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%); width: min(980px, 96%); opacity: 0.05; pointer-events: none; z-index: 0; }
#results .section-title { white-space: nowrap; font-size: clamp(15px, 4.2vw, 34px); }
.results-block { max-width: 920px; margin: 0 auto; }
.results-cat { text-align: center; font-family: var(--font); font-weight: 900; font-size: clamp(18px, 2.6vw, 24px); color: var(--navy); margin-bottom: 26px; }
.bubbles { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(10px, 3vw, 20px); margin-bottom: 52px; max-width: 100%; }
.bubble { position: relative; background: #fff; border: 3px solid var(--blue); border-radius: 22px; padding: clamp(15px, 3vw, 19px) clamp(15px, 4vw, 26px); text-align: center; color: var(--blue-d); box-shadow: var(--shadow-sm); }
.bubble b { display: block; font-family: var(--font); font-weight: 900; font-size: clamp(16px, 4.4vw, 28px); line-height: 1.3; }
.bubble b .big { color: var(--red); font-size: 1.15em; }
.bubble::after { content: ""; position: absolute; bottom: -19px; left: 50%; transform: translateX(-50%); border: 10px solid transparent; border-top-color: var(--blue); }
.bubble::before { content: ""; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: #fff; z-index: 1; }
.bubble--up { transform: translateY(-16px); }
.pies { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(16px, 6vw, 56px); max-width: 100%; }
.pie-item { text-align: center; }
.pie { width: min(168px, 40vw); height: min(168px, 40vw); border-radius: 50%; margin: 0 auto 16px; position: relative; box-shadow: var(--shadow-sm); }
.pie--sat { background: conic-gradient(var(--orange) 0 90%, #ffe6cf 90% 100%); }
.pie--inc { background: conic-gradient(var(--navy) 0 80%, #d4e2f2 80% 100%); }
.pie--mate { background: conic-gradient(#2b93de 0 92%, #d4e6f6 92% 100%); }
.pie--try { background: conic-gradient(#2eb872 0 85%, #d4efe0 85% 100%); }

/* 満足度グラフを大きく目立たせる */
.pie-feature { display: flex; justify-content: center; margin-bottom: 38px; }
.pie-item--feature { position: relative; }
.pie-item--feature .pie { width: min(224px, 58vw); height: min(224px, 58vw); box-shadow: 0 18px 44px rgba(255, 122, 26, 0.34); }
.pie-item--feature .pie-val { font-size: clamp(34px, 11vw, 46px); top: clamp(20px, 6vw, 30px); }
.pie-item--feature .pie-cap { margin-top: 14px; font-size: 15.5px; font-weight: 900; color: var(--navy); }
.pie-ribbon { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); z-index: 2; font-family: var(--font); font-weight: 900; font-size: 13px; color: #fff; background: var(--orange); padding: 7px 20px; border-radius: 999px; box-shadow: 0 6px 16px rgba(255, 122, 26, 0.45); white-space: nowrap; }
.pie-val { position: absolute; top: clamp(11px, 4vw, 16px); left: 0; right: 0; font-family: var(--font); font-weight: 900; font-size: clamp(22px, 7vw, 30px); color: #fff; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); }
.pie-cap { font-weight: 800; font-size: 13.5px; color: var(--ink); }
.results-ticker { position: relative; margin: 46px 0 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.ticker-track { display: flex; gap: 14px; width: max-content; animation: tickerMove 34s linear infinite; }
.results-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track li { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 11px 20px; font-family: var(--font); font-weight: 800; font-size: 14px; color: var(--navy); white-space: nowrap; box-shadow: var(--shadow-sm); }
.ticker-track li::before { content: "✓"; flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; font-weight: 900; display: grid; place-items: center; }
@keyframes tickerMove { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.future-msg { margin: 52px auto 0; text-align: center; font-family: var(--font); font-weight: 900; font-size: clamp(18px, 2.8vw, 27px); line-height: 1.7; color: var(--navy); }

/* ===== Problem (悩み→解決) ===== */
.problem-wrap { max-width: 720px; margin: 0 auto; }
.problem-list { display: flex; flex-direction: column; gap: 13px; }
.problem-list li { position: relative; background: var(--sky-2); border-radius: 14px; padding: 17px 22px 17px 50px; font-weight: 700; color: var(--navy); }
.problem-list li::before { content: "✓"; position: absolute; left: 18px; top: 18px; width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff; font-size: 12px; font-weight: 900; display: grid; place-items: center; }
.problem-tease { text-align: center; font-family: var(--font); font-weight: 800; font-size: clamp(17px, 2.4vw, 22px); color: var(--navy); margin-top: 40px; line-height: 1.6; }
.problem-solve { margin-top: 4px; text-align: center; font-family: var(--font); font-weight: 900; font-size: clamp(22px, 3.6vw, 36px); color: var(--navy); line-height: 1.5; }
.problem-solve small { font-size: 0.45em; color: var(--ink-soft); font-weight: 700; }

/* ===== Concept ===== */
.concept-wrap { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 50px; align-items: center; }
.concept-text .section-title { text-align: left; }
.concept-sub { margin-top: 14px; font-family: var(--font); font-weight: 800; font-size: clamp(15px, 2vw, 18px); color: var(--blue); letter-spacing: 0.04em; }
.concept-points { margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.concept-points li { position: relative; padding: 16px 18px 16px 52px; font-size: 14.5px; color: var(--ink-soft); background: var(--sky-2); border-radius: 14px; }
.concept-points li b { display: block; font-family: var(--font); font-weight: 800; font-size: 16px; color: var(--navy); }
.concept-points li::before { content: "✓"; position: absolute; left: 18px; top: 16px; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 13px; font-weight: 900; display: grid; place-items: center; }
.concept-media { position: relative; }
.photo-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card--big { aspect-ratio: 4 / 3; }
.photo-card--small { position: absolute; width: 44%; aspect-ratio: 1; left: -6%; bottom: -8%; border: 6px solid #fff; box-shadow: var(--shadow); }
.concept-closing { margin: clamp(48px, 6vw, 70px) auto 0; max-width: 820px; text-align: center; font-family: var(--font); font-size: clamp(17px, 2.3vw, 23px); font-weight: 800; line-height: 2; color: var(--navy); }
.concept-closing b { color: var(--blue); }

/* ===== Pillars (活動内容) ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.pillar-card { position: relative; background: #fff; border: 3px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform var(--ease), border-color var(--ease); }
.pillar-card:hover { transform: translateY(-5px); border-color: var(--blue); }
.pillar-card--photo { padding: 0; display: flex; flex-direction: column; }
.pillar-photo { aspect-ratio: 16 / 9; overflow: hidden; }
.pillar-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.pillar-card--photo:hover .pillar-photo img { transform: scale(1.06); }
.pillar-body { padding: 24px 28px 28px; }
.pillar-tag { display: inline-block; font-family: var(--font); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: #fff; background: var(--blue); padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.pillar-name { font-size: 21px; font-weight: 900; color: var(--navy); }
.pillar-desc { margin-top: 12px; font-size: 14px; color: var(--ink-soft); }

/* ===== Features ===== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.feature-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--ease); }
.feature-card:hover { transform: translateY(-5px); }
.feature-media { aspect-ratio: 16 / 9; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.coming-soon { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--font); font-weight: 800; letter-spacing: 0.04em; color: var(--blue-d); font-size: 14px; background: repeating-linear-gradient(45deg, #fff, #fff 14px, var(--sky-2) 14px, var(--sky-2) 28px); }
.feature-body { padding: 26px 30px 30px; text-align: center; }
.feature-card h3 { font-size: 19px; font-weight: 900; color: var(--navy); }
.feature-card p { margin-top: 10px; font-size: 14px; color: var(--ink-soft); text-align: left; }

/* ===== Event ===== */
.event-card { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; background: linear-gradient(160deg, #2b93de, #1268b0); color: #fff; border-radius: 28px; padding: clamp(34px, 5vw, 56px); box-shadow: var(--shadow); overflow: hidden; }
.event-main { position: relative; z-index: 1; }
.event-label { display: inline-block; font-family: var(--font); font-size: 13px; font-weight: 800; letter-spacing: 0.04em; color: var(--navy); background: var(--yellow); padding: 6px 16px; border-radius: 999px; }
.event-title { margin: 16px 0 0; font-size: clamp(25px, 4vw, 38px); font-weight: 900; line-height: 1.4; }
.event-title .hl { color: #fff; }
.event-lead { margin-top: 16px; font-size: 15px; color: rgba(255, 255, 255, 0.94); }
.event-values { margin: 20px 0 26px; display: flex; flex-wrap: wrap; gap: 9px; }
.event-values li { font-family: var(--font); font-weight: 800; font-size: 13px; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.4); padding: 7px 14px; border-radius: 999px; }
.event-tags { margin: 20px 0 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.event-tags li { font-family: var(--font); font-weight: 800; font-size: 12.5px; color: #fff; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.38); padding: 6px 13px; border-radius: 999px; }
.event-tags li:last-child { background: transparent; border-color: transparent; opacity: 0.85; }
.event-tours { margin: 6px 0 26px; background: rgba(255, 255, 255, 0.12); border: 1.5px dashed rgba(255, 255, 255, 0.55); border-radius: 16px; padding: 16px 18px; }
.event-tours-label { display: inline-block; font-family: var(--font); font-weight: 900; font-size: 12.5px; letter-spacing: 0.04em; color: var(--navy); background: var(--yellow); padding: 5px 14px; border-radius: 999px; margin-bottom: 12px; }
.event-tours-list { display: flex; flex-wrap: wrap; gap: 10px; }
.event-tours-list li { font-family: var(--font); font-weight: 800; font-size: 14px; color: var(--blue-d); background: #fff; padding: 10px 18px; border-radius: 12px; box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16); }
.event-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.event-photos .photo-card { position: static; width: auto; border: 4px solid #fff; aspect-ratio: 1; }
.event-photos .r1 { grid-column: 1 / 3; aspect-ratio: 16 / 9; }

/* ===== Startup (起業したい人へ) ===== */
.lecturer-card { position: relative; max-width: 840px; margin: 0 auto; background: linear-gradient(160deg, #2b93de, #1268b0); color: #fff; border-radius: 26px; padding: clamp(40px, 5vw, 58px) clamp(28px, 5vw, 56px); text-align: center; box-shadow: var(--shadow); overflow: hidden; }
.lecturer-ribbon { display: inline-block; font-family: var(--font); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; color: var(--navy); background: var(--yellow); padding: 8px 22px; border-radius: 999px; margin-bottom: 20px; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); }
.lecturer-num { font-family: var(--font); font-weight: 900; font-size: clamp(23px, 3.8vw, 36px); line-height: 1.4; }
.lecturer-num b { color: var(--yellow); font-size: 1.2em; }
.lecturer-text { margin: 18px auto 0; max-width: 640px; font-size: 15px; color: rgba(255, 255, 255, 0.94); line-height: 2; }
.lecturer-card .cta-wrap { margin-top: 30px; }

/* ===== Benefits（プレミアム会員限定） ===== */
.section--premium { background: radial-gradient(120% 90% at 50% -10%, #6db0e6 0%, #4a96d6 50%, #3179bd 100%); color: #fff; position: relative; overflow: hidden; }
.premium-glow { position: absolute; inset: 0; background: radial-gradient(46% 40% at 50% 6%, rgba(255, 210, 110, 0.18), transparent 70%); pointer-events: none; }
.section--premium .section-lead { color: rgba(255, 255, 255, 0.82); }
.member-badge { display: inline-block; font-family: var(--font); font-weight: 800; font-size: 13px; letter-spacing: 0.1em; color: #3a2a00; background: linear-gradient(120deg, #ffe79a, #f3b53d); padding: 8px 22px; border-radius: 999px; box-shadow: 0 8px 22px rgba(243, 181, 61, 0.4); margin-bottom: 20px; }
.benefits-title { display: flex; align-items: baseline; justify-content: center; gap: 6px; line-height: 1; }
.benefits-title .b-num { font-family: var(--font); font-weight: 900; font-size: clamp(64px, 13vw, 124px); color: #ffd86b; text-shadow: 0 0 34px rgba(255, 200, 80, 0.55); }
.benefits-title .b-text { font-family: var(--font); font-weight: 900; font-size: clamp(28px, 5.5vw, 50px); color: #fff; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.benefit-card { position: relative; background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)); border: 1px solid rgba(255, 210, 110, 0.3); border-radius: 18px; padding: 30px 30px 28px; overflow: hidden; transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.benefit-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #ffe79a, #f3b53d); }
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(255, 210, 110, 0.75); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3); }
.benefit-tag { display: inline-block; font-family: var(--font); font-weight: 800; font-size: 11.5px; letter-spacing: 0.08em; color: #3a2a00; background: linear-gradient(120deg, #ffe79a, #f3b53d); padding: 4px 13px; border-radius: 999px; margin-bottom: 14px; }
.benefit-num { position: absolute; top: 22px; right: 24px; font-family: var(--font); font-size: 46px; font-weight: 900; color: transparent; -webkit-text-stroke: 1.6px rgba(255, 210, 110, 0.5); line-height: 1; }
.benefit-card h3 { font-size: 18px; font-weight: 900; color: #fff; line-height: 1.5; padding-right: 44px; }
.benefit-card p { margin-top: 11px; font-size: 13.5px; color: rgba(255, 255, 255, 0.75); }

.benefit-cta { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 36px; text-align: center; background: linear-gradient(160deg, #ffe79a, #f3b53d); border: none; padding: 34px 30px; }
.benefit-cta::before { display: none; }
.benefit-cta .bc-lead { font-family: var(--font); font-weight: 800; color: #3a2a00; font-size: 18px; line-height: 1.5; }
.benefit-cta .bc-price { font-family: var(--font); font-weight: 900; color: var(--navy); font-size: 22px; margin: 0; }
.benefit-cta .bc-price b { font-size: 1.9em; color: var(--red); margin: 0 2px; }
.benefit-cta .bc-price small { font-size: 0.62em; }
.benefit-cta .cta { background: var(--navy); color: #fff; box-shadow: 0 6px 0 #081d38; min-height: 54px; padding: 0 34px; font-size: 16px; }
.benefit-cta .cta:hover { box-shadow: 0 4px 0 #081d38; }
.benefit-cta .cta::after { border-color: #fff; }

/* ===== Plans ===== */
.plans-intro { text-align: center; font-family: var(--font); font-weight: 900; font-size: clamp(18px, 2.6vw, 24px); margin: 0 auto 8px; max-width: 680px; color: var(--navy); }
.plans-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; max-width: 860px; margin: 0 auto; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 3px solid var(--line); border-radius: var(--radius); padding: 38px 32px; box-shadow: var(--shadow-sm); transition: transform var(--ease); }
.plan-card:hover { transform: translateY(-5px); }
.plan-card--featured { border-color: var(--blue); box-shadow: 0 22px 50px rgba(31, 100, 170, 0.22); padding: 38px 32px; }
.plan-feats-head { margin: 8px 0 14px; text-align: center; font-family: var(--font); font-weight: 900; font-size: 16px; color: var(--blue-d); }
.plan-feats-head b { color: var(--red); font-size: 1.15em; }
.plan-feats--8 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.plan-feats--8 li { padding-left: 26px; }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--font); font-size: 13px; font-weight: 900; color: var(--navy); background: var(--yellow); padding: 6px 20px; border-radius: 999px; box-shadow: 0 4px 0 var(--ybtn-d); }
.plan-name { font-size: 20px; font-weight: 900; color: var(--navy); }
.plan-price { margin: 12px 0 6px; font-family: var(--font); font-size: 50px; font-weight: 900; line-height: 1; color: var(--navy); }
.plan-card--featured .plan-price { color: var(--red); }
.plan-yen { font-size: 0.46em; vertical-align: 0.4em; margin-right: 2px; }
.plan-term { font-size: 0.3em; font-weight: 700; opacity: 0.7; margin-left: 4px; color: var(--ink); }
.plan-feats { margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-feats li { position: relative; padding-left: 28px; font-size: 14.5px; }
.plan-feats li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; font-weight: 900; display: grid; place-items: center; }
.plan-feats li b { color: var(--blue-d); }
.plan-btn { width: 100%; }
.plans-note { margin-top: 26px; text-align: center; font-size: 13px; color: var(--ink-soft); }
.plans-note a { color: var(--blue); font-weight: 800; }

/* ===== Steps (スマホ画面) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step-screen { aspect-ratio: 9 / 18; max-width: 178px; margin: 0 auto 16px; background: #fff; border: 8px solid var(--navy); border-radius: 28px; overflow: hidden; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step-screen .coming-soon { font-size: 12px; }
.step-num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--ybtn); color: var(--navy); font-family: var(--font); font-weight: 900; font-size: 18px; margin-bottom: 10px; box-shadow: 0 4px 0 var(--ybtn-d); }
.step h3 { font-size: 15px; font-weight: 800; line-height: 1.6; color: var(--navy); }

/* ===== Voices ===== */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card { display: flex; flex-direction: column; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.voice-card blockquote { flex: 1; margin: 0; font-size: 14.5px; line-height: 1.95; }
.voice-card blockquote::before { content: "“"; font-family: var(--font); font-size: 44px; line-height: 0.1; color: var(--blue); display: inline-block; vertical-align: -8px; margin-right: 4px; }
.voice-card figcaption { margin-top: 18px; padding-top: 16px; border-top: 2px dotted var(--line); display: flex; align-items: center; gap: 12px; }
.voice-av { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; }
.voice-av svg { width: 32px; height: 32px; }
.voice-av--1 { background: #e3f0fb; color: var(--blue); }
.voice-av--2 { background: #fff0e0; color: var(--orange); }
.voice-av--3 { background: #e7ecf6; color: var(--navy); }
.voice-card figcaption b { font-size: 13.5px; font-weight: 800; color: var(--navy); }
.voice-card figcaption small { display: block; font-size: 12px; color: var(--blue); font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; border: none; background: transparent; cursor: pointer; padding: 22px 56px 22px 56px; font-family: var(--font); font-size: 16px; font-weight: 800; color: var(--navy); position: relative; }
.faq-q::before { content: "Q"; position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--blue); font-family: var(--font); font-weight: 900; font-size: 18px; }
.faq-q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--blue); transition: transform var(--ease); }
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-a p { padding: 0 24px 22px 56px; font-size: 14px; color: var(--ink-soft); position: relative; }

/* ===== Vision ===== */
#vision { position: relative; overflow: hidden; }
.vision-watermark { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(920px, 94%); opacity: 0.05; pointer-events: none; z-index: 0; }
#vision .container { position: relative; z-index: 1; }
.vision-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.vision-wrap p { color: var(--ink); font-size: 15.5px; line-height: 2.05; }
.vision-script { display: block; width: 260px; max-width: 64%; margin: 24px auto 4px; }
.vision-name { margin-top: 16px; color: var(--ink); font-family: var(--font); font-weight: 800; }

/* ===== Company ===== */
.company-logo { display: block; height: 44px; width: auto; margin: 0 auto 28px; }
.ceo { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: center; max-width: 900px; margin: 0 auto clamp(46px, 6vw, 64px); }
.ceo-photo { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--sky-2); }
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; }
.ceo-role { font-family: var(--font); font-size: 14px; font-weight: 800; color: var(--blue); }
.ceo-name { font-family: var(--font); font-size: 25px; font-weight: 900; margin-top: 4px; color: var(--navy); }
.ceo-name small { font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-left: 10px; }
.ceo-name-img { display: block; width: 122px; height: auto; }
.ceo-message { margin-top: 18px; font-size: 15px; color: var(--ink-soft); line-height: 2; }
.company-table { max-width: 760px; margin: 0 auto; }
.company-table dl { display: grid; grid-template-columns: 180px 1fr; margin: 0; padding: 18px 8px; border-bottom: 1px solid var(--line); }
.company-table dl:first-child { border-top: 1px solid var(--line); }
.company-table dt { font-family: var(--font); font-weight: 800; color: var(--navy); font-size: 14.5px; }
.company-table dd { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.company-table dd ul { display: flex; flex-direction: column; gap: 5px; }
.company-table dd li { position: relative; padding-left: 16px; }
.company-table dd li::before { content: "・"; position: absolute; left: 0; color: var(--blue); }

/* ===== Join ===== */
.join { position: relative; padding: clamp(72px, 10vw, 116px) 0; text-align: center; color: #fff; background: linear-gradient(165deg, #2b93de 0%, #1268b0 100%); overflow: hidden; }
.join-inner { position: relative; z-index: 1; }
.join-eyebrow { display: inline-block; font-family: var(--font); font-weight: 800; font-size: 13px; letter-spacing: 0.1em; color: var(--navy); background: var(--yellow); padding: 6px 18px; border-radius: 999px; margin-bottom: 18px; }
.join-title { font-size: clamp(27px, 5vw, 44px); font-weight: 900; line-height: 1.4; }
.join-lead { margin: 18px auto 0; max-width: 760px; font-size: 16px; color: rgba(255, 255, 255, 0.95); }
.join-points { margin: 26px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; max-width: 660px; }
.join-points li { position: relative; padding-left: 28px; font-family: var(--font); font-weight: 700; font-size: 14.5px; }
.join-points li::before { content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--yellow); color: var(--navy); font-size: 12px; font-weight: 900; display: grid; place-items: center; }
.join-actions { margin: 34px auto 0; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.join .btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.7); }
.join .btn--ghost:hover { background: #fff; color: var(--blue-d); border-color: #fff; }
.join-or { margin: 26px 0 14px; font-size: 13px; color: rgba(255, 255, 255, 0.9); }
.join-form { margin: 0 auto; max-width: 540px; display: flex; gap: 12px; flex-wrap: wrap; }
.join-form input { flex: 1 1 180px; min-height: 54px; padding: 0 22px; border: none; border-radius: 999px; font-family: var(--font-jp); font-size: 15px; background: #fff; color: var(--ink); }
.join-form input::placeholder { color: #9bb3c6; }
.join-form .btn { flex: 1 1 100%; }
.join-guide { margin: 18px auto 0; max-width: 460px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 24px; background: rgba(255, 255, 255, 0.12); border: 2px dashed rgba(255, 255, 255, 0.6); border-radius: 16px; }
.join-guide-arrow { flex: none; font-size: 24px; font-weight: 900; line-height: 1; color: var(--yellow); animation: guide-bounce 1.4s ease-in-out infinite; }
.join-guide-text { margin: 0; font-family: var(--font); font-weight: 700; font-size: 14.5px; line-height: 1.6; color: #fff; text-align: left; }
.join-guide-text b { color: var(--yellow); }
@keyframes guide-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.join-note { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.88); }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #b9cee2; padding: 60px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; align-items: start; }
.footer-logo-link { display: inline-block; cursor: pointer; transition: opacity var(--ease); }
.footer-logo-link:hover { opacity: 0.8; }
.footer-logo img { height: 60px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-tagline { margin-top: 14px; font-size: 13px; color: #8fa9c4; line-height: 1.9; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 18px; }
.footer-nav a { position: relative; padding-left: 18px; font-size: 14px; color: #cfddec; transition: color var(--ease); }
.footer-nav a::before { content: ""; position: absolute; left: 2px; top: 0.6em; width: 6px; height: 6px; border-top: 2px solid var(--yellow); border-right: 2px solid var(--yellow); transform: rotate(45deg); }
.footer-nav a:hover { color: var(--yellow); }
.footer-nav a:hover::before { border-color: #fff; }
.footer-company p { font-size: 13px; line-height: 1.9; color: #8fa9c4; }
.footer-company b { color: #fff; }
.footer-legal { margin: 44px 0 0; display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: #8fa9c4; transition: color var(--ease); }
.footer-legal a:hover { color: var(--yellow); }
.footer-copy { margin: 16px 0 0; text-align: center; font-size: 12px; color: #6f89a6; letter-spacing: 0.04em; }

/* ===== Legal pages ===== */
.legal { padding-top: calc(var(--header-h) + 50px); }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-lead { color: var(--ink-soft); margin-bottom: 8px; }
.legal-body h2 { font-family: var(--font); font-size: 19px; margin: 36px 0 10px; color: var(--navy); }
.legal-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.95; margin-top: 6px; }
.legal-body ul { list-style: disc; padding-left: 1.3em; margin: 8px 0; }
.legal-body li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.9; }
.legal-back { display: inline-flex; margin-top: 40px; font-weight: 800; color: var(--blue); }

/* ===== Back to top（スマホのみ） ===== */
.back-to-top { display: none; }


/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-photos { max-width: 480px; margin: 0 auto; }
  .concept-wrap { grid-template-columns: 1fr; gap: 40px; }
  .concept-text .section-title { text-align: center; }
  .event-card { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pc-br { display: none; }
  .sp-br { display: inline; }
  .menu-toggle { display: flex; }
  .brand-logo img { height: 54px; }
  .site-nav { position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); flex-direction: column; align-items: stretch; gap: 0; padding: 16px 24px 36px; background: #fff; overflow-y: auto; transform: translateY(-110%); visibility: hidden; transition: transform var(--ease), visibility var(--ease); }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav a { padding: 18px 8px; font-size: 16.5px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 22px; justify-content: center; text-align: center; border-bottom: none; min-height: 54px; font-size: 16px; }
  .ceo { grid-template-columns: 1fr; gap: 24px; max-width: 380px; }
  .ceo-photo { max-width: 240px; margin: 0 auto; width: 100%; }
  .ceo-role, .ceo-name, .ceo-message { text-align: center; }
  .ceo-name-img { margin: 0 auto; }
  .company-table dl { grid-template-columns: 1fr; gap: 6px; padding: 16px 4px; }
}
@media (max-width: 600px) {
  :root { --header-h: 70px; } /* スマホはヘッダーを低く */
  .back-to-top { position: fixed; right: 16px; bottom: 16px; z-index: 900; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: var(--navy); background: var(--ybtn); box-shadow: 0 4px 0 var(--ybtn-d), 0 10px 20px rgba(232, 189, 0, 0.3); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); transition: opacity var(--ease), transform var(--ease), visibility var(--ease); }
  .back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .pillars-grid, .benefits-grid, .plans-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .plan-card--featured { padding: 32px 24px; }
  .plan-feats--8 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .btn, .cta { width: 100%; max-width: 100%; white-space: normal; line-height: 1.3; padding-left: 18px; padding-right: 18px; }
  .btn--lg { padding-left: 22px; padding-right: 22px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn, .hero-actions .cta, .cta-wrap .cta, .join-actions .btn { width: 90%; }
  .hero-actions .btn, .hero-actions .cta { width: 98%; }
  .event-photos { grid-template-columns: 1fr; }
  .event-photos .r1 { grid-column: auto; aspect-ratio: 16 / 9; }
  .bubble--up { transform: none; order: -1; }
  .bubbles::after { content: ""; order: -1; flex-basis: 100%; height: 0; }
  .pies { gap: 18px; }
  .pies .pie-item:first-child { flex-basis: 100%; }
  .pie { width: 138px; height: 138px; }
  .pie-val { font-size: 25px; top: 12px; }
  .pie-cap { font-size: 12px; }
  /* スマホ最適化：余白・タイポを引き締め */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 34px; }
  .hero { padding: calc(var(--header-h) + 14px) 0 22px; }
  /* つながり=ヘッダー寄り、LINEボタン=画面下寄り。多少の余白は残す。写真は折り返し後に */
  .hero-inner { min-width: 0; }
  .hero-copy { display: flex; flex-direction: column; min-width: 0; max-width: 100%; min-height: calc(100vh - var(--header-h) - 24px); min-height: calc(100svh - var(--header-h) - 24px); }
  .hero-copy .hero-eyebrow { align-self: flex-start; max-width: 100%; margin-top: 34px; font-size: 13.5px; padding: 6px 15px; white-space: nowrap; }
  .hero-copy .hero-title { margin-top: 16px; }
  .hero-copy .hero-lead { margin-top: 28px; }
  .hero-copy .hero-values { margin-top: 20px; }
  .hero-copy .hero-actions { margin-top: auto; margin-bottom: 32px; }
  .hero-title { white-space: normal; font-size: 25px; line-height: 1.42; letter-spacing: -0.01em; }
  .hero-lead { font-size: 14px; line-height: 1.75; max-width: 100%; }
  .future-msg { font-size: 18px; margin-top: 40px; }
  .concept-closing { font-size: 16px; }
  .event-card { padding: 30px 22px; border-radius: 20px; }
  .lecturer-card { padding: 34px 24px; border-radius: 20px; }
  .stats-card { padding: 34px 20px; }
  .benefit-card { padding: 26px 22px; }
  .benefit-num { font-size: 38px; top: 18px; right: 18px; }
  .benefit-card h3 { padding-right: 36px; font-size: 16.5px; }
  .benefit-cta { padding: 28px 22px; }
  .plan-card { padding: 32px 24px; }
  .voice-card { padding: 24px 22px; }
  .faq-q { padding: 20px 46px 20px 46px; font-size: 15px; }
  .faq-q::before { left: 18px; }
  .faq-a p { padding: 0 20px 20px 46px; }
  .company-table dl { padding: 16px 2px; }
  .bubbles { gap: 12px; }
  .bubble { padding: 15px 16px; border-width: 2.5px; }
  .bubble b { font-size: 16.5px; line-height: 1.3; }
  .bubble b .big { font-size: 1.12em; }
  .future-msg { max-width: 340px; }
  .join-lead { font-size: 13px; line-height: 1.7; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chev span { animation: none; }
  .join-guide-arrow { animation: none; }
  html { scroll-behavior: auto; }
}
