:root {
  --ink: #070a0d;
  --ink-raised: #0c1216;
  --ink-soft: #111a1f;
  --line: #26343b;
  --line-bright: #49616a;
  --text: #f1f5f1;
  --muted: #a8b4b4;
  --dim: #708083;
  --cyan: #67dbe4;
  --lime: #c5ee74;
  --coral: #ff9f83;
  --mono: "DM Mono", Consolas, monospace;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.signal-field {
  position: fixed;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.68;
}

.page-noise {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #131d22;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 13, 0.94);
  border-color: #1d2a30;
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 37px;
  height: 30px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
}

.brand-name {
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links > a:not(.nav-cta) {
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-bright);
  padding: 10px 12px;
  color: var(--text);
}

.nav-cta svg {
  width: 15px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--ink-soft);
}

.menu-toggle svg {
  width: 20px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
  min-height: 720px;
  padding-top: 72px;
  padding-bottom: 88px;
}

.eyebrow,
.section-kicker,
.meta-label,
.project-topline,
.contact-option small,
.availability-marker {
  margin: 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.live-dot,
.tag-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(197, 238, 116, 0.12);
  animation: livePulse 1.8s ease-in-out infinite;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0;
  font-size: 74px;
  font-weight: 800;
  line-height: 1.02;
}

.accent-text {
  color: var(--lime);
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  border: 1px solid var(--line-bright);
  padding: 0 17px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 18px;
}

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

.button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: #18200c;
}

.button-primary:hover {
  background: var(--text);
  border-color: var(--text);
}

.button-quiet {
  color: var(--text);
  background: rgba(12, 18, 22, 0.64);
}

.button-quiet:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-meta > div {
  min-width: 145px;
  padding: 13px 21px 13px 0;
  margin-right: 21px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
}

.hero-meta > div:last-child {
  border: 0;
}

.meta-label {
  display: block;
  margin-bottom: 4px;
  color: var(--dim);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 425px);
  padding: 32px 0 37px;
}

.visual-index {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.photo-stage {
  position: relative;
  aspect-ratio: 0.8;
  border: 1px solid var(--line-bright);
  padding: 10px;
  background: #0b1014;
  overflow: hidden;
}

.photo-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(0.86);
}

.photo-stage::after {
  position: absolute;
  content: "";
  inset: 10px;
  border: 1px solid rgba(197, 238, 116, 0.44);
  pointer-events: none;
}

.photo-scan {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  height: 2px;
  background: var(--lime);
  opacity: 0.8;
  box-shadow: 0 0 17px rgba(197, 238, 116, 0.75);
  animation: scanPhoto 5s linear infinite;
}

.photo-bracket {
  position: absolute;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-color: var(--cyan);
  border-style: solid;
}

.photo-bracket-top {
  top: -9px;
  left: -9px;
  border-width: 2px 0 0 2px;
}

.photo-tag {
  position: absolute;
  z-index: 2;
  right: 11px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 29px;
  padding: 0 9px;
  background: var(--lime);
  color: #1a2310;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.tag-dot {
  width: 5px;
  height: 5px;
  box-shadow: none;
  background: #1a2310;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.signal-corner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid var(--coral);
  opacity: 0.7;
}

.signal-corner-one {
  top: 57px;
  right: 0;
  border-width: 1px 1px 0 0;
}

.signal-corner-two {
  bottom: 59px;
  left: 0;
  border-width: 0 0 1px 1px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1013;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 56px;
  animation: tickerMove 32s linear infinite;
}

.ticker-track span {
  margin: 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.ticker-track b {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--cyan);
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-heading {
  max-width: 760px;
}

.section-kicker {
  margin-bottom: 15px;
}

.section-heading h2,
.contact-heading h2,
.availability h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
}

.section-heading > p:not(.section-kicker),
.contact-heading > p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about {
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  margin-top: 58px;
}

.about-body {
  color: var(--muted);
  font-size: 19px;
}

.about-body p {
  margin: 0 0 22px;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.principle-number {
  grid-row: span 2;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
}

.principles h3 {
  margin: 0;
  font-size: 18px;
}

.principles p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.work {
  border-bottom: 1px solid var(--line);
}

.work-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  column-gap: 40px;
  max-width: none;
}

.work-heading .section-kicker {
  grid-row: span 2;
}

.work-heading > p:last-child {
  margin-top: 14px;
}

.project-list {
  margin-top: 70px;
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding: 24px 0 88px;
  border-top: 1px solid var(--line);
}

.project-reverse {
  padding-top: 88px;
}

.project-display {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0a1115;
}

.project-display::before,
.project-display::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-color: var(--cyan);
  border-style: solid;
  z-index: 1;
}

.project-display::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.project-display::after {
  right: 12px;
  bottom: 12px;
  border-width: 0 1px 1px 0;
}

.display-note {
  position: absolute;
  bottom: 15px;
  left: 19px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.project-copy {
  position: relative;
}

.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
}

.project-topline span:first-child {
  color: var(--cyan);
}

.project-copy h3 {
  margin: 22px 0 15px;
  font-size: 35px;
  line-height: 1.18;
}

.project-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.project-points {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.project-points li {
  position: relative;
  padding-left: 17px;
  margin-top: 11px;
}

.project-points li::before {
  position: absolute;
  content: "+";
  left: 0;
  color: var(--lime);
  font-family: var(--mono);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
}

.tech-list span {
  border: 1px solid var(--line);
  padding: 5px 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.project-link svg {
  width: 17px;
  transition: transform 160ms ease;
}

a.project-link:hover svg {
  transform: translate(3px, -3px);
}

.project-link-muted {
  color: var(--dim);
}

.browser-shell {
  width: 83%;
  border: 1px solid #52656c;
  background: #172227;
  box-shadow: 22px 23px 0 #101a1f;
  transform: rotate(-4deg);
}

.browser-bar,
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 29px;
  padding: 0 10px;
  border-bottom: 1px solid #41545d;
}

.browser-bar span,
.terminal-bar span {
  width: 6px;
  height: 6px;
  background: #dba98e;
}

.browser-bar span:nth-child(2),
.terminal-bar span:nth-child(2) {
  background: #e8d578;
}

.browser-bar span:nth-child(3),
.terminal-bar span:nth-child(3) {
  background: #8ed59f;
}

.browser-bar em,
.terminal-bar em {
  overflow: hidden;
  margin-left: 5px;
  color: #92a5aa;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.portal-screen {
  display: grid;
  grid-template-columns: 18% 1fr;
  height: 227px;
}

.portal-side {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 22px 12px;
  background: #111a21;
}

.portal-side i {
  width: 100%;
  height: 5px;
  background: #38515a;
}

.portal-side i:first-child {
  background: #99dbd8;
}

.portal-content {
  padding: 24px 20px;
  background: #e6edeb;
}

.screen-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-heading span {
  width: 43%;
  height: 10px;
  background: #0f2630;
}

.screen-heading b {
  width: 18px;
  height: 18px;
  background: #75cdbb;
}

.screen-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 19px;
}

.screen-metrics i {
  height: 35px;
  border-top: 3px solid #5fb5c4;
  background: #cedad6;
}

.screen-table {
  display: grid;
  gap: 7px;
  margin-top: 19px;
}

.screen-table i {
  height: 7px;
  background: #c3d0cb;
}

.screen-table i:first-child {
  background: #5b7d86;
}

.site-window {
  width: 79%;
  overflow: hidden;
  border: 1px solid #49626b;
  background: #d1ddd4;
  box-shadow: -20px 23px 0 #101b20;
  transform: rotate(3deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 35px;
  padding: 0 12px;
  background: #f3f6ef;
}

.site-nav b {
  color: #246e6f;
  font-family: var(--mono);
  font-size: 11px;
}

.site-nav i {
  width: 24px;
  height: 4px;
  background: #a4b5aa;
}

.site-nav span {
  margin-left: auto;
  width: 18px;
  height: 9px;
  background: #d86c55;
}

.site-hero-ui {
  min-height: 192px;
  padding: 26px 25px;
  color: #f0f4ec;
  background: #15474e;
}

.site-hero-ui small {
  color: #bbdf79;
  font-family: var(--mono);
  font-size: 8px;
}

.site-hero-ui strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.12;
}

.site-hero-ui em {
  display: block;
  width: 62px;
  height: 8px;
  margin-top: 19px;
  background: #bbdf79;
}

.site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 13px;
  background: #e8eee5;
}

.site-cards i {
  height: 44px;
  background: #aac4b8;
}

.project-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.compact-project {
  display: block;
  padding: 0;
  border: 0;
}

.compact-project .project-display {
  min-height: 255px;
}

.compact-project .project-copy {
  padding-top: 23px;
}

.compact-project .project-copy h3 {
  font-size: 25px;
}

.cli-display {
  background: #071013;
}

.terminal-window {
  width: 82%;
  min-height: 164px;
  padding-bottom: 18px;
  border: 1px solid #39535b;
  background: #0c191d;
  box-shadow: 18px 18px 0 #111d22;
  transform: rotate(-3deg);
  font-family: var(--mono);
}

.terminal-window p {
  margin: 11px 16px 0;
  color: #a9c8bd;
  font-size: 10px;
}

.terminal-window p b {
  color: var(--cyan);
}

.terminal-window strong {
  color: var(--lime);
  font-weight: 500;
}

.cursor {
  display: inline-block;
  width: 6px;
  height: 11px;
  margin-left: 4px;
  vertical-align: -1px;
  background: var(--lime);
  animation: blink 0.9s step-end infinite;
}

.gui-display {
  background: #131719;
}

.app-window {
  width: 74%;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid #b6c2bc;
  background: #ece8dc;
  box-shadow: 18px 18px 0 #383b33;
  transform: rotate(3deg);
}

.app-titlebar {
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  color: #e6eee5;
  background: #283d46;
  font-family: var(--mono);
  font-size: 8px;
}

.app-titlebar span {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: #c6ea74;
}

.app-titlebar i {
  width: 7px;
  height: 1px;
  margin-left: 7px;
  background: #bcc9c3;
}

.app-titlebar i:first-of-type {
  margin-left: auto;
}

.app-content {
  padding: 21px 21px 18px;
  color: #25343d;
}

.app-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.app-content p strong {
  color: #bd604c;
}

.app-content div {
  display: flex;
  gap: 5px;
  margin: 18px 0 14px;
}

.app-content div i {
  flex: 1;
  height: 17px;
  background: #b8c3b4;
}

.app-content b {
  display: inline-block;
  padding: 5px 8px;
  color: #e6eee5;
  background: #2b7072;
  font-family: var(--mono);
  font-size: 8px;
}

.stack {
  border-bottom: 1px solid var(--line);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.skill-group {
  min-height: 254px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 18, 22, 0.55);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.skill-group:hover {
  background: #121d22;
  transform: translateY(-5px);
}

.skill-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.skill-icon svg {
  width: 19px;
}

.skill-group h3 {
  margin: 43px 0 10px;
  font-size: 20px;
}

.skill-group p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.availability {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background: #111c1d;
}

.availability-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.availability-marker {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
}

.availability h2 {
  max-width: 710px;
  font-size: 42px;
}

.contact {
  padding-bottom: 120px;
}

.contact-heading {
  max-width: 720px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  margin-top: 58px;
}

.contact-options {
  border-top: 1px solid var(--line);
}

.contact-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 91px;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    padding 180ms ease;
}

.contact-option:hover {
  padding-left: 12px;
  background: rgba(18, 30, 34, 0.74);
}

.contact-option > span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid var(--line-bright);
  color: var(--cyan);
}

.contact-option > span svg {
  width: 17px;
}

.contact-option small {
  display: block;
  margin-bottom: 2px;
  color: var(--dim);
  font-size: 10px;
}

.contact-option strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-option > svg {
  width: 18px;
  color: var(--cyan);
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(13, 22, 26, 0.8);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line-bright);
  outline: none;
  resize: vertical;
  color: var(--text);
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.form-footer span {
  color: var(--lime);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(103, 219, 228, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 219, 228, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}

.thanks-shell {
  position: relative;
  width: min(100%, 700px);
  padding: 56px;
  border: 1px solid var(--line-bright);
  background: rgba(10, 16, 19, 0.94);
}

.thanks-shell::before,
.thanks-shell::after {
  position: absolute;
  content: "";
  width: 34px;
  height: 34px;
  border-color: var(--lime);
  border-style: solid;
}

.thanks-shell::before {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.thanks-shell::after {
  right: -8px;
  bottom: -8px;
  border-width: 0 2px 2px 0;
}

.thanks-signal {
  margin-bottom: 40px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.thanks-shell h1 {
  margin: 14px 0 18px;
  font-size: 52px;
  line-height: 1.05;
}

.thanks-shell > p:not(.section-kicker) {
  max-width: 530px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
}

.error-shell {
  overflow: hidden;
}

.error-code {
  position: absolute;
  top: 17px;
  right: 34px;
  color: rgba(103, 219, 228, 0.08);
  font-family: var(--mono);
  font-size: 150px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

@keyframes livePulse {
  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 7px rgba(197, 238, 116, 0.03);
  }
}

@keyframes scanPhoto {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(500px);
    opacity: 0;
  }
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .hero {
    gap: 44px;
  }

  .hero h1 {
    font-size: 62px;
  }

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

  .project {
    gap: 38px;
  }

  .project-copy h3 {
    font-size: 30px;
  }

  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    background: rgba(7, 10, 13, 0.92);
    border-color: #1d2a30;
    backdrop-filter: blur(12px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: #0b1115;
    transition:
      max-height 250ms ease,
      border-color 250ms ease;
  }

  .nav-links.is-open {
    max-height: 330px;
    border-color: var(--line);
  }

  .nav-links > a:not(.nav-cta),
  .nav-cta {
    padding: 17px 18px;
    border-top: 1px solid var(--line);
  }

  .nav-cta {
    justify-content: space-between;
    border-right: 0;
    border-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: 0;
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: 54px;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 430px);
  }

  .section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .section-heading h2,
  .contact-heading h2 {
    font-size: 40px;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .work-heading {
    display: block;
  }

  .project,
  .project-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px 0 64px;
  }

  .project-reverse .project-copy {
    order: 2;
  }

  .project-reverse .project-display {
    order: 1;
  }

  .project-display {
    min-height: 360px;
  }

  .project-pair {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .compact-project .project-display {
    min-height: 285px;
  }

  .availability-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .availability h2 {
    font-size: 38px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-name {
    display: none;
  }

  .hero {
    padding-top: 59px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-meta {
    margin-top: 38px;
  }

  .hero-meta > div {
    min-width: 50%;
    padding: 12px 13px 12px 0;
    margin: 0;
    border-right: 0;
  }

  .hero-meta > div:last-child {
    min-width: 100%;
    border-top: 1px solid var(--line);
  }

  .hero-visual {
    width: min(100%, 370px);
  }

  .photo-tag {
    right: 11px;
    bottom: 21px;
  }

  .signal-corner-one {
    right: 0;
  }

  .signal-corner-two {
    left: 0;
  }

  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section-heading h2,
  .contact-heading h2 {
    font-size: 31px;
  }

  .section-heading > p:not(.section-kicker),
  .contact-heading > p {
    font-size: 15px;
  }

  .about-body {
    font-size: 17px;
  }

  .project-list {
    margin-top: 46px;
  }

  .project-display {
    min-height: 270px;
  }

  .browser-shell,
  .site-window {
    width: 80%;
  }

  .portal-screen {
    height: 185px;
  }

  .portal-content {
    padding: 18px 14px;
  }

  .site-hero-ui {
    min-height: 163px;
    padding: 20px;
  }

  .site-hero-ui strong {
    font-size: 21px;
  }

  .project-copy h3 {
    font-size: 27px;
  }

  .project-points {
    font-size: 13px;
  }

  .compact-project .project-display {
    min-height: 240px;
  }

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

  .skill-group {
    min-height: 210px;
  }

  .skill-group h3 {
    margin-top: 30px;
  }

  .availability {
    padding: 67px 0;
  }

  .availability h2 {
    font-size: 31px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
  }

  .thanks-shell {
    padding: 38px 25px;
  }

  .thanks-shell h1 {
    font-size: 37px;
  }

  .error-code {
    top: 23px;
    right: 18px;
    font-size: 88px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

article.secret {
    padding: 0 15px;
}
