/* ==========================================================
   Stride 共通部品
   ========================================================== */

/* ---------- StrideWordmark(階段付きロゴタイプ) ---------- */

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: #818cf8;
  font-size: var(--wm-size, 13px);
  text-decoration: none;
  --wm-glow: 6px;
}
.wordmark:hover { color: #818cf8; }
.wordmark__text {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: calc(var(--wm-size, 13px) * .2308);
  margin-right: calc(var(--wm-size, 13px) * -.2308);
}
.wordmark__stairs {
  display: block;
  width: 100%;
  overflow: visible;
  height: calc(var(--wm-size, 13px) * .6);
  margin-top: calc(var(--wm-size, 13px) * .154);
  filter: drop-shadow(0 0 var(--wm-glow) rgba(129, 140, 248, .75));
}
.wordmark__stairs path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: var(--wm-stroke, calc(var(--wm-size, 13px) * .19));
  vector-effect: non-scaling-stroke;
}
/* 大きく使うとき:線の太さと発光を見た目で調整 */
.wordmark--lg { --wm-glow: 10px; --wm-stroke: calc(var(--wm-size) * .12); }

/* ---------- StrideMark / アプリアイコン ---------- */

.stride-mark { width: var(--mark-size, 48px); height: auto; color: var(--accent); }

/* アプリアイコン(/favicon.svg)を角丸(一辺の約22%)で見せる */
.app-icon {
  display: block;
  width: var(--icon-size, 96px);
  height: var(--icon-size, 96px);
  border-radius: 22%;
  overflow: hidden;
}
.app-icon img { width: 100%; height: 100%; }

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 22, 31, .78);            /* --surface を半透明に */
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}
.site-header .wordmark {
  --wm-size: 16px;
  padding-block: 10px;          /* タップ領域を44px以上に */
}
.site-nav { display: none; }

@media (min-width: 960px) {
  .site-header .wordmark { --wm-size: 17px; }
  .site-nav { display: block; }
  .site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
  }
  .site-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: var(--r-sm);
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
  }
  .site-nav__link:hover { color: var(--text); background: rgba(129, 140, 248, .08); }
  .site-nav__link[aria-current="page"] { color: var(--text); }
  .site-nav__link[aria-current="page"]::after {
    content: "";
    display: block;
    width: 4px; height: 4px;
    margin-left: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px rgba(129, 140, 248, .8);
  }
}

/* ---------- フッター ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--text-muted);
}
.site-footer__grid {
  display: grid;
  gap: var(--sp-6);
}
.site-footer .wordmark { --wm-size: 16px; min-height: 44px; justify-content: center; }
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--sp-4);
}
.site-footer__links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  text-decoration: none;
}
.site-footer__links a:hover { color: var(--ps-accent); text-decoration: underline; }
.site-footer__links a:not([href]) { color: var(--text-muted); text-decoration: none; }
.site-footer__meta { display: grid; gap: 4px; }
.site-footer__meta a { color: var(--text); }
.site-footer__meta a:hover { color: var(--ps-accent); }
.site-footer__copy {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  font-size: 12px;
}

@media (min-width: 960px) {
  .site-footer { padding-block: var(--sp-9) var(--sp-7); }
  .site-footer__grid {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    align-items: start;
    gap: var(--sp-8);
  }
  .site-footer__links { grid-template-columns: repeat(3, auto); justify-content: start; column-gap: var(--sp-6); }
  .site-footer__meta { text-align: right; }
}

/* ---------- ボタン(文字はすべて700) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* Primary(1画面に1つが原則) */
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--ps-accent); color: var(--on-accent); }

/* Secondary */
.btn--secondary { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.btn--secondary:hover { background: #2a2750; color: var(--ps-accent); }

/* Tertiary */
.btn--tertiary { background: var(--surface); border-color: var(--border); color: var(--text-muted); font-weight: 600; }
.btn--tertiary:hover { color: var(--text); border-color: #3a3652; }

/* サイズ */
.btn--sm { font-size: 13px; padding: 9px 18px; border-radius: var(--r-sm); }
.btn--lg { font-size: 15px; padding: 14px 20px; }
.btn--xl { font-size: 16px; padding: 16px 28px; min-height: 56px; border-radius: var(--r-md); }
@media (min-width: 960px) {
  .btn--xl { font-size: 17px; padding: 18px 32px; min-height: 60px; }
}
.btn--block { display: flex; width: 100%; }

/* 押せない見た目(URL未設定・準備中) */
.btn[aria-disabled="true"],
a.btn:not([href]) {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: .6;
}

/* ---------- カード(影は使わない。薄いグラデーション+1pxの枠) ---------- */

.card {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
}
@media (min-width: 960px) { .card { padding: var(--sp-6); } }

.card--md { border-radius: var(--r-lg); }

/* 強調カード */
.card--emph { border-color: var(--border-emph); }

/* 強調したいカード(アプリの「次回までのテーマ」カード) */
.card--warm { background: var(--surface-warm); border-color: var(--border-emph); }

/* 機能カード:機能色を約7%→約3%で重ねる。--fc に機能色を入れる */
.card--feature {
  --fc: var(--c-checkin);
  background: linear-gradient(135deg, #818cf812, #818cf808), #14161f; /* 古いブラウザ向け */
  background: linear-gradient(135deg, color-mix(in srgb, var(--fc) 7%, transparent), color-mix(in srgb, var(--fc) 3%, transparent)), var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
}

/* 機能色のショートカット(.card--feature / .eyebrow / .ficon に付ける) */
.f-checkin     { --fc: var(--c-checkin); }
.f-tell        { --fc: var(--c-tell); }
.f-achievement { --fc: var(--c-achievement); }
.f-sleep       { --fc: var(--c-sleep); }
.f-crisis      { --fc: var(--c-crisis); }
.f-med         { --fc: var(--c-med); }

.card__head { display: flex; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.card__title { font-size: var(--fs-h3); font-weight: 700; line-height: 1.5; }
.card__text { color: var(--text-muted); }

/* ---------- 機能アイコン(Tabler Icons をインラインで) ---------- */

.ficon {
  display: inline-grid;
  place-items: center;
  flex: none;
  color: var(--fc, var(--accent));
}
.ficon svg { width: var(--ficon-size, 24px); height: var(--ficon-size, 24px); }

/* アプリの「accentの四角に白抜き(黒)」表現 28×28・角丸8 */
.ficon--tile {
  width: var(--tile-size, 28px);
  height: var(--tile-size, 28px);
  border-radius: 8px;
  background: var(--fc, var(--accent));
  color: var(--on-accent);
  --ficon-size: calc(var(--tile-size, 28px) * .6);
}
.ficon--tile-lg { --tile-size: 40px; border-radius: 11px; }

/* 機能色の薄い面にアイコン(カード内で使う) */
.ficon--soft {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--fc, var(--accent)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--fc, var(--accent)) 22%, transparent);
}

/* ---------- SAFE / CAUTION / CRISIS(色だけでなく文字でも区別) ---------- */

.status {
  --sc: var(--safe);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--sc);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--sc) 9%, transparent);
  color: var(--sc);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.4;
}
.status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.status--safe    { --sc: var(--safe); }
.status--caution { --sc: var(--caution); }
.status--crisis  { --sc: var(--crisis); }

/* タブ(選択中は枠を状態色に、面に状態色を約9%) */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.tab {
  --sc: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}
.tab[aria-selected="true"],
.tab.is-active {
  border-color: var(--sc);
  background: color-mix(in srgb, var(--sc) 9%, var(--surface));
  color: var(--sc);
}
.tab--safe    { --sc: var(--safe); }
.tab--caution { --sc: var(--caution); }
.tab--crisis  { --sc: var(--crisis); }

/* ピル型のチップ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  border: 1px solid var(--border-emph);
  color: var(--ps-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- CTA(時期で3通りに切り替える) ----------
   html[data-cta] の値で表示を切り替える。初期値(JSなし)は prelaunch。 */

.cta { display: grid; gap: var(--sp-2); }
.cta__state { display: none; }

html:not([data-cta]) .cta__state--prelaunch,
html[data-cta="prelaunch"] .cta__state--prelaunch,
html[data-cta="testing"] .cta__state--testing,
html[data-cta="launched"] .cta__state--launched { display: flex; }

/* 見本ページで3状態を並べるための強制表示(data-cta-preview を付けた .cta だけ) */
.cta[data-cta-preview] .cta__state { display: none; }
.cta[data-cta-preview="prelaunch"] .cta__state--prelaunch,
.cta[data-cta-preview="testing"] .cta__state--testing,
.cta[data-cta-preview="launched"] .cta__state--launched { display: flex; }

.cta__state { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
.cta--center .cta__state { align-items: center; text-align: center; }

.cta__soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-emph);
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--ps-accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}
.cta__soon::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(129, 140, 248, .9);
}
.cta__follow { color: var(--text-muted); font-size: var(--fs-small); }
.cta__follow a { font-weight: 700; }

.cta__stores { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.cta--center .cta__stores { justify-content: center; }

/* ストアバッジ(公式素材を改変せずに表示。高さだけそろえる) */
.store-badge {
  display: inline-flex;
  min-height: 44px;
  border-radius: 8px;
}
.store-badge img { height: 48px; width: auto; }
a.store-badge:not([href]) { opacity: .5; cursor: default; }

/* ---------- スクリーンショットのプレースホルダー ----------
   /assets/screenshots/<name>.png(1170×2532)。アプリの実画面(ダークテーマ)。 */

.shot {
  width: var(--shot-w, 260px);
  max-width: 100%;
  margin: 0;
}
.shot__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1170 / 2532;
  border: 1px solid var(--border);
  border-radius: calc(var(--shot-w, 260px) * .12);
  background: var(--surface);
  object-fit: cover;
}

/* 端末の外枠(CSSで描く簡素なもの) */
.shot--device {
  padding: calc(var(--shot-w, 260px) * .035);
  border-radius: calc(var(--shot-w, 260px) * .15);
  background: linear-gradient(160deg, #23253a, #16182a);
  border: 1px solid #34314a;
}
.shot--device .shot__img {
  border-radius: calc(var(--shot-w, 260px) * .115);
  border-color: #0b0d13;
}

.shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}
.shots .shot { --shot-w: 100%; width: 100%; }
.shots .shot__img { border-radius: 18px; }
@media (min-width: 960px) {
  .shots { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-5); }
  .shots .shot__img { border-radius: 24px; }
}

/* ---------- お知らせバナー(Google アナリティクスの告知) ----------
   初期状態は hidden。GA4の測定IDがあり、未確認のときだけJSが表示する。 */

.notice {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 12px 12px 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}
.notice[hidden] { display: none; }
.notice__text { flex: 1; margin: 0; order: 1; }
.notice__text a { color: var(--ps-accent); white-space: nowrap; }
.notice__ok { flex: none; min-width: 64px; order: 2; }
@media (max-width: 599px) {
  /* モバイル:本文の続きにOKを並べ、2〜3行に収める(タップ領域は44px) */
  .notice { display: block; left: 8px; right: 8px; bottom: calc(8px + env(safe-area-inset-bottom, 0px)); padding: 10px 12px; }
  .notice__text { display: inline; }
  .notice__ok { position: relative; display: inline-flex; vertical-align: middle; min-height: 36px; min-width: 56px; padding: 6px 14px; margin-left: 8px; }
  .notice__ok::after { content: ""; position: absolute; inset: -4px; }
}
@media (min-width: 960px) {
  .notice { font-size: 14px; padding: 12px 14px 12px 20px; }
}

/* 見本ページでバナーを固定せず置くため */
.notice--static { position: static; margin: 0; }

/* ---------- 表示・非表示を切り替える区画 ---------- */

/* 支援者の声:showTestimonials が true のときだけ表示(JSなしは非表示) */
[data-toggle="testimonials"] { display: none !important; }
html[data-testimonials="on"] [data-toggle="testimonials"] { display: block !important; }

/* チラシ:flyerReady が true でダウンロード、それ以外は「準備中」 */
.flyer-ready { display: none !important; }
html[data-flyer="ready"] .flyer-ready { display: inline-flex !important; }
html[data-flyer="ready"] .flyer-pending { display: none !important; }

/* 文言プレースホルダー(【要文言:〇〇】など) */
.placeholder-copy {
  display: inline-block;
  padding: 2px 8px;
  border: 1px dashed var(--caution);
  border-radius: 6px;
  color: var(--caution);
  font-size: .9em;
}

/* ---------- よくある質問(トップ・サポートで共通。partials/faq.html) ----------
   <details>/<summary> でJSなしで開閉。data-open-on-pc を付けると、PCでは site.js が最初から開く */

.faq { display: grid; gap: 12px; }
@media (min-width: 960px) {
  .faq--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 16px; }
}
.faq__item {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.faq__item[open] { border-color: var(--border-emph); }
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 56px;
  padding: 16px 16px 16px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  border-radius: var(--r-lg);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__badge {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 0;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--border-emph);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.faq__qtext { flex: 1; }
.faq__chev {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a {
  padding: 0 16px 18px 54px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}
@media (min-width: 960px) {
  .faq__q { padding: 18px 20px; }
  .faq__a { padding: 0 24px 22px 58px; font-size: 16px; }
}

/* ---------- 段落の区切りと、矢印つきリンク ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
}
.link-arrow svg { width: 20px; height: 20px; flex: none; }
.link-arrow[href]:hover { text-decoration: underline; }

/* ---------- ページ共通の小部品(トップ・機能紹介ほか) ---------- */

/* 丸数字 */
.cnum {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-emph);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* スクショの下側をフェードして切る(次へのスクロールを誘う) */
.shot-crop {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: var(--crop-h, 320px);
  -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent);
  mask-image: linear-gradient(to bottom, #000 74%, transparent);
}
/* 見せたい部分が画面の中ほどより下にある画像は、上へずらしてその部分を見せる(上端も薄く消す) */
.shot-crop:has(img[src$="/next-theme.png"]) { --shot-shift: -24%; }   /* テーマの入力ダイアログ */
.shot-crop:has(img[src$="/achievement.png"]) { --shot-shift: -32%; }  /* カレンダーと、一言メモだけの日の記録 */
.shot-crop:has(img[src$="/next-theme.png"], img[src$="/achievement.png"]) {
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 74%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 74%, transparent);
}
.shot-crop:has(img[src$="/next-theme.png"], img[src$="/achievement.png"]) .shot { transform: translateY(var(--shot-shift)); }

/* ---------- スクショの拡大表示(site.js の「5. スクリーンショットの拡大表示」) ---------- */
.shot--zoom { position: relative; }
.shot--zoom .shot__img { cursor: zoom-in; }
.shot--zoom .shot__img:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* 拡大できることを示す、控えめな虫眼鏡マーク(右上) */
.shot--zoom::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 17, 26, .72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7cbe8' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='5.5'/%3E%3Cpath d='M15 15l5 5M10.5 8v5M8 10.5h5'/%3E%3C/svg%3E") center / 16px no-repeat;
  opacity: .8;
  pointer-events: none;
  transition: opacity .15s;
}
.shot--zoom:hover::after { opacity: 1; }
.shot--device.shot--zoom::after { top: calc(var(--shot-w, 260px) * .035 + 10px); right: calc(var(--shot-w, 260px) * .035 + 10px); }

.lb-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vh 3vw;
  background: rgba(6, 7, 12, .88);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
/* スマホ画面全体が収まる最大の大きさ(画面の高さに合わせ、幅が足りなければ幅に合わせる) */
.lightbox__img {
  height: min(94vh, calc(94vw * 2532 / 1170));
  width: auto;
  aspect-ratio: 1170 / 2532;
  border-radius: 3.2vh;
  border: 1px solid var(--border-emph);
  background: var(--surface);
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-emph);
  border-radius: 50%;
  background: rgba(15, 17, 26, .85);
  color: var(--text);
  cursor: pointer;
}
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__close:hover { background: var(--accent-soft); }
.lightbox__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- 最後のCTA(partials/final-cta.html) ---------- */

.final { text-align: center; overflow: hidden; }
.final.glow-bg {
  /* ヒーローと呼応:左上から差す光に反転 */
  background-image:
    linear-gradient(to bottom, #0f1117 0%, rgba(15,17,23,0) 28%),
    radial-gradient(ellipse 85% 60% at -4% 108%, rgba(129,140,248,0.26) 0%, rgba(129,140,248,0.10) 36%, rgba(129,140,248,0) 70%),
    radial-gradient(ellipse 85% 60% at 104% -8%, rgba(129,140,248,0.22) 0%, rgba(129,140,248,0) 62%);
}
.final__inner { display: grid; justify-items: center; gap: 20px; padding-block: 96px 104px; }
.final__mark { --mark-size: 44px; filter: drop-shadow(0 0 10px rgba(129, 140, 248, .7)); }
.final__sub { color: var(--text-muted); font-weight: 500; }
.final .cta { margin-top: 12px; }
@media (min-width: 960px) {
  .final__inner { padding-block: 128px 136px; gap: 24px; }
}


/* ---------- 下層ページの上部(機能紹介・支援者ページほか) ---------- */

.page-hero { padding-block: 56px 48px; }
.page-hero__inner { display: grid; gap: 20px; }
.page-title {
  font-size: clamp(30px, 2vw + 20px, 44px);
  font-weight: 700;
  line-height: 1.3;
}
.page-lead { color: var(--text-muted); max-width: var(--measure); }
@media (min-width: 960px) {
  .page-hero { padding-block: 96px 72px; }
  .page-hero__inner { gap: 24px; }
}


/* ---------- 作った人(フル版)partials/creator-full.html:トップ・支援者ページで共通 ---------- */
.creator__mark { --mark-size: 28px; filter: drop-shadow(0 0 6px rgba(129, 140, 248, .5)); }
.creator-pc { max-width: 680px; margin-inline: auto; }
.creator-pc__head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.creator-pc__name { font-size: 20px; font-weight: 700; color: var(--ps-accent); margin-bottom: 32px; }
.creator-pc__body > p { color: var(--text-muted); }
.creator-pc__body > p + p { margin-top: 1.4em; }
.creator-pc .link-arrow { margin-top: 32px; }
.creator__threads { display: grid; gap: 4px; justify-items: start; }
.creator__threads p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.creator-pc .creator__threads { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.creator-pc .creator__threads .link-arrow { margin-top: 0; }
