:root {
  --black: #10110f;
  --ash: #d8d6cf;
  --white: #f7f6f1;
  --signal: #e8ff36;
  --blue: #7ea6ff;
  --line: rgba(247, 246, 241, 0.24);
  font-family: Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--black); }
body { min-width: 320px; margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); }
a { color: inherit; }
button, input { font: inherit; }
.site-header { display: flex; align-items: center; justify-content: space-between; width: min(calc(100% - 48px), 1500px); min-height: 68px; margin: 0 auto; border-bottom: 1px solid var(--line); font: 700 10px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.site-header a { text-decoration: none; }
.site-header p { margin: 0; }
.path-hero { position: relative; display: grid; grid-template-columns: minmax(420px, 0.9fr) minmax(380px, 1.1fr); gap: 100px; width: min(calc(100% - 48px), 1500px); min-height: calc(100vh - 68px); margin: 0 auto; padding: 48px 0 80px; }
.path-line { position: absolute; top: 0; bottom: 0; left: calc(50% - 1px); width: 2px; background: linear-gradient(var(--signal) 0 18%, transparent 18% 25%, var(--signal) 25% 58%, transparent 58% 65%, var(--signal) 65% 100%); opacity: 0.28; }
.path-viewer, .path-copy { position: relative; z-index: 1; }
.artwork-stage { position: sticky; top: 24px; width: min(100%, 650px); aspect-ratio: 9 / 16; overflow: hidden; background: #000; }
.artwork-stage img { display: block; width: 100%; height: 100%; object-fit: contain; }
#media-status { position: absolute; left: 12px; bottom: 12px; margin: 0; padding: 7px 9px; background: var(--signal); color: var(--black); font: 700 9px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.artwork-stage.is-loading img { opacity: 0.68; }
.path-copy { display: flex; flex-direction: column; min-width: 0; }
.eyebrow { margin: 0; color: var(--blue); font: 700 10px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
h1 { margin: 70px 0 44px; font-family: Georgia, "Times New Roman", serif; font-size: 6.7rem; font-weight: 400; line-height: 0.78; letter-spacing: 0; }
h1 em { color: var(--signal); font-weight: 400; }
.hero-statement { max-width: 540px; margin: 0 0 70px; color: var(--ash); font: 400 1.5rem/1.45 Georgia, "Times New Roman", serif; }
.cycle-console { margin-top: auto; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cycle-heading { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font: 700 9px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.cycle-heading strong { color: var(--signal); font-size: 1.3rem; }
.cycle-controls { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; }
.cycle-controls button { height: 44px; padding: 0; border: 1px solid var(--white); border-radius: 0; background: transparent; color: var(--white); cursor: pointer; }
.cycle-controls button:hover, .cycle-controls button:focus-visible { background: var(--signal); color: var(--black); }
.cycle-controls input { width: 100%; accent-color: var(--signal); }
.cycle-toggle { display: flex; align-items: center; gap: 9px; margin-top: 13px; color: var(--ash); font: 700 9px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.cycle-toggle input { width: 16px; height: 16px; accent-color: var(--signal); }
.source-links { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 24px; }
.source-links a { padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--ash); font: 700 9px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-decoration: none; text-transform: uppercase; }
.source-links a:hover, .source-links a:focus-visible { color: var(--signal); }
.path-statement { display: grid; grid-template-columns: 1fr 0.65fr; gap: 100px; padding: 150px max(24px, calc((100vw - 1500px) / 2)); background: var(--white); color: var(--black); }
.path-statement > p { max-width: 960px; margin: 0; font: 400 5rem/1 Georgia, "Times New Roman", serif; }
.path-statement div { align-self: end; }
.path-statement div p { margin: 0 0 14px; font: 400 1.45rem/1.45 Georgia, "Times New Roman", serif; }
.project-notes { display: grid; grid-template-columns: 1fr 0.78fr; gap: 90px; width: min(calc(100% - 48px), 1500px); margin: 0 auto; padding: 130px 0; }
.project-notes h2 { margin: 0; color: var(--signal); font: 400 4.2rem/1 Georgia, "Times New Roman", serif; }
.project-notes p { margin: 0 0 20px; color: var(--ash); font-size: 14px; line-height: 1.75; }
footer { display: flex; justify-content: space-between; width: min(calc(100% - 48px), 1500px); margin: 0 auto; padding: 28px 0 38px; border-top: 1px solid var(--line); font: 700 9px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
footer p { margin: 0; }
@media (max-width: 1020px) {
  .path-hero { grid-template-columns: 1fr; }
  .path-line { left: 72px; }
  .path-viewer { order: 2; }
  .artwork-stage { position: relative; top: auto; margin-inline: auto; }
  .path-statement, .project-notes { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header, .path-hero, .project-notes, footer { width: min(calc(100% - 28px), 1500px); }
  .site-header p { max-width: 150px; text-align: right; }
  .path-hero { gap: 42px; padding-top: 30px; }
  .path-line { left: 20px; }
  h1 { margin-top: 52px; font-size: 4.3rem; }
  .hero-statement { font-size: 1.15rem; }
  .path-statement { gap: 50px; padding-block: 90px; }
  .path-statement > p { font-size: 3.1rem; }
  .project-notes { gap: 40px; padding: 90px 0; }
  .project-notes h2 { font-size: 3rem; }
}

