:root {
  --ink: #12140f;
  --ink-soft: #1b1e17;
  --paper: #f4f2eb;
  --paper-bright: #fbfaf6;
  --muted: #65675e;
  --line: #d4d3c8;
  --acid: #b8f23d;
  --acid-dark: #5f930d;
  --orange: #ef6b35;
  --cyan: #168b97;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --serif: "IBM Plex Serif", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 var(--sans);
}

::selection { color: var(--ink); background: var(--acid); }

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

a:hover { color: var(--acid-dark); }

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

code, pre { font-family: var(--mono); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.support-corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 60;
  width: 180px;
  height: 180px;
  overflow: hidden;
  pointer-events: none;
}

.support-corner a {
  position: absolute;
  top: 37px;
  right: -61px;
  width: 245px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
  box-shadow: 0 5px 0 rgba(18, 20, 15, .18);
  font: 700 .72rem/1 var(--mono);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  transform: rotate(45deg);
  pointer-events: auto;
}

.support-corner a:hover { color: var(--paper-bright); background: var(--orange); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 82px;
  padding-right: 88px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(18, 20, 15, .18);
}

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

.brand:hover { color: var(--ink); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper-bright);
  background: var(--ink);
  font: 700 .9rem/1 var(--mono);
  letter-spacing: -.1em;
  transform: rotate(-3deg);
}

.brand-mark span { color: var(--acid); }

.brand-copy strong,
.brand-copy small { display: block; }

.brand-copy strong { font: 800 1rem/1 var(--mono); letter-spacing: .03em; }

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font: 500 .65rem/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav { display: flex; align-items: center; gap: 27px; }

.nav a {
  font: 650 .76rem/1 var(--mono);
  text-decoration: none;
}

.nav-download {
  padding: 11px 14px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.nav-download:hover { color: var(--ink); background: var(--acid); }
.nav-short { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--paper-bright) 0%, var(--paper-bright) 42%, rgba(251,250,246,.9) 53%, rgba(251,250,246,0) 76%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.hero-goblin {
  position: absolute;
  z-index: 0;
  top: 58px;
  right: max(-170px, calc((100vw - var(--max)) / 2 - 155px));
  width: min(71vw, 850px);
  height: calc(100% - 58px);
  object-fit: cover;
  object-position: 45% 48%;
  mix-blend-mode: multiply;
  filter: contrast(1.06);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 790px;
  padding: 140px 0 72px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid-dark);
  font: 700 .73rem/1.2 var(--mono);
  text-transform: uppercase;
  letter-spacing: .055em;
}

.eyebrow::before { content: "// "; color: var(--orange); }
.eyebrow span { color: var(--orange); }

.hero h1 {
  width: 100%;
  max-width: 850px;
  margin: 0;
  font: 900 clamp(4.5rem, 8.5vw, 7.8rem)/.83 var(--sans);
  letter-spacing: -.07em;
}

.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  font-style: normal;
}

.hero-lede {
  width: min(100%, 670px);
  margin: 32px 0 0;
  font: 400 clamp(1.05rem, 1.8vw, 1.35rem)/1.48 var(--serif);
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 23px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid var(--ink);
  font-size: .82rem;
  font-weight: 780;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button-primary { color: var(--paper-bright); background: var(--ink); }
.button-primary:hover { color: var(--ink); background: var(--acid); }

.text-link { font-size: .85rem; font-weight: 750; text-decoration: none; }
.text-link span { color: var(--orange); }

.hero-aside {
  position: absolute;
  right: 26px;
  bottom: 98px;
  z-index: 3;
  margin: 0;
  color: var(--muted);
  font: 600 .65rem/1 var(--mono);
  letter-spacing: .09em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.machine-strip {
  display: grid;
  grid-template-columns: 1.35fr .72fr 1.1fr .85fr;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.metric { min-height: 150px; padding: 24px clamp(20px, 3vw, 46px); border-right: 1px solid #3a3d34; }
.metric:last-child { border-right: 0; }
.metric span, .metric strong, .metric small { display: block; }
.metric-label { color: #a8aa9f; font: 500 .65rem/1.2 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.metric strong { margin-top: 21px; font: 760 clamp(1.55rem, 2.5vw, 2.45rem)/1 var(--sans); letter-spacing: -.04em; }
.metric small { margin-top: 10px; color: #a8aa9f; font: 500 .68rem/1.2 var(--mono); }
.metric-acid { color: var(--ink); background: var(--acid); }
.metric-acid .metric-label, .metric-acid small { color: #3b4c14; }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.story {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px 90px;
  padding-top: 128px;
  padding-bottom: 132px;
}

.story::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 72px;
  height: 5px;
  background: var(--orange);
}

.story h2, .section-heading h2, .download-intro h2, .avx-copy h2 {
  margin: 0;
  font: 850 clamp(2.8rem, 5vw, 5rem)/.98 var(--sans);
  letter-spacing: -.055em;
}

.story-copy .lead { margin-top: 3px; color: var(--ink); font: 600 1.35rem/1.42 var(--serif); }
.story-copy p { color: var(--muted); }

.rack {
  grid-column: 1 / -1;
  padding: 10px;
  color: #dbddd2;
  background: #272a23;
  border: 12px solid var(--ink-soft);
  box-shadow: 14px 14px 0 #d9d7cc;
}

.rack-top {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 35px;
  padding: 0 10px;
  border-bottom: 1px solid #585c50;
  font: 500 .57rem/1 var(--mono);
  letter-spacing: .1em;
}

.rack-top span { margin-right: auto; }
.rack-top i { width: 7px; height: 7px; border-radius: 50%; background: #4d5146; }
.rack-top i:first-of-type { background: var(--acid); box-shadow: 0 0 8px var(--acid); }

.server {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr 150px 24px;
  align-items: center;
  gap: 16px;
  height: 84px;
  padding: 12px 18px;
  background: linear-gradient(#2e3129, #242720);
  border-bottom: 2px solid #10120e;
  box-shadow: inset 0 1px #4a4e42;
}

.server b { font: 700 .68rem/1 var(--mono); letter-spacing: .12em; }
.server .drives { height: 52px; background: repeating-linear-gradient(90deg, #151712 0 35px, #3c4035 35px 37px); border: 1px solid #4d5146; }
.server .panel { height: 31px; background: repeating-linear-gradient(90deg, #151712 0 5px, #32362d 5px 7px); border: 1px solid #4d5146; }
.server i { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 8px var(--acid); }

.cpu-section { padding-top: 130px; padding-bottom: 128px; }

.section-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 16px 70px; align-items: end; }
.section-heading .eyebrow { align-self: start; margin-top: 8px; }
.section-heading h2 { grid-column: 2; max-width: 850px; }
.section-heading > p:last-child { grid-column: 2; max-width: 700px; margin: 8px 0 0; color: var(--muted); font: 400 1.12rem/1.55 var(--serif); }

.cpu-table-wrap { margin-top: 66px; overflow-x: auto; border: 1px solid var(--ink); }
.cpu-table { width: 100%; min-width: 790px; border-collapse: collapse; background: var(--paper-bright); }
.cpu-table th, .cpu-table td { padding: 25px 24px; text-align: left; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cpu-table th:last-child, .cpu-table td:last-child { border-right: 0; }
.cpu-table tbody tr:last-child th, .cpu-table tbody tr:last-child td { border-bottom: 0; }
.cpu-table thead th { color: var(--muted); background: #e8e6dd; font: 600 .65rem/1.2 var(--mono); text-transform: uppercase; letter-spacing: .045em; }
.cpu-table tbody th { min-width: 190px; }
.cpu-table .generation { display: block; font: 800 1.15rem/1.2 var(--sans); }
.cpu-table small { display: block; margin-top: 5px; color: var(--muted); font: 500 .66rem/1.2 var(--mono); }
.cpu-table code { font-size: .8rem; font-weight: 600; white-space: nowrap; }
.cpu-table .recommended { background: linear-gradient(90deg, rgba(184,242,61,.17), rgba(184,242,61,.03)); }

.chip { display: inline-block; min-width: 48px; padding: 5px 8px; border: 1px solid; font: 700 .67rem/1 var(--mono); text-align: center; text-transform: uppercase; }
.chip-yes { color: #3d6803; background: #e5f7bd; border-color: #8fbd2f; }
.chip-no { color: #6c4431; background: #f2ddd3; border-color: #cc8a6b; }

.status { display: inline-flex; align-items: center; gap: 8px; font: 650 .71rem/1.2 var(--mono); white-space: nowrap; }
.status i, .availability i { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; }
.status-soon i { background: var(--orange); }
.status-ready { text-decoration: none; }
.status-ready i, .availability i { background: var(--acid-dark); box-shadow: 0 0 0 4px rgba(95,147,13,.15); }

.check-command {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px;
  align-items: center;
  margin-top: 22px;
  padding: 25px 28px;
  color: var(--paper-bright);
  background: var(--ink);
}

.command-label { display: block; margin-bottom: 11px; color: var(--acid); font: 600 .62rem/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.check-command code { font-size: .78rem; }
.check-command p { margin: 0; color: #bfc1b7; font-size: .82rem; }
.check-command p code { color: var(--paper-bright); }

.avx-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 640px;
  color: var(--paper-bright);
  background: var(--ink);
  border-block: 1px solid #000;
}

.avx-mark {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--orange);
  font: 900 clamp(5rem, 12vw, 11rem)/1 var(--sans);
  letter-spacing: -.09em;
}

.avx-mark::before, .avx-mark::after {
  content: "";
  position: absolute;
  width: 125%;
  height: 2px;
  background: var(--ink);
  transform: rotate(32deg);
}
.avx-mark::after { transform: rotate(-32deg); }
.avx-mark span { position: absolute; right: 8%; bottom: 8%; color: var(--ink); font: 400 4rem/1 var(--serif); }

.avx-copy { align-self: center; max-width: 690px; padding: 90px clamp(40px, 7vw, 120px); }
.eyebrow-light { color: var(--acid); }
.avx-copy p:not(.eyebrow) { color: #c2c4ba; }
.avx-copy code { padding: 2px 5px; color: var(--acid); background: #292c25; font-size: .8em; }
.avx-copy .avx-warning {
  margin: 28px 0;
  padding: 18px 20px;
  color: var(--paper-bright);
  background: #282b24;
  border-left: 4px solid var(--acid);
}
.avx-warning strong { display: block; margin-bottom: 5px; color: var(--acid); }

.download-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(45px, 8vw, 115px);
  padding-top: 135px;
  padding-bottom: 140px;
}

.availability { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px; padding: 8px 10px; background: #dff0ba; border: 1px solid #a9c76b; font: 700 .64rem/1 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.download-intro h2 { font-size: clamp(2.8rem, 4.7vw, 4.8rem); }
.download-intro > p:not(.eyebrow) { margin-top: 25px; color: var(--muted); font: 400 1.1rem/1.55 var(--serif); }

.build-specs { padding: 0; margin: 35px 0 0; list-style: none; border-top: 1px solid var(--line); }
.build-specs li { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.build-specs span { color: var(--muted); font: 500 .65rem/1.3 var(--mono); text-transform: uppercase; }
.build-specs strong { font-size: .78rem; line-height: 1.3; text-align: right; }

.artifact-card { align-self: start; background: var(--paper-bright); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--acid); }
.artifact-head { display: flex; justify-content: space-between; gap: 20px; padding: 13px 17px; color: #aeb0a6; background: var(--ink); font: 500 .59rem/1 var(--mono); letter-spacing: .05em; }
.artifact-file { display: grid; grid-template-columns: 50px minmax(0, 1fr) 43px; gap: 15px; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.file-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--muted); background: #ebe9e1; border: 1px solid var(--line); font: 700 .62rem/1 var(--mono); }
.file-copy { min-width: 0; }
.file-label { display: block; margin-bottom: 6px; color: var(--muted); font: 500 .61rem/1 var(--mono); text-transform: uppercase; }
.file-copy a { display: block; overflow: hidden; font: 600 .73rem/1.4 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.file-download { display: grid; place-items: center; width: 39px; height: 39px; color: var(--paper-bright); background: var(--ink); font: 700 1rem/1 var(--mono); text-decoration: none; }
.file-download:hover { color: var(--ink); background: var(--acid); }

.install-block { margin: 22px; color: #e9ebdf; background: var(--ink-soft); border: 1px solid #33372d; }
.install-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 13px; border-bottom: 1px solid #383c32; color: #a8aa9f; font: 500 .61rem/1 var(--mono); text-transform: uppercase; }
.copy-button { padding: 5px 9px; color: var(--ink); background: var(--acid); border: 0; cursor: pointer; font: 700 .6rem/1 var(--mono); text-transform: uppercase; }
.copy-button:hover { background: var(--orange); }
.install-block pre { margin: 0; padding: 18px; overflow-x: auto; font-size: .68rem; line-height: 1.7; }
.install-block pre span { color: var(--acid); }
.artifact-note { margin: 0; padding: 0 22px 23px; color: var(--muted); font-size: .72rem; }
.artifact-note a { color: var(--ink); font-weight: 700; }

.sandy-section {
  padding-top: 115px;
  border-top: 1px solid var(--ink);
}
.sandy-section .artifact-card { box-shadow: 12px 12px 0 var(--orange); }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .75fr .7fr;
  gap: 40px;
  align-items: end;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper-bright);
  background: var(--ink);
}
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 82px; height: 82px; object-fit: cover; object-position: center 35%; background: var(--paper-bright); border-radius: 50%; filter: contrast(1.1); }
.footer-brand span { display: block; color: #93958c; font: 500 .6rem/1 var(--mono); text-transform: uppercase; }
.footer-brand a { display: inline-block; margin-top: 7px; color: var(--paper-bright); font-size: 1.05rem; font-weight: 780; text-decoration: none; }
.footer-brand a span { display: inline; color: var(--acid); }
.site-footer > p { margin: 0; color: #aeb0a6; font: 400 1rem/1.55 var(--serif); }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-links a { color: #c8cabf; font: 500 .67rem/1.3 var(--mono); }

@media (max-width: 980px) {
  .site-header { padding-right: 105px; }
  .nav a:not(.nav-download) { display: none; }
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; }
  .hero-goblin { right: -230px; width: 850px; opacity: .63; }
  .hero::after { background: linear-gradient(90deg, var(--paper-bright) 0%, var(--paper-bright) 49%, rgba(251,250,246,.87) 64%, rgba(251,250,246,.2) 100%); }
  .machine-strip { grid-template-columns: 1fr 1fr; }
  .metric { border-bottom: 1px solid #3a3d34; }
  .metric:nth-child(2) { border-right: 0; }
  .story { gap: 45px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2, .section-heading > p:last-child { grid-column: 1; }
  .download-section { grid-template-columns: 1fr; }
  .download-intro { max-width: 700px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid #35382f; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 32px); min-height: 72px; padding-right: 86px; }
  .brand-copy small { display: none; }
  .nav { gap: 10px; }
  .nav-download { padding: 9px 10px; font-size: .63rem !important; }
  .nav-long { display: none; }
  .nav-short { display: inline; }
  .support-corner { width: 150px; height: 150px; }
  .support-corner a { top: 31px; right: -61px; width: 235px; padding: 8px; font-size: .58rem; }
  .hero { min-height: 720px; }
  .hero-inner { width: calc(100% - 32px); min-height: 720px; padding-top: 125px; }
  .hero-goblin { top: 210px; right: -155px; width: 560px; height: 560px; opacity: .58; object-fit: contain; object-position: 50% 50%; }
  .hero::after { background: linear-gradient(90deg, var(--paper-bright) 0%, rgba(251,250,246,.92) 48%, rgba(251,250,246,.72) 77%, rgba(251,250,246,.18) 100%); }
  .hero h1 { font-size: clamp(3rem, 13.5vw, 4.2rem); }
  .hero h1,
  .hero-lede { width: calc(100vw - 32px); max-width: calc(100vw - 32px); min-width: 0; white-space: normal; }
  .hero h1 em { font-size: .82em; -webkit-text-stroke-width: 1.3px; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-aside { display: none; }
  .machine-strip { grid-template-columns: 1fr; }
  .metric { min-height: 122px; border-right: 0; }
  .section { width: calc(100% - 32px); }
  .story { grid-template-columns: 1fr; gap: 32px; padding-top: 105px; padding-bottom: 105px; }
  .story-copy .lead { font-size: 1.18rem; }
  .rack { grid-column: 1; margin-top: 25px; padding: 7px; border-width: 8px; box-shadow: 8px 8px 0 #d9d7cc; }
  .rack-top { font-size: .48rem; }
  .server { grid-template-columns: 52px 1fr 18px; gap: 10px; height: 64px; padding: 10px; }
  .server .panel { display: none; }
  .server .drives { height: 39px; background-size: auto; }
  .cpu-section { padding-top: 105px; padding-bottom: 105px; }
  .section-heading h2 { font-size: 2.8rem; }
  .cpu-table-wrap { margin-top: 45px; }
  .check-command { grid-template-columns: 1fr; gap: 19px; }
  .check-command code { font-size: .65rem; }
  .avx-band { grid-template-columns: 1fr; }
  .avx-mark { min-height: 340px; }
  .avx-copy { padding: 70px 24px 85px; }
  .download-section { padding-top: 105px; padding-bottom: 115px; }
  .artifact-card { box-shadow: 7px 7px 0 var(--acid); }
  .sandy-section .artifact-card { box-shadow: 7px 7px 0 var(--orange); }
  .artifact-file { grid-template-columns: 42px minmax(0, 1fr) 36px; gap: 10px; padding: 17px 14px; }
  .file-icon { width: 39px; height: 39px; }
  .file-copy a { font-size: .65rem; }
  .file-download { width: 34px; height: 34px; }
  .install-block { margin: 14px; }
  .install-block pre { font-size: .59rem; }
  .site-footer { grid-template-columns: 1fr; padding-block: 60px; }
  .site-footer > p { margin-top: 10px; }
  .footer-links { grid-column: 1; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-goblin { animation: goblin-in .75s cubic-bezier(.2,.7,.2,1) both; }
  .hero-inner > * { animation: rise .55s ease both; }
  .hero-inner > :nth-child(2) { animation-delay: .06s; }
  .hero-inner > :nth-child(3) { animation-delay: .12s; }
  .hero-inner > :nth-child(4) { animation-delay: .18s; }
  @keyframes goblin-in { from { opacity: 0; transform: translateX(35px); } }
  @keyframes rise { from { opacity: 0; transform: translateY(13px); } }
}

@media print {
  .support-corner, .nav, .hero-goblin, .copy-button { display: none; }
  body { background: #fff; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 120px 0 70px; }
}
