@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600&family=Noto+Sans+SC:wght@400;500;600&display=swap");

:root {
  --paper: #f7f4ee;
  --ink: #26222b;
  --muted: #77717c;
  --line: rgba(38, 34, 43, 0.16);
  --pink: #ff7ba9;
  --pink-soft: #f6dce7;
  --violet: #8174d8;
  --blue: #8bbbd0;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(38, 34, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 34, 43, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.site-nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--pink);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 680px;
  padding: 80px 0 94px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-index,
.project-number {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  background: var(--pink);
  vertical-align: middle;
  content: "";
}

h1 {
  max-width: 760px;
  margin: 28px 0 30px;
  font-size: clamp(54px, 7.2vw, 100px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 span {
  color: var(--violet);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 0 0 34px;
  color: #5e5862;
  font-size: 16px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.hero-art {
  position: relative;
  min-height: 420px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-one {
  width: 390px;
  height: 250px;
}

.orbit-two {
  width: 270px;
  height: 390px;
  border-color: rgba(129, 116, 216, 0.35);
  transform: translate(-50%, -50%) rotate(35deg);
}

.signal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 235px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 43, 0.24);
  border-radius: 4px;
  background: rgba(247, 244, 238, 0.84);
  box-shadow: 14px 18px 0 var(--pink-soft);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%) rotate(3deg);
}

.signal-card > span:not(.signal-dot) {
  margin-left: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 123, 169, 0.15);
}

.signal-card strong {
  display: block;
  margin: 28px 0 22px;
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.08em;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 60px;
}

.waveform i {
  display: block;
  width: 2px;
  height: 25%;
  background: var(--violet);
}

.waveform i:nth-child(2),
.waveform i:nth-child(8) { height: 55%; }
.waveform i:nth-child(3),
.waveform i:nth-child(7) { height: 85%; }
.waveform i:nth-child(4) { height: 45%; }
.waveform i:nth-child(5) { height: 100%; background: var(--pink); }
.waveform i:nth-child(6) { height: 68%; }

.spark {
  position: absolute;
  color: var(--pink);
  font-family: var(--mono);
}

.spark-one {
  top: 15%;
  right: 8%;
  font-size: 26px;
}

.spark-two {
  bottom: 14%;
  left: 10%;
  color: var(--blue);
  font-size: 22px;
}

.projects {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: 48px;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.project-card {
  display: grid;
  grid-template-columns: 0.72fr 1.9fr auto;
  gap: 40px;
  align-items: start;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.project-card:last-child {
  border-bottom: 1px solid var(--line);
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.project-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
}

.project-body h3 {
  margin: 10px 0 0;
  font-size: clamp(25px, 2.6vw, 35px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.project-body h3 span {
  color: var(--violet);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.project-body > p {
  margin: 0;
  color: #625c65;
  font-size: 14px;
  line-height: 1.85;
}

.project-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 123, 169, 0.45);
  border-radius: 999px;
  color: #9a4261;
  font-family: var(--mono);
  font-size: 9px;
  white-space: nowrap;
  text-transform: uppercase;
}

.project-status.muted {
  border-color: var(--line);
  color: var(--muted);
}

.status-light {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

.about {
  padding: 110px 0 130px;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
}

.about h2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.about-copy {
  max-width: 510px;
}

.about-copy p {
  margin: 0 0 22px;
  color: #5f5963;
  font-size: 16px;
  line-height: 1.95;
}

footer {
  padding: 82px 0 32px;
  border-top: 1px solid var(--ink);
}

.footer-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.footer-title h2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 56px 0 90px;
  border-top: 1px solid var(--line);
}

.footer-links a {
  display: flex;
  justify-content: space-between;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.footer-links a:not(:last-child) {
  margin-right: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

  .hero-art {
    min-height: 390px;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-meta {
    flex-direction: row;
    justify-content: space-between;
  }

  .project-status {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 76px;
  }

  .site-nav {
    gap: 14px;
    font-size: 9px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 35px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-art {
    min-height: 330px;
  }

  .orbit-one {
    width: 300px;
    height: 190px;
  }

  .orbit-two {
    width: 210px;
    height: 300px;
  }

  .signal-card {
    width: 205px;
  }

  .projects,
  .about {
    padding: 82px 0;
  }

  .section-heading,
  .about-grid,
  .project-body {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .about-grid {
    gap: 28px;
  }

  .project-body {
    gap: 24px;
  }

  .footer-title {
    display: block;
  }

  .footer-title h2 {
    margin-top: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    margin-bottom: 62px;
  }

  .footer-links a:not(:last-child) {
    margin-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
