:root {
  --ink: #171816;
  --paper: #f4f2ed;
  --line: #cbc8c0;
  --muted: #65665f;
  --blue: #9bc3ff;
  --lime: #cde96f;
  --orange: #ffb36b;
  --violet: #b8a6ff;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --serif: Newsreader, Iowan Old Style, "Noto Serif KR", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #2f64d6;
  outline-offset: 4px;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-weight: 850;
  letter-spacing: 0.12em;
}
.nav a,
.project-links a,
.actions a,
.research-list a {
  text-decoration: none;
  color: inherit;
}
.nav nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
}
.hero {
  min-height: 700px;
  padding: 110px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker,
.section-label,
.eyebrow {
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4rem, 8.2vw, 7.6rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  margin: 24px 0 38px;
  max-width: 1100px;
}
.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 720px;
}
.actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-weight: 750;
  font-size: 0.9rem;
}
.button.primary {
  background: var(--ink);
  color: white;
}
.hero-meta {
  margin-top: auto;
  padding-top: 90px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.manifesto {
  background: var(--ink);
  color: #f8f5ed;
  padding: 90px 0;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 160px 1fr 290px;
  gap: 50px;
  align-items: start;
}
.manifesto blockquote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0;
}
.manifesto em {
  color: var(--lime);
  font-style: normal;
}
.manifesto-grid > p:last-child {
  color: #b9bab3;
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.entry-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.entry-card:hover { transform: translateY(-4px); box-shadow: 7px 7px 0 var(--ink); }
.entry-card span { font-size: .68rem; font-weight: 800; letter-spacing: .09em; }
.entry-card h3 { font: 500 2.4rem/.98 var(--serif); letter-spacing: -.03em; margin: 44px 0 14px; }
.entry-card p { color: var(--muted); }
.entry-card b { margin-top: auto; }
.entry-tool { background: #dff4ff; }
.entry-challenge { background: #e8f5cf; }
.section {
  padding: 110px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}
.section-head h2,
.about h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin: 0.15em 0;
}
.section-head > p {
  max-width: 420px;
  color: var(--muted);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.project {
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.16);
}
.project-hero {
  grid-column: span 2;
  min-height: 490px;
}
.tone-blue {
  background: var(--blue);
}
.tone-lime {
  background: var(--lime);
}
.tone-orange {
  background: var(--orange);
}
.tone-violet {
  background: var(--violet);
}
.project-ruin {
  color: #e8f7f4;
  background:
    radial-gradient(circle at 78% 22%, rgba(45, 209, 191, 0.17), transparent 28%),
    linear-gradient(135deg, #091719 0%, #061013 58%, #111820 100%);
  border-color: rgba(126, 234, 219, 0.28);
}
.project-ruin p:not(.eyebrow) {
  color: #b8cfcb;
}
.project-ruin .eyebrow,
.project-ruin .project-category {
  color: #72ddce;
}
.project-category {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.project-ruin .status.live::before {
  background: #72ddce;
  box-shadow: 0 0 12px rgba(114, 221, 206, 0.75);
}
.project-top {
  display: flex;
  justify-content: space-between;
}
.num {
  font-family: var(--serif);
  font-size: 2rem;
}
.status {
  border: 1px solid;
  padding: 4px 9px;
  height: max-content;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.status.live:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #16803a;
  border-radius: 50%;
  margin-right: 7px;
}
.project h3 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1;
  margin: 0.1em 0;
}
.project p:not(.eyebrow) {
  max-width: 720px;
}
.project-links {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 800;
}
.project-links a:hover {
  text-decoration: underline;
}
.research {
  background: #dedbd3;
}
.research-list {
  border-top: 1px solid var(--ink);
}
.research-list a {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
  align-items: center;
}
.research-list span {
  color: var(--muted);
}
.about {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 50px;
}
.about > div > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}
.footer {
  background: var(--ink);
  color: #d8d5cc;
  padding: 28px 0;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.where-next {
  padding: 42px 0;
  color: #f4f1e8;
  background: #213f3a;
  border-block: 1px solid var(--ink);
}
.where-next-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}
.where-next h2 {
  margin: 5px 0 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}
.where-next p {
  margin-block: 0;
}
.where-next .section-label,
.where-next .eyebrow,
.where-next a {
  color: inherit;
}
.where-next-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.where-next-links .button {
  border-color: currentColor;
}
.article-hero {
  padding: 100px 0 64px;
  border-bottom: 1px solid var(--line);
}
.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
  margin: 24px 0;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 70px;
  padding: 80px 0 120px;
}
.article-meta {
  font-size: 0.82rem;
  color: var(--muted);
}
.article-body {
  max-width: 780px;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 2em 0 0.5em;
}
.article-body p,
.article-body li {
  font-size: 1.04rem;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 38px 0;
}
.facts div {
  background: var(--paper);
  padding: 20px;
}
.facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
}
.back {
  display: inline-block;
  margin-top: 40px;
  font-weight: 800;
}
.article-shot {
  margin: 0 0 46px;
}
.article-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  background: #090d13;
}
.article-shot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}
.article-video {
  margin: 46px 0;
}
.article-video video {
  display: block;
  width: 100%;
  border: 1px solid #24413f;
  background: #061013;
}
.article-video figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}
.platform-shot {
  padding: 13px 13px 0;
  border-radius: 9px;
  background: #272622;
  box-shadow: 0 20px 48px rgba(29, 25, 17, 0.16);
}
.platform-shot::before {
  content: "●  ●  ●     accuraylab.com";
  display: block;
  padding: 0 2px 11px;
  color: #aaa79f;
  font: 0.68rem/1 var(--sans);
  letter-spacing: 0.05em;
}
.orcaton-shot::before {
  content: "●  ●  ●     orcadose.com/orcaton";
}
.platform-shot img {
  border: 0;
  border-radius: 3px 3px 0 0;
}
.platform-shot figcaption {
  margin: 0 -13px;
  padding: 11px 13px 13px;
  color: #cac7bf;
}
.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 52px;
}
.event-gallery figure {
  margin: 0;
}
.event-gallery__wide {
  grid-column: 1 / -1;
}
.event-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.event-gallery__wide img {
  aspect-ratio: 16 / 9;
  object-position: center 42%;
}
.event-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}
.usage-flow {
  list-style: none;
  padding: 0;
  margin: 28px 0 54px;
  counter-reset: usage;
  border-top: 1px solid var(--ink);
}
.usage-flow li {
  counter-increment: usage;
  display: grid;
  grid-template-columns: 48px 190px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.usage-flow li::before {
  content: "0" counter(usage);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.usage-flow b {
  line-height: 1.35;
}
.usage-flow span {
  color: var(--muted);
}
@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .nav {
    height: auto;
    min-height: 82px;
    flex-wrap: wrap;
    padding: 14px 0;
    row-gap: 8px;
  }
  .nav nav {
    width: 100%;
    gap: 8px 16px;
    flex-wrap: wrap;
  }
  .nav nav a {
    font-size: 0.82rem;
  }
  .event-gallery {
    grid-template-columns: 1fr;
  }
  .event-gallery__wide {
    grid-column: auto;
  }
  .where-next-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero {
    min-height: 620px;
    padding-top: 70px;
  }
  .hero h1 {
    font-size: 3.8rem;
  }
  .hero-meta {
    display: none;
  }
  .manifesto-grid,
  .about,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .manifesto-grid {
    gap: 22px;
  }
  .entry-grid { grid-template-columns: 1fr; }
  .entry-card { min-height: 270px; }
  .section {
    padding: 76px 0;
  }
  .section-head {
    display: block;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .project-hero {
    grid-column: auto;
  }
  .project {
    min-height: 380px;
    padding: 22px;
  }
  .research-list a {
    grid-template-columns: 1fr auto;
  }
  .research-list span {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer .wrap {
    display: block;
  }
  .footer span {
    display: block;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .article-layout {
    gap: 20px;
  }
  .usage-flow li {
    grid-template-columns: 38px 1fr;
  }
  .usage-flow span {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
