/* imgest — product site (actioncam.dev). Clean, single-product, commercial.
   Operated by LIMOD. Accent: #ff6a00. */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-card: #ffffff;
  --ink: #16181d;
  --ink-soft: #4b515b;
  --ink-faint: #6b727d;
  --line: #e7e9ee;
  --accent: #ff6a00;
  --accent-ink: #b84e00;
  --radius: 14px;
  --maxw: 1060px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* header */
.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(8px); position: sticky; top: 0; z-index: 10; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg,#ff9248,var(--accent)); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px; }
.brand .by { font-size: 12px; color: var(--ink-faint); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav a.lang { font-size: 13px; color: var(--ink-faint); border: 1px solid var(--line); border-radius: 7px; padding: 5px 11px; }
.nav a.lang:hover { color: var(--ink); border-color: var(--ink-faint); }
@media (max-width: 800px) {
  .site-header .container { padding-left: 16px; padding-right: 16px; gap: 12px; }
  .brand { gap: 8px; min-width: 0; }
  .brand .by { display: none; }
  .nav { gap: 10px; flex-shrink: 0; }
  .nav a:not(.lang):not(.btn) { display: none; }
  .nav .btn.sm { padding: 8px 12px; white-space: nowrap; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 16px; border: 1px solid transparent; cursor: pointer; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: #ff7d1f; color: var(--ink); }
.nav a.btn-primary { color: var(--ink); }
.btn-ghost { background: var(--bg-soft); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #eef0f3; color: var(--ink); }
.btn.sm { padding: 8px 16px; font-size: 15px; }
.btn-text { color: var(--accent-ink); background: transparent; padding-left: 4px; padding-right: 4px; }
.btn-text:hover { color: #843900; }
a:focus-visible, button:focus-visible { outline: 3px solid #005fcc; outline-offset: 3px; border-radius: 8px; }

/* hero */
.hero { padding: 80px 0 60px; text-align: center; }
.badge { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent-ink); background: #fff1e6; border: 1px solid #ffd9bd; padding: 5px 12px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: 50px; line-height: 1.08; letter-spacing: -.025em; margin: 0 0 18px; font-weight: 800; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { font-size: 21px; color: var(--ink-soft); max-width: 650px; margin: 0 auto 30px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 16px; font-size: 14px; color: var(--ink-faint); }
.pricing-title { font-size: 42px; }
.mobile-only { display: none; }

html:lang(ko) h1,
html:lang(ko) h2,
html:lang(ko) h3,
html:lang(ko) p,
html:lang(ko) .badge,
html:lang(ko) .btn,
html:lang(ko) .quota,
html:lang(ko) .desc,
html:lang(ko) .pricing-note {
  word-break: keep-all;
  overflow-wrap: break-word;
}
html:lang(ko) .hero h1,
html:lang(ko) .section-head h2 {
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

/* sections */
section.block { padding: 56px 0; }
section.block.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: 32px; letter-spacing: -.02em; margin: 0 0 10px; font-weight: 800; }
.section-head p { font-size: 18px; color: var(--ink-soft); margin: 0; }
.grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 800px){ .grid{ grid-template-columns: 1fr; } .hero h1{ font-size: 36px; } .hero p.lead{ font-size: 18px; } }
@media (max-width: 800px){
  html:lang(ko) .hero h1,
  html:lang(ko) .pricing-title { font-size: 34px; }
  html:lang(ko) .section-head h2 { font-size: 28px; }
  .mobile-only { display: initial; }
}
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .ic { font-size: 26px; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 800px){ .steps{ grid-template-columns: 1fr; } }
.step { padding: 22px; }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* pricing */
.price-grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); align-items: stretch; }
@media (max-width: 820px){ .price-grid{ grid-template-columns: 1fr; } }
.price-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price-card .tag { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }
.price-card .name { font-size: 22px; font-weight: 800; margin: 6px 0 4px; }
.price-card .amount { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.price-card .amount small { font-size: 15px; font-weight: 600; color: var(--ink-faint); }
.price-card .quota { margin: 12px 0; font-size: 16px; color: var(--ink); font-weight: 600; }
.price-card .desc { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; flex: 1; }
.price-card .pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: #fff1e6; color: var(--accent-ink); margin-left: 8px; vertical-align: middle; }
.pricing-note { text-align: center; color: var(--ink-faint); font-size: 14px; margin-top: 22px; }
.checksum code { overflow-wrap: anywhere; }

/* legal / prose */
.prose { max-width: 760px; margin: 0 auto; padding: 56px 0 80px; }
.prose h1 { font-size: 38px; letter-spacing: -.02em; margin: 0 0 6px; }
.prose .meta { color: var(--ink-faint); font-size: 14px; margin: 0 0 36px; }
.prose h2 { font-size: 23px; margin: 40px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-soft); }
.prose code { background: var(--bg-soft); padding: 1px 6px; border-radius: 5px; font-size: 13px; }
.callout { background: #fff8f2; border: 1px solid #ffd9bd; border-radius: 10px; padding: 16px 18px; margin: 22px 0; font-size: 15px; color: var(--ink); }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 40px 0; margin-top: 40px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: flex-start; }
.site-footer .f-brand { font-weight: 700; }
.site-footer .f-links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer .f-links a { color: var(--ink-soft); font-size: 14px; }
.site-footer .copy { color: var(--ink-faint); font-size: 13px; width: 100%; margin-top: 12px; }
.site-footer .f-tagline { color: var(--ink-faint); font-size: 14px; margin-top: 4px; }

/* product-led homepage */
.home-page { background: #fffdf9; }
.home-page main { overflow: hidden; }
.home-page .container { max-width: 1180px; }
.home-page .site-header { background: rgba(255,253,249,.9); }
.home-page .site-footer { margin-top: 0; background: #f4f0ea; }

.home-hero {
  position: relative;
  padding: 74px 0 84px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255,106,0,.16), transparent 34%),
    linear-gradient(180deg, #fff8f0 0%, #fffdf9 78%);
  border-bottom: 1px solid #eee6dc;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,.5), transparent);
}
.hero-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 54px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow, .section-kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-hero h1 {
  margin: 0;
  font-size: clamp(45px,5vw,66px);
  line-height: 1.06;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.home-hero h1 .accent { color: var(--accent-ink); }
html:lang(ko) .home-hero h1 { font-size: clamp(43px,4.6vw,58px); }
html:lang(ko) .home-hero h1 .accent { white-space: nowrap; }
.hero-lead { margin: 24px 0 22px; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }
.hero-lead strong { color: var(--ink); font-weight: 750; }
.hero-flow {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 9px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  counter-reset: hero-step;
}
.hero-flow li {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 9px 12px;
  border: 1px solid #eadfd3;
  border-radius: 11px;
  background: rgba(255,255,255,.76);
  color: #37332f;
  font-size: 13px;
  font-weight: 700;
  counter-increment: hero-step;
}
.hero-flow li::before {
  content: "0" counter(hero-step);
  margin-right: 9px;
  color: var(--accent-ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
}
.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note { margin: 15px 0 0; color: var(--ink-faint); font-size: 13px; line-height: 1.5; }

.product-shot {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 23px;
  background: #111214;
  box-shadow: 0 28px 70px rgba(55,31,12,.2), 0 3px 12px rgba(55,31,12,.12);
}
.product-shot img { display: block; width: 100%; height: auto; border-radius: 14px; background: #f4f4f4; }
.product-shot figcaption { padding: 11px 9px 3px; color: #c9cbd0; font-size: 12px; line-height: 1.45; }
.shot-label {
  position: absolute;
  z-index: 2;
  top: 21px;
  right: 21px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(17,18,20,.78);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
}

.need-section { padding: 92px 0; background: #fffdf9; }
.need-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.section-copy h2, .home-section-head h2, .download-copy h2 {
  margin: 0;
  font-size: clamp(36px,4vw,52px);
  line-height: 1.12;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-copy > p { max-width: 520px; margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.folder-compare { display: grid; grid-template-columns: 1fr 42px 1fr; gap: 10px; align-items: stretch; }
.folder-panel { min-width: 0; padding: 24px; border: 1px solid #e7dfd5; border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(44,31,20,.06); }
.folder-panel.after { border-color: #ffc79e; background: #fff8f1; }
.compare-label { display: block; margin-bottom: 18px; color: var(--ink-faint); font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.folder-panel code { display: flex; flex-direction: column; gap: 9px; color: var(--ink-soft); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 14px; }
.folder-panel code span::before { content: "└ "; color: #a7a19a; }
.folder-panel code span + span { padding-left: 16px; }
.folder-panel code strong { padding-left: 32px; color: var(--ink); font-weight: 700; overflow-wrap: anywhere; }
.folder-panel p { margin: 19px 0 0; color: var(--ink-faint); font-size: 13px; line-height: 1.55; }
.compare-arrow { display: flex; align-items: center; justify-content: center; color: var(--accent-ink); font-size: 25px; font-weight: 800; }
.folder-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px; }
.folder-meta span { padding: 4px 8px; border-radius: 999px; color: #75401b; background: #ffe7d5; font-size: 11px; font-weight: 700; }
.compare-note { grid-column: 1 / -1; margin: 4px 0 0; color: var(--ink-faint); font-size: 12px; text-align: right; }

.benefits-section { padding: 94px 0 102px; background: #f5f2ee; border-top: 1px solid #ebe5df; }
.home-section-head { max-width: 760px; margin-bottom: 46px; }
.home-section-head h2 { font-size: clamp(36px,4vw,50px); }
.home-section-head p { margin-top: 15px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin: 0; padding: 0; list-style: none; }
.benefit-card { position: relative; min-height: 285px; padding: 34px; overflow: hidden; border: 1px solid #e1dbd4; border-radius: 20px; background: #fff; }
.benefit-card::after { content: ""; position: absolute; inset: auto -50px -80px auto; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,106,0,.06); }
.benefit-card.featured { color: #fff; border-color: #1d1b19; background: #1d1b19; }
.benefit-card.featured::after { background: rgba(255,106,0,.18); }
.benefit-number { display: block; margin-bottom: 26px; color: var(--accent-ink); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.benefit-card.featured .benefit-number { color: #ff9d57; }
.benefit-card h3 { margin: 0 0 13px; font-size: 28px; line-height: 1.2; }
.benefit-card p { max-width: 510px; margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.benefit-card p > span { display: block; }
.benefit-card p > span + span { margin-top: 5px; }
.benefit-card.featured p { color: #cfcbc6; }
.benefit-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.benefit-tags span { padding: 5px 9px; border: 1px solid #e4ddd5; border-radius: 999px; color: #625d57; background: #faf8f5; font-size: 11px; font-weight: 700; }
.benefit-card.featured .benefit-tags span { color: #f5ede6; border-color: #49433e; background: #2c2926; }

.one-stop-section { padding: 98px 0 105px; color: #fff; background: #151412; }
.section-head.inverse h2 { color: #fff; }
.section-head.inverse p { color: #b9b5af; }
.section-head.inverse .section-kicker { color: #ff9d57; }
.workflow-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; margin: 0 0 56px; padding: 0; list-style: none; border-top: 1px solid #3a3733; border-bottom: 1px solid #3a3733; }
.workflow-list li { position: relative; min-height: 220px; padding: 28px 24px 30px; border-right: 1px solid #3a3733; }
.workflow-list li:last-child { border-right: 0; }
.workflow-list li > span { color: #ff9d57; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.workflow-list h3 { margin: 24px 0 12px; font-size: 21px; }
.workflow-list p { margin: 0; color: #aaa6a0; font-size: 14px; line-height: 1.65; }
.product-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.gallery-shot { box-shadow: 0 24px 55px rgba(0,0,0,.36); }
.gallery-shot figcaption { min-height: 58px; font-size: 13px; }
.gallery-shot figcaption strong { color: #fff; }

.download-section { padding: 100px 0 72px; background: #fffdf9; }
.download-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: center; padding: 52px; overflow: hidden; border: 1px solid #e6ded5; border-radius: 28px; background: linear-gradient(135deg,#fff6ec,#fff 72%); box-shadow: 0 22px 55px rgba(54,34,18,.09); }
.download-copy { position: relative; z-index: 1; }
.download-copy > p:not(.pricing-note) { margin: 20px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.download-actions { margin-top: 26px; }
.download-visual { margin: 0; transform: translateX(25px); }
.download-visual img { display: block; width: 100%; height: auto; border: 8px solid #151412; border-radius: 20px; box-shadow: 0 24px 55px rgba(44,27,15,.2); }
.pricing-note.align-left { max-width: 620px; margin: 22px 0 0; text-align: left; line-height: 1.6; }
.trust-row { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-top: 26px; overflow: hidden; border: 1px solid #e5ded5; border-radius: 14px; background: #e5ded5; }
.trust-row span { display: flex; align-items: center; justify-content: center; min-height: 58px; padding: 12px; color: #5d5751; background: #fff; font-size: 12px; font-weight: 700; text-align: center; }

@media (min-width: 721px) {
  .home-page .brand { font-size: 20px; }
  .home-page .brand .by { font-size: 13px; }
  .home-page .nav a { font-size: 16px; }
  .home-page .nav a.lang { font-size: 14px; }
  .home-page .btn { font-size: 17px; }
  .home-page .btn.sm { font-size: 16px; }
  .home-page .eyebrow,
  .home-page .section-kicker { font-size: 13px; }
  .home-page .hero-lead { font-size: 22px; }
  .home-page .hero-flow li { font-size: 15px; }
  .home-page .hero-flow li::before { font-size: 11px; }
  .home-page .hero-note { font-size: 15px; }
  .home-page .product-shot figcaption { font-size: 14px; }
  .home-page .shot-label { font-size: 12px; }
  .home-page .section-copy > p,
  .home-page .home-section-head p { font-size: 20px; }
  .home-page .compare-label { font-size: 13px; }
  .home-page .folder-panel code { font-size: 15px; }
  .home-page .folder-panel p { font-size: 15px; }
  .home-page .folder-meta span { font-size: 12px; }
  .home-page .compare-note { font-size: 13px; }
  .home-page .benefit-number { font-size: 13px; }
  .home-page .benefit-card h3 { font-size: 30px; }
  .home-page .benefit-card p { font-size: 18px; }
  .home-page .benefit-tags span { font-size: 13px; }
  .home-page .workflow-list li > span { font-size: 13px; }
  .home-page .workflow-list h3 { font-size: 23px; }
  .home-page .workflow-list p { font-size: 16px; }
  .home-page .download-copy > p:not(.pricing-note) { font-size: 19px; }
  .home-page .pricing-note.align-left { font-size: 15px; }
  .home-page .trust-row span { font-size: 14px; }
  .home-page .site-footer .f-brand { font-size: 18px; }
  .home-page .site-footer .f-tagline,
  .home-page .site-footer .f-links a { font-size: 16px; }
  .home-page .site-footer .copy { font-size: 14px; }
}

@media (max-width: 1020px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-shot { max-width: 850px; }
  .need-layout { grid-template-columns: 1fr; gap: 42px; }
  .section-copy > p { max-width: 720px; }
  .workflow-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .workflow-list li:nth-child(2) { border-right: 0; }
  .workflow-list li:nth-child(-n+2) { border-bottom: 1px solid #3a3733; }
  .download-card { grid-template-columns: 1fr; }
  .download-visual { transform: none; }
}

@media (max-width: 720px) {
  .home-page .container { padding-left: 20px; padding-right: 20px; }
  .home-hero { padding: 54px 0 62px; }
  .home-hero h1 { font-size: clamp(39px,11vw,50px); letter-spacing: -.035em; }
  .hero-lead { font-size: 18px; }
  .hero-flow { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-shot { padding: 6px; border-radius: 16px; }
  .product-shot img { border-radius: 11px; }
  .shot-label { top: 13px; right: 13px; }
  .need-section, .benefits-section, .one-stop-section, .download-section { padding-top: 72px; padding-bottom: 76px; }
  .folder-compare { grid-template-columns: 1fr; }
  .compare-arrow { min-height: 28px; transform: rotate(90deg); }
  .compare-note { text-align: left; }
  .benefit-grid, .product-gallery, .workflow-list { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; padding: 28px; }
  .benefit-card h3 { font-size: 25px; }
  .workflow-list li { min-height: 0; border-right: 0; border-bottom: 1px solid #3a3733; }
  .workflow-list li:nth-child(2) { border-bottom: 1px solid #3a3733; }
  .workflow-list li:last-child { border-bottom: 0; }
  .download-card { padding: 30px 24px; border-radius: 22px; }
  .trust-row { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 520px) {
  .home-page .cta-row .btn { width: 100%; }
  .home-page .nav .btn.sm { width: auto; }
  .home-section-head h2, .section-copy h2, .download-copy h2 { font-size: 34px; }
  .folder-panel { padding: 20px; }
  .trust-row { grid-template-columns: 1fr; }
  .checksum { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
