:root {
  color-scheme: light;
  --ink: #121515;
  --muted: #475654;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #aebfbb;
  --blue: #078dbd;
  --blue-dark: #045f82;
  --blue-light: #54c4e8;
  --red: #e32219;
  --red-dark: #a51d16;
  --yellow: #ffc52d;
  --cream: #fff3cf;
  --green: #24b568;
  --focus: #8b3dff;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
}

a { color: var(--blue-dark); }
a:hover { color: var(--red-dark); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 80;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  background: var(--surface);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px clamp(20px, 5vw, 72px);
  border-bottom: 3px solid var(--ink);
  background: var(--surface);
}

.brand {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--yellow);
}

.site-header nav, footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.site-header nav a, footer nav a {
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 5px;
}

.site-header nav a:hover { text-decoration: underline; }

.hero-chapter {
  position: relative;
  min-height: min(86svh, 860px);
  overflow: clip;
  border-bottom: 7px solid var(--ink);
  background: var(--blue);
  view-timeline: --hero-chapter block;
}

.hero-stage {
  position: relative;
  min-height: min(86svh, 860px);
  display: grid;
  align-items: center;
  isolation: isolate;
  perspective: 1800px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.hero-backdrop-plane {
  position: absolute;
  inset: -5%;
  z-index: 0;
  transform-style: preserve-3d;
  transform: translateZ(-140px) scale(1.08);
  will-change: transform;
}

.hero-backdrop,
.hero-backdrop img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-backdrop img {
  object-fit: cover;
  object-position: center;
  animation: hero-backdrop-arrival 720ms cubic-bezier(0.16, 0.8, 0.25, 1) both;
}

.hero-impact-flash {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: #ffffff;
  opacity: 0;
  animation: hero-impact-flash 560ms ease-out 180ms both;
}

.hero-icon-plane {
  position: absolute;
  top: 50%;
  left: 27%;
  z-index: 5;
  width: 330px;
  transform: translate3d(-50%, -50%, 150px);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-app-icon {
  width: 100%;
  height: auto;
  display: block;
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 18px 21px 0 var(--ink);
  animation: hero-icon-impact 780ms cubic-bezier(0.18, 0.86, 0.25, 1.18) 170ms both;
}

.hero-word-plane {
  position: absolute;
  z-index: 4;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-word-plane b {
  display: block;
  font-size: 53px;
  font-weight: 900;
  line-height: 0.88;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-transform: uppercase;
}

.hero-word-plane-pow {
  top: 22%;
  left: 12%;
  z-index: 6;
  transform: translateZ(215px) rotate(-8deg);
}

.hero-word-plane-pow b {
  color: var(--yellow);
  text-shadow: 7px 8px 0 var(--red), 12px 13px 0 var(--ink);
  animation: hero-word-impact 520ms cubic-bezier(0.18, 0.88, 0.25, 1.25) 350ms both;
}

.hero-word-plane-boom {
  bottom: 16%;
  left: 15%;
  transform: translateZ(235px) rotate(7deg);
}

.hero-word-plane-boom b {
  color: #ffffff;
  text-shadow: 6px 7px 0 var(--blue), 11px 12px 0 var(--ink);
  animation: hero-word-impact 520ms cubic-bezier(0.18, 0.88, 0.25, 1.25) 470ms both;
}

.hero-word-plane-zap {
  top: 18%;
  left: 47%;
  z-index: 3;
  transform: translateZ(75px) rotate(5deg);
}

.hero-word-plane-zap b {
  color: var(--red);
  font-size: 39px;
  text-shadow: 5px 6px 0 #ffffff, 9px 10px 0 var(--ink);
  animation: hero-word-impact 520ms cubic-bezier(0.18, 0.88, 0.25, 1.25) 590ms both;
}

.hero-ink-swipe {
  position: absolute;
  right: 36%;
  bottom: 4%;
  z-index: 2;
  width: 240px;
  height: 46px;
  border: 4px solid var(--ink);
  background: var(--red);
  box-shadow: 9px 10px 0 var(--ink);
  transform: translateZ(60px) rotate(-8deg) skewX(-18deg);
  animation: hero-swipe-arrival 620ms cubic-bezier(0.18, 0.8, 0.2, 1) 420ms both;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 44%;
  margin-left: auto;
  padding: 56px 76px 72px 18px;
  color: var(--ink);
  animation: hero-copy-arrival 620ms cubic-bezier(0.18, 0.82, 0.25, 1) 460ms both;
}

.hero-content::before {
  position: absolute;
  inset: -220px -90px -220px -72px;
  z-index: -1;
  background: rgb(255 250 240 / 91%);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 8% 76%, 2% 51%, 10% 25%);
  content: "";
}

.hero-promise {
  display: inline-block;
  margin: 0 0 11px;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1, .hero-chapter h1 {
  margin: 0;
  color: var(--ink);
  font-size: 67px;
  font-weight: 850;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero-chapter h1 span,
.hero-chapter h1 strong {
  display: block;
}

.hero-chapter h1 span {
  font-size: 46px;
  text-shadow: 3px 3px 0 #ffffff;
}

.hero-chapter h1 strong {
  color: var(--red);
  font-size: 92px;
  font-weight: 900;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 7px 0 var(--yellow), 10px 11px 0 var(--ink);
}

.hero-kicker {
  margin: 25px 0 14px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 850;
  line-height: 1.05;
}

.hero-kicker em {
  color: var(--blue-dark);
  font-style: normal;
}

.hero-body {
  max-width: 560px;
  margin: 0;
  font-size: 19px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 25px;
}

.primary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.primary-action:hover {
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  transform: translate(3px, 3px);
}

.secondary-action {
  color: var(--ink);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-shadow: 1px 1px 0 #ffffff;
  text-underline-offset: 5px;
}

.secondary-action:hover { color: var(--red-dark); }

.chapter-cue {
  position: absolute;
  z-index: 11;
  right: clamp(28px, 7vw, 108px);
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
  text-transform: uppercase;
}

.chapter-cue span:last-child { color: var(--red); font-size: 20px; }

.broadcast-ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  list-style: none;
}

.broadcast-ticker li {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid #56615f;
  font-size: 15px;
  font-weight: 820;
  text-transform: uppercase;
}

.broadcast-ticker li span { display: inline-block; }
.broadcast-ticker li:nth-child(1) span { transform: rotate(-2deg); }
.broadcast-ticker li:nth-child(2) span { transform: translateY(2px) rotate(1.5deg); }
.broadcast-ticker li:nth-child(3) span { transform: rotate(-1deg); }
.broadcast-ticker li:nth-child(4) span { transform: translateY(-2px) rotate(2deg); }
.broadcast-ticker li:nth-child(5) span { transform: rotate(-1.5deg); }

.broadcast-ticker li:nth-child(2), .broadcast-ticker li:nth-child(4) { color: var(--yellow); }
.broadcast-ticker li:last-child { border-right: 0; }

.chapter-slam {
  position: relative;
  isolation: isolate;
  overflow: clip;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 88px;
  padding: 14px 7vw;
  border-block: 4px solid var(--ink);
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.chapter-slam::before {
  position: absolute;
  inset: -40px 30% -40px 28%;
  z-index: -1;
  border-inline: 4px solid var(--ink);
  background: var(--yellow);
  content: "";
  transform: skewX(-18deg);
}

.chapter-slam span { display: block; text-shadow: 3px 4px 0 var(--ink); }
.chapter-slam span:nth-child(1) { transform: rotate(-2deg); }
.chapter-slam span:nth-child(2) { color: var(--ink); text-shadow: 3px 4px 0 #ffffff; transform: translateY(-2px) rotate(1deg); }
.chapter-slam span:nth-child(3) { transform: rotate(-1deg); }
.chapter-slam-watch { background: var(--red); }
.chapter-slam-words { background: var(--blue); }
.chapter-slam-words::before { background: var(--red); }
.chapter-slam-words span:nth-child(2) { color: #ffffff; text-shadow: 3px 4px 0 var(--ink); }

.proof-band {
  position: relative;
  overflow: clip;
  padding: 104px clamp(20px, 7vw, 104px) 112px;
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
  view-timeline: --proof-chapter block;
}

.proof-backdrop {
  position: absolute;
  inset: 0 0 0 56%;
  border-left: 3px solid var(--ink);
  background: var(--blue);
}

.proof-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
  margin: 0 auto;
}

.proof-copy { max-width: 590px; }
.proof-copy .section-label { color: var(--red-dark); }

.proof-copy h2 {
  margin: 0 0 21px;
  font-size: 49px;
  line-height: 1.04;
}

.proof-copy > p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.proof-notes {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.proof-notes li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.proof-notes strong { color: var(--blue-dark); }
.proof-notes span { color: var(--muted); }

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 790;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-action:hover { color: var(--red-dark); }

.product-proof {
  position: relative;
  width: min(500px, 100%);
  margin: 0 auto;
  perspective: 1100px;
}

.proof-sheet {
  position: absolute;
  z-index: 0;
  border: 3px solid var(--ink);
}

.proof-sheet-yellow {
  inset: -27px -29px 30% 25%;
  background: var(--yellow);
  transform: translateZ(-40px) rotate(2.5deg);
}

.proof-sheet-red {
  inset: 47% 42% 18px -34px;
  background: var(--red);
  transform: translateZ(-20px) rotate(-4deg);
}

.proof-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(1.2deg);
  transition: transform 220ms ease;
  will-change: transform;
}

.product-proof:hover .proof-frame { transform: rotate(0deg) translateY(-4px); }
.proof-frame img { width: 100%; height: auto; display: block; }

.product-proof figcaption {
  position: relative;
  z-index: 2;
  display: inline-block;
  max-width: calc(100% - 8px);
  margin-top: 22px;
  padding: 8px 10px;
  border-left: 4px solid var(--yellow);
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.section-label {
  margin: 0 0 9px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.experience-band {
  padding: 94px clamp(20px, 7vw, 104px) 104px;
  border-bottom: 3px solid var(--ink);
  background: var(--cream);
  view-timeline: --experience-chapter block;
}

.experience-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 92px);
  margin: 0 auto;
}

.experience-heading { align-self: start; padding-top: 22px; }
.experience-heading h2 { margin: 0 0 18px; font-size: 50px; line-height: 1.03; }
.experience-heading > p:last-child { max-width: 330px; color: var(--muted); font-size: 19px; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  perspective: 1000px;
}

.experience-feature {
  min-height: 208px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-content: end;
  gap: 18px;
  padding: 24px;
  border: 3px solid var(--ink);
  box-shadow: 8px 10px 0 var(--ink);
  transition: box-shadow 170ms ease, transform 170ms ease;
}

.experience-feature:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(5px, 7px) rotate(0deg);
}

.feature-guide { grid-column: 1 / span 7; background: var(--yellow); transform: rotate(-1deg); }
.feature-find { grid-column: 8 / span 5; background: var(--red); color: #ffffff; transform: rotate(1.2deg) translateY(13px); }
.feature-room { grid-column: 3 / span 10; min-height: 186px; background: var(--blue-light); transform: rotate(0.5deg); }

.feature-number { font-size: 14px; font-weight: 850; }
.experience-feature h3 { margin: 0 0 8px; font-size: 25px; line-height: 1.13; }
.experience-feature p { margin: 0; font-size: 16px; }

.caption-band {
  overflow: clip;
  padding: 96px clamp(20px, 7vw, 104px);
  border-bottom: 3px solid var(--ink);
  background: var(--surface);
  view-timeline: --caption-chapter block;
}

.caption-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  margin: 0 auto;
}

.caption-intro h2 { margin: 0 0 21px; font-size: 48px; line-height: 1.04; }
.caption-intro > p:last-child { margin: 0; color: var(--muted); font-size: 18px; }

.caption-ladder {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 15px;
  border-left: 3px solid var(--ink);
  list-style: none;
}

.caption-ladder li {
  min-height: 130px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-content: center;
  gap: 17px;
  margin-bottom: 14px;
  padding: 22px 25px;
  border: 3px solid var(--ink);
  background: #ffffff;
  box-shadow: 7px 7px 0 var(--ink);
}

.caption-ladder li:nth-child(1) { transform: translateX(0); }
.caption-ladder li:nth-child(2) { width: calc(100% - 20px); background: var(--yellow); transform: translateX(20px); }
.caption-ladder li:nth-child(3) { width: calc(100% - 40px); margin-bottom: 0; background: var(--blue-light); transform: translateX(40px); }

.caption-ladder li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #ffffff;
  font-weight: 850;
}

.caption-ladder h3 { margin: 0 0 6px; font-size: 22px; line-height: 1.2; }
.caption-ladder p { margin: 0; color: #2f3a38; font-size: 16px; }

.caption-release {
  grid-column: 1 / -1;
  margin: 38px 0 0;
  padding: 15px 18px;
  border-left: 6px solid var(--red);
  background: var(--cream);
  font-size: 15px;
}

.caption-roadmap {
  margin-top: 14px;
  border-left-color: var(--blue);
}

.privacy-band {
  padding: 88px clamp(20px, 7vw, 104px);
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.privacy-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  margin: 0 auto;
}

.privacy-statement {
  margin: 0;
  font-size: 58px;
  font-weight: 850;
  line-height: 1.02;
}

.privacy-statement em { color: var(--yellow); font-style: normal; }
.privacy-copy { padding-left: 30px; border-left: 2px solid #64706e; }
.privacy-copy .section-label { color: var(--yellow); }
.privacy-copy h2 { margin: 0 0 15px; font-size: 34px; line-height: 1.12; }
.privacy-copy > p:not(.section-label) { margin: 0; color: #d8e3e0; font-size: 17px; }
.privacy-actions { display: grid; gap: 12px; margin-top: 24px; }
.privacy-actions a { color: #ffffff; }
.privacy-actions a:hover { color: var(--yellow); }

.support-band {
  padding: 64px clamp(20px, 7vw, 104px);
  background: var(--yellow);
}

.support-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 54px;
  margin: 0 auto;
}

.support-inner h2 { margin: 0 0 11px; font-size: 34px; line-height: 1.15; }
.support-inner p:not(.section-label) { max-width: 750px; margin: 0; }
.support-actions { display: grid; justify-items: start; gap: 15px; }

.finale-band {
  position: relative;
  min-height: 640px;
  overflow: clip;
  display: grid;
  align-items: center;
  isolation: isolate;
  border-top: 5px solid var(--ink);
  background: var(--blue);
  view-timeline: --finale-chapter block;
}

.finale-art,
.finale-backdrop,
.finale-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.finale-backdrop img {
  display: block;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.finale-icon-plane {
  position: absolute;
  top: 50%;
  left: 27%;
  z-index: 3;
  width: 300px;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.finale-app-icon {
  width: 100%;
  height: auto;
  display: block;
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 17px 19px 0 var(--ink);
  will-change: scale, rotate, opacity;
}

.finale-word {
  position: absolute;
  top: 9%;
  left: 4%;
  z-index: 4;
  color: var(--yellow);
  font-size: 66px;
  font-weight: 900;
  line-height: 0.9;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 7px 8px 0 var(--red), 12px 13px 0 var(--ink);
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.finale-copy {
  position: relative;
  z-index: 6;
  width: 43%;
  margin-left: auto;
  padding: 70px 76px 78px 28px;
  will-change: translate, opacity;
}

.finale-copy::before {
  position: absolute;
  inset: -220px -90px -220px -70px;
  z-index: -1;
  background: rgb(255 250 240 / 92%);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 8% 74%, 3% 49%, 11% 22%);
  content: "";
}

.finale-copy .section-label { color: var(--red-dark); }
.finale-copy h2 {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 68px;
  font-weight: 900;
  line-height: 0.95;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 5px 6px 0 var(--yellow), 9px 10px 0 var(--ink);
  text-transform: uppercase;
}

.finale-copy > p:not(.section-label) {
  max-width: 500px;
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 700;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border-left: 4px solid var(--blue);
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.hero-status:hover { color: var(--yellow); }
.hero-status > span {
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: var(--yellow);
}
.hero-status.status-available > span { background: var(--green); }
.hero-status.status-unavailable > span { background: var(--red); }

.synology-page {
  background: var(--paper);
}

.synology-hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding: 74px clamp(28px, 7vw, 112px) 82px;
  border-bottom: 7px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
}

.synology-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.synology-hero h1 {
  margin: 0 0 26px;
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.synology-hero h1 em {
  color: var(--red);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 5px 6px 0 #ffffff, 9px 10px 0 var(--ink);
}

.synology-hero-copy > p:not(.section-label) {
  max-width: 650px;
  margin: 0;
  font-size: 21px;
  font-weight: 680;
}

.synology-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 30px;
}

.synology-scene {
  position: relative;
  min-height: 440px;
  isolation: isolate;
}

.synology-nas {
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 2;
  width: min(360px, 85%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  padding: 64px 18px 22px;
  border: 5px solid var(--ink);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 15px 17px 0 var(--ink);
  transform: rotate(-3deg);
}

.synology-nas::before,
.synology-nas::after {
  position: absolute;
  top: 21px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.synology-nas::before { right: 26px; background: var(--green); }
.synology-nas::after { right: 47px; background: var(--yellow); }

.synology-nas-name {
  position: absolute;
  top: 17px;
  left: 20px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.synology-drive {
  height: 165px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: #dbe5e3;
  box-shadow: inset 0 -19px 0 #aebfbb;
}

.synology-drive::before {
  width: 8px;
  height: 8px;
  display: block;
  margin: 13px auto 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--blue-light);
  content: "";
}

.synology-scene img {
  position: absolute;
  right: 2px;
  bottom: 10px;
  z-index: 4;
  width: 168px;
  height: 168px;
  border: 5px solid var(--ink);
  border-radius: 17px;
  box-shadow: 12px 14px 0 var(--red), 18px 21px 0 var(--ink);
  transform: rotate(5deg);
}

.synology-link-line {
  position: absolute;
  right: 106px;
  bottom: 152px;
  z-index: 3;
  width: 205px;
  height: 24px;
  border: 4px solid var(--ink);
  background: var(--blue);
  transform: rotate(25deg);
}

.synology-burst {
  position: absolute;
  top: 4px;
  right: 8px;
  z-index: 5;
  padding: 11px 15px;
  border: 4px solid var(--ink);
  background: var(--red);
  box-shadow: 6px 7px 0 var(--ink);
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
  transform: rotate(7deg);
}

.synology-steps {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 130px);
  padding: 90px clamp(28px, 7vw, 112px);
  border-bottom: 6px solid var(--ink);
  background: var(--blue);
}

.synology-steps header {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.synology-steps h2,
.synology-download h2,
.synology-privacy h2,
.synology-boundary h2 {
  margin: 0;
  font-size: clamp(39px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.synology-steps ol {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.synology-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 27px;
  border: 4px solid var(--ink);
  background: var(--surface);
  box-shadow: 8px 9px 0 var(--ink);
}

.synology-steps li:nth-child(2) {
  width: calc(100% - 18px);
  margin-left: 18px;
  background: var(--cream);
}

.synology-steps li:nth-child(3) {
  width: calc(100% - 36px);
  margin-left: 36px;
}

.synology-steps li > span {
  color: var(--red);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.9;
}

.synology-steps h3 {
  margin: 0 0 7px;
  font-size: 24px;
  line-height: 1.12;
}

.synology-steps li p { margin: 0; }

.synology-download {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(46px, 8vw, 126px);
  align-items: center;
  padding: 88px clamp(28px, 7vw, 112px);
  border-bottom: 6px solid var(--ink);
  background: var(--paper);
}

.synology-download > div:first-child > p:last-child {
  max-width: 650px;
  font-size: 18px;
}

.synology-download-panel {
  border: 4px solid var(--ink);
  background: var(--surface);
  box-shadow: 10px 11px 0 var(--yellow), 16px 18px 0 var(--ink);
}

.synology-version {
  margin: 0;
  padding: 15px 19px;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 820;
  text-transform: uppercase;
}

.synology-download-panel a {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 19px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
}

.synology-download-panel a:last-child { border-bottom: 0; }
.synology-download-panel a:hover { background: var(--yellow); }
.synology-download-panel a strong { font-size: 18px; }
.synology-download-panel a span { color: var(--muted); font-size: 14px; text-align: right; }
.synology-download-panel .synology-source-link { background: var(--cream); }

.synology-download-pending > p:last-child {
  margin: 0;
  padding: 24px 22px 28px;
}

.synology-privacy {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
  padding: 92px clamp(28px, 7vw, 112px);
  border-bottom: 6px solid var(--blue);
  background: var(--ink);
  color: #ffffff;
}

.synology-privacy-statement {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.synology-privacy-statement em {
  color: var(--blue-light);
  font-style: normal;
}

.synology-privacy > div {
  padding-left: clamp(30px, 5vw, 76px);
  border-left: 3px solid #5d6967;
}

.synology-privacy .section-label { color: var(--yellow); }
.synology-privacy h2 { color: #ffffff; }
.synology-privacy p { max-width: 760px; }
.synology-privacy a { color: var(--yellow); }
.synology-privacy a:hover { color: #ffffff; }

.synology-boundary {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr) auto;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: 78px clamp(28px, 7vw, 112px);
  background: var(--red);
}

.synology-boundary .section-label { color: var(--ink); }
.synology-boundary h2 { color: #ffffff; text-shadow: 4px 5px 0 var(--ink); }
.synology-boundary > p { max-width: 680px; color: #ffffff; font-weight: 690; }
.synology-boundary .primary-action { white-space: nowrap; }

.legal-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.legal-page h1 { margin: 0 0 8px; font-size: 44px; line-height: 1.12; }
.legal-page h2 { margin: 42px 0 12px; font-size: 25px; line-height: 1.25; }
.legal-page h3 { margin: 28px 0 8px; font-size: 20px; }
.legal-page p, .legal-page li { max-width: 74ch; }
.legal-page li + li { margin-top: 8px; }
.effective { color: var(--muted); }

.status-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.status-intro { max-width: 680px; }
.status-intro h1 { margin: 0 0 12px; font-size: 52px; line-height: 1.06; }
.status-intro > p:last-child { color: var(--muted); font-size: 19px; }

.status-panel {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 20px;
  margin: 40px 0;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 7px 7px 0 var(--ink);
}

.status-indicator {
  width: 16px;
  height: 16px;
  margin-top: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.status-available .status-indicator { background: var(--green); }
.status-unavailable .status-indicator { background: var(--red); }
.status-state { margin: 0 0 3px; color: var(--muted); font-size: 14px; font-weight: 820; text-transform: uppercase; }
.status-panel h2 { margin: 0 0 8px; font-size: 28px; line-height: 1.2; }
.status-panel p { margin: 0; }
.status-time { margin-top: 14px !important; color: var(--muted); font-size: 14px; }
.status-scope { padding-top: 30px; border-top: 3px solid var(--ink); }
.status-scope h2 { margin: 0 0 12px; font-size: 26px; }
.status-scope p { max-width: 74ch; }

.notice { padding: 16px 18px; border-left: 5px solid var(--red); background: var(--surface); }

table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 16px; }
th, td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--surface); }

footer {
  padding: 40px clamp(20px, 5vw, 72px);
  border-top: 8px solid var(--blue);
  background: var(--ink);
  color: #d8e3e0;
  font-size: 14px;
}

footer a { color: #ffffff; }
footer a:hover { color: var(--yellow); }
footer p { margin: 20px 0 0; }

@keyframes hero-backdrop-arrival {
  from { opacity: 0.55; transform: scale(1.18); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-impact-flash {
  0%, 100% { opacity: 0; }
  34% { opacity: 0.7; }
}

@keyframes hero-icon-impact {
  0% { opacity: 0; transform: scale(0.16) rotate(-18deg); }
  72% { opacity: 1; transform: scale(1.12) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(-1deg); }
}

@keyframes hero-word-impact {
  0% { opacity: 0; transform: scale(0.12); }
  70% { opacity: 1; transform: scale(1.14); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes hero-swipe-arrival {
  from { opacity: 0; scale: 0.05 1; }
  to { opacity: 1; scale: 1 1; }
}

@keyframes hero-copy-arrival {
  from { opacity: 0; transform: translateX(72px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-backdrop-scroll {
  from { transform: translate3d(0, -2%, -140px) scale(1.08); }
  to { transform: translate3d(-1%, 8%, -260px) scale(1.17); }
}

@keyframes hero-icon-scroll {
  from { transform: translate3d(-50%, -50%, 150px) rotate(0); }
  to { transform: translate3d(-52%, -96%, 340px) rotate(4deg); }
}

@keyframes hero-pow-scroll {
  from { transform: translate3d(0, 0, 215px) rotate(-8deg); }
  to { transform: translate3d(-28px, -120px, 360px) rotate(-14deg); }
}

@keyframes hero-boom-scroll {
  from { transform: translate3d(0, 0, 235px) rotate(7deg); }
  to { transform: translate3d(-34px, -180px, 390px) rotate(13deg); }
}

@keyframes hero-zap-scroll {
  from { transform: translate3d(0, 0, 75px) rotate(5deg); }
  to { transform: translate3d(22px, -94px, 150px) rotate(1deg); }
}

@keyframes hero-swipe-scroll {
  from { transform: translate3d(0, 0, 60px) rotate(-8deg) skewX(-18deg); }
  to { transform: translate3d(65px, -130px, 155px) rotate(-3deg) skewX(-18deg); }
}

@keyframes proof-enter {
  from { transform: translateY(70px) rotate(2.6deg); }
  to { transform: translateY(-8px) rotate(0.4deg); }
}

@keyframes panel-enter {
  from { opacity: 0.18; translate: 0 72px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes ladder-enter {
  from { opacity: 0.2; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes finale-backdrop-enter {
  from { transform: scale(1.13); }
  to { transform: scale(1); }
}

@keyframes finale-icon-enter {
  from { opacity: 0.12; scale: 0.38; rotate: -12deg; }
  to { opacity: 1; scale: 1; rotate: 0deg; }
}

@keyframes finale-copy-enter {
  from { opacity: 0.2; translate: 75px 0; }
  to { opacity: 1; translate: 0 0; }
}

@supports (animation-timeline: view()) {
  .hero-backdrop-plane {
    animation: hero-backdrop-scroll linear both;
    animation-timeline: --hero-chapter;
    animation-range: cover 0% cover 100%;
  }

  .hero-icon-plane {
    animation: hero-icon-scroll linear both;
    animation-timeline: --hero-chapter;
    animation-range: cover 0% cover 100%;
  }

  .hero-word-plane-pow {
    animation: hero-pow-scroll linear both;
    animation-timeline: --hero-chapter;
    animation-range: cover 0% cover 100%;
  }

  .hero-word-plane-boom {
    animation: hero-boom-scroll linear both;
    animation-timeline: --hero-chapter;
    animation-range: cover 0% cover 100%;
  }

  .hero-word-plane-zap {
    animation: hero-zap-scroll linear both;
    animation-timeline: --hero-chapter;
    animation-range: cover 0% cover 100%;
  }

  .hero-ink-swipe {
    animation: hero-swipe-scroll linear both;
    animation-timeline: --hero-chapter;
    animation-range: cover 0% cover 100%;
  }

  .proof-frame {
    animation: proof-enter linear both;
    animation-timeline: --proof-chapter;
    animation-range: entry 5% cover 45%;
  }

  .experience-feature {
    animation: panel-enter linear both;
    animation-timeline: --experience-chapter;
    animation-range: entry 8% cover 42%;
  }

  .experience-feature:nth-child(2) { animation-range: entry 14% cover 48%; }
  .experience-feature:nth-child(3) { animation-range: entry 20% cover 54%; }

  .caption-ladder li {
    animation: ladder-enter linear both;
    animation-timeline: --caption-chapter;
    animation-range: entry 8% cover 44%;
  }

  .caption-ladder li:nth-child(2) { animation-range: entry 15% cover 51%; }
  .caption-ladder li:nth-child(3) { animation-range: entry 22% cover 58%; }

  .finale-backdrop img {
    animation: finale-backdrop-enter linear both;
    animation-timeline: --finale-chapter;
    animation-range: entry 0% cover 60%;
  }

  .finale-app-icon {
    animation: finale-icon-enter linear both;
    animation-timeline: --finale-chapter;
    animation-range: entry 4% cover 48%;
  }

  .finale-copy {
    animation: finale-copy-enter linear both;
    animation-timeline: --finale-chapter;
    animation-range: entry 8% cover 50%;
  }
}

@media (max-width: 1060px) {
  .hero-icon-plane { left: 25%; width: 270px; }
  .hero-word-plane b { font-size: 44px; }
  .hero-word-plane-zap { left: 42%; }
  .hero-word-plane-zap b { font-size: 32px; }
  .hero-chapter h1 span { font-size: 38px; }
  .hero-chapter h1 strong { font-size: 76px; }
  .hero-kicker { font-size: 27px; }
  .hero-body { font-size: 17px; }
  .hero-content { width: 46%; padding-right: 32px; }
  .proof-inner { grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr); }
  .proof-backdrop { left: 46%; }
  .proof-copy h2, .experience-heading h2, .caption-intro h2 { font-size: 41px; }
  .experience-inner { grid-template-columns: 1fr; gap: 38px; }
  .experience-heading > p:last-child { max-width: 620px; }
  .finale-icon-plane { left: 25%; width: 260px; }
  .finale-copy { width: 47%; padding-right: 42px; }
  .finale-copy h2 { font-size: 58px; }
  .synology-hero { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr); gap: 48px; }
  .synology-nas { width: 320px; }
  .synology-scene img { width: 145px; height: 145px; }
  .synology-boundary { grid-template-columns: 1fr 1fr; }
  .synology-boundary .primary-action { justify-self: start; }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; }
  .site-header { min-height: var(--header-height); gap: 12px; padding: 9px 16px; }
  .brand { font-size: 18px; }
  .brand img { width: 42px; height: 42px; }
  .site-header nav { flex-wrap: nowrap; justify-content: flex-end; gap: 13px; font-size: 12px; }
  .site-header nav a { min-height: 44px; display: inline-flex; align-items: center; }

  .hero-chapter, .hero-stage { min-height: max(540px, calc(100svh - var(--header-height) - 34px)); }
  .hero-stage { display: block; background: var(--blue); }
  .hero-backdrop-plane { inset: -3%; }
  .hero-backdrop img { object-position: center top; }
  .hero-icon-plane { top: 27%; left: 50%; width: 210px; }
  .hero-app-icon { border-width: 4px; border-radius: 14px; box-shadow: 11px 13px 0 var(--ink); }
  .hero-word-plane b { font-size: 34px; -webkit-text-stroke-width: 2px; }
  .hero-word-plane-pow { top: 8%; left: 4%; animation: none; transform: rotate(-7deg); }
  .hero-word-plane-boom { right: 4%; bottom: auto; left: auto; top: 37%; animation: none; transform: rotate(7deg); }
  .hero-word-plane-zap { display: none; }
  .hero-ink-swipe { display: none; }

  .hero-content {
    position: absolute;
    inset: 51% 0 auto;
    width: 100%;
    margin: 0;
    padding: 30px 20px 46px;
    color: var(--ink);
  }

  .hero-content::before {
    inset: -20px -10px -60px;
    border-top: 4px solid var(--ink);
    background: rgb(255 250 240 / 95%);
    clip-path: polygon(0 5%, 8% 2%, 17% 6%, 27% 1%, 38% 5%, 49% 2%, 61% 6%, 73% 1%, 85% 5%, 100% 2%, 100% 100%, 0 100%);
  }
  .hero-promise { margin-bottom: 8px; font-size: 13px; }
  .hero-chapter h1 span { color: var(--ink); font-size: 29px; text-shadow: 2px 2px 0 #ffffff; }
  .hero-chapter h1 strong { font-size: 58px; text-shadow: 4px 5px 0 var(--yellow), 7px 8px 0 var(--ink); }
  .hero-kicker { margin-top: 17px; color: var(--ink); font-size: 22px; text-shadow: none; }
  .hero-kicker em { color: var(--blue-dark); }
  .hero-body { max-width: 470px; color: var(--ink); font-size: 15px; text-shadow: none; }
  .hero-actions { gap: 10px 17px; margin-top: 16px; }
  .primary-action { min-height: 45px; padding: 8px 13px; font-size: 14px; }
  .secondary-action { color: var(--ink); font-size: 14px; text-shadow: none; }
  .chapter-cue { right: 18px; bottom: 7px; color: var(--ink); font-size: 10px; }
  .chapter-cue span:last-child { color: var(--red); }

  .broadcast-ticker { grid-template-columns: repeat(3, 1fr); }
  .broadcast-ticker li { min-height: 45px; padding: 8px; font-size: 12px; }
  .broadcast-ticker li:nth-child(3) { border-right: 0; }
  .broadcast-ticker li:nth-child(-n + 3) { border-bottom: 1px solid #56615f; }
  .broadcast-ticker li:nth-child(4) { grid-column: 1 / span 1; }
  .broadcast-ticker li:nth-child(5) { grid-column: 2 / span 2; }

  .chapter-slam {
    min-height: 70px;
    padding: 12px 14px;
    border-block-width: 3px;
    font-size: 17px;
  }
  .chapter-slam::before { inset: -30px 31% -30px 28%; border-inline-width: 3px; }
  .chapter-slam span { text-shadow: 2px 3px 0 var(--ink); }
  .chapter-slam span:nth-child(2) { text-shadow: 2px 3px 0 #ffffff; }
  .chapter-slam-words span:nth-child(2) { text-shadow: 2px 3px 0 var(--ink); }

  .proof-band { padding: 64px 20px 74px; }
  .proof-backdrop { inset: auto 0 0; height: 27%; border-top: 3px solid var(--ink); border-left: 0; }
  .proof-inner { grid-template-columns: 1fr; gap: 60px; }
  .proof-copy h2 { font-size: 38px; }
  .proof-copy > p:not(.section-label) { font-size: 17px; }
  .proof-notes li { grid-template-columns: 112px 1fr; gap: 13px; }
  .product-proof { width: min(410px, calc(100% - 22px)); }
  .proof-sheet-yellow { right: -13px; }
  .proof-sheet-red { left: -13px; }
  .proof-frame { box-shadow: 7px 8px 0 var(--ink); transform: rotate(0.75deg); }

  .experience-band { padding: 62px 20px 72px; }
  .experience-heading h2 { font-size: 38px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-feature { grid-column: auto; min-height: 0; transform: none; }
  .feature-room { min-height: 0; }

  .caption-band { padding: 64px 20px 74px; }
  .caption-inner { grid-template-columns: 1fr; gap: 38px; }
  .caption-intro h2 { font-size: 38px; }
  .caption-ladder { padding-left: 8px; }
  .caption-ladder li { min-height: 0; grid-template-columns: 46px 1fr; padding: 20px 17px; box-shadow: 5px 5px 0 var(--ink); }
  .caption-ladder li:nth-child(2) { width: calc(100% - 8px); transform: translateX(8px); }
  .caption-ladder li:nth-child(3) { width: calc(100% - 16px); transform: translateX(16px); }
  .caption-release { margin-top: 2px; }

  .privacy-band { padding: 62px 20px 68px; }
  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .privacy-statement { font-size: 43px; }
  .privacy-copy { padding: 26px 0 0; border-top: 2px solid #64706e; border-left: 0; }

  .support-band { padding: 54px 20px; }
  .support-inner { grid-template-columns: 1fr; gap: 29px; }
  .support-inner h2 { font-size: 31px; }

  .finale-band {
    min-height: max(610px, calc(100svh - var(--header-height)));
    display: block;
  }
  .finale-backdrop img { object-position: center top; }
  .finale-icon-plane { top: 27%; left: 50%; width: 190px; }
  .finale-app-icon { border-width: 4px; border-radius: 14px; box-shadow: 11px 13px 0 var(--ink); }
  .finale-word {
    top: 6%;
    left: 5%;
    font-size: 44px;
    -webkit-text-stroke-width: 2px;
    text-shadow: 5px 6px 0 var(--red), 8px 9px 0 var(--ink);
  }
  .finale-copy {
    position: absolute;
    inset: 51% 0 auto;
    width: 100%;
    margin: 0;
    padding: 34px 20px 52px;
  }
  .finale-copy::before {
    inset: -20px -10px -70px;
    border-top: 4px solid var(--ink);
    background: rgb(255 250 240 / 96%);
    clip-path: polygon(0 5%, 8% 2%, 17% 6%, 27% 1%, 38% 5%, 49% 2%, 61% 6%, 73% 1%, 85% 5%, 100% 2%, 100% 100%, 0 100%);
  }
  .finale-copy h2 { font-size: 51px; text-shadow: 4px 5px 0 var(--yellow), 7px 8px 0 var(--ink); }
  .finale-copy > p:not(.section-label) { margin-bottom: 22px; font-size: 17px; }

  .synology-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 20px 62px;
  }
  .synology-hero h1 { font-size: clamp(48px, 14vw, 67px); }
  .synology-hero-copy > p:not(.section-label) { font-size: 17px; }
  .synology-scene { width: min(440px, 100%); min-height: 390px; margin: 0 auto; }
  .synology-nas { top: 60px; left: 1%; width: 300px; padding: 56px 14px 18px; }
  .synology-drive { height: 140px; }
  .synology-scene img { right: 3%; bottom: 7px; width: 130px; height: 130px; }
  .synology-link-line { right: 77px; bottom: 127px; width: 175px; }
  .synology-burst { top: 0; right: 4%; font-size: 21px; }

  .synology-steps,
  .synology-download,
  .synology-privacy,
  .synology-boundary {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 62px 20px 70px;
  }
  .synology-steps header { position: static; }
  .synology-steps li { grid-template-columns: 52px 1fr; gap: 13px; padding: 22px 18px; }
  .synology-steps li:nth-child(2) { width: calc(100% - 8px); margin-left: 8px; }
  .synology-steps li:nth-child(3) { width: calc(100% - 16px); margin-left: 16px; }
  .synology-steps li > span { font-size: 44px; }
  .synology-steps h3 { font-size: 21px; }
  .synology-download-panel { box-shadow: 7px 8px 0 var(--yellow), 11px 13px 0 var(--ink); }
  .synology-download-panel a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .synology-download-panel a span { text-align: left; }
  .synology-privacy > div { padding: 30px 0 0; border-top: 3px solid #5d6967; border-left: 0; }
  .synology-boundary { background: var(--red); }

  .legal-page h1 { font-size: 36px; }
  .status-page { padding: 48px 0 64px; }
  .status-intro h1 { font-size: 40px; }
  .status-panel { grid-template-columns: 16px minmax(0, 1fr); gap: 14px; padding: 22px 18px; box-shadow: 5px 5px 0 var(--ink); }
  .status-indicator { width: 14px; height: 14px; }
  table, thead, tbody, tr, th, td { display: block; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  td { padding: 4px 0; border: 0; }
  td::before { content: attr(data-label) ": "; font-weight: 700; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
}

@media (max-width: 390px) {
  .site-header { gap: 8px; padding-inline: 12px; }
  .site-header nav { gap: 9px; font-size: 11px; }
  .hero-content { padding-top: 22px; }
  .hero-chapter h1 span { font-size: 25px; }
  .hero-chapter h1 strong { font-size: 49px; }
  .hero-kicker { font-size: 20px; }
  .hero-body { font-size: 14px; }
  .chapter-slam { font-size: 15px; }
  .finale-word { font-size: 38px; }
  .finale-copy h2 { font-size: 45px; }
}

@media (max-width: 760px) and (max-height: 720px) {
  .hero-icon-plane { top: 22%; width: 156px; }
  .hero-word-plane b { font-size: 28px; }
  .hero-word-plane-boom { top: 35%; }
  .hero-content { inset-block-start: 39%; padding-top: 24px; }
  .hero-chapter h1 span { font-size: 22px; }
  .hero-chapter h1 strong { font-size: 43px; }
  .hero-kicker { margin-top: 13px; font-size: 18px; }
  .hero-body { font-size: 13px; line-height: 1.4; }
  .hero-actions { margin-top: 12px; }
  .finale-icon-plane { top: 22%; width: 155px; }
  .finale-copy { inset-block-start: 40%; padding-top: 25px; }
  .finale-copy h2 { font-size: 41px; }
  .finale-copy > p:not(.section-label) { font-size: 15px; line-height: 1.42; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content,
  .hero-backdrop img,
  .hero-impact-flash,
  .hero-app-icon,
  .hero-word-plane b,
  .hero-ink-swipe,
  .hero-backdrop-plane,
  .hero-icon-plane,
  .hero-word-plane,
  .proof-frame,
  .experience-feature,
  .caption-ladder li,
  .finale-backdrop img,
  .finale-app-icon,
  .finale-copy { animation: none; }
  .primary-action, .proof-frame, .experience-feature { transition: none; }
  .product-proof:hover .proof-frame, .experience-feature:hover, .primary-action:hover { transform: none; }
}
