@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #151918;
  --ink-soft: #252b29;
  --paper: #f0eee8;
  --paper-deep: #e7e4db;
  --muted: #6e756f;
  --line: #c9cbc3;
  --accent: #e76f44;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
.page-shell {
  overflow: hidden;
}
.skip-link {
  position: absolute;
  z-index: 30;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--ink);
}
.skip-link:focus {
  top: 12px;
}
.section-wrap {
  max-width: 1600px;
  margin: auto;
  padding-inline: clamp(24px, 5vw, 86px);
}
.eyebrow,
.project-type,
.project-number,
.project-status,
.project-foot,
.step-index,
.about-caption,
.site-footer,
.hero-topline,
.hero-bottom,
.art-index,
.art-note,
.art-coordinate,
.visual-corner,
.visual-label,
.window-kicker,
.mock-meta,
.data-display {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
}
.eyebrow {
  margin: 0;
  color: var(--muted);
}
.eyebrow.light {
  color: #a5ada5;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
}
em {
  font-style: normal;
  color: var(--accent);
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 clamp(24px, 5vw, 86px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.12em;
}
.brand-dot {
  color: var(--accent);
}
.brand-name {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.site-header nav {
  display: flex;
  gap: 34px;
  margin: auto;
}
.site-header nav a,
.header-contact {
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s;
}
.site-header nav a:hover,
.header-contact:hover {
  color: var(--accent);
}
.header-contact {
  min-width: 220px;
  text-align: right;
}
.header-contact span {
  margin-left: 9px;
}

.hero {
  position: relative;
  min-height: min(810px, calc(100svh - 92px));
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--paper);
}
.hero-topline,
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(24px, 5vw, 86px);
  height: 64px;
  color: #a8aea8;
}
.hero-topline {
  border-bottom: 1px solid #3b403d;
}
.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(231 111 68 / 12%);
}
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 72px clamp(24px, 5vw, 86px) 58px;
}
.hero-copy {
  z-index: 1;
  align-self: center;
  padding-bottom: 18px;
}
.hero-copy .eyebrow {
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(70px, 7.7vw, 146px);
  line-height: 0.91;
  letter-spacing: -0.095em;
  font-weight: 600;
  margin-bottom: 34px;
  white-space: nowrap;
}
.hero h1 em {
  display: inline-block;
}
.hero-lead {
  max-width: 530px;
  color: #c3c8c1;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
  margin-bottom: 37px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 17px 20px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: #fff;
}
.text-link {
  font-size: 13px;
  border-bottom: 1px solid #606660;
  padding-bottom: 4px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.text-link span {
  margin-left: 8px;
}
.hero-bottom {
  height: 72px;
  border-top: 1px solid #3b403d;
}
.hero-bottom-line {
  height: 1px;
  flex: 1;
  background: #3b403d;
}

.hero-art {
  position: relative;
  min-height: 510px;
  align-self: center;
  overflow: hidden;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 9%;
  background: radial-gradient(
    circle at center,
    rgba(231, 111, 68, 0.1),
    transparent 53%
  );
}
.orbit {
  position: absolute;
  border: 1px solid #555b55;
  border-radius: 50%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 88%;
}
.orbit-two {
  width: 63%;
  border-color: #737972;
}
.orbit-three {
  width: 35%;
  border-color: var(--accent);
}
.orbit-one::before,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.orbit-one::before {
  top: 15%;
  left: 15%;
}
.orbit-two::after {
  right: 3%;
  bottom: 22%;
  width: 5px;
  height: 5px;
  background: var(--paper);
}
.art-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.art-core b {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.art-index {
  position: absolute;
  top: 0;
  left: 0;
  color: #a8aea8;
}
.art-coordinate {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #a8aea8;
}
.art-note {
  position: absolute;
  color: #d3d7cf;
}
.art-note-a {
  top: 20%;
  left: 16%;
}
.art-note-b {
  right: 8%;
  top: 28%;
}
.art-note-c {
  left: 11%;
  bottom: 22%;
}

.work {
  padding-block: 110px 130px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  column-gap: 7vw;
  align-items: end;
  padding-bottom: 58px;
}
.section-head .eyebrow {
  align-self: start;
  padding-top: 17px;
}
.section-head h2 {
  font-size: clamp(48px, 6.3vw, 104px);
  line-height: 0.99;
  font-weight: 600;
  letter-spacing: -0.075em;
  margin-bottom: 0;
}
.section-head > p:last-child {
  grid-column: 2;
  max-width: 540px;
  color: #5e655f;
  line-height: 1.6;
  font-size: 17px;
  margin: 20px 0 0;
}
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
  border-top: 1px solid var(--ink);
}
.project:last-of-type {
  border-bottom: 1px solid var(--ink);
}
.project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 6vw 28px 0;
  min-width: 0;
}
.project-top,
.project-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.project-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.project-type {
  color: var(--muted);
  margin-bottom: 19px;
}
.project h3 {
  font-size: clamp(46px, 5.4vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
}
.orange-period {
  color: var(--accent);
}
.project-description {
  max-width: 520px;
  font-size: 17px;
  color: #5a625c;
  line-height: 1.65;
}
.project-foot {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #666e67;
}
.project-foot a {
  color: var(--ink);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.project-foot a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.project-foot a span {
  margin-left: 12px;
}
.project-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.visual-corner {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
}
.visual-label {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 2;
}
.phone-visual {
  background: radial-gradient(circle at 50% 40%, #303734, #151918 72%);
}
.phone-visual img {
  position: absolute;
  top: -6%;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 112%;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 36px #0009);
}
.phone-visual .visual-corner {
  top: auto;
  left: auto;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
}
.streamline-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c5d5cf;
}
.streamline-visual::before,
.scraper-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 34px 34px;
}
.stream-window {
  position: relative;
  width: 70%;
  max-width: 440px;
  min-width: 285px;
  transform: rotate(-5deg);
  background: #15191a;
  box-shadow:
    22px 26px 0 rgba(19, 37, 31, 0.13),
    0 36px 70px rgba(21, 25, 24, 0.2);
  color: #e8eee9;
  transition: transform 0.5s;
}
.project:hover .stream-window {
  transform: rotate(-2deg) translateY(-7px);
}
.window-top {
  height: 46px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #343a39;
}
.window-mark {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.08em;
}
.window-mark span {
  color: #f97f54;
}
.window-controls {
  color: #828b85;
  font-size: 12px;
}
.window-body {
  padding: 45px 30px 30px;
}
.window-kicker {
  color: #aab4ad;
  margin-bottom: 14px;
}
.window-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin-bottom: 35px;
}
.mock-input {
  border: 1px solid #6a746e;
  padding: 15px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aab4ad;
  font-size: 12px;
}
.mock-input span {
  background: #f97f54;
  color: #15191a;
  padding: 5px 9px;
  font-size: 18px;
}
.mock-track {
  height: 3px;
  background: #3d4540;
  margin-top: 42px;
}
.mock-track span {
  display: block;
  width: 68%;
  height: 100%;
  background: #f97f54;
}
.mock-meta {
  display: flex;
  justify-content: space-between;
  color: #aab4ad;
  margin-top: 13px;
  font-size: 9px;
}
.scraper-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dfd2c5;
}
.scraper-visual::before {
  background-image:
    linear-gradient(#baae9e 1px, transparent 1px),
    linear-gradient(90deg, #baae9e 1px, transparent 1px);
}
.data-display {
  position: relative;
  width: 82%;
  max-width: 520px;
  padding: 24px 26px;
  background: var(--ink);
  color: #dddcd2;
  transform: rotate(3deg);
  box-shadow: -20px 23px 0 rgb(93 74 57 / 12%);
  transition: transform 0.5s;
}
.project:hover .data-display {
  transform: rotate(1deg) translateY(-7px);
}
.data-heading,
.data-columns,
.data-row,
.data-bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr;
  align-items: center;
  gap: 10px;
}
.data-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 29px;
  font-size: 11px;
}
.data-heading span:last-child {
  color: #ef865e;
  font-size: 9px;
}
.data-columns {
  padding: 0 0 12px;
  color: #919a91;
  font-size: 9px;
}
.data-row {
  border-top: 1px solid #454c47;
  padding: 17px 0;
  font-size: 10px;
}
.data-row span:first-child {
  white-space: nowrap;
}
.data-row i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #ef865e;
  border-radius: 50%;
  margin-right: 8px;
}
.data-row.dim {
  opacity: 0.55;
}
.data-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #454c47;
  padding-top: 21px;
  color: #aab4ad;
  font-size: 9px;
}
.work-note {
  max-width: 560px;
  margin: 34px 0 0 auto;
  color: #747b74;
  font-size: 13px;
  line-height: 1.6;
}

.approach {
  background: var(--ink);
  color: var(--paper);
}
.approach-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  padding-block: 125px 130px;
}
.approach-intro h2 {
  font-size: clamp(50px, 5.8vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 600;
  margin: 45px 0 28px;
}
.approach-intro > p:last-child {
  max-width: 420px;
  color: #aeb7ae;
  font-size: 17px;
  line-height: 1.65;
}
.approach-steps {
  border-top: 1px solid #535a53;
}
.approach-step {
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
  padding: 31px 48px 34px 0;
  border-bottom: 1px solid #535a53;
}
.step-index {
  grid-column: 1/-1;
  color: #b2bab0;
  margin-bottom: 24px;
}
.approach-step h3 {
  font-size: clamp(23px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 10px;
}
.approach-step p {
  grid-column: 1;
  max-width: 420px;
  color: #aeb7ae;
  line-height: 1.6;
  margin-bottom: 0;
}
.step-symbol {
  grid-column: 2;
  grid-row: 2/4;
  align-self: center;
  font-size: 38px;
  color: var(--accent);
  font-family: var(--font-display);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  padding-block: 135px 145px;
}
.about-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 500px;
}
.about-stamp {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(200px, 24vw, 370px);
  letter-spacing: -0.17em;
  line-height: 0.9;
  margin: auto 0;
  transform: translateX(-0.05em);
}
.about-stamp span {
  color: var(--accent);
}
.about-caption {
  color: #747b74;
  line-height: 1.6;
}
.about-copy {
  align-self: center;
}
.about-copy h2 {
  font-size: clamp(35px, 3.65vw, 61px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.065em;
  margin-bottom: 39px;
}
.about-copy > p {
  max-width: 660px;
  color: #5a625c;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-link {
  display: inline-flex;
  gap: 25px;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.about-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact {
  background: var(--accent);
}
.contact-inner {
  padding-block: 103px 92px;
}
.contact .eyebrow {
  color: #382820;
}
.contact h2 {
  font-size: clamp(60px, 8.6vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.09em;
  font-weight: 600;
  margin: 50px 0 65px;
}
.contact h2 em {
  color: var(--paper);
}
.contact-bottom {
  border-top: 1px solid rgb(21 25 24 / 55%);
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.contact-bottom p {
  font-size: 17px;
  line-height: 1.5;
  max-width: 420px;
  margin: 0;
}
.contact-bottom a {
  font-size: 14px;
  font-weight: 700;
  padding: 17px 19px;
  background: var(--ink);
  color: var(--paper);
  transition:
    transform 0.2s,
    background 0.2s;
}
.contact-bottom a:hover {
  background: #323b36;
  transform: translateY(-3px);
}
.contact-bottom a span {
  margin-left: 22px;
}
.social-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 42px;
  padding-top: 23px;
  border-top: 1px solid rgb(21 25 24 / 55%);
}
.social-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
  color: #382820;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.social-heading span:last-child {
  color: #573d32;
  font-family: var(--font-body);
  letter-spacing: 0;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.social-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(21 25 24 / 55%);
  font-size: 13px;
  font-weight: 700;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.social-links a:hover {
  color: var(--paper);
  border-color: var(--paper);
}
.social-links small {
  display: block;
  margin-top: 4px;
  color: #573d32;
  font-size: 10px;
  font-weight: 500;
}
.site-footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(24px, 5vw, 86px);
  background: var(--ink);
  color: #b2bab0;
}
.site-footer a {
  color: var(--paper);
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: clamp(64px, 7.2vw, 100px);
  }
  .hero-art {
    min-height: 410px;
  }
  .project {
    min-height: 440px;
  }
  .project-visual {
    min-height: 440px;
  }
  .project-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-info {
    padding-right: 35px;
  }
  .project h3 {
    font-size: clamp(43px, 5vw, 75px);
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 72px;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    margin-right: auto;
  }
  .brand-mark {
    font-size: 37px;
  }
  .brand-name {
    font-size: 9px;
  }
  .site-header nav {
    gap: 14px;
    margin: 0;
  }
  .site-header nav a {
    font-size: 11px;
  }
  .site-header nav a:last-child {
    display: none;
  }
  .header-contact {
    display: none;
  }
  .hero {
    min-height: 0;
  }
  .hero-topline {
    height: 52px;
    font-size: 9px;
  }
  .hero-topline span:last-child {
    display: none;
  }
  .hero-main {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 28px;
  }
  .hero-copy {
    align-self: stretch;
  }
  .hero-copy .eyebrow {
    margin-bottom: 27px;
  }
  .hero h1 {
    font-size: clamp(60px, 13vw, 97px);
    white-space: normal;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-art {
    width: min(100%, 520px);
    min-height: 390px;
    margin: 45px auto 0;
  }
  .hero-bottom {
    height: 50px;
    font-size: 9px;
  }
  .work {
    padding-block: 80px 90px;
  }
  .section-head {
    display: block;
    padding-bottom: 40px;
  }
  .section-head .eyebrow {
    margin-bottom: 30px;
  }
  .section-head h2 {
    font-size: clamp(52px, 10vw, 75px);
  }
  .section-head > p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }
  .project {
    grid-template-columns: 1fr;
  }
  .project-info {
    min-height: 450px;
    padding: 23px 0 24px;
  }
  .project-visual {
    min-height: 420px;
  }
  .project-foot {
    flex-direction: row;
    align-items: end;
  }
  .project-foot > span {
    max-width: 180px;
    line-height: 1.5;
  }
  .work-note {
    margin-left: 0;
  }
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 80px;
  }
  .approach-intro h2 {
    margin: 25px 0;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 90px;
  }
  .about-aside {
    min-height: 0;
  }
  .about-stamp {
    font-size: 220px;
    margin: 40px 0 20px;
  }
  .about-copy h2 {
    font-size: clamp(38px, 7vw, 60px);
  }
  .contact-inner {
    padding-block: 80px;
  }
  .contact h2 {
    font-size: clamp(58px, 11vw, 90px);
    margin: 40px 0 50px;
  }
  .site-footer {
    flex-wrap: wrap;
    min-height: 95px;
  }
  .site-footer > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 480px) {
  .section-wrap {
    padding-inline: 22px;
  }
  .hero-topline,
  .hero-bottom {
    padding-inline: 22px;
  }
  .hero-main {
    padding-inline: 22px;
  }
  .hero h1 {
    font-size: clamp(52px, 12vw, 72px);
  }
  .hero-actions {
    gap: 19px;
    flex-wrap: wrap;
  }
  .button {
    gap: 22px;
  }
  .text-link {
    font-size: 12px;
  }
  .hero-art {
    min-height: 305px;
    margin-top: 30px;
  }
  .art-note {
    font-size: 8px;
  }
  .art-core {
    font-size: 9px;
  }
  .art-core b {
    font-size: 18px;
  }
  .art-index,
  .art-coordinate {
    font-size: 8px;
  }
  .project-info {
    min-height: 470px;
  }
  .project-top,
  .project-foot {
    gap: 12px;
  }
  .project-status,
  .project-number,
  .project-foot {
    font-size: 9px;
  }
  .project h3 {
    font-size: 51px;
  }
  .project-description {
    font-size: 15px;
  }
  .project-visual {
    min-height: 320px;
  }
  .stream-window {
    min-width: 0;
    width: 76%;
    box-shadow: 11px 14px 0 rgba(19, 37, 31, 0.13);
  }
  .window-body {
    padding: 25px 17px 20px;
  }
  .window-title {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .mock-input {
    font-size: 9px;
    padding: 9px;
  }
  .mock-track {
    margin-top: 24px;
  }
  .data-display {
    width: 87%;
    padding: 15px;
  }
  .data-row {
    font-size: 7px;
    padding: 12px 0;
  }
  .data-heading,
  .data-columns,
  .data-bottom {
    font-size: 7px;
  }
  .data-heading span:last-child {
    font-size: 7px;
  }
  .visual-corner,
  .visual-label {
    font-size: 8px;
  }
  .approach-step {
    padding-right: 8px;
  }
  .approach-step p {
    font-size: 14px;
    padding-right: 25px;
  }
  .step-symbol {
    font-size: 27px;
  }
  .about-stamp {
    font-size: 180px;
  }
  .about-copy > p {
    font-size: 16px;
  }
  .contact h2 {
    font-size: clamp(48px, 12vw, 69px);
  }
  .contact-bottom {
    display: block;
  }
  .contact-bottom p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .contact-bottom a {
    display: inline-flex;
  }
  .social-panel {
    flex-direction: column;
    gap: 18px;
  }
  .social-heading {
    min-width: 0;
  }
  .social-links {
    gap: 14px 18px;
  }
  .site-footer {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
