/* Synerdge — site styles. Colors come from the logo (navy #043D79 / blue #0E86EC / green #5CC42C). */
:root {
  --navy-950: #021327;
  --navy-900: #031f3f;
  --navy: #043d79;
  --blue: #0e86ec;
  --blue-600: #0a6fc7;
  --green: #5cc42c;
  --ink: #0b1b2e;
  --muted: #4f5f75;
  --line: #e2e8f0;
  --soft: #f4f7fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(3, 31, 63, .06), 0 12px 32px -12px rgba(3, 31, 63, .18);
  --shadow-lg: 0 2px 4px rgba(3, 31, 63, .06), 0 24px 48px -16px rgba(3, 31, 63, .28);
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-ja: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Meiryo", sans-serif;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[lang="ja"] { font-family: var(--font), var(--font-ja); }
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.container.narrow { max-width: 840px; }
.muted { color: var(--muted); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--white); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ------------------------------------------------------------ header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  background: rgba(3, 31, 63, .72); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06); transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(3, 31, 63, .94); box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .45); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 32px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { color: rgba(255, 255, 255, .78); font-weight: 500; font-size: .94rem; padding: 8px 12px; border-radius: 999px; transition: color .15s, background .15s; }
.site-nav a:hover { color: var(--white); background: rgba(255, 255, 255, .08); }
.site-nav .nav-cta { margin-left: 8px; color: var(--navy-900); background: var(--green); font-weight: 700; padding: 8px 18px; }
.site-nav .nav-cta:hover { color: var(--navy-900); background: #6fd33f; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); padding: 8px; margin-right: -8px; cursor: pointer; }
.nav-toggle .icon { width: 26px; height: 26px; }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em; font: inherit; font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--navy-900); box-shadow: 0 10px 24px -10px rgba(92, 196, 44, .7); }
.btn-primary:hover { background: #6fd33f; color: var(--navy-900); }
.btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .28); }
.btn-ghost:hover { color: var(--white); border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .06); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { color: var(--navy-900); }

/* ------------------------------------------------------------ eyebrow & section heads */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--green); }
.eyebrow-light { color: #8cc8ff; }
.section { padding-block: clamp(72px, 10vw, 120px); }
.section-soft { background: var(--soft); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; }
.section-lead { margin-top: 14px; font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.more { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-size: .92rem; color: var(--blue-600); }
.more .icon { transition: transform .2s ease; }

/* ------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(40px, 6vw, 64px);
  background:
    radial-gradient(900px 480px at 85% 20%, rgba(14, 134, 236, .35), transparent 60%),
    radial-gradient(640px 420px at 10% 110%, rgba(92, 196, 44, .18), transparent 60%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.hero h1 { color: var(--white); font-size: clamp(2.8rem, 6.4vw, 5.2rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; }
.accent { background: linear-gradient(95deg, #3aa4ff 0%, #7ddc4a 100%); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.hero-sub { margin-top: 24px; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: rgba(255, 255, 255, .78); max-width: 34em; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-art { display: flex; justify-content: center; }
.edge-art { width: 100%; max-width: 480px; height: auto; }
.edge-art .pulse circle { transform-origin: 260px 220px; animation: pulse 3.6s ease-out infinite; }
.edge-art .nodes circle { animation: float 6s ease-in-out infinite; }
.edge-art .nodes circle:nth-child(2n) { animation-delay: -3s; }
@keyframes pulse { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(5.2); opacity: 0; } }
@keyframes float { 50% { transform: translateY(-5px); } }

.stats {
  position: relative; margin-top: clamp(40px, 6vw, 72px); padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-value { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.stat-label { margin-top: 4px; font-size: .9rem; line-height: 1.45; color: rgba(255, 255, 255, .62); max-width: 22ch; }

/* ------------------------------------------------------------ expertise */
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.skill-card {
  display: flex; flex-direction: column; gap: 14px; padding: 28px 26px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.skill-card h3 { font-size: 1.14rem; font-weight: 700; line-height: 1.3; }
.skill-card p { color: var(--muted); font-size: .94rem; line-height: 1.6; flex: 1; }
.skill-card:hover { color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cfe2f7; }
.skill-card:hover .more .icon, .work-card:hover .more .icon, .feature .more:hover .icon { transform: translateX(4px); }
.skill-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: var(--white);
  background: linear-gradient(140deg, var(--blue) 0%, var(--navy) 100%); box-shadow: 0 10px 20px -10px rgba(14, 134, 236, .8);
}
.skill-icon .icon { width: 26px; height: 26px; }
.skill-icon-lg { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 22px; }
.skill-icon-lg .icon { width: 30px; height: 30px; }

/* ------------------------------------------------------------ work */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  display: flex; flex-direction: column; overflow: hidden; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.work-card:hover { color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--soft); border-bottom: 1px solid var(--line); }
.work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card:hover .work-media img { transform: scale(1.04); }
.work-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 26px; flex: 1; }
.work-body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
.work-body p { color: var(--muted); font-size: .93rem; line-height: 1.6; flex: 1; }

/* ------------------------------------------------------------ collaborate */
.features { display: grid; gap: clamp(48px, 7vw, 88px); }
.feature { display: grid; grid-template-columns: minmax(0, 440px) 1fr; align-items: center; gap: clamp(28px, 5vw, 64px); }
.feature:nth-child(even) { grid-template-columns: 1fr minmax(0, 440px); }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media { display: block; justify-self: center; width: fit-content; max-width: 100%; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--soft); }
.feature-media img { width: auto; max-width: 100%; height: auto; max-height: 540px; }
.feature-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; margin-bottom: 16px; }
.feature-body h3 a { color: var(--ink); }
.feature-body h3 a:hover { color: var(--navy); }
.feature-body p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; max-width: 52ch; }

/* ------------------------------------------------------------ notes */
.note-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); counter-reset: none; }
.note-row { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.note-row > a:first-child { flex: 1; display: flex; align-items: center; gap: 22px; padding: 22px 4px; color: var(--ink); }
.note-num { font-size: .85rem; font-weight: 700; color: var(--blue-600); font-variant-numeric: tabular-nums; min-width: 1.6em; }
.note-title { flex: 1; font-size: 1.08rem; font-weight: 600; line-height: 1.4; }
.note-arrow { color: var(--muted); transition: transform .2s ease, color .2s ease; }
.note-row > a:first-child:hover .note-title { color: var(--navy); }
.note-row > a:first-child:hover .note-arrow { color: var(--blue-600); transform: translateX(4px); }
.lang-chip {
  font-family: var(--font-ja); font-size: .78rem; font-weight: 700; color: var(--navy);
  border: 1px solid #cddcee; background: var(--white); padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.lang-chip:hover { border-color: var(--blue); }

/* ------------------------------------------------------------ team */
.team-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.team-intro { position: sticky; top: calc(var(--header-h) + 32px); }
.team-intro h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; }
.team-intro .section-lead { color: var(--ink); font-weight: 500; }
.team-intro .muted { margin-top: 14px; }
.members { display: grid; gap: 20px; }
.member { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.member-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.avatar {
  width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; letter-spacing: .02em; color: var(--white);
  background: linear-gradient(140deg, var(--blue), var(--navy) 60%, var(--navy-900));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .15);
}
.member:nth-child(2) .avatar { background: linear-gradient(140deg, var(--green), #2e8a1b 60%, #1c5a10); }
.member h3 { font-size: 1.2rem; font-weight: 800; }
.role { color: var(--blue-600); font-weight: 600; font-size: .92rem; margin-top: 2px; }
.member p:not(.role) { color: var(--muted); line-height: 1.65; }
.chips { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-size: .8rem; font-weight: 600; color: var(--navy); background: #eef4fb; border: 1px solid #dde8f5; padding: 5px 11px; border-radius: 999px; }
.network { margin-top: clamp(56px, 8vw, 96px); padding-top: 40px; border-top: 1px solid var(--line); }
.network h3 { font-size: 1.05rem; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-bottom: 22px; }
.org-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.org-grid li {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; font-weight: 700; color: var(--navy);
  border: 1px solid var(--line); border-radius: 14px; background: var(--white);
}
.org-grid li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), var(--green)); flex: none; }

/* ------------------------------------------------------------ contact & footer */
.contact {
  color: var(--white); padding-block: clamp(64px, 9vw, 104px);
  background:
    radial-gradient(700px 360px at 90% 0%, rgba(92, 196, 44, .22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(14, 134, 236, .3), transparent 60%),
    var(--navy-900);
}
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.contact h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.contact-lead { margin-top: 14px; color: rgba(255, 255, 255, .74); font-size: 1.1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .6); padding-block: 40px; font-size: .9rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-brand img { height: 26px; width: auto; opacity: .92; }

/* ------------------------------------------------------------ detail pages */
.page-hero {
  color: var(--white); padding: calc(var(--header-h) + clamp(40px, 6vw, 72px)) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(800px 380px at 90% 0%, rgba(14, 134, 236, .32), transparent 60%),
    linear-gradient(165deg, var(--navy-950), var(--navy-900) 55%, var(--navy));
}
.page-hero.has-cover { padding-bottom: clamp(120px, 14vw, 168px); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.page-hero .muted { color: rgba(255, 255, 255, .7); margin: 16px 0 28px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; margin-bottom: 22px; color: rgba(255, 255, 255, .4); }
.crumbs a { color: rgba(255, 255, 255, .72); }
.crumbs a:hover { color: var(--white); }
.lang-switch {
  display: inline-flex; margin-top: 22px; font-size: .88rem; font-weight: 700; color: var(--white);
  border: 1px solid rgba(255, 255, 255, .3); padding: 7px 16px; border-radius: 999px;
}
.lang-switch:hover { color: var(--white); border-color: rgba(255, 255, 255, .7); }
.page-cover { margin: calc(-1 * clamp(88px, 11vw, 128px)) auto 0; max-width: 1040px; }
/* No cropping: covers carry text inside the image. Height is capped by the viewport, width follows the aspect ratio. */
.page-cover img { width: auto; max-width: 100%; height: auto; max-height: min(72vh, 720px); margin-inline: auto; border-radius: 22px; box-shadow: var(--shadow-lg); background: var(--soft); }

.prose { padding-block: clamp(40px, 6vw, 72px) 8px; font-size: 1.075rem; line-height: 1.78; color: #1d2b3d; }
.prose > * + * { margin-top: 1.05em; }
.prose h2 { font-size: 1.65rem; font-weight: 800; margin-top: 2.2em; }
.prose h3 { font-size: 1.28rem; font-weight: 700; margin-top: 2em; }
.prose h2 + *, .prose h3 + *, .prose .lead-in + * { margin-top: .6em; }
.prose > :first-child { margin-top: 0; }
.prose .lead-in { font-weight: 700; color: var(--navy); font-size: 1.08rem; margin-top: 1.9em; }
.prose .intro { font-size: 1.22rem; line-height: 1.65; color: var(--ink); font-weight: 500; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: none; padding-left: 1.5em; }
.prose ul > li { position: relative; }
.prose ul > li::before {
  content: ""; position: absolute; left: -1.15em; top: .72em; width: 7px; height: 7px; border-radius: 2px;
  background: linear-gradient(140deg, var(--blue), var(--green));
}
.prose li + li { margin-top: .5em; }
.prose li > p, .prose li > .indent { margin-top: .35em; color: var(--muted); }
.prose .indent { padding-left: 1.1em; border-left: 2px solid var(--line); }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2.6em 0; }
.prose code { font-size: .9em; background: var(--soft); padding: .1em .4em; border-radius: 6px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; margin-block: 1.4em; -webkit-overflow-scrolling: touch; }
.prose .table-wrap + * { margin-top: 1.4em; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: .94rem; line-height: 1.55; }
.table-wrap th { text-align: left; font-weight: 700; color: var(--navy); background: var(--soft); white-space: nowrap; }
.table-wrap th, .table-wrap td { padding: 12px 16px; vertical-align: top; }
.table-wrap td { border-top: 1px solid var(--line); min-width: 9em; }
.table-wrap tr td:first-child { font-weight: 600; color: var(--ink); }
.callout { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }

.related { margin-top: 56px; padding: 32px; border-radius: 20px; background: var(--soft); border: 1px solid var(--line); }
.related h2 { font-size: 1.4rem; font-weight: 800; }
.related .muted { margin-top: 6px; }
.related-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px; }
.related-list a {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 12px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); font-weight: 600; transition: border-color .15s, transform .15s;
}
.related-list a span { flex: 1; }
.related-list a > .icon:first-child { color: var(--blue-600); }
.related-list a:hover { border-color: #b9d5f2; transform: translateX(2px); }

.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 56px 0 clamp(64px, 9vw, 104px); }
.pager a { display: flex; flex-direction: column; gap: 4px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; color: var(--ink); font-weight: 700; line-height: 1.4; transition: border-color .15s, box-shadow .15s; }
.pager a small { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); }
.pager a:hover { border-color: #b9d5f2; box-shadow: var(--shadow); }
.pager-next { text-align: right; }
.page-body > :last-child:not(.pager) { margin-bottom: clamp(64px, 9vw, 104px); }
h1:lang(ja), h2:lang(ja), h3:lang(ja), [lang="ja"] h2, [lang="ja"] h3 { word-break: auto-phrase; }

/* ------------------------------------------------------------ reveal (JS adds .pending only to off-screen items) */
.reveal.pending { opacity: 0; transform: translateY(18px); }
.reveal { transition: opacity .6s ease, transform .6s ease; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1080px) {
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px 20px 20px; background: rgba(3, 31, 63, .98); border-bottom: 1px solid rgba(255, 255, 255, .08);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: 12px 14px; border-radius: 10px; }
  .site-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .team-grid, .contact-inner { grid-template-columns: 1fr; }
  .team-intro { position: static; }
  .contact-actions { justify-content: flex-start; }
  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-media { order: 0; }
  .feature-media img { max-height: 480px; }
}
@media (max-width: 620px) {
  .skill-grid, .work-grid { grid-template-columns: 1fr; }
  .pager { grid-template-columns: 1fr; }
  .pager-next { text-align: left; }
  .note-row { flex-wrap: wrap; gap: 0 12px; }
  .note-row .lang-chip { margin: -10px 0 18px 3.2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta .btn { width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal.pending { opacity: 1; transform: none; }
}
