@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');


:root {
  --black: #090909;
  --white: #f3f1eb;
  --gray: #a5a39d;
  --dark-gray: #242422;
  --line: rgba(243, 241, 235, 0.16);

  --sans: "Inter", sans-serif;
  --mono: "DM Mono", monospace;

  --page-padding: clamp(20px, 4vw, 64px);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}


body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}


body.menu-open {
  overflow: hidden;
}


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


button {
  color: inherit;
  font: inherit;
}


.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}


.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}


.loader-mark {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}


.loader-mark span:last-child {
  color: var(--gray);
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: 84px;

  padding:
    0
    var(--page-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;

  mix-blend-mode: difference;
}


.brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.04em;
}


.header-meta {
  display: flex;
  align-items: center;
  gap: 28px;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}


.connection-status {
  display: flex;
  align-items: center;
  gap: 7px;
}


.connection-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}


.menu-trigger {
  border: 0;
  background: transparent;

  display: flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}


.menu-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.menu-lines i {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}


/* =========================================
   MENU
========================================= */

.site-menu {
  position: fixed;
  inset: 0;

  z-index: 2000;

  background: var(--white);
  color: var(--black);

  padding: 32px var(--page-padding);

  display: flex;
  flex-direction: column;

  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(.76,0,.24,1);
}


.site-menu.open {
  transform: translateY(0);
}


.menu-top {
  display: flex;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}


.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}


.main-navigation {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: 900px;
}


.main-navigation a {
  display: grid;
  grid-template-columns: 60px 1fr;

  align-items: center;

  padding: 15px 0;

  border-bottom: 1px solid rgba(9,9,9,.15);

  transition: padding-left .3s ease;
}


.main-navigation a:hover {
  padding-left: 18px;
}


.main-navigation span {
  font-family: var(--mono);
  font-size: 10px;
}


.main-navigation strong {
  font-size: clamp(38px, 7vw, 90px);
  font-weight: 500;
  letter-spacing: -0.07em;
}


.menu-bottom {
  display: flex;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 9px;
  color: #6f6d68;
}


/* =========================================
   GENERAL
========================================= */

.section {
  padding:
    150px
    var(--page-padding);

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


.section-number {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--gray);

  margin-bottom: 70px;
}


.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--gray);
}


h1,
h2,
h3 {
  font-weight: 500;
}


h1,
h2 {
  letter-spacing: -0.075em;
}


h1 em,
h2 em {
  font-style: normal;
  color: var(--gray);
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 100svh;

  padding-top: 180px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;

  gap: 80px;

  align-items: end;
}


.hero-copy {
  max-width: 900px;
}


.hero h1 {
  margin-top: 24px;

  font-size: clamp(
    70px,
    11vw,
    175px
  );

  line-height: .83;
}


.hero-description {
  max-width: 490px;

  margin-top: 45px;

  color: var(--gray);

  font-size: 15px;
  line-height: 1.7;
}


.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;

  margin-top: 38px;

  padding-bottom: 9px;

  border-bottom: 1px solid var(--white);

  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;

  transition:
    gap .3s ease,
    opacity .3s ease;
}


.primary-link:hover {
  gap: 48px;
}


.primary-link.large {
  font-size: 11px;
}


.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 360px;
}


.coordinate,
.hero-note {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.8;
  color: var(--gray);
}


.hero-note {
  color: var(--white);
}


.hero-note span {
  color: var(--gray);
}


/* =========================================
   SIGNAL
========================================= */

.signal-section {
  overflow: hidden;

  border-bottom: 1px solid var(--line);

  display: grid;
  grid-template-columns:
    minmax(120px, 18vw)
    1fr;

  min-height: 76px;
}


.signal-label {
  display: flex;
  align-items: center;

  padding-left: var(--page-padding);

  border-right: 1px solid var(--line);

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}


.signal-window {
  overflow: hidden;

  display: flex;
  align-items: center;
}


.signal-track {
  display: flex;
  align-items: center;

  width: max-content;

  animation: signalMove 35s linear infinite;
}


.signal-track span {
  white-space: nowrap;

  margin-right: 55px;

  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;

  color: var(--gray);
}


.signal-track i {
  color: var(--white);
  font-style: normal;
  margin-right: 8px;
}


@keyframes signalMove {
  from {
    transform: translateX(0);
  }

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


/* =========================================
   IDEA
========================================= */

.idea-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;

  gap: 12vw;

  align-items: end;
}


.idea-heading h2 {
  font-size: clamp(55px, 8vw, 125px);
  line-height: .88;
}


.idea-copy {
  max-width: 470px;
}


.idea-copy .lead {
  color: var(--white);
  font-size: 22px;
  line-height: 1.4;

  margin-bottom: 28px;
}


.idea-copy p:not(.lead) {
  color: var(--gray);

  font-size: 14px;
  line-height: 1.8;

  margin-bottom: 20px;
}


.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;

  margin-top: 25px;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;

  transition: gap .3s ease;
}


.text-link:hover {
  gap: 36px;
}


/* =========================================
   SECTION INTRO
========================================= */

.section-intro {
  display: grid;
  grid-template-columns: 1fr .65fr;

  gap: 10vw;

  align-items: end;

  margin-bottom: 100px;
}


.section-intro h2 {
  margin-top: 25px;

  font-size: clamp(60px, 8vw, 130px);
  line-height: .85;
}


.section-intro > p {
  max-width: 430px;

  color: var(--gray);

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================
   EDITORIAL LIST
========================================= */

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


.editorial-row {
  display: grid;

  grid-template-columns:
    80px
    minmax(0, 1fr)
    180px;

  gap: 30px;

  align-items: center;

  min-height: 150px;

  border-bottom: 1px solid var(--line);

  transition:
    padding-left .4s ease,
    background .4s ease;
}


.editorial-row:hover {
  padding-left: 18px;
}


.row-number {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}


.row-main h3 {
  font-size: clamp(28px, 4vw, 55px);
  letter-spacing: -.06em;
}


.row-main p {
  max-width: 430px;

  margin-top: 7px;

  color: var(--gray);

  font-size: 12px;
  line-height: 1.5;
}


.row-action {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--gray);

  text-align: right;
}


/* =========================================
   PROCESS
========================================= */

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


.process-item {
  display: grid;

  grid-template-columns: 80px 1fr;

  gap: 30px;

  padding: 38px 0;

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


.process-item > span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}


.process-item h3 {
  font-size: 35px;
  letter-spacing: -.05em;
}


.process-item p {
  max-width: 520px;

  margin-top: 7px;

  color: var(--gray);

  font-size: 13px;
  line-height: 1.6;
}


.section-action {
  margin-top: 45px;
}


/* =========================================
   MATTERS
========================================= */

.matters-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10vw;
}


.matters-heading h2 {
  margin-top: 25px;

  font-size: clamp(60px, 8vw, 130px);

  line-height: .85;
}


.matters-copy {
  padding-top: 20px;
}


.matter-block {
  display: grid;

  grid-template-columns: 50px 1fr;

  gap: 20px;

  padding: 28px 0;

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


.matter-block:last-of-type {
  border-bottom: 1px solid var(--line);
}


.matter-block > span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}


.matter-block h3 {
  font-size: 16px;
  letter-spacing: -.02em;
}


.matter-block p {
  max-width: 470px;

  margin-top: 9px;

  color: var(--gray);

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================
   JOIN
========================================= */

.join {
  min-height: 90svh;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.join-content {
  max-width: 1050px;
}


.join-content h2 {
  margin-top: 25px;

  font-size: clamp(
    65px,
    10vw,
    160px
  );

  line-height: .83;
}


.join-content > p:not(.eyebrow) {
  max-width: 520px;

  margin-top: 40px;

  color: var(--gray);

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 100px var(--page-padding) 35px;

  background: var(--white);
  color: var(--black);
}


.footer-top {
  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

  gap: 50px;

  padding-bottom: 100px;
}


.footer-index {
  font-family: var(--mono);
  font-size: 9px;
  color: #77756f;
}


.footer-brand h2 {
  margin-top: 25px;

  font-size: clamp(
    40px,
    6vw,
    90px
  );

  line-height: .9;

  letter-spacing: -.07em;
}


.footer-column {
  display: flex;
  flex-direction: column;

  gap: 13px;
}


.footer-column > span,
.footer-socials > span {
  margin-bottom: 10px;

  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;

  color: #77756f;
}


.footer-column a {
  font-size: 13px;

  transition: opacity .2s ease;
}


.footer-column a:hover {
  opacity: .5;
}


.footer-socials {
  padding: 28px 0;

  border-top: 1px solid rgba(9,9,9,.18);
  border-bottom: 1px solid rgba(9,9,9,.18);
}


.footer-socials > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}


.footer-socials a {
  font-family: var(--mono);
  font-size: 10px;

  transition: opacity .2s ease;
}


.footer-socials a:hover {
  opacity: .5;
}


.footer-bottom {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    1fr
    auto;

  gap: 20px;

  padding-top: 28px;

  font-family: var(--mono);
  font-size: 8px;
  color: #77756f;
}


.footer-legal {
  display: flex;
  gap: 18px;
}


.footer-legal a:hover {
  color: var(--black);
}


/* =========================================
   REVEAL
========================================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
}


.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

  :root {
    --page-padding: 34px;
  }


  .hero-grid {
    grid-template-columns: 1fr 190px;
    gap: 40px;
  }


  .hero h1 {
    font-size: clamp(
      70px,
      12vw,
      130px
    );
  }


  .section-intro {
    grid-template-columns: 1fr .8fr;
    gap: 50px;
  }


  .idea-layout {
    gap: 70px;
  }


  .matters-layout {
    gap: 60px;
  }


  .footer-top {
    grid-template-columns: 1.6fr 1fr 1fr;
  }


  .footer-column:last-child {
    grid-column: 2;
  }


  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

}


: 38px 1fr;
    padding: 13px 0;
  }


  .main-navigation strong {
    font-size: clamp(
      38px,
      12vw,
      60px
    );
  }


  .menu-bottom {
    flex-direction: column;
    gap: 8px;
  }


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


  .section-number {
    margin-bottom: 50px;
  }


  .hero {
    min-height: 100svh;

    padding-top: 130px;
  }


  .hero-grid {
    display: block;
  }


  .hero h1 {
    font-size: clamp(
      63px,
      18vw,
      100px
    );

    line-height: .86;
  }


  .hero-description {
    margin-top: 32px;

    font-size: 13px;
  }


  .hero-side {
    min-height: auto;

    margin-top: 65px;

    flex-direction: row;
    justify-content: space-between;
  }


  .signal-section {
    display: block;

    min-height: 100px;
  }


  .signal-label {
    height: 42px;

    padding-left: var(--page-padding);

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }


  .signal-window {
    height: 58px;
  }


  .signal-track span {
    margin-right: 30px;
    font-size: 9px;
  }


  .idea-layout,
  .section-intro,
  .matters-layout {
    display: block;
  }


  .idea-heading h2,
  .section-intro h2,
  .matters-heading h2 {
    font-size: clamp(
      52px,
      16vw,
      90px
    );
  }


  .idea-copy {
    margin-top: 55px;
  }

/* =========================================
   MOBILE — REFINED
========================================= */

@media (max-width: 767px) {

  :root {
    --page-padding: 16px;
  }

  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* =========================
     HEADER
  ========================= */

  .site-header {
    height: 62px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .header-meta {
    margin-left: auto;
    margin-right: 16px;
    gap: 12px;
    font-size: 8px;
  }

  .header-meta span:first-child {
    display: none;
  }

  .menu-trigger {
    gap: 8px;
    font-size: 8px;
  }

  .menu-lines {
    gap: 4px;
  }

  .menu-lines i {
    width: 18px;
  }


  /* =========================
     MENU
  ========================= */

  .site-menu {
    padding:
      22px
      16px
      20px;
  }

  .menu-top {
    font-size: 8px;
  }

  .menu-close {
    font-size: 8px;
  }

  .main-navigation {
    width: 100%;
  }

  .main-navigation a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 0;
  }

  .main-navigation a:hover {
    padding-left: 0;
  }

  .main-navigation span {
    font-size: 8px;
  }

  .main-navigation strong {
    font-size: clamp(32px, 10vw, 52px);
    line-height: .9;
  }

  .menu-bottom {
    font-size: 8px;
  }


  /* =========================
     GENERAL SECTIONS
  ========================= */

  .section {
    padding:
      90px
      16px;
  }

  .section-number {
    margin-bottom: 38px;
    font-size: 8px;
  }

  .eyebrow {
    font-size: 8px;
  }


  /* =========================
     HERO
  ========================= */

  .hero {
    min-height: 100svh;
    padding-top: 105px;
    padding-bottom: 55px;
  }

  .hero-grid {
    display: block;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;

    margin-top: 18px;

    font-size: clamp(
      48px,
      15vw,
      78px
    );

    line-height: .88;

    letter-spacing: -.065em;
  }

  .hero-description {
    max-width: 100%;

    margin-top: 25px;

    font-size: 12px;
    line-height: 1.65;
  }

  .primary-link {
    margin-top: 28px;
    gap: 20px;
    font-size: 8px;
  }

  .primary-link:hover {
    gap: 20px;
  }

  .hero-side {
    min-height: auto;

    margin-top: 45px;

    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
  }

  .coordinate,
  .hero-note {
    font-size: 8px;
    line-height: 1.7;
  }


  /* =========================
     SIGNAL
  ========================= */

  .signal-section {
    display: block;
    min-height: 92px;
  }

  .signal-label {
    height: 38px;

    padding-left: 16px;

    border-right: 0;
    border-bottom: 1px solid var(--line);

    font-size: 8px;
  }

  .signal-window {
    height: 54px;
  }

  .signal-track span {
    margin-right: 24px;
    font-size: 8px;
  }


  /* =========================
     IDEA
  ========================= */

  .idea-layout,
  .section-intro,
  .matters-layout {
    display: block;
    width: 100%;
  }

  .idea-heading h2,
  .section-intro h2,
  .matters-heading h2 {

    font-size: clamp(
      44px,
      14vw,
      72px
    );

    line-height: .9;
    letter-spacing: -.065em;
  }

  .idea-copy {
    width: 100%;
    margin-top: 42px;
  }

  .idea-copy .lead {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 22px;
  }

  .idea-copy p:not(.lead) {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .text-link {
    margin-top: 20px;
    gap: 18px;
    font-size: 8px;
  }


  /* =========================
     SECTION INTRO
  ========================= */

  .section-intro {
    margin-bottom: 55px;
  }

  .section-intro > p {
    max-width: 100%;
    margin-top: 25px;

    font-size: 12px;
    line-height: 1.7;
  }


  /* =========================
     EDITORIAL LIST
  ========================= */

  .editorial-list {
    width: 100%;
  }

  .editorial-row {
    grid-template-columns:
      28px
      minmax(0, 1fr);

    gap: 10px;

    width: 100%;

    padding: 24px 0;

    min-height: 0;
  }

  .editorial-row:hover {
    padding-left: 0;
  }

  .row-number {
    font-size: 8px;
  }

  .row-main {
    min-width: 0;
  }

  .row-main h3 {
    font-size: clamp(
      25px,
      8vw,
      34px
    );

    line-height: .95;
  }

  .row-main p {
    max-width: 100%;

    margin-top: 7px;

    font-size: 10px;
    line-height: 1.55;
  }

  .row-action {
    grid-column: 2;

    margin-top: 7px;

    text-align: left;

    font-size: 7px;
  }


  /* =========================
     PROCESS
  ========================= */

  .process-list {
    width: 100%;
  }

  .process-item {
    grid-template-columns: 28px minmax(0, 1fr);

    gap: 10px;

    padding: 25px 0;
  }

  .process-item > span {
    font-size: 8px;
  }

  .process-item h3 {
    font-size: 24px;
    line-height: 1;
  }

  .process-item p {
    max-width: 100%;

    margin-top: 7px;

    font-size: 11px;
    line-height: 1.6;
  }

  .section-action {
    margin-top: 32px;
  }


  /* =========================
     MATTERS
  ========================= */

  .matters-copy {
    width: 100%;
    margin-top: 45px;
  }

  .matter-block {
    grid-template-columns: 28px minmax(0, 1fr);

    gap: 10px;

    padding: 22px 0;
  }

  .matter-block > span {
    font-size: 8px;
  }

  .matter-block h3 {
    font-size: 14px;
  }

  .matter-block p {
    max-width: 100%;

    margin-top: 8px;

    font-size: 11px;
    line-height: 1.65;
  }


  /* =========================
     JOIN
  ========================= */

  .join {
    min-height: 80svh;
  }

  .join-content {
    width: 100%;
  }

  .join-content h2 {
    font-size: clamp(
      48px,
      15vw,
      78px
    );

    line-height: .88;
  }

  .join-content > p:not(.eyebrow) {
    max-width: 100%;

    margin-top: 28px;

    font-size: 12px;
    line-height: 1.7;
  }


  /* =========================
     FOOTER
  ========================= */

  .site-footer {
    padding:
      70px
      16px
      25px;
  }

  .footer-top {
    display: block;
    padding-bottom: 45px;
  }

  .footer-brand {
    margin-bottom: 40px;
  }

  .footer-brand h2 {
    font-size: 42px;
    line-height: .9;
  }

  .footer-column {
    padding: 20px 0;
    gap: 11px;

    border-top: 1px solid rgba(9,9,9,.15);
  }

  .footer-column > span,
  .footer-socials > span {
    font-size: 7px;
    margin-bottom: 7px;
  }

  .footer-column a {
    font-size: 12px;
  }

  .footer-socials {
    padding: 22px 0;
  }

  .footer-socials > div {
    gap: 10px 22px;
  }

  .footer-socials a {
    font-size: 8px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;

    gap: 10px;

    padding-top: 22px;

    font-size: 7px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

  :root {
    --page-padding: 14px;
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .idea-heading h2,
  .section-intro h2,
  .matters-heading h2 {
    font-size: 42px;
  }

  .join-content h2 {
    font-size: 46px;
  }

  .footer-brand h2 {
    font-size: 38px;
  }

}