:root {
  color-scheme: light;
  --canvas: #eef5ff;
  --paper: #ffffff;
  --paper-glass: rgba(255, 255, 255, 0.88);
  --ink: #182034;
  --ink-soft: #5f6c82;
  --muted: #8995a8;
  --line: #dce6f4;
  --line-strong: #c8d7eb;
  --blue: #2f82ff;
  --blue-strong: #1269e8;
  --blue-soft: #edf5ff;
  --green: #3eb870;
  --green-soft: #ecf9f2;
  --amber: #c37b00;
  --amber-soft: #fff6df;
  --shadow: 0 22px 60px rgba(74, 111, 170, 0.14);
  --shadow-soft: 0 12px 30px rgba(74, 111, 170, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC",
    "Helvetica Neue", Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-width: 320px;
  margin: 0;
  background-color: var(--canvas);
  background-image: url("assets/workspace-backdrop.png");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbff;
  color: var(--blue-strong);
  font-size: 12px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 13px;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(199, 216, 239, 0.78);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(64, 102, 160, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(47, 130, 255, 0.27);
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 17px;
  line-height: 1.3;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-meta span,
.header-meta a {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
}

.header-meta span:first-child {
  border-color: #cfefdd;
  background: var(--green-soft);
  color: #348c5b;
}

.header-meta a:hover {
  border-color: #9fc4f7;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

main {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(2200px, 100%);
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 112px) clamp(12px, 2vw, 28px);
}

.hero-copy {
  max-width: 760px;
  justify-self: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: #6e7b90;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease,
    color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 22px rgba(47, 130, 255, 0.25);
}

.button-primary:hover {
  border-color: var(--blue-strong);
  background: var(--blue-strong);
}

.button-secondary:hover {
  border-color: #9fc4f7;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 16px 0 0;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-weight: 720;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  background: var(--paper-glass);
  box-shadow: var(--shadow);
  transform: rotate(0.75deg);
  backdrop-filter: blur(20px);
}

.hero-visual::before {
  position: absolute;
  inset: 6% -3% -5% 9%;
  z-index: -1;
  border: 1px solid rgba(188, 211, 242, 0.65);
  border-radius: var(--radius-lg);
  background: rgba(222, 236, 255, 0.72);
  content: "";
  transform: rotate(-2.4deg);
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
}

.hero-visual figcaption,
.screenshot-card figcaption {
  padding: 12px 4px 1px;
  color: var(--muted);
  font-size: 12px;
}

.route-strip {
  position: sticky;
  top: 80px;
  z-index: 16;
  margin: 0 0 42px;
  padding: 12px 18px 13px;
  border: 1px solid rgba(218, 229, 244, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.route-strip,
.tutorial-layout,
.faq-section {
  width: min(1680px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.route-progress {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e9f4;
}

.route-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 180ms ease;
}

.route-strip ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.route-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.route-strip a:hover {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.route-strip b {
  color: var(--blue);
  font-size: 12px;
}

.tutorial-layout {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lesson-nav {
  position: sticky;
  top: 174px;
  padding: 18px;
  border: 1px solid rgba(218, 229, 244, 0.9);
  border-radius: 22px;
  background: var(--paper-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.lesson-nav > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.lesson-nav ol {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lesson-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 9px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.lesson-nav a:hover,
.lesson-nav a.is-active {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.lesson-nav a span {
  min-width: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.lesson-nav a.is-active span {
  color: var(--blue);
}

.nav-status {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
  padding: 12px 9px 0;
  border-top: 1px solid var(--line);
}

.nav-status span {
  color: var(--blue-strong);
  font-size: 20px;
  font-weight: 780;
}

.nav-status small {
  color: var(--muted);
  font-size: 12px;
}

.lesson-stack {
  display: grid;
  gap: 28px;
}

.lesson {
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid rgba(218, 229, 244, 0.9);
  border-radius: var(--radius-lg);
  background: var(--paper-glass);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 172px;
  backdrop-filter: blur(18px);
}

.lesson-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 30px;
}

.lesson-heading h2,
.faq-section h2,
.lesson-complete h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.lesson-heading p:last-child {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.lesson-number {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid #a9cdfd;
  border-radius: 17px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 17px;
  font-weight: 800;
  place-items: center;
}

.module-grid,
.tip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.module-grid article,
.tip-row article,
.queue-guide article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(249, 252, 255, 0.8);
}

.module-grid span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 760;
}

.module-grid h3,
.tip-row h3,
.queue-guide h3,
.action-list h3,
.annotation-notes h3,
.completion-checklist h3 {
  margin: 9px 0 5px;
  font-size: 15px;
  line-height: 1.45;
}

.module-grid p,
.tip-row p,
.queue-guide p,
.action-list p,
.annotation-notes p,
.completion-checklist p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.notice,
.warning {
  margin-top: 20px;
  padding: 17px 19px;
  border: 1px solid #ccead9;
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: var(--green-soft);
}

.notice p,
.warning p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.warning {
  border-color: #f2d8a4;
  border-left-color: #e09a1d;
  background: var(--amber-soft);
}

.instruction-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: start;
}

.action-list,
.annotation-notes,
.completion-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-list li,
.annotation-notes li,
.completion-checklist li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(249, 252, 255, 0.76);
}

.action-list li > span,
.annotation-notes li > span {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.action-list h3,
.annotation-notes h3 {
  margin-top: 0;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(74, 111, 170, 0.1);
}

.screenshot-card img {
  width: 100%;
  border-radius: 13px;
}

.tip-row {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.format-picker {
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(249, 252, 255, 0.76);
}

.format-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.format-tabs button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.format-tabs button:last-child {
  border-right: 0;
}

.format-tabs button:hover,
.format-tabs button.is-active {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.format-tabs button.is-active {
  box-shadow: inset 0 -3px var(--blue);
  font-weight: 760;
}

.format-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.format-panel.is-active {
  display: grid;
}

.format-panel h3 {
  margin: 3px 0 7px;
  font-size: 22px;
}

.format-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.format-kicker {
  color: var(--blue-strong) !important;
  font-size: 12px;
  font-weight: 720;
}

.format-panel dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.format-panel dl div {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.format-panel dl div:nth-child(2n) {
  border-right: 0;
}

.format-panel dl div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.format-panel dt {
  color: var(--muted);
  font-size: 12px;
}

.format-panel dd {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 740;
}

.annotated-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(340px, 1.28fr);
  gap: 24px;
  align-items: center;
}

.preview-layout {
  grid-template-columns: minmax(520px, 1.35fr) minmax(280px, 0.65fr);
}

.annotated-shot {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(74, 111, 170, 0.1);
}

.annotated-shot img {
  width: 100%;
  border-radius: 13px;
}

.compact-shot {
  max-width: 390px;
  justify-self: center;
}

.shot-marker {
  position: absolute;
  top: var(--marker-y);
  left: var(--marker-x);
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(18, 105, 232, 0.34);
  cursor: pointer;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: background-color 150ms ease, transform 150ms ease;
}

.shot-marker:hover,
.shot-marker:focus-visible,
.shot-marker.is-active {
  background: var(--blue-strong);
  transform: translate(-50%, -50%) scale(1.12);
}

.shot-marker:focus-visible,
.format-tabs button:focus-visible,
.button:focus-visible,
.lesson-nav a:focus-visible,
.route-strip a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 130, 255, 0.28);
  outline-offset: 3px;
}

.annotation-notes li {
  transition: border-color 150ms ease, background-color 150ms ease,
    box-shadow 150ms ease;
}

.annotation-notes li.is-active {
  border-color: #9fc4f7;
  background: var(--blue-soft);
  box-shadow: 0 8px 20px rgba(47, 130, 255, 0.09);
}

.result-shot {
  padding: 12px;
}

.completion-checklist {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.completion-checklist li {
  grid-template-columns: 1fr;
}

.completion-checklist li > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.completion-checklist h3 {
  margin: 0 0 5px;
}

.queue-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  gap: 22px;
  align-items: start;
}

.queue-guide > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.queue-shot {
  max-width: 430px;
  justify-self: center;
}

.lesson-complete {
  margin-top: 30px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid #b9d6fd;
  border-radius: 22px;
  background: var(--blue-soft);
  text-align: center;
}

.lesson-complete p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px auto 24px;
  color: var(--ink-soft);
}

.faq-section {
  display: block;
  margin: 38px auto;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(218, 229, 244, 0.9);
  border-radius: var(--radius-lg);
  background: var(--paper-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(1040px, 100%);
  margin: 28px auto 0;
  text-align: left;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(249, 252, 255, 0.82);
}

.faq-list summary {
  padding: 16px 18px;
  font-weight: 720;
  cursor: pointer;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.faq-list p {
  margin: 0;
  padding: 16px 18px 19px;
  color: var(--ink-soft);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1680px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 22px 24px;
  border: 1px solid rgba(218, 229, 244, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

footer p {
  display: grid;
  margin: 0;
}

footer p span {
  color: var(--muted);
  font-size: 12px;
}

footer > a {
  color: var(--blue-strong);
  font-weight: 720;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    max-width: 980px;
  }

  .tutorial-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
  }

  .instruction-grid,
  .annotated-layout,
  .preview-layout,
  .queue-guide {
    grid-template-columns: 1fr;
  }

  .action-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-list li {
    grid-template-columns: 1fr;
  }

  .compact-shot {
    max-width: 430px;
  }

  .wide-shot {
    max-width: 760px;
    justify-self: center;
  }

  .annotation-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .queue-guide > div {
    grid-template-columns: repeat(4, 1fr);
  }

  .completion-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .header-meta span {
    display: none;
  }

  main {
    width: min(100% - 20px, 760px);
  }

  .hero {
    padding-top: 50px;
  }

  .route-strip {
    top: 70px;
    overflow-x: auto;
    padding-inline: 10px;
    border-radius: 15px;
  }

  .route-strip ol {
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    width: max-content;
  }

  .route-strip a {
    justify-content: flex-start;
    padding-inline: 10px;
  }

  .tutorial-layout {
    display: block;
  }

  .lesson-nav {
    display: none;
  }

  .lesson {
    scroll-margin-top: 120px;
  }

  .module-grid,
  .tip-row,
  .three-up {
    grid-template-columns: 1fr;
  }

  .format-panel {
    grid-template-columns: 1fr;
  }

  .queue-guide > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small,
  .header-meta a {
    display: none;
  }

  .site-header {
    justify-content: center;
  }

  .hero {
    gap: 38px;
    padding-inline: 2px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    padding: 8px;
    border-radius: 20px;
    transform: none;
  }

  .hero-visual::before {
    display: none;
  }

  .route-strip span {
    display: none;
  }

  .route-strip ol {
    grid-template-columns: repeat(6, 44px);
  }

  .route-strip a {
    justify-content: center;
  }

  .lesson {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .lesson-heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .lesson-number {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 14px;
  }

  .lesson-heading h2,
  .faq-section h2,
  .lesson-complete h2 {
    font-size: 28px;
  }

  .action-list,
  .annotation-notes,
  .completion-checklist,
  .queue-guide > div {
    grid-template-columns: 1fr;
  }

  .format-tabs button {
    padding: 8px 4px;
    font-size: 12px;
  }

  .format-panel {
    padding: 18px 14px;
  }

  .format-panel dl {
    grid-template-columns: 1fr;
  }

  .format-panel dl div,
  .format-panel dl div:nth-child(2n),
  .format-panel dl div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .format-panel dl div:last-child {
    border-bottom: 0;
  }

  .shot-marker {
    width: 28px;
    height: 28px;
  }

  .faq-section {
    padding: 28px 16px;
  }

  footer {
    justify-content: center;
    text-align: center;
  }

  footer > a {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
