body[data-surface="about"] {
  --t-bg: #050505;
  --t-fg: #f3eee3;
  --t-muted: rgba(243, 238, 227, 0.55);
  --t-ghost: rgba(199, 154, 69, 0.08);
  --t-faint: rgba(111, 234, 255, 0.09);
  --t-line: rgba(199, 154, 69, 0.2);
  --about-gold: #d5ad60;
  --about-cyan: #7fe7ef;
  --about-mx: 72vw;
  --about-my: 38vh;
  min-height: 100svh;
  overflow-x: clip;
  background:
    radial-gradient(circle at var(--about-mx) var(--about-my), rgba(111, 234, 255, 0.055), transparent 28rem),
    radial-gradient(circle at 12% 30%, rgba(199, 154, 69, 0.07), transparent 32rem),
    #050505;
  color: var(--t-fg);
}

body[data-surface="about"]::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(rgba(199, 154, 69, 0.028) 1px, transparent 1px) 0 0 / 100% 64px,
    linear-gradient(90deg, rgba(111, 234, 255, 0.022) 1px, transparent 1px) 0 0 / 64px 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

body[data-surface="about"] .site-header,
body[data-surface="about"] .site-footer {
  position: relative;
  z-index: 5;
}

.about-page {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, 1380px) !important;
  max-width: none !important;
  margin-inline: auto;
  padding: 0 !important;
}

.about-hero {
  position: relative;
  min-height: min(900px, calc(100svh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  grid-template-rows: 1fr auto;
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  padding: clamp(82px, 10vw, 150px) clamp(0px, 2vw, 26px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--t-line);
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-hero::before {
  inset: 8% 0 16%;
  border: 1px solid rgba(199, 154, 69, 0.1);
  clip-path: polygon(0 7%, 89% 0, 100% 84%, 14% 100%);
}

.about-hero::after {
  width: min(42vw, 620px);
  aspect-ratio: 1;
  right: -8%;
  top: 12%;
  border: 1px solid rgba(111, 234, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(199, 154, 69, 0.035), 0 0 0 10vw rgba(111, 234, 255, 0.025);
}

.about-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.about-hero-copy h1 {
  margin: 18px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 9.8vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.7;
}

.about-hero-copy h1 span {
  display: block;
}

.about-hero-copy h1 span:nth-child(2) {
  margin-left: 0.16em;
  color: var(--about-gold);
  font-style: italic;
}

.about-hero-copy h1 span:nth-child(3) {
  margin-left: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127, 231, 239, 0.62);
}

.about-deck {
  max-width: 62ch;
  margin: 0;
  color: rgba(243, 238, 227, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.5vw, 1.42rem);
  line-height: 1.65;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 11px 14px;
  border: 1px solid var(--t-line);
  background: rgba(5, 5, 5, 0.68);
  color: var(--t-fg);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.about-actions a:hover,
.about-actions a:focus-visible {
  border-color: rgba(127, 231, 239, 0.62);
  background: rgba(111, 234, 255, 0.07);
  color: var(--about-cyan);
}

.about-hero-mark {
  position: relative;
  z-index: 2;
  min-height: clamp(390px, 48vw, 620px);
  display: grid;
  place-items: center;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(199, 154, 69, 0.24);
  background: linear-gradient(145deg, rgba(199, 154, 69, 0.035), rgba(111, 234, 255, 0.025));
  clip-path: polygon(7% 0, 100% 4%, 94% 100%, 0 88%);
}

.about-hero-mark::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(127, 231, 239, 0.22);
  transform: rotate(45deg);
}

.about-hero-mark span,
.about-hero-mark em {
  justify-self: stretch;
  color: var(--t-muted);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero-mark em { text-align: right; }

.about-hero-mark strong {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 30vw, 29rem);
  font-weight: 400;
  line-height: 0.62;
  -webkit-text-stroke: 1px rgba(213, 173, 96, 0.48);
  filter: drop-shadow(0 0 24px rgba(111, 234, 255, 0.12));
}

.about-practice-band {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--t-line);
  border-left: 1px solid var(--t-line);
  background: rgba(5, 5, 5, 0.7);
}

.about-practice-band article {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 18px;
  align-content: center;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}

.about-practice-band span {
  grid-row: 1 / span 2;
  color: var(--about-cyan);
  font: 600 0.58rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.about-practice-band strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 400;
}

.about-practice-band p {
  max-width: 38ch;
  margin: 0;
  color: var(--t-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.tolis-work {
  position: relative;
  padding: clamp(88px, 11vw, 156px) 0;
  border-bottom: 1px solid var(--t-line);
}

.tolis-work-heading {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.tolis-work-heading h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.tolis-work-heading output {
  min-width: 190px;
  padding: 12px 0;
  border-top: 1px solid rgba(127, 231, 239, 0.42);
  border-bottom: 1px solid rgba(127, 231, 239, 0.18);
  color: var(--about-cyan);
  font: 600 0.62rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.11em;
  text-align: right;
}

.tolis-index-stage {
  position: sticky;
  top: 28vh;
  z-index: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0.24;
}

.tolis-index-stage strong {
  display: block;
  overflow: hidden;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 17vw, 17rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.7;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(199, 154, 69, 0.2);
}

.tolis-index-stage > span,
.tolis-index-stage em {
  position: absolute;
  top: 0;
  color: rgba(127, 231, 239, 0.42);
  font: 600 0.58rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  font-style: normal;
  letter-spacing: 0.12em;
}

.tolis-index-stage > span { left: 0; }
.tolis-index-stage em { right: 0; }

.about-terminal {
  position: relative;
  min-height: clamp(400px, 54svh, 680px);
  display: grid;
  align-content: center;
  padding: clamp(80px, 12vw, 170px) clamp(0px, 3vw, 42px);
  overflow: hidden;
}

.about-terminal h2 {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 18px 0 46px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.about-terminal div {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--t-line);
  color: var(--t-muted);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-terminal a { color: var(--about-gold); text-decoration: none; }

body[data-surface="about"] .tolis-index a {
  background: rgba(5, 6, 7, 0.78);
  color: rgba(243, 238, 227, 0.74);
}

body[data-surface="about"] .tolis-index a:hover,
body[data-surface="about"] .tolis-index a:focus-visible,
body[data-surface="about"] .tolis-index a.is-active {
  background: linear-gradient(135deg, rgba(199, 154, 69, 0.18), rgba(111, 234, 255, 0.07));
  color: #fffaf0;
  box-shadow: inset 0 0 0 1px rgba(127, 231, 239, 0.46);
}

body[data-surface="about"] .tolis-index:has(a:hover) a:not(:hover),
body[data-surface="about"] .tolis-index:has(a:focus-visible) a:not(:focus-visible) {
  opacity: 0.42;
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .about-hero-mark {
    min-height: 440px;
    width: min(100%, 620px);
    justify-self: end;
  }

  .about-practice-band { grid-template-columns: 1fr; }
  .about-practice-band article { min-height: 126px; }
}

@media (max-width: 620px) {
  .about-page { width: min(100% - 18px, 1380px) !important; }
  .about-hero { min-height: auto; gap: 46px; padding-top: 68px; }
  .about-hero-copy h1 { font-size: clamp(4rem, 22vw, 6.8rem); line-height: 0.74; }
  .about-deck { font-size: 1rem; }
  .about-actions { display: grid; grid-template-columns: 1fr; }
  .about-hero-mark { min-height: 340px; }
  .about-practice-band article { padding: 22px 16px; }
  .tolis-work { padding-block: 84px; }
  .tolis-work-heading { align-items: start; flex-direction: column; }
  .tolis-work-heading output { width: 100%; text-align: left; }
  .tolis-index-stage { display: none; }
  .about-terminal { min-height: 500px; }
  .about-terminal h2 { font-size: clamp(4rem, 18vw, 6.5rem); }
  .about-terminal div { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .about-actions a { transition: none; }
}
