@font-face {
  font-family: Noto Sans;
  src: url("./NotoSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Noto Sans;
  src: url("./NotoSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}
:root {
  --canvas: #f5f5f7;
  --paper: #fff;
  --ink: #1d1d1f;
  --secondary: #6e6e73;
  --line: #d2d2d7;
  --forest: #3a6b52;
  --focus: #0071e3;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Noto Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
button:active,
.pill-link:active {
  transform: scale(0.98);
}
::selection {
  background: #d3e9dc;
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.wrap {
  max-width: 1248px;
  margin-inline: auto;
  padding-inline: 40px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 24px;
  top: -80px;
  z-index: 3;
  background: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 132px;
  gap: 24px;
}
.identity {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: -0.6px;
}
.identity img {
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
}
.identity span {
  font-weight: 600;
}
.identity strong {
  font-weight: 400;
}
.header-link {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
}
.header-link:hover {
  text-decoration: underline;
}
h1 {
  font-weight: 600;
  margin: 0;
}
h1 span {
  color: var(--forest);
}
.hero-description {
  color: var(--secondary);
}
.command-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dddedf;
  border-radius: 14px;
  padding: 7px;
  background: var(--paper);
  box-shadow: 0 2px 4px #1d1d1f03;
}
.command-prompt {
  font-family: monospace;
  color: var(--forest);
  margin-left: 9px;
  user-select: none;
  font-size: 15px;
}
.command-value {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  letter-spacing: -0.25px;
  width: 0;
  min-width: 0;
  flex: 1;
  padding: 12px 0;
  line-height: 20px;
  border-radius: 2px;
}
.command-value:focus-visible {
  outline-offset: 1px;
}
.copy-button {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  background: var(--forest);
  color: white;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.copy-button:hover {
  background: #2c553f;
}
.copy-button:disabled {
  opacity: 0.6;
}
.copy-button.is-copied {
  background: #28543b;
}
.copy-button.is-copied::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--forest);
  border-radius: 13px;
  opacity: 0;
  pointer-events: none;
  animation: copy-ring 0.55s var(--ease);
}
@keyframes copy-ring {
  from {
    transform: scale(0.96);
    opacity: 0.6;
  }
  to {
    transform: scale(1.13);
    opacity: 0;
  }
}
.command-help {
  font-size: 11px;
  line-height: 1.8;
  color: var(--secondary);
  margin: 12px 0 0;
}
.review-stage {
  min-width: 0;
  padding-top: 10px;
}
.review-card {
  position: relative;
  perspective: 1600px;
  isolation: isolate;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 20px -9px -9px 12px;
  z-index: -1;
  background: #e8e8e9;
  border: 1px solid #dcdedf;
  border-radius: 20px;
  transform: rotate(2.3deg);
}
.review-card-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 0.85s var(--ease);
  box-shadow: 0 14px 45px -18px #1d1d1f25;
  border-radius: 20px;
}
.review-card[data-flipped="true"] .review-card-inner {
  transform: rotateY(180deg);
}
.review-face {
  grid-area: 1/1;
  padding: 30px 32px 24px;
  border: 1px solid #dce0dc;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-face::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("./certificate-paper.webp") center/cover;
  opacity: 0.2;
  pointer-events: none;
}
.review-face > * {
  position: relative;
}
.review-back {
  transform: rotateY(180deg);
}
.review-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--forest);
  font-size: 10px;
  line-height: 1.5;
}
.sample-tag {
  font-size: 8px;
  color: var(--secondary);
  border: 1px solid #dfe4df;
  padding: 4px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.review-heading {
  padding-block: 42px 28px;
}
.review-type {
  font-size: 9px;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
}
.review-heading h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  font-weight: 600;
  margin: 0;
}
.business-identity {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}
.business-initials {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #ecf1ee;
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
}
.business-identity strong {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.business-identity div > span {
  font-size: 10px;
  color: var(--secondary);
}
.review-facts {
  margin: 0;
  font-size: 10px;
}
.review-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  border-top: 1px solid #e6e9e6;
}
.review-facts dt {
  color: var(--secondary);
}
.review-facts dd {
  margin: 0;
  text-align: right;
}
.review-bottom {
  border-top: 1px solid #e6e9e6;
  padding-top: 18px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-status {
  font-size: 10px;
  color: #76500f;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-status > span {
  font-size: 17px;
}
.format-label {
  font-size: 8px;
  color: var(--secondary);
}
.review-boundary {
  font-size: 8px;
  line-height: 1.7;
  color: var(--secondary);
  margin: 20px 0 0;
  max-width: 350px;
}
.review-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  color: var(--secondary);
  font-size: 9px;
}
.flip-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  padding: 8px 0 8px 8px;
  background: transparent;
  color: var(--forest);
  font-size: 10px;
  min-height: 44px;
  white-space: nowrap;
}
.flip-button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.move-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}
.move-list li {
  display: flex;
  gap: 15px;
}
.move-list li > span {
  font-size: 11px;
  color: var(--forest);
  padding-top: 2px;
}
.move-list strong {
  font-size: 12px;
  font-weight: 600;
}
.move-list p {
  font-size: 11px;
  line-height: 1.65;
  color: var(--secondary);
  margin: 6px 0 0;
}
.review-back .review-heading {
  padding-block: 30px 24px;
}
.review-back .review-boundary {
  margin-top: auto;
  padding-top: 24px;
}
.simple-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 64px;
  align-items: center;
  padding-block: 48px 32px;
  border-top: 1px solid var(--line);
}
.simple-section h2 {
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 14px;
}
.simple-section > div > p {
  max-width: 490px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--secondary);
  margin: 0;
}
.sample-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 48px;
  padding: 10px 20px;
  background: white;
  border: 1px solid #cdd8cf;
  border-radius: 28px;
  color: var(--forest);
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.sample-link:hover {
  background: #e6ece7;
}
.sample-link:active {
  transform: scale(0.98);
}
.sample-link span {
  font-size: 20px;
}
.sample-action {
  text-align: right;
}
.simple-section .sample-action p {
  font-size: 10px;
  margin-top: 10px;
}
.simple-section .readiness-note {
  grid-column: 1 / -1;
  font-size: 10px;
  line-height: 1.7;
  color: var(--secondary);
  margin: 6px 0 0;
}
@media (max-width: 767px) {
  .simple-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px 28px;
  }
  .simple-section h2 {
    font-size: 25px;
  }
  .sample-action {
    text-align: left;
  }
}
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding-block: 25px;
}
.site-footer .identity {
  font-size: 11px;
  letter-spacing: -0.2px;
  gap: 12px;
}
.site-footer .identity img {
  border-radius: 50%;
}
.site-footer p,
.copyright {
  font-size: 10px;
  color: var(--secondary);
}
.site-footer p {
  margin-inline: auto 0;
}
.copy-status {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 40px);
  width: max-content;
  z-index: 2;
  background: var(--ink);
  color: white;
  padding: 0;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  box-shadow: 0 6px 24px #1d1d1f20;
  pointer-events: none;
}
.copy-status:not(:empty) {
  padding: 12px 20px;
}
.noscript-note {
  font-size: 12px;
  text-align: center;
  padding: 20px;
}
/* The opening stays centered on one command; the report is an optional peek. */
.hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  max-width: 860px;
  padding-block: 18px 70px;
  min-height: calc(100svh - 132px);
  justify-content: center;
}
.hero-copy {
  text-align: center;
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: -2.9px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-description {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 15px;
  line-height: 1.85;
}
.hero-start {
  max-width: 555px;
  margin-inline: auto;
}
.hero .command-box {
  border-radius: 20px;
  padding: 10px;
  gap: 12px;
  box-shadow: 0 4px 20px #1d1d1f05;
  text-align: left;
  transition:
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.hero .command-box:focus-within {
  border-color: #91ad9b;
  box-shadow: 0 4px 30px #3a6b5210;
}
.hero .command-value {
  font-size: 14px;
  min-width: 0;
}
.hero .copy-button {
  font-size: 12px;
  padding: 13px 18px;
  border-radius: 13px;
  flex: 0 0 auto;
}
.brand-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  margin: 0 auto 28px;
  isolation: isolate;
}
.brand-orbit img {
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 30px #3a6b520b;
  animation: mark-arrive 1s var(--ease) both;
  transition: transform 0.6s var(--ease);
}
.brand-orbit:hover img {
  transform: rotate(-8deg) scale(1.06);
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid #b7cebd;
  border-radius: 50%;
  animation: orbit-arrive 1.4s var(--ease) both;
  opacity: 0.6;
}
.orbit-ring::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 4px var(--canvas);
}
.orbit-ring-two {
  inset: -14px;
  border-color: #e0e6e0;
  animation-duration: 1.9s;
  transform: rotate(150deg);
}
.orbit-ring-two::after {
  width: 4px;
  height: 4px;
  background: #819e8b;
  top: 20px;
  right: 12px;
}
@keyframes mark-arrive {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes orbit-arrive {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-130deg);
  }
  to {
    opacity: 0.6;
  }
}
.scope-options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 390px;
  max-width: 100%;
  margin: 0 auto;
  gap: 0;
  padding: 5px;
  border-radius: 30px;
  background: #e9ece9;
  isolation: isolate;
}
.scope-indicator {
  position: absolute;
  inset-block: 5px;
  left: 5px;
  width: calc((100% - 10px) / 3);
  border-radius: 24px;
  background: white;
  box-shadow: 0 2px 5px #1d1d1f08;
  z-index: -1;
  transition: transform 0.5s var(--ease);
}
.scope-options[data-selected="software"] .scope-indicator {
  transform: translateX(100%);
}
.scope-options[data-selected="business"] .scope-indicator {
  transform: translateX(200%);
}
.scope-options button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  background: transparent;
  border: 0;
  border-radius: 24px;
  font-size: 12px;
  color: #525953;
  transition:
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.scope-options button[aria-pressed="true"] {
  color: var(--forest);
  font-weight: 600;
}
.scope-options button:hover {
  color: var(--forest);
}
.scope-description {
  font-size: 12px;
  line-height: 1.7;
  color: var(--secondary);
  min-height: 42px;
  max-width: 500px;
  margin: 16px auto 18px;
}
.review-disclosure {
  width: 100%;
  max-width: 510px;
  text-align: left;
}
.review-disclosure summary {
  list-style: none;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  min-height: 46px;
  color: var(--forest);
  cursor: pointer;
  border: 1px solid #cdd8cf;
  background: #eef2ed;
  border-radius: 28px;
  padding: 8px 10px 8px 20px;
  transition: background 0.25s var(--ease);
}
.review-disclosure summary:hover {
  background: #e5ece5;
}
.review-disclosure summary::-webkit-details-marker {
  display: none;
}
.review-disclosure summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.disclosure-arrow {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e6ece7;
  transition: transform 0.4s var(--ease);
}
.review-disclosure[open] .disclosure-arrow {
  transform: rotate(180deg);
}
.review-disclosure .review-stage {
  padding-top: 22px;
  animation: review-arrive 0.5s var(--ease);
}
@keyframes review-arrive {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 50px 90px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding-inline: 32px;
  }
  .hero {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy h1 {
    font-size: 48px;
  }
  .review-face {
    padding: 26px 24px 22px;
  }
  .review-heading h2 {
    font-size: 30px;
  }
  .command-box {
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  .command-value {
    min-width: 200px;
  }
  .copy-button {
    flex: 1;
  }
  .hero .copy-button {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .wrap {
    padding-inline: 24px;
  }
  .site-header {
    min-height: 102px;
  }
  .site-header .identity {
    font-size: 16px;
    gap: 12px;
  }
  .site-header .identity img {
    height: 48px;
    width: 48px;
  }
  .header-link {
    font-size: 0;
    gap: 0;
  }
  .header-link span {
    font-size: 22px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 24px;
    padding-bottom: 60px;
  }
  .hero-copy h1 {
    font-size: clamp(40px, 8.5vw, 58px);
    letter-spacing: -2px;
    max-width: 570px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 540px;
    margin-bottom: 24px;
  }
  .hero-start {
    max-width: 540px;
  }
  .hero .copy-button {
    flex-basis: auto;
    flex: 0 0 auto;
  }
  .command-value {
    font-size: 12px;
    min-width: 185px;
  }
  .copy-button {
    padding-inline: 14px;
  }
  .review-stage {
    max-width: 510px;
    width: 100%;
    justify-self: center;
    padding: 0 6px 0 0;
  }
  .review-face {
    padding: 28px;
  }
  .review-heading {
    padding-block: 34px 26px;
  }
  .review-heading h2 {
    font-size: 32px;
  }
  .review-type {
    font-size: 10px;
  }
  .review-topline {
    font-size: 10px;
  }
  .sample-tag {
    font-size: 8px;
  }
  .review-facts {
    font-size: 11px;
  }
  .review-boundary {
    font-size: 9px;
  }
  .review-caption {
    font-size: 10px;
    gap: 16px;
    align-items: flex-start;
  }
  .review-caption > span {
    padding-top: 12px;
    max-width: 190px;
  }
  .flip-button {
    font-size: 11px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 24px;
  }
  .site-footer .identity {
    font-size: 10px;
  }
  .site-footer p {
    width: 100%;
    order: 3;
    margin: 0 0 0 56px;
  }
  .copyright {
    margin-left: auto;
  }
}
@media (max-width: 420px) {
  .command-box {
    padding: 7px;
    gap: 0 10px;
  }
  .command-value {
    min-width: 210px;
    font-size: 13px;
  }
  .copy-button,
  .hero .copy-button {
    flex: 1 0 100%;
    margin-top: 2px;
  }
  .hero-copy h1 {
    font-size: 42px;
  }
  .review-face {
    padding: 22px 20px;
  }
  .review-topline {
    font-size: 9px;
    gap: 6px;
  }
  .sample-tag {
    font-size: 7px;
    padding: 3px 5px;
  }
  .review-heading h2 {
    font-size: 29px;
  }
  .review-facts {
    font-size: 10px;
  }
  .review-bottom {
    flex-wrap: wrap;
    gap: 8px;
  }
  .review-boundary {
    font-size: 9px;
  }
  .move-list {
    gap: 16px;
  }
  .move-list strong {
    font-size: 11px;
  }
  .move-list p {
    font-size: 10px;
  }
  .review-caption {
    font-size: 9px;
  }
  .review-caption > span {
    max-width: 160px;
  }
  .flip-button {
    font-size: 10px;
  }
}
@media (max-width: 350px) {
  .wrap {
    padding-inline: 20px;
  }
  .site-header .identity {
    font-size: 14px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .review-face {
    padding: 22px 16px;
  }
  .review-heading h2 {
    font-size: 26px;
  }
  .review-topline {
    flex-wrap: wrap;
  }
  .review-facts > div {
    gap: 9px;
  }
  .review-facts dt {
    max-width: 60px;
  }
  .review-facts dd {
    max-width: 155px;
  }
  .business-identity strong {
    font-size: 11px;
  }
  .review-caption {
    flex-wrap: wrap;
    gap: 0;
  }
  .review-caption > span {
    max-width: none;
  }
  .flip-button {
    padding-left: 0;
  }
  .format-label {
    font-size: 9px;
  }
  .site-footer .identity {
    font-size: 9px;
    gap: 8px;
  }
  .site-footer p {
    margin-left: 52px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .hero .copy-button {
    flex-basis: auto;
    flex: 0 0 auto;
  }
  .hero .command-value {
    min-width: 200px;
  }
  .hero {
    gap: 22px;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: calc(100svh - 102px);
    padding-block: 24px 40px;
    gap: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 7vw, 48px);
    letter-spacing: -1.9px;
    max-width: none;
  }
  .hero-description {
    font-size: 13px;
    margin-bottom: 23px;
    max-width: 400px;
  }
  .brand-orbit {
    width: 82px;
    height: 82px;
    margin-bottom: 30px;
  }
  .brand-orbit img {
    width: 64px;
    height: 64px;
  }
  .orbit-ring::after {
    top: 8px;
    right: 6px;
  }
  .orbit-ring-two::after {
    top: 15px;
    right: 8px;
  }
  .hero .command-value {
    font-size: 13px;
    min-width: 195px;
  }
  .hero .command-box {
    padding: 8px;
    border-radius: 18px;
  }
  .hero .copy-button {
    font-size: 11px;
    padding: 12px 15px;
    flex: 0 0 auto;
  }
  .scope-options {
    width: 350px;
  }
  .scope-description {
    font-size: 11px;
    min-height: 40px;
    max-width: 360px;
    margin-block: 14px 16px;
  }
  .review-disclosure .review-stage {
    margin-inline: auto;
  }
  .hero-start {
    margin-inline: auto;
  }
  .hero .command-help {
    font-size: 10px;
  }
}
@media (max-width: 420px) {
  .hero .copy-button {
    flex: 1 0 100%;
    margin-top: 5px;
  }
  .hero .command-value {
    min-width: 205px;
    font-size: 13px;
  }
  .scope-options button {
    gap: 6px;
    font-size: 11px;
  }
  .scope-options button svg {
    width: 16px;
    height: 16px;
  }
  .hero-description br {
    display: none;
  }
  .hero-description {
    max-width: 315px;
  }
  .hero {
    padding-top: 20px;
    min-height: calc(100svh - 102px);
  }
  .brand-orbit {
    margin-bottom: 25px;
  }
  .hero-copy h1 {
    font-size: 37px;
    letter-spacing: -1.8px;
  }
}
@media (max-width: 350px) {
  .hero-copy h1 {
    font-size: 33px;
    letter-spacing: -1.5px;
  }
  .scope-options button {
    font-size: 10px;
    gap: 5px;
  }
  .hero .command-value {
    font-size: 12px;
    min-width: 200px;
  }
  .hero .command-box {
    gap: 0 5px;
  }
}
@media (max-width: 767px) and (max-height: 700px) {
  .site-header {
    min-height: 80px;
  }
  .brand-orbit {
    display: none;
  }
  .hero {
    min-height: 0;
    padding-top: 16px;
    gap: 16px;
  }
  .hero-copy h1 {
    margin-bottom: 16px;
  }
  .hero-description {
    margin-bottom: 18px;
    line-height: 1.7;
  }
  .scope-description {
    margin-block: 10px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .review-card-inner,
  .review-card[data-flipped="true"] .review-card-inner,
  .review-back {
    transform: none;
  }
  .review-front {
    visibility: visible;
  }
  .review-back {
    visibility: hidden;
  }
  .review-card[data-flipped="true"] .review-front {
    visibility: hidden;
  }
  .review-card[data-flipped="true"] .review-back {
    visibility: visible;
  }
}
@media (forced-colors: active) {
  .review-face::before {
    display: none;
  }
  .review-card::before {
    display: none;
  }
  .review-face,
  .command-box,
  .copy-button,
  .pill-link {
    border: 1px solid ButtonText;
  }
  .copy-button {
    color: ButtonText;
    background: ButtonFace;
  }
  .review-status,
  .review-facts dt,
  .review-boundary,
  .sample-tag {
    color: CanvasText;
  }
  .copy-status {
    border: 1px solid CanvasText;
  }
}
@media print {
  body {
    background: white;
  }
  .site-header {
    min-height: 80px;
  }
  .hero {
    display: block;
  }
  .hero-copy {
    margin-bottom: 30px;
  }
  .review-stage {
    max-width: 500px;
    margin-inline: auto;
  }
  .review-card-inner,
  .review-card[data-flipped="true"] .review-card-inner {
    transform: none;
  }
  .review-face::before,
  .review-card::before,
  .review-back,
  .copy-button,
  .flip-button,
  .header-link,
  .copy-status,
  .skip-link {
    display: none !important;
  }
  .review-front {
    visibility: visible !important;
  }
  .review-card-inner {
    box-shadow: none;
  }
  .review-face {
    border: 1px solid #bbb;
  }
  .command-value {
    width: 300px;
  }
  .site-footer {
    break-inside: avoid;
  }
}
