/* =========================================================================
   HaptiCards — サイト共通スタイル
   テーマ: ダーク・エディトリアル（近黒 × 金）。グラデーション・紫グラデは不使用。
   色の正本: docs/HaptiCards/UI-DESIGN.md / VISUAL-COMPANION.html
   ========================================================================= */

/* ----- デザイントークン ----- */
:root {
  /* カラー */
  --void: #0A0612;          /* ページ地（近黒） */
  --deep: #16102A;          /* 隆起面（カード/セクション） */
  --deep-2: #1B1230;        /* さらに上のレイヤー */
  --line: #2A2140;          /* 罫・境界 */
  --gold: #D4AF37;          /* 主アクセント */
  --gold-glow: #FFD86B;     /* hover/強調 */
  --gold-dim: #8C7426;      /* 沈めた金（罫など） */
  --ink: #E8DDC3;           /* 本文（パーチメント） */
  --ink-soft: #C8BFA6;      /* 本文やわらかめ */
  --whisper: #9A93A6;       /* 補助テキスト */
  --card-red: #C8102E;      /* スート ♥♦ */

  /* タイポグラフィ（システムスタックのみ・外部読込なし） */
  --serif: "Hoefler Text", "Iowan Old Style", Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: ui-rounded, "SF Pro Rounded", "SF Pro Display", system-ui, -apple-system, "Hiragino Sans", "Yu Gothic UI", sans-serif;

  /* スペーシング */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6.5rem;

  /* 角丸 */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  /* レイアウト */
  --maxw: 1120px;
  --measure: 68ch;

  /* 影（控えめ） */
  --shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.85);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- リセット ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--void);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* 近黒の地に、ごく淡い金の灯りを 2 点だけ落として奥行きを出す（グラデ面ではない） */
  background-image:
    radial-gradient(900px 600px at 88% -8%, rgba(212, 175, 55, 0.07), transparent 60%),
    radial-gradient(760px 520px at -6% 18%, rgba(212, 175, 55, 0.04), transparent 62%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* フィルムグレイン（アトモスフィア・極薄） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ----- タイポグラフィ ----- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.005em;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); font-weight: 600; }

/* 予言文・引用調（セリフ・イタリック） */
.prophecy {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.5;
  color: var(--gold-glow);
  letter-spacing: 0.01em;
}

/* アイブロウ（小キャップ・トラッキング） */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow::before { content: "♠ "; opacity: 0.7; }

/* ----- レイアウト ----- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}
main { position: relative; z-index: 1; }
.section { padding-block: clamp(3.5rem, 9vw, var(--sp-xl)); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* セクション見出し（スート意匠つき金罫） */
.section-head { text-align: center; max-width: 46rem; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head p { color: var(--ink-soft); }

/* スート罫ディバイダ */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  margin: 1.4rem 0;
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 7rem;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.rule::after { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.rule span { font-size: 0.9rem; letter-spacing: 0.3em; }

/* ----- ボタン ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--gold {
  background: var(--gold);
  color: #1a1205;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
}
.btn--gold:hover { background: var(--gold-glow); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-glow); transform: translateY(-2px); }

/* App Store バッジ */
.badge-appstore { display: inline-block; transition: transform 0.25s var(--ease), filter 0.25s var(--ease); }
.badge-appstore:hover { transform: translateY(-2px); filter: brightness(1.08); }
.badge-appstore svg { height: 54px; width: auto; display: block; }

/* ============================== ヘッダー ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 18, 0.92);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 30px; height: 30px; display: block; }
.brand__name { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.02em; color: var(--ink); }
.brand__name b { color: var(--gold); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-block: 0.3rem;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--gold-glow); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--gold); }

.header-tools { display: flex; align-items: center; gap: 1rem; }

/* 言語切替 */
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.7rem;
  color: var(--whisper);
  transition: background-color 0.2s, color 0.2s;
}
.lang-switch a[aria-current="true"] { background: var(--gold); color: #1a1205; }

/* ハンバーガー */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  width: 42px; height: 38px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ============================== ヒーロー ============================== */
.hero { position: relative; padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title { margin-bottom: 0.5rem; }
.hero__title .line { display: block; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); max-width: 32ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__note { margin-top: 1.4rem; font-size: 0.86rem; color: var(--whisper); letter-spacing: 0.04em; }
.hero__note b { color: var(--gold); font-weight: 600; }

/* ヒーローの視覚（端末風） */
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__art .device {
  position: relative;
  width: min(280px, 70vw);
  border-radius: 36px;
  padding: 10px;
  background: #07040f;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__art .device img { border-radius: 28px; width: 100%; }
.hero__art::after { /* 金の弧 */
  content: "";
  position: absolute;
  inset: -8% -10% auto auto;
  width: 60%; aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  z-index: -1;
}

/* ============================== カードグリッド ============================== */
.grid { display: grid; gap: 1.3rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.7rem 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
  overflow: hidden;
}
.card::before { /* 上辺の金ハイライト */
  content: "";
  position: absolute; left: 1.5rem; right: 1.5rem; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dim); background: var(--deep-2); }
.card:hover::before { opacity: 1; }
.card .suit { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 0.7rem; line-height: 1; }
.card .suit.red { color: var(--card-red); }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0.8rem; }
a.card { color: inherit; }
.card__more { font-size: 0.9rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.card:hover .card__more { color: var(--gold-glow); }

/* 機能ハイライト（アイコンレス・番号つき） */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.feature {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.feature .num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.feature h3 { font-size: 1.2rem; margin: 0.3rem 0 0.4rem; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ============================== 記事/プロース ============================== */
.prose { max-width: var(--measure); margin-inline: auto; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; color: var(--gold); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--gold); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold-dim); }
.prose a:hover { color: var(--gold-glow); }

.lede { font-size: 1.15rem; color: var(--ink); }

/* ページ見出し（記事系トップ） */
.page-hero { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3rem); text-align: center; }
.page-hero p { color: var(--ink-soft); max-width: 44rem; margin-inline: auto; }

/* 機能詳細ページ：説明 + スクショの 2 カラム */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media .device {
  width: min(260px, 70vw);
  margin-inline: auto;
  border-radius: 34px;
  padding: 9px;
  background: #07040f;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split__media .device img { border-radius: 26px; }

/* 仕様ピル */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.pills li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
}
.pills li b { color: var(--gold); font-weight: 600; }

/* ============================== ギャラリー ============================== */
.device-toggle { display: inline-flex; gap: 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; margin-inline: auto; }
.device-toggle button {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.3rem;
  background: transparent;
  color: var(--whisper);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.device-toggle button[aria-selected="true"] { background: var(--gold); color: #1a1205; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.1rem; margin-top: 2rem; }
.gallery[data-device="ipad"] { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.shot {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px;
  background: #07040f;
  cursor: zoom-in;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.shot:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.shot img { border-radius: 10px; width: 100%; }
.shot figcaption { font-size: 0.82rem; color: var(--whisper); text-align: center; padding: 0.6rem 0 0.2rem; letter-spacing: 0.03em; }
.gallery > .shot[hidden] { display: none; }

/* ライトボックス */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(7, 4, 12, 0.94);
  padding: 4vmin;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox img { max-width: min(92vw, 460px); max-height: 90vh; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.lightbox__close {
  position: absolute; top: 4vmin; right: 4vmin;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(22, 16, 42, 0.8);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold-glow); }

/* ============================== FAQ ============================== */
.faq { max-width: var(--measure); margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 2rem 0.9rem 0;
  position: relative;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.4rem;
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold-glow); }
.faq details p { color: var(--ink-soft); padding: 0 0 1rem; margin: 0; font-size: 0.97rem; }

/* ============================== フォーム ============================== */
.form { max-width: 38rem; margin-inline: auto; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%;
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--whisper); }
.form__hint { font-size: 0.84rem; color: var(--whisper); margin-top: 0.8rem; }
.form__status { font-size: 0.9rem; color: var(--gold); min-height: 1.4em; margin-top: 0.8rem; }

/* CTA バンド */
.cta-band { text-align: center; }
.cta-band .device-mini { margin: 1.6rem auto 0; }

/* ============================== フッター ============================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: #07040f;
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
  margin-top: clamp(2rem, 6vw, 4rem);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-brand .brand__name { font-size: 1.4rem; }
.footer-brand p { color: var(--whisper); font-size: 0.9rem; max-width: 28ch; margin-top: 0.8rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.92rem; color: var(--ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-glow); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem; color: var(--whisper);
}
.footer-bottom .suits { color: var(--gold-dim); letter-spacing: 0.5em; }
.footer-social { display: inline-flex; align-items: center; gap: 1.1rem; }
.social-link { display: inline-flex; color: var(--whisper); transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.social-link:hover { color: var(--gold-glow); transform: translateY(-1px); }
.social-link svg { width: 18px; height: 18px; display: block; fill: currentColor; }

/* ============================== 404 ============================== */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.notfound .big { font-family: var(--serif); font-size: clamp(5rem, 18vw, 11rem); color: var(--gold); line-height: 1; margin: 0; }
.notfound .suits { font-size: 2rem; color: var(--gold-dim); letter-spacing: 0.4em; margin: 1rem 0; }

/* ============================== ユーティリティ ============================== */
.center { text-align: center; }
.mt-md { margin-top: var(--sp-md); }
.muted { color: var(--whisper); }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #1a1205;
  padding: 0.6rem 1rem; border-radius: 0 0 var(--r-sm) 0;
  z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================== モーション ============================== */
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; animation: fade-up 0.8s var(--ease) forwards; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.18s; }
.reveal.d3 { animation-delay: 0.30s; }
.reveal.d4 { animation-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================== レスポンシブ ============================== */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav, .header-tools .lang-switch { /* モバイルではメニュー内に格納 */ }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 66px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 6, 18, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
    transform: translateY(-120%);
    transition: transform 0.32s var(--ease);
    z-index: 40;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 0.95rem clamp(1.2rem, 4vw, 2.5rem); border-top: 1px solid var(--line); }
  .nav a::after { display: none; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__art { order: -1; margin-bottom: 1rem; }

  .grid--3, .grid--2, .feature-row { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; text-align: center; }
  .split--reverse .split__media { order: 0; }
  .split__media { margin-bottom: 0.5rem; }
  .pills { justify-content: center; }
}

@media (min-width: 560px) {
  .grid--3.sm-2 { grid-template-columns: repeat(2, 1fr); }
}
