@font-face {
  font-family: "Source Han Sans CN Web";
  src: url("https://cdn.jsdelivr.net/gh/magiclen/source-han-sans-cn-woff2-extra@master/SourceHanSansCN-Normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans CN Web";
  src: url("https://cdn.jsdelivr.net/gh/magiclen/source-han-sans-cn-woff2-extra@master/SourceHanSansCN-Heavy.woff2") format("woff2");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --paper: #05070c;
  --paper-deep: #070a12;
  --ink: #e9f4fa;
  --muted: rgba(233, 244, 250, 0.58);
  --line: rgba(233, 244, 250, 0.15);
  --accent: #d8f778;
  --accent-secondary: #d8f778;
  --mono: Helvetica, "Helvetica Neue", "Source Han Sans CN Web", "Source Han Sans CN", "Source Han Sans SC", "Noto Sans CJK SC", Arial, sans-serif;
  --sans: Helvetica, "Helvetica Neue", "Source Han Sans CN Web", "Source Han Sans CN", "Source Han Sans SC", "Noto Sans CJK SC", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  font: 11px/1 var(--mono);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px;
  padding: 0 3.25vw;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  font: 800 18px/1 var(--mono);
  letter-spacing: -0.08em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 22px;
}

.brand-index {
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: clamp(22px, 4vw, 64px);
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--muted);
  font: 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--accent);
  transition: transform 280ms var(--ease);
  transform-origin: left;
}

.main-nav a span {
  font-weight: 700;
}

.main-nav a em {
  font-style: normal;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.system-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  font: 9px/1 var(--mono);
  letter-spacing: 0.1em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 15%, transparent);
  animation: pulse 1.8s ease-out infinite;
}

.viewport {
  width: 100%;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.viewport::-webkit-scrollbar {
  display: none;
}

.panel {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.eyebrow {
  margin: 0;
  font: 700 clamp(9px, 0.7vw, 11px)/1.4 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.panel.is-active .reveal {
  opacity: 1;
  transform: translateY(0);
}

.panel.is-active .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.panel.is-active .reveal:nth-child(3) {
  transition-delay: 150ms;
}

/* Screen 01 */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  padding: 108px 6.4vw 42px;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3vw;
}

.display-title {
  margin: 22px 0 28px;
  font-size: clamp(70px, 8.2vw, 144px);
  font-weight: 900;
  line-height: 0.77;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.display-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(110px, 0.55fr) minmax(190px, 1fr);
  gap: 22px;
  max-width: 510px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.hero-intro p {
  margin: 0;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.6;
}

.hero-intro p:first-child {
  font-weight: 700;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin-top: clamp(28px, 5vh, 64px);
  font: 700 10px/1.35 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
}

.scroll-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 18px;
  transition: background 220ms ease, color 220ms ease, transform 300ms var(--ease);
}

.scroll-cue:hover .scroll-arrow {
  transform: translateY(4px);
  background: var(--ink);
  color: var(--paper);
}

.robot-zone {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 2;
  width: min(100%, 830px);
  justify-self: end;
}

.robot-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 2px;
  font: 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.robot-meta b {
  color: var(--accent);
  font-weight: 700;
}

.robot-meta-bottom {
  justify-content: flex-end;
  color: var(--muted);
}

.ascii-robot {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(5.5px, 0.66vw, 10.5px)/0.93 var(--mono);
  letter-spacing: 0.025em;
  white-space: pre;
  text-align: left;
  text-shadow: 1px 0 rgba(255, 84, 56, 0.28), -1px 0 rgba(17, 17, 15, 0.12);
  user-select: none;
}

.corner {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.corner-tl { top: 11px; left: 11px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner-tr { top: 11px; right: 11px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.corner-bl { bottom: 11px; left: 11px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner-br { right: 11px; bottom: 11px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); }

.side-label {
  position: absolute;
  right: 1.35vw;
  bottom: 44px;
  z-index: 3;
  font: 8px/1 var(--mono);
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

/* Screen 02 */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 8vw;
  padding: 124px 7.5vw 48px;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.about-heading {
  position: relative;
  z-index: 2;
  align-self: center;
}

.section-title {
  margin: 22px 0 0;
  font-size: clamp(50px, 6.6vw, 110px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.section-title span {
  color: var(--accent);
}

/* Dictionary-entry editorial layout: big headword + meta baseline, hairline
   rule, numbered hanging definition, and the will/intent commentary as an
   aside column beside it. */
.about-body {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: min(1240px, 96%);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-areas:
    "lex     relation"
    "rule    relation"
    "def     relation";
  column-gap: clamp(48px, 6vw, 112px);
  row-gap: clamp(26px, 3vw, 44px);
  align-items: start;
}

.lex-block {
  grid-area: lex;
}

.lex-word {
  margin: 0;
  font-size: clamp(52px, 7vw, 122px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.lex-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.4;
}

.lex-meta em {
  font-style: italic;
  color: var(--ink);
}

.lex-meta .etym {
  color: rgba(233, 244, 250, 0.42);
}

.lex-rule {
  grid-area: rule;
  align-self: end;
  height: 1px;
  background: rgba(233, 244, 250, 0.16);
}

.lex-def {
  grid-area: def;
}

.def-copy {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.55;
  letter-spacing: 0;
}

.def-copy em {
  font-style: italic;
}

.relation {
  grid-area: relation;
  align-self: end;
  padding-left: clamp(28px, 3vw, 52px);
  border-left: 1px solid rgba(233, 244, 250, 0.16);
}

.relation-copy {
  margin: 0;
  color: rgba(233, 244, 250, 0.62);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.75;
  letter-spacing: -0.005em;
}

.relation-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.feature-list {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  margin-top: 32px;
  gap: clamp(24px, 4vw, 72px);
}

.feature-list article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: clamp(230px, 36vh, 430px);
  cursor: default;
}

/* Giant Helvetica numbers echo on the dark stage; hovering reveals them. */
.feature-index {
  color: rgba(233, 244, 250, 0.08);
  font: 900 clamp(110px, 17vw, 300px)/0.78 var(--mono);
  letter-spacing: -0.05em;
  user-select: none;
  transition: color 700ms var(--ease);
}

.feature-list article:hover .feature-index {
  color: rgba(233, 244, 250, 0.4);
}

.feature-list h3 {
  margin: 18px 0 8px;
  font: 700 18px/1.1 var(--mono);
  letter-spacing: 0.01em;
}

.feature-list p {
  margin: 0;
  color: rgba(233, 244, 250, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

/* Screen 03 */
.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 112px 7.5vw 30px;
  border-top: 1px solid var(--ink);
  background: var(--accent);
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-code {
  margin: 0;
  font: 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.contact-code span {
  font-weight: 800;
}

.contact-main {
  width: 100%;
  margin: auto 0;
}

.contact-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(46px, 6.2vw, 104px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.contact-title span {
  color: var(--accent);
}

.contact-intro {
  margin: clamp(25px, 4vh, 48px) 0 22px;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.6;
}

.email-button {
  position: relative;
  display: grid;
  grid-template-columns: 185px 1fr auto;
  align-items: center;
  width: 100%;
  padding: 19px 0 17px;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 320ms var(--ease), background 220ms ease, color 220ms ease;
}

.email-button:hover,
.email-button:focus-visible {
  padding-right: 18px;
  padding-left: 18px;
  outline: none;
  background: var(--ink);
  color: var(--paper);
}

.email-label {
  font: 10px/1.4 var(--mono);
  letter-spacing: 0.06em;
}

.email-address {
  overflow: hidden;
  font-size: clamp(24px, 3.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.055em;
  text-overflow: ellipsis;
}

.email-icon {
  font-size: 28px;
}

.copy-status {
  min-height: 18px;
  margin-top: 8px;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.05em;
}

.contact-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 34px;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 15, 0.34);
}

.contact-footer span {
  display: block;
  margin-bottom: 6px;
  font: 10px/1 var(--mono);
  letter-spacing: 0.08em;
}

.contact-footer p {
  margin: 0;
  font: 700 11px/1.4 var(--mono);
}

.contact-footer a {
  border-bottom: 1px solid currentColor;
}

.copyright {
  white-space: nowrap;
}

.page-progress {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 1.25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
  font: 9px/1 var(--mono);
  mix-blend-mode: difference;
  color: white;
  pointer-events: none;
}

.progress-track {
  position: relative;
  width: 1px;
  height: 80px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.progress-track i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33.333%;
  background: white;
  transition: transform 500ms var(--ease);
}

@keyframes scan {
  from { transform: translateY(-70px); }
  to { transform: translateY(720px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 40%, transparent); }
  70% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}

@media (max-width: 980px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav em,
  .system-status span:last-child {
    display: none;
  }

  .hero {
    grid-template-columns: 0.78fr 1.22fr;
    padding: 88px 42px 30px;
  }

  .display-title {
    font-size: clamp(58px, 9vw, 90px);
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .ascii-shell {
    min-height: 58vh;
  }

  .ascii-robot {
    font-size: clamp(4.6px, 0.72vw, 7px);
  }

  .about {
    padding: 105px 6vw 34px;
    column-gap: 5vw;
  }

  .contact {
    padding: 96px 6vw 25px;
  }
}

@media (max-width: 720px) {
  .panel {
    min-height: 100svh;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 86px 20px 22px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 0;
  }

  .hero-copy .eyebrow,
  .display-title {
    grid-column: 1 / -1;
  }

  .display-title {
    margin: 14px 0 15px;
    font-size: clamp(55px, 18vw, 88px);
  }

  .hero-intro {
    display: block;
    max-width: 240px;
    padding-top: 10px;
  }

  .hero-intro p:first-child {
    margin-bottom: 3px;
  }

  .hero-intro p:last-child {
    font-size: 10px;
    line-height: 1.45;
  }

  .scroll-cue {
    margin: 0;
  }

  .scroll-cue > span:last-child {
    display: none;
  }

  .scroll-arrow {
    width: 38px;
    height: 38px;
  }

  .robot-zone {
    width: 100%;
    margin-top: 16px;
  }

  .ascii-shell {
    min-height: 43svh;
  }

  .ascii-robot {
    font-size: clamp(3.8px, 1.15vw, 5.3px);
  }

  .robot-meta {
    font-size: 6.5px;
  }

  .side-label,
  .page-progress {
    display: none;
  }

  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 88px 20px 24px;
  }

  .section-title {
    margin-top: 12px;
    font-size: clamp(43px, 13vw, 68px);
  }

  .about-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lex"
      "rule"
      "def"
      "relation";
    row-gap: 18px;
    max-width: 100%;
  }

  .lex-word {
    font-size: clamp(44px, 13vw, 68px);
  }

  .lex-meta {
    margin-top: 14px;
    font-size: 13px;
  }

  .def-copy {
    font-size: 17px;
  }

  .relation {
    padding-left: 16px;
  }

  .relation-copy {
    font-size: 13.5px;
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 0;
    gap: 14px;
  }

  .feature-list article {
    min-height: 150px;
  }

  .feature-list h3 {
    margin: 10px 0 6px;
    font-size: 10px;
  }

  .feature-list p {
    font-size: 9.5px;
  }

  .contact {
    justify-content: center;
    padding: 85px 20px 20px;
  }

  .contact-top {
    align-items: flex-start;
  }

  .contact-code {
    max-width: 130px;
    text-align: right;
    line-height: 1.45;
  }

  .contact-main {
    margin: auto 0;
  }

  .contact-title {
    font-size: clamp(32px, 11vw, 54px);
    line-height: 1.08;
  }

  .contact-intro {
    font-size: 11px;
  }

  .email-button {
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .email-label {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .email-address {
    font-size: clamp(19px, 6vw, 28px);
  }

  .contact-footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .footer-note {
    display: none;
  }

  .copyright {
    justify-self: end;
  }
}

@media (max-height: 700px) and (min-width: 721px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 22px;
  }

  .display-title {
    margin: 14px 0 18px;
  }

  .scroll-cue {
    margin-top: 22px;
  }

  .ascii-shell {
    min-height: 70vh;
  }

  .about {
    padding-top: 94px;
    padding-bottom: 22px;
  }

  .about-body {
    row-gap: 20px;
  }

  .feature-list article {
    min-height: 190px;
  }

  .contact {
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .contact-intro {
    margin: 22px 0 14px;
  }
}

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

/* Full-bleed generative ASCII hero */
.site-header,
.page-progress {
  transition: opacity 420ms ease, transform 620ms var(--ease);
}

body[data-active-section="0"] .site-header {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

body[data-active-section="0"] .page-progress {
  opacity: 0;
  transform: translate(24px, -50%);
}

.hero.ascii-hero {
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 0;
  background: #020203;
}

.ascii-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #020203;
}

#asciiCanvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #020203;
}

.hero-logo-heading {
  position: relative;
  z-index: 2;
  width: min(72vw, 612px);
  margin: 0;
  line-height: 0;
  animation: mark-arrival 1.2s 180ms var(--ease) both;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 26px rgba(0, 0, 0, 0.42));
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes mark-arrival {
  from {
    opacity: 0;
    transform: scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@media (max-width: 720px) {
  .hero.ascii-hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero-logo-heading {
    width: min(84vw, 612px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-heading {
    animation: none;
  }
}

/* Shared surface language for screens 02 and 03 — same near-black stage as
   the generative ASCII hero, with a faint cyan blueprint grid, cyan/blue
   energy glows and ASCII micro-details. */
.about,
.contact {
  background-color: #030406;
  color: var(--ink);
}

.about {
  border-top-color: rgba(94, 241, 255, 0.55);
}

.about > *,
.contact > * {
  z-index: 1;
}

.section-title span {
  color: var(--accent);
}

.about-body {
  grid-column: 1 / -1;
}

.feature-list {
  color: var(--ink);
}

.feature-list p {
  color: rgba(233, 244, 250, 0.52);
}

.contact {
  border-top-color: var(--ink);
}

.contact-main {
  position: relative;
  padding: clamp(28px, 4vw, 62px);
  color: var(--ink);
}

.contact-main > * {
  position: relative;
  z-index: 1;
}

.contact-title {
  color: var(--ink);
}

.contact-intro {
  color: rgba(233, 244, 250, 0.68);
}

.email-button {
  border-color: rgba(233, 244, 250, 0.54);
  color: var(--ink);
}

.email-button:hover,
.email-button:focus-visible {
  background: var(--accent);
  color: #04060c;
}

.copy-status {
  color: var(--accent);
}

.contact-footer {
  border-top-color: var(--ink);
}

@media (max-width: 720px) {
  .about-body {
    width: 100%;
  }

  .contact-main {
    padding: 24px 17px;
  }
}
