/* =========================================================
   実績ページ共通スタイル（トップページ index.html と同じトーン）
   ========================================================= */
:root {
  --bg: #F4F1EC;
  --ink: #141310;
  --orange: #E8501F;
  --line: rgba(20,19,16,0.14);
  --line-inv: rgba(244,241,236,0.22);
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Archivo', sans-serif;
  --font-impact: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-jp); line-height: 1.8;
  overflow-x: hidden;
}
::selection { background: var(--orange); color: var(--bg); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px;
  mix-blend-mode: difference; color: #EBECEF;
}
.logo { font-family: var(--font-en); font-weight: 900; font-size: 18px; letter-spacing: 0.02em; text-decoration: none; }
.logo span { color: var(--orange); }
header nav { display: flex; gap: 28px; }
header nav a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; font-family: var(--font-en);
}
header nav a:hover { color: var(--orange); }
.h-cta {
  display: none; text-decoration: none;
  font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  border: 1px solid currentColor; border-radius: 99px; padding: 7px 16px;
}

/* ---------- hero ---------- */
.w-hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 78vh, 820px);
  display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--ink);
  padding: 140px 32px 72px;
}
.w-hero .grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: 25% 100%;
}
.w-hero .giant-num {
  position: absolute; right: -0.04em; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(200px, 38vw, 560px); line-height: 0.8; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1.5px var(--line);
  user-select: none; pointer-events: none;
}
.w-hero-inner { position: relative; z-index: 2; width: 100%; }
.crumb {
  font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  margin-bottom: 40px; display: flex; gap: 10px; flex-wrap: wrap;
}
.crumb a { text-decoration: none; opacity: 0.55; }
.crumb a:hover { opacity: 1; color: var(--orange); }
.crumb .sep { opacity: 0.3; }
.w-cat {
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: 0.3em; color: var(--orange); margin-bottom: 18px;
}
.w-title {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(52px, 10vw, 150px); line-height: 0.92; letter-spacing: -0.03em;
}
.w-title em { font-style: normal; color: var(--orange); }
.w-jp {
  display: inline-block; margin-top: 24px;
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 900; letter-spacing: 0.08em;
  background: linear-gradient(transparent 62%, var(--orange) 62%, var(--orange) 94%, transparent 94%);
}
.w-lead { max-width: 620px; margin-top: 28px; font-size: 15px; font-weight: 500; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink); color: var(--bg);
  overflow: hidden; white-space: nowrap; padding: 16px 0;
}
.marquee-track { display: inline-block; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-en); font-weight: 900; font-size: 20px;
  letter-spacing: 0.04em; margin-right: 44px;
}
.marquee-track .dot { color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section base ---------- */
section { position: relative; }
.sec-head { padding: 96px 32px 48px; display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.sec-head h2 {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(40px, 6.4vw, 90px); line-height: 0.95; letter-spacing: -0.02em;
}
.sec-head .jp { font-size: 14px; font-weight: 700; letter-spacing: 0.2em; }
.dark { background: var(--ink); color: var(--bg); }
.dark .sec-head h2 { color: transparent; -webkit-text-stroke: 1.5px var(--bg); }

/* ---------- scope（対応範囲） ---------- */
.scope { border-bottom: 1px solid var(--ink); }
.scope-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
.scope-cell {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 10px;
}
.scope-cell:last-child { border-right: 0; }
.scope-cell .n {
  font-family: var(--font-en); font-weight: 900; font-size: 36px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--ink);
}
.scope-cell h3 { font-size: 17px; font-weight: 900; }
.scope-cell p { font-size: 13px; opacity: 0.8; }

/* ---------- case（実績1件） ---------- */
.works { border-bottom: 1px solid var(--ink); }
.case-list { border-top: 1px solid var(--ink); }
.case {
  display: grid; grid-template-columns: 1.35fr 1fr;
  border-bottom: 1px solid var(--ink);
}
.case:nth-child(even) .case-media { order: 2; border-right: 0; border-left: 1px solid var(--ink); }
.case-media { padding: 32px; border-right: 1px solid var(--ink); }
.case-body { padding: 40px 36px 44px; display: flex; flex-direction: column; gap: 16px; }
.case-no {
  font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.25em; color: var(--orange);
}
.case-title { font-size: clamp(20px, 2.4vw, 28px); font-weight: 900; line-height: 1.5; }
.case-client { font-size: 13px; font-weight: 700; opacity: 0.65; }
.case-result {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.case-result .big {
  font-family: var(--font-impact); font-size: clamp(44px, 5vw, 72px); line-height: 1; color: var(--orange);
}
.case-result .big .u { font-family: var(--font-jp); font-weight: 900; font-size: 0.38em; }
.case-result .cap { font-size: 13px; font-weight: 700; }
.case-meta { display: grid; grid-template-columns: 88px 1fr; gap: 6px 16px; font-size: 13px; }
.case-meta dt {
  font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  padding-top: 3px; opacity: 0.55;
}
.case-desc { font-size: 14px; opacity: 0.9; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span {
  font-size: 11px; font-weight: 700;
  border: 1px solid currentColor; border-radius: 99px; padding: 3px 12px;
}

/* ---------- media（動画・画像スロット。works.js が中身を作る） ---------- */
.media {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink); overflow: hidden;
}
.media.v { aspect-ratio: 9 / 16; }
.media.sq { aspect-ratio: 1 / 1; }
.media.r43 { aspect-ratio: 4 / 3; }
.media.auto { aspect-ratio: auto; background: transparent; }
.media > img, .media > video, .media > iframe {
  width: 100%; height: 100%; object-fit: cover; border: 0; display: block;
}
.media.auto > img { height: auto; }
/* YouTube のサムネ＋再生ボタン（クリックで iframe に差し替え） */
.yt-facade { position: absolute; inset: 0; cursor: pointer; border: 0; background: #000; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s, transform 0.6s; }
.yt-facade:hover img { opacity: 1; transform: scale(1.03); }
.play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--orange); color: #FFF3ED;
  display: grid; place-items: center;
  font-size: 22px; padding-left: 5px;
  transition: transform 0.3s;
}
.yt-facade:hover .play { transform: translate(-50%, -50%) scale(1.08); }
/* 素材が未設定・読み込めないときのプレースホルダー */
.ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 16px;
  background:
    repeating-linear-gradient(135deg, rgba(244,241,236,0.04) 0 14px, transparent 14px 28px),
    var(--ink);
  color: var(--bg);
}
.ph.light {
  background:
    repeating-linear-gradient(135deg, rgba(20,19,16,0.05) 0 14px, transparent 14px 28px),
    #E9E5DE;
  color: var(--ink);
}
.ph .ph-kind { font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.3em; color: var(--orange); }
.ph .ph-label { font-size: 14px; font-weight: 900; }
.ph .ph-sub { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; opacity: 0.45; }
.rec {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  background: rgba(0,0,0,0.55); color: #fff; padding: 3px 8px; border-radius: 3px;
  display: flex; align-items: center; gap: 6px; pointer-events: none;
}
.rec::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---------- 縦型動画グリッド（SNS） ---------- */
.reel-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
.reel { padding: 24px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.reel:nth-child(4n) { border-right: 0; }
.reel-cap { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.reel-cap .pf { font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.25em; color: var(--orange); }
.reel-cap .t { font-size: 14px; font-weight: 900; line-height: 1.5; }
.reel-cap .s { font-size: 12px; opacity: 0.7; }

/* ---------- デザイングリッド ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.gallery .item {
  padding: 24px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  text-decoration: none;
}
.gallery .item:nth-child(3n) { border-right: 0; }
.gallery .item.wide { grid-column: span 2; }
.gallery .item.wide:nth-child(3n+2) { border-right: 0; }
.gallery .media { cursor: zoom-in; }
.gallery .media img { transition: transform 0.6s; }
.gallery .item:hover .media img { transform: scale(1.03); }
.g-cap { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.g-cap .t { font-size: 14px; font-weight: 900; }
.g-cap .k { font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--orange); }

/* ライトボックス */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,19,16,0.92);
  display: none; align-items: center; justify-content: center; padding: 48px 24px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox .close {
  position: absolute; top: 18px; right: 24px;
  color: var(--bg); font-family: var(--font-en); font-size: 12px; letter-spacing: 0.2em;
}

/* ---------- インタビュー（AI研修） ---------- */
.interview { border-bottom: 1px solid var(--ink); }
.iv-top {
  display: grid; grid-template-columns: 1fr 1.2fr;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.iv-profile { padding: 40px 32px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; gap: 18px; }
.iv-headline { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.iv-headline .q-big {
  font-size: clamp(22px, 3vw, 36px); font-weight: 900; line-height: 1.6;
}
.iv-headline .q-big::before { content: '「'; color: var(--orange); }
.iv-headline .q-big::after { content: '」'; color: var(--orange); }
.iv-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-size: 26px; font-weight: 900;
}
.iv-body { max-width: 860px; padding: 64px 32px 88px; margin: 0 auto; }
.qa { margin-bottom: 48px; }
.qa:last-child { margin-bottom: 0; }
.qa .q {
  display: flex; gap: 16px; align-items: baseline;
  font-size: clamp(17px, 2vw, 21px); font-weight: 900; line-height: 1.6;
  padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid var(--ink);
}
.qa .q::before {
  content: 'Q.'; font-family: var(--font-en); font-weight: 900; color: var(--orange); flex-shrink: 0;
}
.qa .a { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.qa .a strong { background: linear-gradient(transparent 62%, rgba(232,80,31,0.35) 62%); }
.pull {
  margin: 56px 0; padding: 36px 32px;
  background: var(--ink); color: var(--bg);
  font-size: clamp(18px, 2.4vw, 26px); font-weight: 900; line-height: 1.7;
}
.pull::before { content: '“'; display: block; font-family: var(--font-en); font-size: 64px; line-height: 0.6; color: var(--orange); margin-bottom: 8px; }
.draft-note {
  display: inline-block; margin-bottom: 20px;
  font-size: 11px; font-weight: 700; color: var(--orange);
  border: 1px dashed var(--orange); padding: 4px 12px; border-radius: 4px;
}

/* 研修プログラムのステップ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-inv); }
.step { padding: 36px 28px 44px; border-right: 1px solid var(--line-inv); display: flex; flex-direction: column; gap: 12px; }
.step:last-child { border-right: 0; }
.step .n { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.25em; color: var(--orange); }
.step h3 { font-size: 18px; font-weight: 900; }
.step p { font-size: 13px; opacity: 0.8; }

/* ---------- プロダクト（AIツール） ---------- */
.browser {
  background: #fff; border: 1px solid var(--ink); border-radius: 10px; overflow: hidden;
  box-shadow: 10px 10px 0 var(--ink);
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--line); background: #F7F6F3;
}
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: #D5D1CA; display: block; }
.browser-bar .url {
  flex: 1; text-align: center; font-size: 11px; color: #8A867E;
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 3px 10px;
  font-family: var(--font-en); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-hero {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center;
  padding: 0 32px 96px;
}
.product-name { font-family: var(--font-en); font-weight: 900; font-size: clamp(44px, 6vw, 80px); line-height: 1; letter-spacing: -0.02em; }
.product-copy { font-size: clamp(18px, 2vw, 22px); font-weight: 900; line-height: 1.6; margin: 20px 0; }
.product-desc { font-size: 14px; opacity: 0.85; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); margin-top: 32px; }
.kpis div { padding: 18px 16px; border-right: 1px solid var(--ink); }
.kpis div:last-child { border-right: 0; }
.kpis .l { font-size: 11px; font-weight: 700; opacity: 0.6; }
.kpis .v { font-family: var(--font-impact); font-size: 30px; line-height: 1.2; color: var(--orange); white-space: nowrap; }
.kpis .v .u { font-family: var(--font-jp); font-weight: 900; font-size: 0.5em; }

.feature {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
  padding: 72px 32px; border-top: 1px solid var(--ink);
}
.feature:nth-child(even) .feature-text { order: 2; }
.feature .no { font-family: var(--font-en); font-weight: 900; font-size: 64px; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--ink); }
.feature .pt { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.3em; color: var(--orange); margin: 16px 0 8px; }
.feature h3 { font-size: clamp(20px, 2.6vw, 30px); font-weight: 900; line-height: 1.5; margin-bottom: 16px; }
.feature p { font-size: 14px; opacity: 0.85; }

.fn-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-inv); }
.fn { padding: 32px 28px 36px; border-right: 1px solid var(--line-inv); border-bottom: 1px solid var(--line-inv); }
.fn:nth-child(3n) { border-right: 0; }
.fn h3 { font-size: 17px; font-weight: 900; margin-bottom: 12px; }
.fn h3::before { content: '■ '; color: var(--orange); font-size: 12px; vertical-align: 2px; }
.fn ul { list-style: none; font-size: 13px; opacity: 0.8; display: flex; flex-direction: column; gap: 2px; }
.fn li::before { content: '— '; opacity: 0.5; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 0 32px 96px; }
.story .lead-big { font-size: clamp(24px, 3.4vw, 42px); font-weight: 900; line-height: 1.6; }
.story .lead-big .marker { background: linear-gradient(transparent 62%, var(--orange) 62%, var(--orange) 94%, transparent 94%); }
.story .txt { display: flex; flex-direction: column; gap: 18px; font-size: 14px; }

/* ---------- 他のサービス ---------- */
.others { border-bottom: 1px solid var(--ink); }
.other-list { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(5, 1fr); }
.other {
  padding: 28px 24px 32px; border-right: 1px solid var(--ink);
  text-decoration: none; display: flex; flex-direction: column; gap: 6px;
  transition: background 0.3s, color 0.3s;
}
.other:last-child { border-right: 0; }
.other:hover { background: var(--ink); color: var(--bg); }
.other .n { font-family: var(--font-en); font-weight: 900; font-size: 13px; color: var(--orange); }
.other .en { font-family: var(--font-en); font-weight: 900; font-size: 17px; line-height: 1.2; }
.other .jp { font-size: 12px; font-weight: 700; opacity: 0.7; }
.other .ar { font-family: var(--font-en); font-size: 20px; margin-top: auto; padding-top: 12px; transition: transform 0.3s; }
.other:hover .ar { transform: rotate(45deg); color: var(--orange); }

/* ---------- CTA ---------- */
.cta { padding: 110px 32px; text-align: left; }
.cta .big {
  font-size: clamp(30px, 5vw, 64px); font-weight: 900; line-height: 1.45; margin-bottom: 36px;
}
.cta .big em { font-style: normal; color: var(--orange); }
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--orange); color: #FFF3ED; text-decoration: none;
  font-weight: 700; font-size: 14px; padding: 18px 36px; border-radius: 99px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn .arrow { font-family: var(--font-en); transition: transform 0.25s; }
.btn:hover { background: var(--bg); color: var(--ink); transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(6px); }
.btn.ghost { background: transparent; color: inherit; border: 1px solid currentColor; }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.dark .btn.ghost:hover { background: var(--bg); color: var(--ink); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer {
  background: var(--ink); color: var(--bg);
  border-top: 1px solid rgba(244,241,236,0.2);
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
footer .foot-logo { font-family: var(--font-en); font-weight: 900; font-size: 15px; text-decoration: none; }
footer .foot-logo span { color: var(--orange); }
.sns { display: flex; gap: 20px; }
.sns a { color: var(--bg); text-decoration: none; font-family: var(--font-en); font-size: 11px; letter-spacing: 0.15em; }
.sns a:hover { color: var(--orange); }
footer .copy { font-family: var(--font-en); font-size: 11px; opacity: 0.5; letter-spacing: 0.05em; }

/* ---------- 表示アニメーション ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .other-list { grid-template-columns: repeat(3, 1fr); }
  .other { border-bottom: 1px solid var(--ink); }
  .other:nth-child(3n) { border-right: 0; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .reel:nth-child(4n) { border-right: 1px solid var(--ink); }
  .reel:nth-child(2n) { border-right: 0; }
}
@media (max-width: 860px) {
  header { padding: 18px 16px; }
  header nav { display: none; }
  .h-cta { display: inline-block; }
  .w-hero { padding: 120px 16px 56px; min-height: clamp(480px, 70vh, 680px); }
  .sec-head { padding: 72px 16px 32px; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .scope-cell { border-bottom: 1px solid var(--ink); padding: 24px 16px 28px; }
  .scope-cell:nth-child(2n) { border-right: 0; }
  .case { grid-template-columns: 1fr; }
  .case-media, .case:nth-child(even) .case-media { order: 0; padding: 16px; border: 0; border-bottom: 1px solid var(--ink); }
  .case-body { padding: 28px 16px 36px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .item { padding: 12px; }
  .gallery .item:nth-child(3n) { border-right: 1px solid var(--ink); }
  .gallery .item:nth-child(2n) { border-right: 0; }
  .gallery .item.wide { grid-column: span 2; border-right: 0; }
  .reel { padding: 12px; }
  .iv-top { grid-template-columns: 1fr; }
  .iv-profile { border-right: 0; border-bottom: 1px solid var(--ink); padding: 32px 16px; }
  .iv-headline { padding: 32px 16px; }
  .iv-body { padding: 48px 16px 64px; }
  .pull { padding: 28px 20px; }
  .steps, .fn-grid { grid-template-columns: 1fr; }
  .step, .fn { border-right: 0; border-bottom: 1px solid var(--line-inv); padding: 28px 16px; }
  .product-hero, .feature, .story { grid-template-columns: 1fr; gap: 32px; padding-left: 16px; padding-right: 16px; }
  .feature { padding-top: 56px; padding-bottom: 56px; }
  .feature:nth-child(even) .feature-text { order: 0; }
  .browser { box-shadow: 6px 6px 0 var(--ink); }
  .other-list { grid-template-columns: 1fr 1fr; }
  .other:nth-child(3n) { border-right: 1px solid var(--ink); }
  .other:nth-child(2n) { border-right: 0; }
  .cta { padding: 80px 16px; }
  footer { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .scope-grid, .gallery { grid-template-columns: 1fr; }
  .scope-cell, .gallery .item { border-right: 0 !important; }
  .gallery .item.wide { grid-column: auto; }
  .kpis .v { font-size: 22px; }
  .kpis div { padding: 14px 10px; }
}
