:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #111111;
  --soft: #666666;
  --faint: #a0a0a0;
  --line: #dddddd;
  --shade: #f6f6f6;
  --max: 1080px;
  font-family: "Halenoir", Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "Halenoir";
  src: url("fonts/Halenoir-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cal Sans";
  src: url("fonts/CalSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@property --noise-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

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

::selection {
  background: #111111;
  color: #ffffff;
}

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

.site-header,
.site-footer,
main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

main {
  flex: 1;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 500;
  text-decoration: none;
}

.brand-mark {
  display: none;
}

.nav-links,
.social-row,
.hero-actions,
.detail-actions,
.tag-row,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.social-link,
.text-link,
.back-link {
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.social-link:hover,
.text-link:hover,
.back-link:hover {
  text-decoration: underline;
}

.theme-toggle {
  position: relative;
  width: 38px;
  height: 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--shade);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.theme-toggle span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle[aria-pressed="true"] span {
  transform: translateX(17px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: start;
  padding: 92px 0 96px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 0.86rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.05rem;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.1;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.22rem;
  line-height: 1.48;
}

.lead a {
  color: var(--ink);
}

.hero-bio {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-actions,
.detail-actions {
  margin-top: 30px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 180ms ease, transform 180ms ease;
}

.button-link:hover {
  transform: translateY(-1px);
}

.button-link.secondary::before {
  content: "/";
  margin-right: 18px;
  color: var(--faint);
}

.portrait-stage {
  align-self: start;
}

.portrait-stage img {
  width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
}

.section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin: 0;
}

.section-heading h2 {
  font-size: 2.3rem;
  line-height: 1.04;
}

.section-heading.inline {
  display: block;
}

.section-heading.inline .text-link {
  display: inline-block;
  margin-top: 22px;
}

.about-grid {
  display: grid;
  gap: 32px;
}

.about-grid > p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.62;
}

.education-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.education-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.education-list span,
.work-copy span {
  color: var(--soft);
}

.education-list strong {
  font-weight: 400;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.work-card[hidden] {
  display: none;
}

.work-card a {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 220ms ease;
}

.work-card a:hover {
  border-color: #bcbcbc;
  transform: translateY(-3px);
}

.work-card a:hover h3 {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.work-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.work-media img {
  width: auto;
  max-width: min(100%, 300px);
  max-height: 170px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.work-card a:hover .work-media img {
  transform: scale(1.025);
}

.work-card[data-slug="De-Noizen"] .work-media img {
  max-height: 188px;
}

.work-card[data-type="Mix"] .work-media {
  overflow: hidden;
}

.work-card[data-type="Mix"] .work-media img {
  width: min(100%, 300px);
  height: 169px;
  max-height: none;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  border: 1px solid var(--line);
  background: var(--shade);
  color: var(--soft);
  text-align: center;
}

.video-placeholder span {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.video-placeholder span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 14px 0 0 18px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.video-placeholder strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.video-placeholder small {
  font-size: 0.85rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--shade);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-card.is-text-only a {
  grid-template-rows: 1fr;
  align-content: end;
  min-height: 240px;
}

.work-copy p {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.42;
}

.work-copy h3 {
  margin-bottom: 14px;
  font-size: 1.38rem;
  text-align: center;
}

.work-copy span {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  text-align: center;
}

.tag-row {
  gap: 10px;
}

.tag-row span {
  color: var(--soft);
}

.tag-row span + span::before {
  content: "/";
  margin-right: 10px;
  color: var(--faint);
}

.page-hero {
  padding: 78px 0 52px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 18px;
}

.section.compact {
  display: block;
  padding-top: 34px;
}

.filter-bar {
  gap: 10px 18px;
  margin-bottom: 34px;
}

.filter-bar button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font: inherit;
}

.filter-bar button.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 52px;
  align-items: start;
  padding: 68px 0 54px;
  border-bottom: 1px solid var(--line);
}

.detail-copy h1 {
  font-size: 4rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 42px;
}

.detail-media {
  margin: 0;
}

.detail-media img {
  width: 100%;
  height: auto;
}

.detail-media img[src*="img.youtube.com"] {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 34px;
  color: var(--soft);
  font-size: 0.92rem;
}

.detail-meta span + span::before {
  content: "/";
  margin-right: 16px;
  color: var(--faint);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding: 42px 0 78px;
  border-bottom: 1px solid var(--line);
}

.detail-grid h2 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.credit-list {
  margin: 0;
  padding-left: 18px;
  color: var(--soft);
}

.contact-section {
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-mail {
  font-size: 1.18rem;
  font-weight: 500;
}

.social-link.is-pending {
  color: var(--faint);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 22px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.site-footer a {
  color: var(--ink);
}

.contact-form-section {
  margin: 76px 0 64px;
  padding: 34px;
  background: #eeeeee;
}

.contact-form {
  display: grid;
  gap: 26px;
  max-width: 860px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: #e7e7e7;
  color: var(--ink);
  font: inherit;
  padding: 13px 16px;
}

.contact-form input {
  min-height: 44px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #78818a;
}

.contact-form button {
  justify-self: start;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 28px;
  cursor: pointer;
  font: inherit;
  text-transform: none;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #fafafa;
}

.about-page-hero {
  text-align: center;
}

.about-page-hero h1 {
  margin-bottom: 0;
}

.about-content {
  padding: 62px 0 86px;
  border-bottom: 1px solid var(--line);
}

.about-page .about-grid {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

body.theme-dark:not(.plugin-body) {
  color-scheme: dark;
  --paper: #101113;
  --ink: #f3f3f3;
  --soft: #a0a3a8;
  --faint: #73777e;
  --line: #2a2d32;
  --shade: #17191d;
  background: var(--paper);
  color: var(--ink);
}

body.theme-dark:not(.plugin-body) .work-card a,
body.theme-dark:not(.plugin-body) .contact-form-section {
  background: #131519;
}

body.theme-dark:not(.plugin-body) .contact-form input,
body.theme-dark:not(.plugin-body) .contact-form textarea {
  border-color: #4b4f57;
  background: #101113;
  color: var(--ink);
}

body.theme-dark:not(.plugin-body) .contact-form button {
  background: #f3f3f3;
  color: #101113;
}

.plugin-body {
  color-scheme: dark;
  --paper: #0b0d11;
  --ink: #f4f5f7;
  --soft: #858a92;
  --faint: #555b64;
  --line: rgba(255, 255, 255, 0.1);
  --shade: #17191d;
  font-family: "Cal Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
}

.plugin-body ::selection {
  background: rgba(75, 199, 223, 0.32);
  color: #f4f5f7;
}

.plugin-body .site-header,
.plugin-body .site-footer {
  color: var(--soft);
}

.plugin-body .brand,
.plugin-body .nav-links a,
.plugin-body .social-link,
.plugin-body .back-link {
  color: var(--ink);
}

.plugin-body .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.plugin-body .site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.plugin-body .theme-toggle {
  display: none;
}

.plugin-page {
  width: 100%;
  max-width: none;
}

.plugin-hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: calc(100vh - 82px);
  padding: 76px max(22px, calc((100vw - var(--max)) / 2)) 30px;
  overflow: hidden;
  text-align: center;
  background-color: #0b0d11;
  background-image: radial-gradient(rgba(80, 199, 221, 0.09) 1px, transparent 1px);
  background-size: 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: pluginGridDrift 26s linear infinite;
}

.plugin-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 34%, rgba(75, 199, 223, 0.045) 48%, transparent 62% 100%);
  transform: translateX(-35%);
  animation: pluginSweep 8s ease-in-out infinite;
}

.plugin-hero > * {
  position: relative;
  z-index: 1;
}

.plugin-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(var(--max), 100%);
  margin-bottom: 44px;
  color: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plugin-topline .back-link {
  margin: 0;
  color: var(--soft);
  letter-spacing: 0;
  text-transform: none;
}

.plugin-topline span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.plugin-topline i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4bc7df;
  box-shadow: 0 0 18px rgba(75, 199, 223, 0.85);
}

.plugin-copy {
  display: grid;
  justify-items: center;
  max-width: 900px;
}

.plugin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: #4bc7df;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plugin-kicker::before,
.plugin-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(75, 199, 223, 0.48);
}

.plugin-copy h1 {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: #f4f5f7;
  font-size: clamp(3rem, 7.3vw, 6.8rem);
  line-height: 0.9;
  text-wrap: balance;
}

.plugin-copy h1 span:last-child {
  color: #4bc7df;
}

.plugin-copy > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.1rem;
}

.plugin-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 36px;
}

.plugin-button {
  position: relative;
  display: grid;
  gap: 5px;
  align-content: center;
  min-height: 70px;
  border: 1px solid rgba(75, 199, 223, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(75, 199, 223, 0.16), rgba(75, 199, 223, 0.05));
  color: #eefbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 34px rgba(75, 199, 223, 0.08);
  overflow: hidden;
  padding: 14px 42px 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plugin-button::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #4bc7df;
  border-bottom: 2px solid #4bc7df;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.plugin-button:not(.is-disabled):hover {
  transform: translateY(-2px);
  border-color: rgba(75, 199, 223, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 46px rgba(75, 199, 223, 0.18);
}

.plugin-button:not(.is-disabled):hover::after {
  transform: translateY(-50%) rotate(45deg);
}

.plugin-button span {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.plugin-button small {
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: none;
}

.plugin-button.is-disabled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  box-shadow: none;
  cursor: default;
}

.plugin-button.is-disabled small {
  color: var(--faint);
}

.plugin-control {
  position: relative;
  width: min(390px, 76vw);
  aspect-ratio: 1;
  margin-top: 60px;
  filter: drop-shadow(0 0 36px rgba(75, 199, 223, 0.16));
}

.plugin-control::before {
  content: "";
  position: absolute;
  inset: 2.5%;
  border-radius: 50%;
  background: conic-gradient(from 218deg, rgba(75, 199, 223, 0.14) 0deg 284deg, transparent 284deg);
  mask: radial-gradient(circle, transparent 0 69%, #000 70% 76%, transparent 77%);
}

.plugin-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 218deg, #4bc7df 0deg var(--noise-progress), rgba(75, 199, 223, 0.14) var(--noise-progress) 284deg, transparent 284deg);
  mask: radial-gradient(circle, transparent 0 68%, #000 69% 76%, transparent 77%);
  animation: pluginArcOpen 5.8s cubic-bezier(0.55, 0, 0.18, 1) infinite;
}

.plugin-arc::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(75, 199, 223, 0.12);
  box-shadow: 0 0 64px rgba(75, 199, 223, 0.38), inset 0 0 32px rgba(75, 199, 223, 0.08);
}

.plugin-knob {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  animation: pluginKnobTurn 5.8s cubic-bezier(0.55, 0, 0.18, 1) infinite;
}

.plugin-knob-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #30333d 0%, #20232b 58%, #171a21 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -24px 36px rgba(0, 0, 0, 0.22),
    0 28px 56px rgba(0, 0, 0, 0.46);
}

.plugin-indicator {
  position: absolute;
  top: 9%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 5px solid #30333d;
  border-radius: 999px;
  background: #4bc7df;
  box-shadow: 0 0 18px rgba(75, 199, 223, 0.9);
  transform: translateX(-50%);
}

.plugin-readout {
  position: absolute;
  left: 50%;
  bottom: 20%;
  display: grid;
  gap: 2px;
  width: 118px;
  min-height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.38);
  color: var(--soft);
  transform: translateX(-50%);
  text-transform: uppercase;
}

.plugin-readout strong {
  color: var(--faint);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.plugin-readout span {
  color: #4bc7df;
  font-size: 1.15rem;
}

.plugin-label {
  position: absolute;
  left: 50%;
  bottom: -22px;
  display: grid;
  gap: 4px;
  transform: translateX(-50%);
  color: var(--soft);
  text-transform: uppercase;
}

.plugin-label strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.plugin-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 48px;
  margin-top: 74px;
}

.plugin-wave span {
  display: block;
  width: 3px;
  height: var(--h);
  border-radius: 999px;
  background: rgba(75, 199, 223, 0.48);
  animation: pluginWave 1.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 48ms);
}

.plugin-info {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 72px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.plugin-info h2 {
  color: var(--ink);
}

.plugin-info .plugin-kicker {
  justify-content: flex-start;
  margin-bottom: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.plugin-info .plugin-kicker::before,
.plugin-info .plugin-kicker::after {
  display: none;
}

.plugin-info p {
  max-width: 760px;
  color: var(--soft);
  font-size: 1.16rem;
  line-height: 1.62;
}

.plugin-docs {
  display: grid;
  gap: 18px;
}

.plugin-docs h3,
.plugin-docs h4 {
  margin: 28px 0 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
}

.plugin-docs h3 {
  font-size: 1.65rem;
}

.plugin-docs h4 {
  color: #4bc7df;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plugin-docs p {
  margin: 0;
}

.plugin-docs ul,
.plugin-docs ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.5;
}

.plugin-docs li::marker {
  color: #4bc7df;
}

.plugin-docs code {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #e8f7fb;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 10px 12px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.plugin-info dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 0;
}

.plugin-info dl div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-info dt {
  margin-bottom: 8px;
  color: #4bc7df;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plugin-info dd {
  margin: 0;
  color: var(--ink);
}

@keyframes pluginKnobTurn {
  0%,
  12% {
    transform: rotate(-142deg);
  }
  62%,
  80% {
    transform: rotate(142deg);
  }
  100% {
    transform: rotate(-142deg);
  }
}

@keyframes pluginArcOpen {
  0%,
  12% {
    --noise-progress: 0deg;
    opacity: 0.64;
  }
  62%,
  80% {
    --noise-progress: 284deg;
    opacity: 1;
  }
  100% {
    --noise-progress: 0deg;
    opacity: 0.64;
  }
}

@keyframes pluginArcPulse {
  0%,
  100% {
    filter: brightness(0.92);
    opacity: 0.82;
  }
  50% {
    filter: brightness(1.22);
    opacity: 1;
  }
}

@keyframes pluginWave {
  0%,
  100% {
    transform: scaleY(0.58);
    opacity: 0.42;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.9;
  }
}

@keyframes pluginGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 36px 54px;
  }
}

@keyframes pluginSweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-38%);
  }
  45%,
  65% {
    opacity: 1;
    transform: translateX(38%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .about-content,
  .detail-hero,
  .plugin-hero,
  .plugin-info,
  .site-footer {
    animation: pageEnter 520ms ease both;
  }

  .plugin-hero {
    animation: pageEnter 520ms ease both, pluginGridDrift 26s linear infinite;
  }

  .work-card {
    animation: pageEnter 520ms ease both;
  }

  .work-card:nth-child(2) {
    animation-delay: 70ms;
  }

  .work-card:nth-child(3) {
    animation-delay: 140ms;
  }

  .work-card:nth-child(4) {
    animation-delay: 210ms;
  }

  .work-card:nth-child(5) {
    animation-delay: 280ms;
  }

  .work-card:nth-child(6) {
    animation-delay: 350ms;
  }
}

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

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .section,
  .detail-hero,
  .detail-grid,
  .education-list div,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 14px;
  }

  .hero {
    gap: 34px;
    padding: 48px 0 56px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .portrait-stage img {
    width: min(100%, 430px);
  }

  .section {
    gap: 24px;
    padding: 42px 0;
  }

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

  .detail-hero {
    gap: 28px;
  }

  .detail-copy h1 {
    font-size: 3.1rem;
  }

  .detail-grid {
    gap: 28px;
    padding-bottom: 54px;
  }

  .plugin-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .plugin-topline,
  .plugin-info {
    grid-template-columns: 1fr;
  }

  .plugin-info {
    gap: 20px;
    padding: 52px 0 64px;
  }

  .plugin-info dl {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    gap: 14px;
  }

  .hero-actions,
  .detail-actions,
  .social-row {
    gap: 12px;
  }

  .button-link.secondary::before {
    margin-right: 12px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2,
  .detail-copy h1 {
    font-size: 2.25rem;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .contact-form-section {
    margin-top: 48px;
    padding: 22px;
  }

  .plugin-topline {
    gap: 18px;
    align-items: flex-start;
  }

  .plugin-copy h1 {
    font-size: 3.4rem;
  }

  .plugin-actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .plugin-button {
    width: 100%;
  }

  .plugin-control {
    width: min(330px, 84vw);
  }
}
