@charset "UTF-8";

/* Keep the title compact on systems without Impact, without downloading a font. */
@font-face {
  font-family: "CMD Display Fallback";
  src:
    local("Arial Bold"), local("Arial-BoldMT"), local("Liberation Sans Bold"),
    local("DejaVu Sans Bold");
  font-weight: 900;
  size-adjust: 75%;
}

:root {
  --main: #f7cf24;
  --border: #7d4520;
  --light: #fdf068;
  --orange: #e27022;
  --ink: #382315;
  --paper: #fff9e9;
  --cream: #f6efd9;
  --muted: #6c5037;
  --mono: "Courier New", Courier, monospace;
  --body: Arial, Helvetica, sans-serif;
  --display: Impact, "CMD Display Fallback", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}
::selection {
  background: var(--ink);
  color: var(--light);
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
img,
svg {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
p + p {
  margin-top: 18px;
}
.container {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.3px;
}
.pixel-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--ink);
  flex: 0 0 auto;
}
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  z-index: 10;
  background: var(--paper);
  padding: 12px 20px;
  border: 2px solid var(--border);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  border-bottom: 2px solid var(--border);
  background: var(--paper);
}
.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand > span {
  font-size: 16px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.brand-period {
  color: var(--border);
}
nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 28px;
}
nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding-block: 12px;
}
nav a:hover,
.footer-cta:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  border: 2px solid var(--border);
  box-shadow:
    3px 3px 0 var(--border),
    inset 2px 2px 0 #ffffff65;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}
.button-primary {
  background: var(--orange);
}
.button-secondary {
  background: var(--paper);
}
.button:hover {
  background: var(--light);
}
.button:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--border);
}
.button span {
  font-size: 18px;
  line-height: 1;
}
.button-small {
  padding: 11px 17px;
}
.hero {
  background: var(--main);
  border-bottom: 2px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  padding-block: 64px 60px;
}
.hero-copy {
  min-width: 0;
}
.hero-copy > .eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(70px, 7.65vw, 106px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -2px;
}
.title-period {
  color: var(--border);
}
.hero-tagline {
  margin-top: 23px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.65px;
}
.hero-description {
  max-width: 485px;
  margin-top: 17px;
  font-size: 15px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 27px;
}
.hero-footnote {
  font-family: var(--mono);
  font-size: 12px;
  margin-top: 17px;
}
.mascot-window {
  border: 2px solid var(--border);
  box-shadow: 7px 7px 0 var(--border);
  transform: rotate(1.3deg);
  background: var(--paper);
}
.window-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--border);
  background: var(--light);
  padding: 7px 12px;
  font: 700 12px/1.5 var(--mono);
}
.mascot-stage {
  position: relative;
  padding: 20px 20px 15px;
  background-image: radial-gradient(#7d452024 0.8px, transparent 0.8px);
  background-size: 14px 14px;
}
.specimen-label {
  display: block;
  font: 12px var(--mono);
  letter-spacing: 1px;
}
.speech-bubble {
  position: relative;
  width: fit-content;
  margin: 21px auto -8px;
  padding: 10px 19px;
  border: 2px solid var(--border);
  background: var(--paper);
  font: 700 14px/1.5 var(--mono);
  text-align: center;
  z-index: 1;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 37%;
  width: 13px;
  height: 13px;
  background: var(--paper);
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  transform: skewY(40deg);
}
.hero-mascot {
  width: 100%;
  height: auto;
  max-height: 287px;
  object-fit: contain;
}
.mascot-note {
  display: block;
  text-align: center;
  font: 13px/1.5 var(--mono);
}
figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 2px solid var(--border);
  padding: 10px;
  background: var(--cream);
  font: 700 11px/1.5 var(--mono);
}
figcaption .pixel-dot {
  width: 5px;
  height: 5px;
  margin-right: -3px;
}
.hero-bottom {
  border-top: 1px solid var(--border);
}
.hero-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px;
  font: 700 12px/1.5 var(--mono);
  letter-spacing: 0.6px;
}
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 90px;
}
h2 {
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 900;
  letter-spacing: -1.8px;
}
.section-heading .eyebrow,
.section-intro .eyebrow,
.source-grid .eyebrow {
  margin-bottom: 16px;
}
.small-stamp {
  display: inline-block;
  margin-top: 28px;
  padding: 8px 12px;
  border: 2px solid var(--border);
  color: var(--border);
  font: 700 10px/1.5 var(--mono);
  letter-spacing: 1px;
  transform: rotate(-4deg);
}
.about-copy {
  padding-top: 3px;
  font-size: 15px;
}
.lead {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.4px;
}
.about-copy > p:not(.lead) {
  color: var(--muted);
}
.plain-note {
  display: flex;
  gap: 17px;
  padding: 17px 20px;
  margin-top: 26px;
  background: var(--cream);
  border-left: 3px solid var(--border);
  font: 12px/1.7 var(--mono);
}
.plain-note > span {
  font-size: 23px;
  line-height: 1;
}
.inside-section {
  border-block: 1px solid var(--border);
  background: var(--cream);
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 35px;
}
.section-intro > p {
  color: var(--muted);
  font-size: 14px;
}
.component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.component-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--border);
  box-shadow: 4px 4px 0 #7d452030;
  background: var(--paper);
}
.card-bar {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 15px;
  border-bottom: 2px solid var(--border);
  background: var(--main);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.6px;
}
.card-body {
  flex: 1;
  padding: 27px 24px;
}
.component-icon {
  width: 49px;
  height: 44px;
  margin-bottom: 23px;
  color: var(--border);
}
h3 {
  font-size: 22px;
  letter-spacing: -0.8px;
}
.card-body > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
}
.tech-tags {
  list-style: none;
  padding: 0;
  margin: 23px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tech-tags li {
  border: 1px solid #7d452070;
  background: var(--cream);
  padding: 3px 7px;
  font: 10px/1.5 var(--mono);
}
.card-footer {
  padding: 12px 20px;
  border-top: 1px dashed #7d452070;
  font: 12px/1.5 var(--mono);
}
.section-footnote {
  margin-top: 24px;
  font: 13px/1.7 var(--mono);
  color: var(--muted);
}
.section-footnote span {
  margin-right: 7px;
}
.cooking-section {
  padding-top: 74px;
}
.cooking-panel {
  display: grid;
  grid-template-columns: 86px 1fr 115px;
  align-items: center;
  gap: 32px;
  padding: 34px 40px;
  border: 2px solid var(--border);
  background: var(--light);
  box-shadow: 5px 5px 0 var(--border);
}
.egg-art {
  width: 75px;
}
.cooking-panel h2 {
  font-size: 32px;
  margin-top: 7px;
  letter-spacing: -1px;
}
.cooking-panel p:not(.eyebrow) {
  font-size: 14px;
  max-width: 640px;
  margin-top: 12px;
}
.cooking-panel .cooking-aside {
  font-family: var(--mono);
  font-size: 12px !important;
}
.development-stamp {
  justify-self: end;
  padding: 12px;
  border: 3px double var(--border);
  color: var(--border);
  transform: rotate(7deg);
  font: 700 13px/1.3 var(--mono);
  text-align: center;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 90px;
}
.faq-section .section-heading > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 23px;
  font-size: 14px;
}
.faq-decoration {
  display: block;
  margin-top: 34px;
  color: var(--border);
  font: 700 22px var(--mono);
}
.faq-list {
  border-top: 2px solid var(--border);
}
details {
  border-bottom: 1px solid #7d452075;
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  flex: 0 0 23px;
  height: 23px;
  border: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  font: 18px/21px var(--mono);
}
details[open] summary::after {
  content: "−";
  background: var(--main);
}
summary:hover {
  color: var(--border);
}
.faq-answer {
  padding: 0 35px 22px 2px;
  color: var(--muted);
  font-size: 14px;
}
.faq-answer [data-config] {
  padding-left: 12px;
  border-left: 2px solid var(--orange);
  font-size: 13px;
}
.source-section {
  padding-block: 66px;
  background: var(--main);
  border-block: 2px solid var(--border);
}
.source-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 80px;
}
.source-grid h2 {
  font-size: clamp(32px, 3.3vw, 45px);
}
.source-grid > div > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 15px;
}
.purchase-panel {
  padding: 25px;
  border: 2px solid var(--border);
  box-shadow: 5px 5px 0 var(--border);
  background: var(--paper);
}
.purchase-label {
  display: block;
  font: 700 10px/1.5 var(--mono);
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}
.purchase-panel h3 {
  font-size: 24px;
}
.source-grid .purchase-panel > p {
  font-size: 13px !important;
  margin-top: 12px !important;
  color: var(--muted);
}
.purchase-details {
  margin: 20px 0;
  font: 11px/1.6 var(--mono);
}
.purchase-details > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px dashed #7d452050;
  padding-block: 8px;
}
.purchase-details dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
  font-weight: 700;
}
.availability-note {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
}
.purchase-link {
  width: 100%;
}
.site-footer {
  padding-top: 38px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 34px;
}
.footer-main .brand > span {
  font-size: 14px;
}
.footer-main p {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}
.footer-contact a {
  display: block;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.footer-contact .eyebrow {
  font-size: 10px;
}
.footer-cta {
  font: 700 12px var(--mono);
}
.footer-bottom {
  border-top: 1px solid #7d452050;
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font: 11px/1.6 var(--mono);
}

@media (min-width: 1500px) {
  .hero-grid {
    padding-block: 80px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: calc(100% - 56px);
  }
  .hero-grid {
    gap: 35px;
  }
  h1 {
    font-size: clamp(66px, 8.5vw, 90px);
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding: 12px;
    font-size: 11px;
    gap: 10px;
  }
  .about,
  .faq-section {
    gap: 48px;
  }
  .component-grid {
    gap: 16px;
  }
  .card-body {
    padding: 24px 18px;
  }
  .source-grid {
    gap: 40px;
  }
  .hero-bottom .container {
    font-size: 9px;
  }
  figcaption {
    flex-wrap: wrap;
    justify-content: start;
    font-size: 8px;
  }
  figcaption > span:last-child {
    margin-left: auto;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 17px;
    padding-block: 19px 0;
  }
  .header-inner .brand {
    margin-right: auto;
  }
  .header-inner nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    border-top: 1px solid #7d452035;
    gap: 16px;
  }
  nav a {
    padding-block: 13px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 40px;
  }
  .hero-copy {
    max-width: 560px;
  }
  h1 {
    font-size: clamp(76px, 13vw, 98px);
  }
  .hero-tagline {
    font-size: 22px;
  }
  .hero-description {
    max-width: 520px;
  }
  .hero-actions .button {
    padding: 13px 17px;
    font-size: 12px;
  }
  .mascot-window {
    width: min(100% - 12px, 440px);
    justify-self: center;
  }
  .mascot-stage {
    padding-top: 16px;
  }
  .hero-mascot {
    max-height: 265px;
  }
  .hero-bottom .container {
    justify-content: center;
    text-align: center;
  }
  .hero-bottom .container > span:last-child {
    display: none;
  }
  .section {
    padding-block: 64px;
  }
  .about,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about .section-heading {
    position: relative;
  }
  .small-stamp {
    position: absolute;
    right: 6px;
    bottom: 6px;
    margin: 0;
    font-size: 9px;
  }
  .section-intro {
    display: block;
  }
  .section-intro > p {
    margin-top: 18px;
  }
  .component-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card-body {
    padding: 25px;
  }
  .component-icon {
    float: right;
    margin: 0 0 14px 16px;
  }
  .card-body > p {
    max-width: 490px;
  }
  .tech-tags {
    clear: both;
  }
  .cooking-section {
    padding-top: 48px;
  }
  .cooking-panel {
    grid-template-columns: 55px 1fr;
    padding: 27px 23px;
    gap: 20px;
    align-items: start;
  }
  .egg-art {
    width: 55px;
    margin-top: 30px;
  }
  .development-stamp {
    display: none;
  }
  .faq-decoration {
    display: none;
  }
  .faq-section .section-heading > p:not(.eyebrow) {
    margin-top: 16px;
  }
  .source-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .source-section {
    padding-block: 45px;
  }
  .purchase-panel {
    max-width: 520px;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-main > div:first-child {
    width: 100%;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
}
@media (max-width: 380px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-inner {
    gap: 12px;
  }
  .brand > span {
    font-size: 13px;
  }
  .brand {
    gap: 7px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .button-small {
    font-size: 10px;
    padding: 10px;
    gap: 10px;
  }
  h1 {
    font-size: 68px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.7px;
  }
  .hero-tagline {
    font-size: 19px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .small-stamp {
    font-size: 8px;
    padding: 6px;
  }
  .cooking-panel {
    grid-template-columns: 1fr;
  }
  .egg-art {
    display: none;
  }
}
