:root {
  --ink: #181b17;
  --muted: #667064;
  --paper: #f1f2ea;
  --surface: #e6e8dd;
  --line: #c9cdc0;
  --flairr: #e4194f;
  --flairr-deep: #bd0e3d;
  --sky: #6ccff5;
  --lime: var(--flairr);
  --purple: var(--flairr);
  --white: #fbfcf6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 27, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 27, 23, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header,
.hero,
.proof-strip,
.section-shell,
footer {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.wordmark > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.wordmark small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
}

nav a {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--purple);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
  min-height: calc(100vh - 91px);
  padding: 80px 0 72px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--purple);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--ink);
}

h1 {
  max-width: 780px;
  margin: 0 0 34px;
  font-size: clamp(3.7rem, 7.4vw, 7.7rem);
  font-weight: 750;
  line-height: 0.86;
  letter-spacing: -0.085em;
}

h1 em {
  position: relative;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 em::after {
  position: absolute;
  right: -0.02em;
  bottom: 0.06em;
  left: 0;
  height: 0.08em;
  content: "";
  background: var(--lime);
  transform: rotate(-1deg);
  z-index: -1;
}

.lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button-primary:hover {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--purple);
}

.system-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 38%, rgba(200, 255, 50, 0.18), transparent 28%),
    var(--ink);
  border-radius: 2px;
  box-shadow: 22px 22px 0 var(--lime);
}

.system-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 36px 36px;
}

.system-topline,
.system-flow {
  position: relative;
  z-index: 2;
}

.system-topline {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.live-indicator {
  color: var(--lime);
}

.live-indicator i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--lime);
}

.network-orbit {
  position: relative;
  z-index: 1;
  width: min(390px, 82%);
  aspect-ratio: 1;
  margin: 45px auto 34px;
}

.orbit,
.node,
.core {
  position: absolute;
  border-radius: 50%;
}

.orbit {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.orbit-two {
  inset: 16%;
  border-style: dashed;
  animation: spin 24s linear infinite;
}

.node {
  width: 12px;
  height: 12px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(200, 255, 50, 0.8);
}

.node-a {
  top: 8%;
  left: 24%;
}

.node-b {
  right: 3%;
  bottom: 32%;
}

.node-c {
  bottom: 2%;
  left: 32%;
}

.core {
  inset: 28%;
  display: grid;
  align-content: center;
  color: var(--ink);
  background: var(--lime);
  text-align: center;
  place-items: center;
}

.core img {
  width: 54%;
  height: auto;
  filter: brightness(0) saturate(100%);
}

.core span {
  margin-top: 10px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}

.system-flow > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.system-flow span,
.system-flow small {
  color: #9aa295;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
}

.system-flow b {
  font-size: 0.72rem;
}

.system-flow > i {
  color: var(--lime);
  font-style: normal;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof-strip > div {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 25px 20px;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
}

.proof-strip span {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-shell {
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-label {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--flairr);
}

.section-label p {
  margin: 0;
}

.project-brief {
  display: grid;
  grid-template-columns: 0.24fr minmax(0, 1.1fr) minmax(260px, 0.42fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.project-brief .section-label {
  grid-column: 1 / -1;
}

.brief-main {
  grid-column: 2;
}

.brief-main h2,
.section-intro h2,
.role-heading h2,
.build-intro h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6.6vw, 7rem);
  font-weight: 720;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.brief-main h2 em {
  color: var(--flairr);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.brief-main > p {
  max-width: 760px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.brief-note {
  margin-top: 10px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-top: 5px solid var(--flairr);
}

.brief-note span {
  color: var(--flairr);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brief-note p {
  margin: 28px 0 0;
  color: #cbd0c7;
  font-size: 0.9rem;
  line-height: 1.7;
}

.role-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(100px, 12vw, 170px) max(24px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: var(--ink);
}

.section-kicker {
  margin: 0 0 28px;
  color: var(--flairr);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.role-heading h2 {
  font-size: clamp(3.1rem, 5.8vw, 6.2rem);
}

.role-heading > p:last-child {
  max-width: 540px;
  margin: 38px 0 0;
  color: #aeb5aa;
  line-height: 1.75;
}

.role-list {
  border-top: 1px solid #42473f;
}

.role-list > div {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid #42473f;
}

.role-list span {
  color: #697067;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.63rem;
}

.role-list p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.role-list i {
  color: var(--flairr);
  font-style: normal;
}

.repo-section .section-intro,
.evidence-section .section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 60px;
  align-items: end;
  margin: 64px 0 80px;
}

.section-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.repo-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.repo-card:hover {
  color: var(--white);
  background: var(--flairr);
}

.repo-card-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.repo-card > p {
  margin: auto 0 12px;
  color: var(--flairr);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.repo-card:hover > p,
.repo-card:hover small {
  color: var(--white);
}

.repo-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.repo-language {
  margin-top: 18px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
}

.repo-card small {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.build-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(100px, 12vw, 180px) max(24px, calc((100vw - 1320px) / 2));
  background: #dddfe4;
}

.build-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.build-intro h2 {
  font-size: clamp(3.1rem, 5.8vw, 6.2rem);
}

.build-phases {
  border-top: 1px solid var(--ink);
}

.build-phases article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 42px 0 50px;
  border-bottom: 1px solid var(--ink);
}

.phase-number {
  color: var(--flairr);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-style: italic;
}

.build-phases span,
.document-card > span,
.press-grid span {
  color: var(--flairr);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-phases h3 {
  margin: 12px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
}

.build-phases p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.document-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: clamp(30px, 5vw, 64px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.document-primary {
  color: var(--white);
  background: var(--flairr);
}

.document-card:not(.document-primary):hover {
  color: var(--white);
  background: var(--ink);
}

.document-card:not(.document-primary):hover > span,
.document-card:not(.document-primary):hover p {
  color: var(--white);
}

.document-primary:hover {
  background: var(--flairr-deep);
}

.document-primary > span,
.document-primary p {
  color: var(--white);
}

.document-card h3 {
  max-width: 680px;
  margin: 70px 0 24px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.document-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.document-card > div {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 35px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 100px 0 28px;
}

.media-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.05em;
}

.media-heading a {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-card {
  text-decoration: none;
}

.video-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.video-card:hover .video-image img {
  transform: scale(1.035);
}

.video-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--flairr);
  border-radius: 50%;
  place-items: center;
}

.video-card > p {
  margin: 18px 0 8px;
  color: var(--flairr);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.press-grid > a {
  display: flex;
  min-height: 240px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

.press-grid > a:hover {
  color: var(--white);
  background: var(--ink);
}

.press-grid h3 {
  max-width: 520px;
  margin: 45px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.closing-section {
  display: grid;
  min-height: 760px;
  align-content: center;
  justify-items: center;
  padding: 110px 24px;
  color: var(--white);
  background: var(--flairr);
  text-align: center;
}

.closing-section > img {
  width: 86px;
  filter: brightness(0) invert(1);
}

.closing-section > p {
  margin: 34px 0 28px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-section h2 {
  max-width: 1140px;
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.closing-links a {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  font-weight: 800;
  text-underline-offset: 8px;
  text-transform: uppercase;
}

footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: clamp(12px, 3vw, 38px);
  place-items: center;
}

.pdf-modal:target {
  display: grid;
}

body:has(.pdf-modal:target) {
  overflow: hidden;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 27, 23, 0.86);
  cursor: zoom-out;
}

.pdf-modal-panel {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  height: min(900px, calc(100vh - clamp(24px, 6vw, 76px)));
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--flairr);
}

.pdf-modal-header,
.pdf-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 24px;
  border-color: var(--line);
  font-family: var(--font-geist-mono), monospace;
}

.pdf-modal-header {
  border-bottom: 1px solid var(--line);
}

.pdf-modal-header div > span {
  color: var(--flairr);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pdf-modal-header h2 {
  margin: 5px 0 0;
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.pdf-modal-header > a,
.pdf-modal-footer a {
  flex: 0 0 auto;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pdf-modal-header > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.pdf-modal-header > a span {
  color: var(--flairr);
  font-size: 1.5rem;
  line-height: 1;
}

.pdf-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #525659;
}

.pdf-modal-footer {
  min-height: 58px;
  border-top: 1px solid var(--line);
}

.pdf-modal-footer p {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .orbit-two {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: 580px;
  }

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

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .project-brief {
    grid-template-columns: 1fr 0.5fr;
  }

  .brief-main {
    grid-column: 1;
  }

  .role-section,
  .build-section {
    grid-template-columns: 1fr;
  }

  .build-intro {
    position: static;
  }

  .repo-section .section-intro,
  .evidence-section .section-intro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header,
  .hero,
  .proof-strip,
  .section-shell,
  footer {
    width: min(100% - 30px, 1320px);
  }

  .site-header {
    min-height: 76px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.3rem);
  }

  .system-card {
    min-height: 490px;
    padding: 20px;
    box-shadow: 10px 10px 0 var(--lime);
  }

  .network-orbit {
    margin-block: 38px 24px;
  }

  .system-flow {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .system-flow > i {
    display: none;
  }

  .system-flow small {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-brief,
  .repo-grid,
  .document-grid,
  .video-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .brief-main,
  .brief-note {
    grid-column: 1;
  }

  .brief-note {
    margin-top: 0;
  }

  .role-section,
  .build-section {
    padding-inline: 20px;
  }

  .repo-card,
  .document-card {
    min-height: 360px;
  }

  .media-heading {
    gap: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .press-grid {
    border-left: 0;
  }

  .press-grid > a {
    border-left: 1px solid var(--ink);
  }

  .closing-section {
    min-height: 650px;
  }

  footer {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .pdf-modal {
    padding: 10px;
  }

  .pdf-modal-panel {
    height: calc(100vh - 20px);
    box-shadow: 7px 7px 0 var(--flairr);
  }

  .pdf-modal-header,
  .pdf-modal-footer {
    padding: 14px 16px;
  }

  .pdf-modal-footer p {
    display: none;
  }
}
