/* ============================================================
   まるっとポスター — Design System v2
   コンセプト：Appleの余白 / Stripeの洗練カード / Canvaの親しみ
   ルール：白ベース・アクセントは #FF6B35 のみ・余白80〜120px・角丸12px
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700;800&display=swap');

:root {
  /* ---- カラー（ご指定トークンに厳密準拠） ---- */
  --accent:   #FF6B35;
  --accent-d: #E85A28;   /* hover */
  --accent-t: #FFF1EA;   /* tint 背景 */
  --accent-ring: rgba(255,107,53,.16);

  --ink:   #111111;      /* 主要テキスト・見出し */
  --ink-2: #6B7280;      /* 本文・副 */
  --ink-3: #9AA1AC;      /* 弱・キャプション */

  --bg:       #FFFFFF;
  --surface:  #F8F8F8;   /* 薄いセクション背景 */
  --surface-2:#F2F2F3;
  --line:     #EDEDED;
  --line-2:   #E4E4E4;

  /* ---- 後方互換エイリアス（既存ページ・管理画面が参照） ---- */
  --navy: #111418; --navy-d: #0B0D10;
  --orange: #FF6B35; --orange-d: #E85A28;
  --cream: #FFFFFF; --gray: #5B6470; --white: #FFFFFF;
  --green: #12B981; --lgray:#F4F5F7;

  /* ---- シャドウ（極めて薄く） ---- */
  --shadow-sm: 0 1px 2px rgba(17,17,17,.04);
  --shadow:    0 2px 8px rgba(17,17,17,.04), 0 12px 32px rgba(17,17,17,.05);
  --shadow-lg: 0 8px 24px rgba(17,17,17,.06), 0 30px 70px rgba(17,17,17,.10);
  --shadow-accent: 0 8px 22px rgba(255,107,53,.28);

  /* ---- 半径（12〜16px） ---- */
  --r: 14px; --r-sm: 10px; --r-lg: 20px; --r-pill: 999px;
  --radius: 14px; --radius-sm: 10px;

  /* ---- レイアウト ---- */
  --maxw: 1200px;
  --section: clamp(88px, 11vw, 140px);
  --gutter: 24px;

  --font: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

/* ---- リセット ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }  /* 装飾の絶対配置による横スクロールを防ぐ */
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.75;
  font-feature-settings: "palt"; letter-spacing: .01em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-d); text-decoration: none; }
a:hover { color: var(--accent); }
::selection { background: var(--accent-t); }

/* ---- タイポグラフィ ---- */
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.2rem; line-height: 1.4; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-2); line-height: 1.7; }
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.balance { text-wrap: balance; }

/* ---- レイアウト ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 760px; }
.section { padding: var(--section) 0; }
.section--tint { background: var(--surface); }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid--3, .grid--4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---- セクション見出し ---- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px,6vw,64px); }
.sec-head .lead { margin-top: .6em; }

/* ---- ボタン ---- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: var(--pad-y) var(--pad-x); border-radius: var(--r);
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s cubic-bezier(.2,.7,.3,1), box-shadow .15s, background .15s, border-color .15s;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--accent-d); color:#fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,53,.38); }
.btn--dark, .btn--navy { background: var(--ink); color: #fff; }
.btn--dark:hover, .btn--navy:hover { background: #000; color:#fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-d); transform: translateY(-2px); }
.btn--lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.06rem; }
.btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: .9rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn .ico { font-size: 1.15em; }

/* ---- ピル / バッジ ---- */
.pill { display: inline-flex; align-items:center; gap:.4em; background: var(--accent-t); color: var(--accent-d); padding: 7px 15px; border-radius: var(--r-pill); font-weight: 700; font-size: .82rem; letter-spacing: .01em; }
.pill--ghost { background:#fff; border:1px solid var(--line-2); color: var(--ink-2); }

/* ---- カード ---- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 28px; }
.card--pad-lg { padding: 36px; }
.card--hover { transition: transform .18s, box-shadow .18s, border-color .18s; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.card--accent { border-color: var(--accent); box-shadow: var(--shadow); position: relative; }

/* ---- ヘッダー ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color:#fff; display: grid; place-items: center; font-size: 1.05rem; box-shadow: var(--shadow-accent); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { color: var(--ink-2); font-weight: 600; font-size: .94rem; padding: 8px 12px; border-radius: 8px; }
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav .btn { margin-left: 8px; }
@media (max-width: 820px){ .nav .nav__link { display: none; } }

/* ---- フッター ---- */
.site-footer { background: var(--ink); color: #C7CDD6; padding: 64px 0 40px; margin-top: 0; font-size: .92rem; }
.site-footer a { color: #fff; } .site-footer a:hover { color: var(--accent); }
.site-footer .brand { color: #fff; }
.site-footer .brand__mark { box-shadow: none; }
.footer-grid { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; }

/* ---- テーブル ---- */
.tbl { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.tbl th, .tbl td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl thead th { background: var(--surface); color: var(--ink); font-weight: 700; font-size: .9rem; letter-spacing: .01em; }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover { background: var(--surface); }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.tbl .price { font-weight: 800; color: var(--ink); }

/* ---- フォーム ---- */
.field { margin-bottom: 20px; }
.field > label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 8px; font-size: .92rem; }
.field .req { color: var(--accent-d); font-size: .72rem; font-weight: 700; margin-left: 8px; background: var(--accent-t); padding: 2px 8px; border-radius: 6px; vertical-align: middle; }
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-ring); }
.help { font-size: .82rem; color: var(--ink-3); margin-top: 6px; }

/* ---- 選択チップ ---- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1.5px solid var(--line-2); background: #fff; border-radius: var(--r-sm);
  padding: 11px 18px; cursor: pointer; font-weight: 600; color: var(--ink); font-size: .95rem;
  transition: all .15s; user-select: none;
}
.chip:hover { border-color: var(--accent); }
.chip.selected { border-color: var(--accent); background: var(--accent-t); color: var(--accent-d); box-shadow: 0 0 0 3px var(--accent-ring); }

/* ---- ユーティリティ ---- */
.hidden { display: none !important; }

/* ---- 支払い方法（カード主役・振込控えめ） ---- */
.pay-opts { display: grid; gap: 12px; }
.pay-opt { border: 1.5px solid var(--line-2); border-radius: var(--r-sm); padding: 16px 18px; cursor: pointer; transition: all .15s; display: block; }
.pay-opt:hover { border-color: var(--accent); }
.pay-opt.selected { border-color: var(--accent); background: var(--accent-t); box-shadow: 0 0 0 3px var(--accent-ring); }
.pay-opt .pay-main { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); flex-wrap: wrap; }
.pay-opt .pay-badge { background: var(--accent); color: #fff; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: var(--r-pill); }
.pay-opt .pay-sub { font-size: .84rem; color: var(--ink-3); margin-top: 6px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.tag { font-size:.78rem; font-weight:700; color: var(--accent-d); background: var(--accent-t); padding:4px 10px; border-radius: var(--r-pill); }

/* ---- 管理画面ステータス（アクセント＋ニュートラル階調） ---- */
.st { display:inline-block; padding:5px 13px; border-radius: var(--r-pill); font-size:.8rem; font-weight:700; white-space:nowrap; border:1px solid var(--line-2); background:#fff; color:var(--ink-2); }
.st-受注 { background:#F4F5F7; color:#5B6470; }
.st-入金確認 { background:var(--accent-t); color:var(--accent-d); border-color:transparent; }
.st-入稿確認 { background:#EEF1F4; color:#3B4654; }
.st-印刷中 { background:#111418; color:#fff; border-color:transparent; }
.st-加工中 { background:#2A2F36; color:#fff; border-color:transparent; }
.st-発送準備発送済, .st-発送準備・発送済 { background:#454B54; color:#fff; border-color:transparent; }
.st-完了 { background:var(--accent); color:#fff; border-color:transparent; }
.st-キャンセル { background:#fff; color:#8A929E; }

/* ============================================================
   Landing v3 — 世界最高峰SaaS LP コンポーネント
   ============================================================ */

/* ---- スクロールリベール（上品なフェードイン） ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---- SVGアイコンの基本 ---- */
.ic { width: 26px; height: 26px; stroke: var(--accent); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ic-box { width: 60px; height: 60px; border-radius: 16px; background: var(--accent-t); display: grid; place-items: center; }
.ic-box .ic { width: 30px; height: 30px; }

/* ---- HERO v3 ---- */
.hero3 { position: relative; overflow: hidden; padding-top: clamp(48px,6vw,80px); }
.hero3 .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero3 h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.1; letter-spacing: -.035em; }
.hero3 .lead { margin-top: 22px; max-width: 30em; }
.hero3 .art { position: relative; }
.hero-mascot { position: absolute; left: -8px; bottom: -6px; width: 132px; z-index: 4; filter: drop-shadow(0 12px 22px rgba(0,0,0,.14)); animation: floaty 6s ease-in-out infinite; }
@media (max-width: 940px){ .hero-mascot { width: 100px; left: 4px; bottom: 4px; } }
/* ヘッダーのロゴ画像（アイコンマーク） */
img.brand__mark { background: none !important; box-shadow: none !important; object-fit: contain; padding: 0; }
.hero3 .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero3 .cta-row .btn { padding: 18px 30px; font-size: 1.05rem; }
@media (max-width: 940px){ .hero3 .container { grid-template-columns: 1fr; gap: 20px; } .hero3 .art { order: 2; } }

/* 制作例スタック（4〜6枚 立体配置） */
.stack3 { position: relative; height: 500px; }
@media (max-width: 940px){ .stack3 { height: 380px; margin-top: 10px; transform: scale(.9); transform-origin: top center; } }
@media (max-width: 460px){ .stack3 { transform: scale(.78); height: 340px; } }
.pcard { position: absolute; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; background:#fff; border: 1px solid rgba(0,0,0,.05); animation: floaty 7s ease-in-out infinite; }
.pcard .b { position: absolute; inset: 0; padding: 18px; display: flex; flex-direction: column; }
.pcard img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* LP 下部固定CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-top: 1px solid var(--line); padding: 12px var(--gutter); box-shadow: 0 -6px 24px rgba(17,17,17,.06); }
.sticky-cta .wrap { max-width: 640px; margin: 0 auto; display: flex; gap: 10px; }
.sticky-cta .btn { flex: 1; }
@media (min-width: 941px){ .sticky-cta { display: none; } }  /* PCはヒーロー等のCTAで足りるため非表示 */
.pcard .k { font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.pcard .t { font-weight: 800; letter-spacing: -.02em; line-height: 1.04; }
@keyframes floaty { 0%,100%{ transform: var(--tf) translateY(0); } 50%{ transform: var(--tf) translateY(-10px); } }
@media (prefers-reduced-motion: reduce){ .pcard { animation: none; } }

/* ---- トラストストリップ ---- */
.tstrip { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; }
.tstrip .ti { display: flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: .92rem; font-weight: 600; }
.tstrip .ti b { color: var(--ink); font-weight: 800; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }
.tstrip .sep { width:1px; height:26px; background: var(--line-2); }
@media (max-width: 620px){ .tstrip .sep { display:none; } }

/* ---- 3 STEP ---- */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: stretch; }
.steps .arrow { display: grid; place-items: center; color: var(--line-2); }
.steps .arrow svg { width: 30px; height: 30px; stroke: var(--ink-3); stroke-width: 1.6; fill:none; }
.step3 { text-align: center; padding: 40px 26px; }
.step3 .num { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--accent); }
.step3 .illu { width: 108px; height: 108px; margin: 14px auto 20px; border-radius: 24px; background: var(--surface); display: grid; place-items: center; border: 1px solid var(--line); }
.step3 .illu svg { width: 54px; height: 54px; }
.step3 h3 { font-size: 1.2rem; }
@media (max-width: 820px){
  .steps { grid-template-columns: 1fr; gap: 6px; }
  .steps .arrow svg { transform: rotate(90deg); }
}

/* ---- 特徴（大きく・余白） ---- */
.feat3 .grid { gap: 28px; }
.feat3 .card { padding: 40px; }
.feat3 h3 { font-size: 1.35rem; margin-top: 22px; }
.feat3 p { font-size: 1rem; }

/* ---- 制作実績（横スクロール） ---- */
.works-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 8px 24px 28px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.works-scroll::-webkit-scrollbar { display: none; }
.work { scroll-snap-align: start; flex: 0 0 auto; width: 260px; }
.work .thumb { width: 260px; height: 340px; border-radius: 16px; overflow: hidden; position: relative; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.work:hover .thumb { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work .thumb .b { position: absolute; inset: 0; padding: 22px; display: flex; flex-direction: column; }
.work .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work .cap { margin-top: 14px; font-weight: 700; color: var(--ink); font-size: .98rem; }
.work .cap span { color: var(--ink-3); font-weight: 500; font-size: .85rem; display:block; }
.works-hint { text-align: center; color: var(--ink-3); font-size: .84rem; margin-top: 6px; }

/* ---- 料金カード ---- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px){ .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.plan { position: relative; padding: 34px 30px; text-align: center; }
.plan.pop { border-color: var(--accent); box-shadow: var(--shadow); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .76rem; font-weight: 800; padding: 6px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-accent); white-space: nowrap; }
.plan .size { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.plan .dim { color: var(--ink-3); font-size: .84rem; margin-bottom: 16px; }
.plan .price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.plan .price small { font-size: 1rem; font-weight: 700; color: var(--ink-2); }
.plan ul { list-style: none; padding: 0; margin: 18px 0 0; text-align: left; }
.plan ul li { display: flex; gap: 9px; padding: 7px 0; color: var(--ink-2); font-size: .92rem; border-top: 1px solid var(--line); }
.plan ul li:first-child { border-top: none; }
.plan ul li svg { width: 18px; height: 18px; stroke: var(--accent); stroke-width: 2.2; fill: none; flex: none; margin-top: 3px; }
.opt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
@media (max-width: 820px){ .opt-cards { grid-template-columns: 1fr; } }
.opt-card { display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.opt-card .ic-box { width: 46px; height: 46px; border-radius: 12px; } .opt-card .ic-box .ic { width: 22px; height: 22px; }
.opt-card b { display: block; color: var(--ink); } .opt-card span { font-size: .85rem; color: var(--ink-3); }

/* ---- FAQ v3（滑らか開閉） ---- */
.faq3 .qa { border: 1px solid var(--line); border-radius: var(--r); background: #fff; margin-bottom: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq3 .qa[aria-expanded="true"] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq3 .q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-weight: 700; color: var(--ink); font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq3 .q .plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq3 .q .plus::before, .faq3 .q .plus::after { content:""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.faq3 .q .plus::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq3 .q .plus::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq3 .qa[aria-expanded="true"] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq3 .a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s cubic-bezier(.2,.7,.2,1); }
.faq3 .qa[aria-expanded="true"] .a { grid-template-rows: 1fr; }
.faq3 .a > div { overflow: hidden; }
.faq3 .a p { margin: 0; padding: 0 24px 24px; color: var(--ink-2); }

/* ---- CTA band v3 ---- */
.cta3 { background: #111111; border-radius: var(--r-lg); padding: clamp(48px,7vw,88px) clamp(24px,5vw,64px); text-align: center; position: relative; overflow: hidden; }
.cta3::before { content:""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,53,.55), transparent 68%); top: -220px; right: -120px; }
.cta3 h2 { color: #fff; position: relative; font-size: clamp(1.8rem,4vw,2.8rem); }
.cta3 p { color: #A0A6B0; position: relative; }
.cta3 .cta-row { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } .reveal { opacity: 1; transform: none; } }
