:root {
  --ink: #17171a;
  --cream: #fff5e6;
  --paper: #fffdf8;
  --blue: #2467f2;
  --blue-dark: #0a286b;
  --orange: #ff9d2e;
  --red: #f14e59;
  --green: #38b96b;
  --muted: #746f68;
  --line: 2px solid var(--ink);
  --shadow: 0 6px 0 var(--ink);
  --radius: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 23, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 26, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border: var(--line);
  border-radius: 10px;
  background: var(--paper);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: var(--line);
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: var(--line);
  border-radius: 11px;
  color: white;
  background: var(--blue);
  box-shadow: 0 3px 0 var(--ink);
  font-size: 15px;
  letter-spacing: -0.05em;
}

.primary-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.primary-nav a,
.site-footer a {
  text-underline-offset: 5px;
  font-size: 14px;
  font-weight: 850;
  text-decoration-thickness: 2px;
}

.primary-nav a {
  text-decoration: none;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 4px 0 var(--ink);
  text-decoration: none;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ink);
}

.button:active {
  transform: translateY(4px);
  box-shadow: none;
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 8px 15px;
  font-size: 14px;
}

.button-large {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 17px;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 5px 0 var(--blue-dark), 0 7px 0 var(--ink);
}

.button-primary:hover {
  box-shadow: 0 3px 0 var(--blue-dark), 0 5px 0 var(--ink);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-ghost {
  background: transparent;
}

.button-orange {
  background: var(--orange);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-block: 84px 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.eyebrow.light {
  color: #9fc1ff;
}

.status-dot {
  width: 10px;
  height: 10px;
  border: var(--line);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 20%, transparent);
}

.hero h1,
.section-heading h2,
.office-copy h2,
.beta-card h2,
.final-cta h2 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 8px;
  border: var(--line);
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lede {
  margin: 0;
  color: #403d39;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 720;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li,
.runway-pill,
.danger-pill {
  padding: 6px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.visual-window {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 26px;
  background: #10243f;
  box-shadow: 11px 13px 0 var(--ink);
  transform: rotate(1.2deg);
}

.window-bar {
  height: 47px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: var(--line);
  background: var(--paper);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

.window-bar span:nth-child(2) {
  background: var(--orange);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar strong {
  margin-left: auto;
  font-size: 12px;
}

.visual-window picture,
.visual-window img {
  display: block;
}

.visual-window img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.speech-card,
.floating-chip {
  position: absolute;
  z-index: 2;
  border: var(--line);
  background: var(--paper);
  box-shadow: 0 4px 0 var(--ink);
  font-weight: 900;
}

.speech-card {
  right: 22px;
  bottom: 24px;
  max-width: 250px;
  padding: 12px 16px;
  border-radius: 16px 16px 3px 16px;
  font-size: 14px;
}

.floating-chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.chip-runway {
  top: 10%;
  right: -35px;
  background: #fff0cb;
  transform: rotate(4deg);
}

.chip-alert {
  bottom: 16%;
  left: -30px;
  color: white;
  background: var(--red);
  transform: rotate(-5deg);
}

.signal-strip {
  color: white;
  background: var(--ink);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid #44444a;
}

.signal-grid div:first-child {
  border-left: 1px solid #44444a;
}

.signal-grid strong {
  color: var(--orange);
  font-size: 28px;
  line-height: 1.1;
}

.signal-grid span {
  margin-top: 7px;
  color: #d0cfd4;
  font-size: 13px;
  font-weight: 780;
}

.section {
  padding-block: 120px;
}

.game-section,
.office-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.section-heading h2,
.office-copy h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.section-heading p,
.office-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 680;
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.compact h2 {
  margin-bottom: 0;
}

.decision-board,
.office-status-card {
  padding: 20px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 9px 10px 0 var(--ink);
}

.board-topline,
.status-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 17px;
}

.board-topline div,
.status-header div {
  display: flex;
  flex-direction: column;
}

.board-topline span,
.status-header span,
.decision-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.board-topline strong,
.status-header strong {
  font-size: 21px;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.decision-card {
  padding: 16px;
  border: var(--line);
  border-radius: 14px;
  background: white;
}

.decision-card.selected {
  background: #fff0d2;
  box-shadow: 0 4px 0 var(--ink);
}

.decision-card h3 {
  margin: 4px 0 11px;
  font-size: 17px;
}

.effect-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.effect {
  padding: 4px 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.effect.good {
  background: var(--green);
}

.effect.bad {
  background: var(--red);
}

.resource-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: var(--line);
}

.resource-row span {
  padding: 10px;
  border: 1px solid #d9d0c4;
  border-radius: 10px;
  font-size: 11px;
}

.resource-row b {
  display: block;
  color: var(--muted);
}

.loop-section {
  background: var(--paper);
  border-block: var(--line);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.loop-grid li {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border: var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 5px 0 var(--ink);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #b5a995;
  font-weight: 950;
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: var(--line);
  border-radius: 15px;
  color: white;
  background: var(--blue);
  box-shadow: 0 4px 0 var(--ink);
  font-size: 26px;
  font-weight: 950;
}

.loop-grid li:nth-child(2) .step-icon {
  background: var(--orange);
}

.loop-grid li:nth-child(3) .step-icon {
  background: var(--red);
}

.loop-grid li:nth-child(4) .step-icon {
  background: var(--green);
}

.loop-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.loop-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.office-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 9px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  background: var(--green);
  content: "✓";
  font-size: 12px;
}

.danger-pill {
  color: white !important;
  background: var(--red);
}

.team-row {
  display: grid;
  grid-template-columns: auto 1fr minmax(80px, 0.6fr);
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1.5px solid #ddd4c8;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  color: white;
  box-shadow: 0 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.avatar-blue { background: var(--blue); }
.avatar-orange { background: var(--orange); }
.avatar-green { background: var(--green); }

.team-row div {
  display: flex;
  flex-direction: column;
}

.team-row small {
  color: var(--muted);
  font-weight: 650;
}

.meter {
  overflow: hidden;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #eee7dc;
}

.meter i {
  display: block;
  height: 100%;
  background: var(--red);
}

.beta-section {
  padding-inline: 20px;
}

.beta-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(36px, 7vw, 84px);
  border: 3px solid var(--ink);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 157, 46, 0.34), transparent 25%),
    var(--blue-dark);
  box-shadow: 10px 12px 0 var(--ink);
}

.beta-card h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 68px);
}

.beta-copy {
  align-self: end;
}

.beta-copy p {
  color: #d9e5ff;
  font-size: 18px;
  font-weight: 680;
}

.beta-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.beta-copy li {
  padding: 6px 10px;
  border: 1px solid #8bb3ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.platform-roadmap {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(139, 179, 255, 0.82);
  border-radius: 16px;
  background: rgba(4, 18, 48, 0.5);
}

.platform-roadmap span {
  display: block;
  color: #8bb3ff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.platform-roadmap h3 {
  margin: 5px 0 0;
  color: white;
  font-size: 18px;
}

.beta-copy .platform-roadmap p {
  margin: 8px 0 0;
  color: #d9e5ff;
  font-size: 14px;
  font-weight: 680;
}

.release-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(40px, 7vw, 96px);
}

.release-grid {
  display: grid;
  gap: 18px;
}

.release-card {
  padding: clamp(22px, 4vw, 34px);
  border: var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 6px 0 var(--ink);
}

.release-card.current {
  border-width: 3px;
  background: #eef4ff;
}

.release-card.launch {
  background: #fff0d2;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.release-version,
.release-state {
  padding: 4px 8px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--blue);
}

.release-card.launch .release-version,
.release-card.launch .release-state {
  color: var(--ink);
  background: var(--orange);
}

.release-card h3 {
  margin: 18px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.release-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

.release-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.release-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 780;
}

.release-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 950;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 110px);
}

.faq-list {
  border-top: var(--line);
}

details {
  border-bottom: var(--line);
}

summary {
  position: relative;
  padding: 23px 46px 23px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 19px;
  right: 2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 8px;
  content: "+";
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--muted);
  font-weight: 650;
}

.final-cta {
  border-block: var(--line);
  background: var(--orange);
}

.final-cta-inner {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 72px);
}

.site-footer {
  padding-block: 34px;
  color: white;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-footer .brand {
  color: white;
}

.site-footer p {
  margin: 0;
  color: #a7a7ad;
  font-size: 12px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  color: white;
  background: none;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.legal-main {
  min-height: calc(100vh - 180px);
  padding-block: 72px 110px;
}

.legal-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.legal-header h1 {
  margin: 12px 0 20px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-header p,
.legal-updated {
  color: var(--muted);
  font-weight: 700;
}

.legal-summary,
.legal-section {
  max-width: 900px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 5px 0 var(--ink);
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--ink);
}

.legal-summary div {
  padding: 20px;
  background: var(--paper);
}

.legal-summary strong,
.legal-summary span {
  display: block;
}

.legal-summary strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.legal-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-section {
  margin-top: 24px;
  padding: clamp(24px, 5vw, 42px);
}

.legal-section h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.legal-section h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.legal-section p,
.legal-section li {
  color: #403d39;
  font-weight: 650;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}

.legal-section a {
  color: var(--blue-dark);
  font-weight: 850;
  text-underline-offset: 4px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-block: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border-right: 1px solid #d7d1c8;
  border-bottom: 1px solid #d7d1c8;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: white;
  background: var(--ink);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-callout {
  margin-block: 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #eef4ff;
  font-weight: 750;
}

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

.license-item {
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: white;
}

.license-item strong,
.license-item span {
  display: block;
}

.license-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 28px, 720px);
  }

  .primary-nav {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner .button {
    margin-left: auto;
  }

  .hero,
  .game-section,
  .office-section,
  .faq-section,
  .beta-card,
  .release-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 58px;
    padding-block: 64px 82px;
  }

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

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .signal-grid div:nth-child(odd) {
    border-left: 1px solid #44444a;
  }

  .signal-grid div {
    border-bottom: 1px solid #44444a;
  }

  .section {
    padding-block: 90px;
  }

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

  .loop-grid li {
    min-height: 250px;
  }

  .office-copy {
    order: 0;
  }

  .office-status-card {
    order: 1;
  }

  .beta-card {
    gap: 26px;
  }

  .faq-section {
    gap: 32px;
  }

  .final-cta-inner {
    min-height: 390px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-inner .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .desktop-only {
    display: none;
  }

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

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

  .visual-window {
    border-radius: 20px;
    box-shadow: 7px 8px 0 var(--ink);
    transform: none;
  }

  .window-bar strong {
    font-size: 10px;
  }

  .speech-card {
    right: 12px;
    bottom: 14px;
    max-width: 200px;
    font-size: 11px;
  }

  .chip-runway {
    top: -18px;
    right: 6px;
  }

  .chip-alert {
    bottom: -20px;
    left: 8px;
  }

  .signal-grid div {
    min-height: 100px;
    padding: 18px;
  }

  .signal-grid strong {
    font-size: 21px;
  }

  .section-heading h2,
  .office-copy h2 {
    font-size: 42px;
  }

  .decision-board,
  .office-status-card {
    padding: 14px;
    border-radius: 17px;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .decision-grid,
  .resource-row,
  .loop-grid {
    grid-template-columns: 1fr;
  }

  .resource-row span {
    display: flex;
    justify-content: space-between;
  }

  .loop-grid li {
    min-height: 230px;
  }

  .team-row {
    grid-template-columns: auto 1fr;
  }

  .team-row .meter {
    grid-column: 1 / -1;
  }

  .beta-section {
    padding-inline: 14px;
  }

  .beta-card {
    border-radius: 22px;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .beta-copy li {
    width: 100%;
  }

  .release-card {
    padding: 22px 18px;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: flex-start;
  }

  .legal-main {
    padding-block: 52px 80px;
  }

  .legal-summary,
  .license-list {
    grid-template-columns: 1fr;
  }

}

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

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