:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #080808;
  --muted: #596170;
  --line: #080808;
  --soft: #f2f1ef;
  --red: #ef5b68;
  --blue: #4f83f1;
  --yellow: #ffd35a;
  --green: #8ce15f;
  --purple: #6352ef;
  --radius: 8px;
  --heavy: 5px;
  --section: min(1180px, calc(100% - 42px));
  --shadow: 10px 12px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.theme-blue {
  --red: #4f83f1;
  --blue: #ef5b68;
  --yellow: #8ce15f;
}

body.theme-yellow {
  --red: #ffd35a;
  --blue: #6352ef;
  --yellow: #ef5b68;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
pre {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 7.7vw, 104px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 5px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(940px, calc(100% - 40px));
  min-height: 72px;
  margin: 18px auto 0;
  padding: 12px 18px;
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 0 var(--ink);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.brand-ring {
  display: block;
  width: 38px;
  height: 38px;
  border: 10px solid var(--ink);
  border-radius: 50%;
}

.site-nav {
  gap: 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--red);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.theme-button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.theme-button span {
  width: 22px;
  height: 22px;
  background:
    linear-gradient(90deg, var(--red) 0 33%, var(--blue) 33% 66%, var(--yellow) 66% 100%);
  border: 2px solid #fff;
  border-radius: 50%;
}

.section-shell {
  width: var(--section);
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.88fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 92px;
}

.hero-subtitle,
.section-heading p,
.service-card p,
.case-copy p,
.case-detail p,
.jump-card p,
.experience-title p,
.timeline p,
.closing-card p,
.console-panel p,
.workflow-step p {
  color: var(--muted);
  font-size: 18px;
}

.eyebrow,
.mini-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight {
  display: inline-block;
  padding: 0 0.18em 0.05em;
  color: #fff;
}

.highlight.red {
  background: var(--red);
}

.highlight.blue {
  background: var(--blue);
}

.highlight.yellow {
  color: var(--ink);
  background: var(--yellow);
}

.hero-actions,
.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 30px;
  border: var(--heavy) solid var(--line);
  border-radius: 18px;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-button {
  color: white;
  background: var(--ink);
  box-shadow: 0 7px 0 #000;
}

.secondary-button {
  color: var(--ink);
  background: var(--paper);
}

.primary-button:hover,
.secondary-button:hover,
.jump-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 18px;
  background: var(--soft);
  border-bottom: var(--heavy) solid var(--line);
}

.console-top span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--line);
  border-radius: 50%;
}

.console-top span:nth-child(1) {
  background: var(--red);
}

.console-top span:nth-child(2) {
  background: var(--yellow);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-top strong {
  margin-left: auto;
  font-size: 14px;
  font-weight: 950;
}

.console-body {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.console-panel {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 18px;
}

.console-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.mode-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mode-button,
.prompt-chip,
#runPromptButton {
  min-height: 48px;
  padding: 0 14px;
  background: var(--paper);
  border: 4px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 950;
}

.mode-button.active,
.prompt-chip.active,
#runPromptButton {
  color: white;
  background: var(--ink);
}

.avatar-illustration {
  display: grid;
  place-items: center;
  padding: 10px 0 4px;
}

.avatar-illustration svg {
  width: min(100%, 420px);
  height: auto;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: var(--heavy) solid var(--line);
  border-bottom: var(--heavy) solid var(--line);
}

.metric-item {
  min-height: 150px;
  padding: 28px;
  background: var(--soft);
  border-right: var(--heavy) solid var(--line);
}

.metric-item:last-child {
  border-right: 0;
}

.metric-item strong {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  white-space: nowrap;
}

.metric-item span:last-child {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 900;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.section-heading.center {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.policy-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.policy-map {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background: var(--ink);
  border-right: var(--heavy) solid var(--line);
}

.system-node {
  min-height: 92px;
  padding: 16px 18px;
  color: var(--paper);
  background: transparent;
  border: 4px solid var(--paper);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
}

.system-node span {
  display: block;
  margin-bottom: 8px;
  color: #b9c0ca;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-node.active {
  color: var(--ink);
  background: var(--yellow);
}

.system-node.active span {
  color: rgba(8, 8, 8, 0.62);
}

.policy-output {
  min-height: 438px;
  padding: 38px;
  background: var(--soft);
}

.policy-output span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 16px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.policy-output h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 52px);
}

.policy-output p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.policy-output ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.policy-output li {
  min-height: 86px;
  padding: 16px;
  background: var(--paper);
  border: 4px solid var(--line);
  border-radius: 16px;
  font-weight: 900;
}

.policy-thesis {
  display: block;
  margin-top: 28px;
  padding: 34px;
  background: #fff8dd;
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.policy-thesis:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.policy-thesis span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-thesis p {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
}

.policy-thesis strong {
  display: inline-flex;
  margin-top: 30px;
  font-size: 20px;
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.5fr) minmax(330px, 0.85fr) minmax(360px, 1fr);
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.prompt-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background: var(--yellow);
  border-right: var(--heavy) solid var(--line);
}

.prompt-chip {
  text-align: left;
  background: var(--paper);
}

.prompt-blueprint {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 26px;
  background: var(--paper);
  border-right: var(--heavy) solid var(--line);
}

.prompt-blueprint-head {
  padding-bottom: 18px;
  border-bottom: 4px solid var(--line);
}

.prompt-blueprint-head span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-blueprint-head h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2vw, 32px);
}

.prompt-blueprint-head p,
.blueprint-card p {
  color: var(--muted);
}

.prompt-blueprint-grid {
  display: grid;
  gap: 12px;
}

.blueprint-card {
  padding: 18px;
  background: var(--soft);
  border: 4px solid var(--line);
  border-radius: 16px;
}

.blueprint-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blueprint-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.28;
}

.output-panel {
  min-width: 0;
  background: var(--ink);
  color: white;
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px 22px;
  border-bottom: var(--heavy) solid var(--paper);
}

.terminal-head span {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#runPromptButton {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--paper);
}

#promptOutput {
  min-height: 360px;
  margin: 0;
  padding: 28px;
  overflow: auto;
  color: #ecfdf5;
  font: 700 15px/1.75 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  min-height: 540px;
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 270px;
  background: var(--soft);
  border-bottom: var(--heavy) solid var(--line);
}

.service-art span {
  position: absolute;
  display: block;
  border: var(--heavy) solid var(--line);
  border-radius: 18px;
}

.research-art span:nth-child(1) {
  width: 210px;
  height: 146px;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--ink);
}

.research-art span:nth-child(2) {
  width: 78px;
  height: 78px;
  right: 62px;
  top: 78px;
  background: var(--blue);
}

.research-art span:nth-child(3) {
  width: 0;
  height: 0;
  right: 52px;
  bottom: 60px;
  background: transparent;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 58px solid var(--yellow);
  border-right: 0;
  border-radius: 0;
  transform: rotate(-18deg);
}

.content-art span:nth-child(1) {
  width: 150px;
  height: 220px;
  background: var(--paper);
}

.content-art span:nth-child(2) {
  width: 146px;
  height: 58px;
  background: var(--red);
  box-shadow: 12px 12px 0 rgba(239, 91, 104, 0.45);
}

.content-art span:nth-child(3) {
  width: 250px;
  height: 250px;
  border-color: var(--purple);
  background: transparent;
  border-radius: 0;
}

.automation-art span:nth-child(1) {
  width: 140px;
  height: 210px;
  left: 68px;
  background: var(--paper);
  border-radius: 70px;
}

.automation-art span:nth-child(2) {
  width: 110px;
  height: 82px;
  left: 96px;
  top: 104px;
  background: var(--green);
}

.automation-art span:nth-child(3) {
  width: 74px;
  height: 210px;
  right: 66px;
  background: var(--paper);
}

.service-card h3,
.service-card p {
  padding-right: 30px;
  padding-left: 30px;
}

.service-card h3 {
  margin-top: 34px;
}

.case-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.note-lab {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  overflow: hidden;
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.note-list {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background: var(--ink);
}

.note-button {
  min-height: 64px;
  padding: 0 18px;
  color: var(--paper);
  background: transparent;
  border: 4px solid var(--paper);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
}

.note-button.active {
  color: var(--ink);
  background: var(--yellow);
}

.note-output {
  min-height: 520px;
  padding: 34px;
  background: var(--paper);
}

.note-output-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: var(--heavy) solid var(--line);
}

.note-output-header span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  color: white;
  background: var(--red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.note-score {
  display: grid;
  place-items: center;
  min-width: 110px;
  min-height: 110px;
  background: var(--blue);
  border: var(--heavy) solid var(--line);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  font-weight: 950;
}

.note-video-link {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--heavy) solid var(--line);
  border-radius: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.note-video-link:hover {
  transform: translateY(-3px);
  box-shadow: 6px 7px 0 var(--ink);
}

.note-video-link span {
  color: rgba(8, 8, 8, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-video-link strong {
  font-size: 18px;
}

.note-video-link em {
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.note-analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.note-analysis-grid article {
  min-height: 170px;
  padding: 22px;
  background: var(--soft);
  border: 4px solid var(--line);
  border-radius: 18px;
}

.note-analysis-grid h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.note-analysis-grid p {
  color: var(--muted);
}

.case-copy {
  padding: 46px;
  background: var(--paper);
}

.pill {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 8px 18px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 950;
}

.case-detail {
  min-height: 460px;
  padding: 46px;
  background: var(--purple);
  color: white;
  border-left: var(--heavy) solid var(--line);
}

.case-detail h3,
.case-detail p {
  color: white;
}

.case-detail ul {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-detail li {
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 16px;
  font-weight: 900;
}

.case-tab.active {
  background: var(--yellow);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.jump-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 34px;
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.jump-card:nth-child(1) {
  background: #fff6f7;
}

.jump-card:nth-child(2) {
  background: #f2f6ff;
}

.jump-card:nth-child(3) {
  background: #fff8dd;
}

.jump-card span {
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jump-card strong {
  align-self: end;
  margin-top: 36px;
  font-size: 20px;
}

.experience-section {
  color: white;
  background: var(--ink);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: start;
}

.experience-title {
  position: sticky;
  top: 130px;
}

.experience-title p {
  color: #aeb5c1;
}

.timeline {
  display: grid;
  gap: 28px;
}

.timeline article {
  min-height: 220px;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border: var(--heavy) solid var(--line);
  border-radius: 0 28px 28px 28px;
}

.timeline span {
  display: block;
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 950;
}

.closing-section {
  padding-bottom: 110px;
}

.closing-card {
  padding: clamp(34px, 6vw, 72px);
  background: var(--yellow);
  border: var(--heavy) solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    width: min(100% - 28px, 940px);
  }

  .site-nav {
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero,
  .case-card,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .lab-grid {
    grid-template-columns: 1fr;
  }

  .prompt-panel,
  .prompt-blueprint {
    border-right: 0;
    border-bottom: var(--heavy) solid var(--line);
  }

  .experience-title {
    position: static;
  }

  .service-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --section: min(100% - 26px, 1180px);
    --heavy: 4px;
    --shadow: 7px 8px 0 var(--ink);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    top: 10px;
    margin-top: 10px;
    border-radius: 18px;
  }

  .theme-button {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .section-shell {
    padding: 64px 0;
  }

  .hero {
    gap: 38px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 74px);
  }

  .hero-actions,
  .case-actions {
    flex-direction: column;
  }

  .metrics-strip {
    grid-template-columns: 1fr;
  }

  .metric-item {
    border-right: 0;
    border-bottom: var(--heavy) solid var(--line);
  }

  .metric-item:last-child {
    border-bottom: 0;
  }

  .lab-grid {
    grid-template-columns: 1fr;
  }

  .policy-board {
    grid-template-columns: 1fr;
  }

  .policy-map {
    border-right: 0;
    border-bottom: var(--heavy) solid var(--line);
  }

  .policy-output {
    padding: 28px;
  }

  .policy-output ul {
    grid-template-columns: 1fr;
  }

  .note-lab,
  .note-analysis-grid,
  .link-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .prompt-panel {
    border-right: 0;
    border-bottom: var(--heavy) solid var(--line);
  }

  .prompt-blueprint {
    border-right: 0;
    border-bottom: var(--heavy) solid var(--line);
  }

  .mode-buttons {
    grid-template-columns: 1fr;
  }

  .case-copy,
  .case-detail {
    padding: 28px;
  }

  .case-detail {
    border-left: 0;
    border-top: var(--heavy) solid var(--line);
  }

  .note-list {
    border-bottom: var(--heavy) solid var(--line);
  }

  .note-output-header {
    flex-direction: column;
  }

  .note-video-link {
    grid-template-columns: 1fr;
  }

  .note-video-link em {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
