/* =========================================
   DABBIES
   GLOBAL FOUNDATION
========================================= */

:root {
  --black: #050505;
  --white: #f5f5f2;
  --gray: #8a8a8a;
  --muted: #555;
  --dark: #111;
  --line: rgba(255,255,255,.09);
  --soft-line: rgba(255,255,255,.05);

  --max-width: 1380px;
  --header-height: 76px;

  --ease: cubic-bezier(.22,1,.36,1);
}

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

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #333 #050505;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);

  font-family:
    "SFMono-Regular",
    "Cascadia Code",
    "Roboto Mono",
    "Courier New",
    monospace;

  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-track {
  background: var(--black);
}

body::-webkit-scrollbar-thumb {
  background: #333;
}

body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::selection {
  background: #fff;
  color: #000;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

main {
  position: relative;
  isolation: isolate;
}

section {
  position: relative;
}

[hidden] {
  display: none !important;
}


/* =========================================
   ACCESSIBILITY
========================================= */

:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}


/* =========================================
   BACKGROUND GRID
========================================= */

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255,255,255,.032) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.032) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image:
    radial-gradient(
      ellipse at center,
      #000 20%,
      transparent 82%
    );

  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      #000 20%,
      transparent 82%
    );
}


/* =========================================
   NOISE
========================================= */

.noise {
  position: fixed;
  inset: -50%;
  z-index: 90;
  pointer-events: none;

  opacity: .035;

  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='.7'/%3E%3C/svg%3E");

  animation:
    noiseMove .25s steps(2) infinite;
}

@keyframes noiseMove {
  0% {
    transform: translate(0,0);
  }

  25% {
    transform: translate(2%,-1%);
  }

  50% {
    transform: translate(-1%,2%);
  }

  75% {
    transform: translate(1%,1%);
  }

  100% {
    transform: translate(-2%,-1%);
  }
}


/* =========================================
   CURSOR LIGHT
========================================= */

.cursor-glow {
  position: fixed;
  z-index: -2;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018) 30%,
      transparent 68%
    );

  transform:
    translate(-50%,-50%);

  opacity: 0;

  transition: opacity .4s ease;
}

@media (pointer: fine) {
  .cursor-glow {
    opacity: 1;
  }
}


/* =========================================
   PAGE PLACEHOLDERS
========================================= */

.section-placeholder {
  min-height: 1px;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--soft-line);
}

.footer-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  min-height: 90px;
  margin-inline: auto;

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

  color: #444;
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* =========================================
   REDUCED MOTION
========================================= */

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================
   RESPONSIVE FOUNDATION
========================================= */

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .footer-inner {
    width: calc(100% - 36px);
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }

  .footer-inner {
    width: calc(100% - 28px);
    min-height: 75px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 7px;
  }
}

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

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

  z-index: 100;

  height: var(--header-height);

  border-bottom: 1px solid rgba(255,255,255,.075);

  background: rgba(5,5,5,.68);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  height: 100%;
  margin-inline: auto;

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

  gap: 30px;
}


/* =========================================
   BRAND
========================================= */

.brand {
  display: inline-flex;
  align-items: center;

  gap: 11px;

  min-width: 180px;

  transition: opacity .25s ease;
}

.brand:hover {
  opacity: .75;
}

.brand-mark {
  width: 30px;
  height: 30px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: center;

  min-width: 92px;
  height: 22px;

  overflow: hidden;

  font-size: 15px;
  font-weight: 600;

  letter-spacing: -.06em;

  white-space: nowrap;
}

.brand-text {
  display: inline-block;
}

.brand-caret {
  width: 6px;
  height: 16px;

  margin-left: 5px;

  background: #fff;

  animation:
    caretBlink .9s steps(1) infinite;
}

@keyframes caretBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 30px;
}

.main-nav a {
  position: relative;

  padding: 8px 0;

  color: #858585;

  font-size: 10px;

  letter-spacing: .02em;

  transition:
    color .25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 2px;

  width: 0;
  height: 1px;

  background: #fff;

  transition:
    width .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}


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

.header-actions {
  min-width: 180px;

  display: flex;
  justify-content: flex-end;
}

.header-cta {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 35px;

  padding: 0 13px;

  border: 1px solid rgba(255,255,255,.20);

  color: #aaa;

  font-size: 9px;

  letter-spacing: .04em;

  overflow: hidden;

  transition:
    color .3s ease,
    border-color .3s ease;
}

.header-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  background: #fff;

  transform: translateX(-101%);

  transition:
    transform .3s var(--ease);

  z-index: -1;
}

.header-cta:hover {
  color: #000;

  border-color: #fff;
}

.header-cta:hover::before {
  transform: translateX(0);
}

.header-cta-dot {
  width: 5px;
  height: 5px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: currentColor;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
  display: none;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(255,255,255,.12);

  background: transparent;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  transition:
    border-color .25s ease;
}

.menu-toggle:hover {
  border-color: rgba(255,255,255,.4);
}

.menu-toggle span {
  display: block;

  width: 14px;
  height: 1px;

  background: #fff;

  transition:
    transform .3s var(--ease),
    opacity .3s ease;
}

.menu-toggle.open span:first-child {
  transform:
    translateY(3px)
    rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform:
    translateY(-3px)
    rotate(-45deg);
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-nav {
  display: none;

  position: fixed;

  top: var(--header-height);
  left: 0;
  right: 0;

  padding: 18px 14px 24px;

  border-bottom: 1px solid rgba(255,255,255,.10);

  background: rgba(5,5,5,.94);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  transform: translateY(-12px);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s var(--ease);
}

.mobile-nav.open {
  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 48px;

  padding: 0 4px;

  border-bottom: 1px solid rgba(255,255,255,.07);

  color: #999;

  font-size: 11px;

  transition:
    color .2s ease;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a:hover {
  color: #fff;
}


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

@media (max-width: 900px) {

  .header-inner {
    width: min(
      calc(100% - 36px),
      var(--max-width)
    );
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}


@media (max-width: 600px) {

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

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

  .menu-toggle {
    width: 35px;
    height: 35px;
  }
}

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

.hero {
  position: relative;

  min-height: 100svh;

  padding-top: var(--header-height);

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-inner {
  position: relative;

  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  min-height: calc(100svh - var(--header-height));

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(380px, .9fr);

  align-items: center;

  gap: 60px;

  padding: 70px 0 80px;
}


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

.hero-copy {
  position: relative;

  z-index: 5;

  max-width: 760px;
}

.hero-status {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 30px;

  color: #777;

  font-size: 9px;

  letter-spacing: .13em;

  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(255,255,255,.045),
    0 0 16px rgba(255,255,255,.25);

  animation:
    statusPulse 2.2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: .55;
    transform: scale(.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}


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

.hero-title {
  max-width: 850px;

  color: #f5f5f2;

  font-size: clamp(
    48px,
    7vw,
    108px
  );

  line-height: .94;

  font-weight: 500;

  letter-spacing: -.075em;
}

.hero-title-line {
  display: block;

  overflow: hidden;
}

.hero-title-accent {
  color: #777;
}


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

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

  margin-top: 34px;

  color: #898989;

  font-size: 12px;

  line-height: 1.9;

  letter-spacing: -.01em;
}


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

.hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 38px;
}

.primary-button,
.secondary-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 43px;

  padding: 0 17px;

  border: 1px solid rgba(255,255,255,.18);

  font-size: 9px;

  letter-spacing: .03em;

  overflow: hidden;

  transition:
    color .3s ease,
    border-color .3s ease;
}


/* Primary */

.primary-button {
  color: #000;

  background: #fff;

  border-color: #fff;
}

.primary-button::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #d9d9d9;

  transform: translateY(101%);

  transition:
    transform .3s var(--ease);
}

.primary-button:hover::before {
  transform: translateY(0);
}

.primary-button span,
.secondary-button span {
  position: relative;

  z-index: 2;
}


/* Secondary */

.secondary-button {
  color: #999;

  background: transparent;
}

.secondary-button:hover {
  color: #fff;

  border-color: rgba(255,255,255,.45);
}


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

.hero-meta {
  display: flex;
  align-items: center;

  gap: 22px;

  margin-top: 55px;

  color: #555;

  font-size: 8px;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.hero-meta-item {
  display: flex;
  align-items: center;

  gap: 7px;
}

.hero-meta-item::before {
  content: "";

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #555;
}

.hero-meta-separator {
  width: 1px;
  height: 13px;

  background: rgba(255,255,255,.13);
}


/* =========================================
   HERO ENTRANCE ANIMATION
========================================= */

.hero-copy > * {
  opacity: 0;

  transform:
    translateY(24px);

  animation:
    heroReveal .9s var(--ease)
    forwards;
}

.hero-status {
  animation-delay: .05s;
}

.hero-title {
  animation-delay: .15s;
}

.hero-description {
  animation-delay: .28s;
}

.hero-actions {
  animation-delay: .4s;
}

.hero-meta {
  animation-delay: .52s;
}

@keyframes heroReveal {

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}


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

@media (max-width: 1100px) {

  .hero-inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, .75fr);

    gap: 30px;
  }

  .hero-title {
    font-size: clamp(
      46px,
      6.7vw,
      82px
    );
  }
}


@media (max-width: 900px) {

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      105px
      0
      70px;
  }

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

  .hero-title {
    font-size: clamp(
      48px,
      10vw,
      78px
    );
  }
}


@media (max-width: 600px) {

  .hero-inner {
    width: calc(100% - 28px);

    padding:
      95px
      0
      50px;
  }

  .hero-status {
    margin-bottom: 23px;

    font-size: 8px;
  }

  .hero-title {
    font-size: clamp(
      42px,
      13vw,
      66px
    );

    line-height: .96;
  }

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

    font-size: 10px;

    line-height: 1.8;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-meta {
    margin-top: 35px;

    gap: 12px;

    flex-wrap: wrap;
  }

  .hero-meta-separator {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {

  .hero-copy > * {
    opacity: 1;

    transform: none;

    animation: none;
  }
}

/* =========================================
   HERO NETWORK VISUAL
========================================= */

.hero-visual {
  position: relative;

  width: 100%;
  height: min(680px, 72vh);

  display: grid;
  place-items: center;

  overflow: hidden;

  opacity: 0;

  animation:
    visualReveal 1.2s var(--ease) .2s forwards;
}

@keyframes visualReveal {
  to {
    opacity: 1;
  }
}


/* =========================================
   NETWORK CANVAS
========================================= */

.network-canvas {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  overflow: visible;

  pointer-events: none;
}


/* =========================================
   NETWORK ATMOSPHERE
========================================= */

.network-glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.055) 0%,
      rgba(255,255,255,.018) 35%,
      transparent 70%
    );

  pointer-events: none;

  animation:
    networkBreath 5s ease-in-out infinite;
}

@keyframes networkBreath {

  0%,
  100% {
    transform: scale(.94);
    opacity: .55;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}


/* =========================================
   NETWORK LABEL
========================================= */

.network-label {
  position: absolute;

  left: 12%;
  bottom: 11%;

  display: flex;
  align-items: center;

  gap: 9px;

  color: #555;

  font-size: 8px;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.network-label::before {
  content: "";

  width: 22px;
  height: 1px;

  background: rgba(255,255,255,.3);
}


/* =========================================
   NETWORK COORDINATES
========================================= */

.network-coordinate {
  position: absolute;

  color: #393939;

  font-size: 7px;

  letter-spacing: .08em;

  white-space: nowrap;

  pointer-events: none;
}

.network-coordinate.one {
  top: 13%;
  right: 7%;
}

.network-coordinate.two {
  top: 27%;
  left: 5%;
}

.network-coordinate.three {
  bottom: 22%;
  right: 10%;
}


/* =========================================
   NETWORK SCAN LINE
========================================= */

.network-scan {
  position: absolute;

  left: 0;
  right: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );

  opacity: .35;

  animation:
    networkScan 6s linear infinite;
}

@keyframes networkScan {

  0% {
    top: -5%;
    opacity: 0;
  }

  10% {
    opacity: .35;
  }

  50% {
    opacity: .18;
  }

  90% {
    opacity: .35;
  }

  100% {
    top: 105%;
    opacity: 0;
  }
}


/* =========================================
   NETWORK ORBIT
========================================= */

.network-orbit {
  position: absolute;

  width: 370px;
  height: 370px;

  border: 1px solid rgba(255,255,255,.045);

  border-radius: 50%;

  transform:
    rotate(-18deg)
    scaleY(.55);

  pointer-events: none;

  animation:
    orbitRotate 22s linear infinite;
}

.network-orbit::before,
.network-orbit::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 15px rgba(255,255,255,.35);

  transform-origin: 0 0;
}

.network-orbit::before {
  transform:
    rotate(0deg)
    translateX(185px);
}

.network-orbit::after {
  transform:
    rotate(180deg)
    translateX(185px);
}

@keyframes orbitRotate {

  from {
    transform:
      rotate(-18deg)
      scaleY(.55);
  }

  to {
    transform:
      rotate(342deg)
      scaleY(.55);
  }
}


/* =========================================
   NETWORK CORE
========================================= */

.network-core {
  position: absolute;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 0 6px rgba(255,255,255,.035),
    0 0 30px rgba(255,255,255,.15);

  animation:
    corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {

  0%,
  100% {
    transform: scale(.85);
  }

  50% {
    transform: scale(1.2);
  }
}


/* =========================================
   NETWORK CORNER MARKS
========================================= */

.network-corner {
  position: absolute;

  width: 20px;
  height: 20px;

  opacity: .35;

  pointer-events: none;
}

.network-corner::before,
.network-corner::after {
  content: "";

  position: absolute;

  background: #777;
}

.network-corner::before {
  width: 100%;
  height: 1px;

  top: 0;
  left: 0;
}

.network-corner::after {
  width: 1px;
  height: 100%;

  top: 0;
  left: 0;
}

.network-corner.top-left {
  top: 6%;
  left: 3%;
}

.network-corner.top-right {
  top: 6%;
  right: 3%;

  transform: rotate(90deg);
}

.network-corner.bottom-left {
  bottom: 6%;
  left: 3%;

  transform: rotate(-90deg);
}

.network-corner.bottom-right {
  bottom: 6%;
  right: 3%;

  transform: rotate(180deg);
}


/* =========================================
   HERO VISUAL RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .hero-visual {
    height: 500px;
  }

  .network-orbit {
    width: 320px;
    height: 320px;
  }

  .network-orbit::before {
    transform:
      rotate(0deg)
      translateX(160px);
  }

  .network-orbit::after {
    transform:
      rotate(180deg)
      translateX(160px);
  }
}


@media (max-width: 900px) {

  .hero-visual {
    height: 430px;

    margin-top: 5px;
  }

  .network-orbit {
    width: 300px;
    height: 300px;
  }

  .network-orbit::before {
    transform:
      rotate(0deg)
      translateX(150px);
  }

  .network-orbit::after {
    transform:
      rotate(180deg)
      translateX(150px);
  }
}


@media (max-width: 600px) {

  .hero-visual {
    height: 340px;
  }

  .network-orbit {
    width: 240px;
    height: 240px;
  }

  .network-orbit::before {
    transform:
      rotate(0deg)
      translateX(120px);
  }

  .network-orbit::after {
    transform:
      rotate(180deg)
      translateX(120px);
  }

  .network-glow {
    width: 300px;
    height: 300px;
  }

  .network-label {
    left: 5%;
    bottom: 5%;

    font-size: 7px;
  }

  .network-coordinate {
    font-size: 6px;
  }

  .network-coordinate.two {
    left: 2%;
  }

  .network-coordinate.three {
    right: 3%;
  }
}


@media (prefers-reduced-motion: reduce) {

  .network-orbit,
  .network-glow,
  .network-core,
  .network-scan {
    animation: none;
  }

  .hero-visual {
    opacity: 1;

    animation: none;
  }
}

/* =========================================
   FOCUS SECTION
========================================= */

.focus-section {
  position: relative;

  padding:
    150px 0
    170px;

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

.focus-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin-inline: auto;
}


/* =========================================
   SECTION TOPLINE
========================================= */

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;

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

  color: #4d4d4d;

  font-size: 8px;

  letter-spacing: .1em;

  text-transform: uppercase;
}


/* =========================================
   FOCUS HEADING
========================================= */

.focus-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(250px, .55fr);

  gap: 70px;

  padding:
    70px 0
    100px;
}

.focus-heading h2 {
  max-width: 850px;

  font-size: clamp(
    42px,
    6vw,
    82px
  );

  line-height: .98;

  font-weight: 500;

  letter-spacing: -.075em;
}

.focus-heading h2 span {
  color: #666;
}

.focus-heading p {
  align-self: end;

  max-width: 380px;

  color: #777;

  font-size: 10px;

  line-height: 1.9;
}


/* =========================================
   FOCUS LIST
========================================= */

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

.focus-item {
  position: relative;

  min-height: 145px;

  display: grid;

  grid-template-columns:
    90px
    minmax(0, 1fr)
    60px;

  align-items: center;

  gap: 30px;

  padding: 25px 10px;

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

  overflow: hidden;

  transition:
    padding .45s var(--ease),
    color .3s ease;
}

.focus-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #fff;

  transform:
    translateY(101%);

  transition:
    transform .45s var(--ease);

  z-index: -1;
}

.focus-item:hover {
  color: #000;

  padding-left: 25px;
  padding-right: 25px;
}

.focus-item:hover::before {
  transform: translateY(0);
}


/* =========================================
   FOCUS NUMBER
========================================= */

.focus-number {
  align-self: start;

  padding-top: 7px;

  color: #4f4f4f;

  font-size: 8px;

  letter-spacing: .08em;

  transition:
    color .3s ease;
}

.focus-item:hover .focus-number {
  color: #777;
}


/* =========================================
   FOCUS MAIN
========================================= */

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

.focus-main h3 {
  margin-bottom: 9px;

  font-size: 17px;

  font-weight: 500;

  letter-spacing: -.04em;
}

.focus-main p {
  max-width: 560px;

  color: #656565;

  font-size: 9px;

  line-height: 1.8;

  transition:
    color .3s ease;
}

.focus-item:hover .focus-main p {
  color: #555;
}


/* =========================================
   FOCUS ARROW
========================================= */

.focus-arrow {
  justify-self: end;

  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(255,255,255,.12);

  color: #777;

  font-size: 15px;

  transition:
    transform .45s var(--ease),
    color .3s ease,
    border-color .3s ease,
    background .3s ease;
}

.focus-item:hover .focus-arrow {
  transform:
    translate(3px,-3px);

  color: #000;

  border-color: #000;

  background: transparent;
}


/* =========================================
   FOCUS RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .focus-section {
    padding:
      110px 0
      120px;
  }

  .focus-heading {
    grid-template-columns: 1fr;

    gap: 30px;

    padding:
      55px 0
      70px;
  }

  .focus-heading p {
    max-width: 520px;
  }

  .focus-item {
    min-height: 125px;

    grid-template-columns:
      60px
      minmax(0, 1fr)
      50px;

    gap: 20px;
  }
}


@media (max-width: 600px) {

  .focus-section {
    padding:
      85px 0
      95px;
  }

  .focus-inner {
    width: calc(100% - 28px);
  }

  .section-topline {
    font-size: 7px;
  }

  .focus-heading {
    gap: 25px;

    padding:
      45px 0
      55px;
  }

  .focus-heading h2 {
    font-size: clamp(
      39px,
      12vw,
      60px
    );
  }

  .focus-heading p {
    font-size: 9px;

    line-height: 1.8;
  }

  .focus-item {
    min-height: 125px;

    grid-template-columns:
      34px
      minmax(0, 1fr)
      35px;

    gap: 12px;

    padding:
      22px 4px;
  }

  .focus-item:hover {
    padding-left: 10px;
    padding-right: 10px;
  }

  .focus-main h3 {
    font-size: 14px;
  }

  .focus-main p {
    font-size: 8px;

    line-height: 1.7;
  }

  .focus-arrow {
    width: 30px;
    height: 30px;

    font-size: 12px;
  }
}

/* =========================================
   STATEMENT SECTION
========================================= */

.statement-section {
  position: relative;

  min-height: 620px;

  display: flex;
  align-items: center;

  padding: 120px 0;

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

  overflow: hidden;
}


/* =========================================
   STATEMENT INNER
========================================= */

.statement-inner {
  position: relative;

  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  min-height: 380px;

  margin-inline: auto;

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


/* =========================================
   STATEMENT INDEX
========================================= */

.statement-index {
  color: #4d4d4d;

  font-size: 8px;

  letter-spacing: .1em;

  text-transform: uppercase;
}


/* =========================================
   STATEMENT CONTENT
========================================= */

.statement-content {
  width: min(
    900px,
    100%
  );

  margin-left: 9%;

  padding: 80px 0;
}

.statement-mark {
  margin-bottom: 28px;

  color: #444;

  font-size: 20px;

  font-weight: 300;
}

.statement-content h2 {
  max-width: 900px;

  margin-bottom: 38px;

  font-size: clamp(
    48px,
    7vw,
    96px
  );

  line-height: .94;

  font-weight: 500;

  letter-spacing: -.08em;
}

.statement-content h2 span {
  color: #555;
}

.statement-content p {
  max-width: 470px;

  color: #777;

  font-size: 10px;

  line-height: 1.9;
}


/* =========================================
   STATEMENT DECORATION
========================================= */

.statement-content::before {
  content: "";

  position: absolute;

  top: 50%;
  left: -8%;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(255,255,255,.045);

  border-radius: 50%;

  transform:
    translateY(-50%);

  pointer-events: none;
}

.statement-content::after {
  content: "";

  position: absolute;

  top: 50%;
  left: -8%;

  width: 90px;
  height: 90px;

  border: 1px solid rgba(255,255,255,.06);

  border-radius: 50%;

  transform:
    translate(
      50px,
      -50%
    );

  pointer-events: none;
}


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

.statement-footer {
  display: flex;
  justify-content: space-between;

  padding-top: 18px;

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

  color: #444;

  font-size: 7px;

  letter-spacing: .1em;

  text-transform: uppercase;
}


/* =========================================
   STATEMENT RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .statement-section {
    min-height: 560px;

    padding: 100px 0;
  }

  .statement-inner {
    min-height: 360px;
  }

  .statement-content {
    margin-left: 4%;

    padding: 65px 0;
  }

  .statement-content::before {
    left: -7%;
  }

  .statement-content::after {
    left: -7%;
  }
}


@media (max-width: 600px) {

  .statement-section {
    min-height: 500px;

    padding: 80px 0;
  }

  .statement-inner {
    width: calc(100% - 28px);

    min-height: 340px;
  }

  .statement-content {
    margin-left: 0;

    padding: 55px 0;
  }

  .statement-mark {
    margin-bottom: 20px;

    font-size: 16px;
  }

  .statement-content h2 {
    margin-bottom: 27px;

    font-size: clamp(
      42px,
      12vw,
      58px
    );
  }

  .statement-content p {
    max-width: 330px;

    font-size: 8px;

    line-height: 1.85;
  }

  .statement-content::before {
    width: 120px;
    height: 120px;

    left: -20px;
  }

  .statement-content::after {
    width: 60px;
    height: 60px;

    left: 10px;
  }

  .statement-footer {
    font-size: 6px;
  }
}

/* =========================================
   JOURNAL PREVIEW
========================================= */

.journal-preview {
  position: relative;

  padding:
    150px 0
    170px;

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

.journal-preview-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin-inline: auto;
}


/* =========================================
   SECTION LINK
========================================= */

.section-link {
  color: #666;

  font-size: 8px;

  letter-spacing: .08em;

  transition:
    color .25s ease;
}

.section-link:hover {
  color: #fff;
}


/* =========================================
   JOURNAL HEADING
========================================= */

.journal-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(240px, .5fr);

  gap: 70px;

  padding:
    70px 0
    90px;
}

.journal-heading h2 {
  font-size: clamp(
    45px,
    6vw,
    78px
  );

  line-height: .95;

  font-weight: 500;

  letter-spacing: -.075em;
}

.journal-heading h2 span {
  color: #555;
}

.journal-heading p {
  align-self: end;

  max-width: 360px;

  color: #777;

  font-size: 9px;

  line-height: 1.9;
}


/* =========================================
   JOURNAL LIST
========================================= */

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

.journal-item {
  position: relative;

  min-height: 125px;

  display: grid;

  grid-template-columns:
    120px
    minmax(0, 1fr)
    50px;

  align-items: center;

  gap: 30px;

  padding:
    20px 10px;

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

  overflow: hidden;

  transition:
    padding .4s var(--ease),
    color .3s ease;
}

.journal-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #fff;

  transform:
    translateY(101%);

  transition:
    transform .4s var(--ease);

  z-index: -1;
}

.journal-item:hover {
  color: #000;

  padding-left: 24px;
  padding-right: 24px;
}

.journal-item:hover::before {
  transform: translateY(0);
}


/* =========================================
   JOURNAL DATE
========================================= */

.journal-date {
  align-self: start;

  padding-top: 5px;

  color: #4d4d4d;

  font-size: 7px;

  letter-spacing: .08em;
}


/* =========================================
   JOURNAL INFO
========================================= */

.journal-info {
  min-width: 0;
}

.journal-category {
  display: block;

  margin-bottom: 10px;

  color: #555;

  font-size: 7px;

  letter-spacing: .12em;
}

.journal-info h3 {
  font-size: 15px;

  font-weight: 500;

  letter-spacing: -.035em;
}


/* =========================================
   JOURNAL ARROW
========================================= */

.journal-arrow {
  justify-self: end;

  display: grid;

  place-items: center;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(255,255,255,.12);

  color: #666;

  font-size: 12px;

  transition:
    transform .4s var(--ease),
    color .25s ease,
    border-color .25s ease;
}

.journal-item:hover .journal-arrow {
  transform:
    translate(3px,-3px);

  color: #000;

  border-color: #000;
}


/* =========================================
   JOURNAL RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .journal-preview {
    padding:
      110px 0
      120px;
  }

  .journal-heading {
    grid-template-columns: 1fr;

    gap: 30px;

    padding:
      55px 0
      70px;
  }

  .journal-heading p {
    max-width: 500px;
  }

  .journal-item {
    grid-template-columns:
      90px
      minmax(0, 1fr)
      45px;

    gap: 20px;
  }
}


@media (max-width: 600px) {

  .journal-preview {
    padding:
      85px 0
      95px;
  }

  .journal-preview-inner {
    width: calc(100% - 28px);
  }

  .journal-heading {
    gap: 25px;

    padding:
      45px 0
      55px;
  }

  .journal-heading h2 {
    font-size: clamp(
      40px,
      11vw,
      58px
    );
  }

  .journal-heading p {
    font-size: 8px;

    line-height: 1.8;
  }

  .journal-item {
    min-height: 110px;

    grid-template-columns:
      65px
      minmax(0, 1fr)
      34px;

    gap: 12px;

    padding:
      18px 4px;
  }

  .journal-item:hover {
    padding-left: 10px;
    padding-right: 10px;
  }

  .journal-date {
    font-size: 6px;
  }

  .journal-category {
    margin-bottom: 7px;

    font-size: 6px;
  }

  .journal-info h3 {
    font-size: 12px;

    line-height: 1.35;
  }

  .journal-arrow {
    width: 29px;
    height: 29px;

    font-size: 10px;
  }
}

/* =========================================
   FINAL ACTION
========================================= */

.final-action {
  position: relative;

  padding:
    150px 0
    130px;

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

  overflow: hidden;
}

.final-action-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin-inline: auto;
}

.final-action-content {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, .65fr);

  gap: 100px;

  padding-top: 90px;
}


/* =========================================
   FINAL ACTION COPY
========================================= */

.final-action-copy {
  max-width: 800px;
}

.final-action-label,
.newsletter-label {
  display: block;

  margin-bottom: 25px;

  color: #555;

  font-size: 8px;

  letter-spacing: .12em;
}

.final-action-copy h2 {
  max-width: 800px;

  margin-bottom: 30px;

  font-size: clamp(
    48px,
    7vw,
    92px
  );

  line-height: .94;

  font-weight: 500;

  letter-spacing: -.08em;
}

.final-action-copy h2 span {
  color: #555;
}

.final-action-copy p {
  max-width: 460px;

  margin-bottom: 34px;

  color: #777;

  font-size: 10px;

  line-height: 1.9;
}

.final-action-button {
  width: fit-content;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
  align-self: end;

  padding:
    30px 0 5px;

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

.newsletter h3 {
  margin-bottom: 13px;

  font-size: 18px;

  font-weight: 500;

  letter-spacing: -.04em;
}

.newsletter p {
  max-width: 340px;

  margin-bottom: 25px;

  color: #666;

  font-size: 8px;

  line-height: 1.8;
}


/* =========================================
   NEWSLETTER FORM
========================================= */

.newsletter-form {
  display: flex;

  width: 100%;

  border-bottom: 1px solid rgba(255,255,255,.25);
}

.newsletter-form input {
  width: 100%;

  min-width: 0;

  height: 45px;

  padding: 0;

  border: 0;

  outline: 0;

  background: transparent;

  color: #fff;

  font-size: 9px;
}

.newsletter-form input::placeholder {
  color: #444;
}

.newsletter-form input:focus {
  color: #fff;
}

.newsletter-form button {
  flex: 0 0 40px;

  height: 45px;

  border: 0;

  background: transparent;

  color: #777;

  cursor: pointer;

  font-size: 16px;

  transition:
    color .25s ease,
    transform .25s ease;
}

.newsletter-form button:hover {
  color: #fff;

  transform:
    translate(2px,-2px);
}

.newsletter-message {
  display: block;

  min-height: 18px;

  margin-top: 10px;

  color: #666;

  font-size: 7px;
}


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

.site-footer {
  position: relative;

  padding:
    75px 0
    30px;
}

.footer-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin-inline: auto;
}


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

.footer-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  padding-bottom: 70px;
}

.footer-brand {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: -.04em;
}

.footer-brand-mark {
  display: grid;

  place-items: center;

  width: 28px;
  height: 28px;

  overflow: hidden;
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter: invert(1);
}

.footer-description {
  color: #555;

  font-size: 8px;
}


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

.footer-links {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;

  padding:
    45px 0
    70px;

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

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 11px;
}

.footer-column-title {
  margin-bottom: 9px;

  color: #444;

  font-size: 7px;

  letter-spacing: .12em;
}

.footer-column a {
  color: #777;

  font-size: 8px;

  transition:
    color .25s ease;
}

.footer-column a:hover {
  color: #fff;
}


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

.footer-bottom {
  display: flex;

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

  padding-top: 20px;

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

  color: #3f3f3f;

  font-size: 7px;
}

.footer-legal {
  display: flex;

  align-items: center;

  gap: 22px;
}

.footer-legal a,
.cookie-settings {
  color: #4f4f4f;

  font-size: 7px;

  transition:
    color .25s ease;
}

.footer-legal a:hover,
.cookie-settings:hover {
  color: #fff;
}

.cookie-settings {
  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}


/* =========================================
   SCREEN READER ONLY
========================================= */

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


/* =========================================
   FINAL ACTION RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .final-action {
    padding:
      110px 0
      100px;
  }

  .final-action-content {
    grid-template-columns: 1fr;

    gap: 70px;

    padding-top: 65px;
  }

  .newsletter {
    max-width: 550px;
  }

  .footer-top {
    padding-bottom: 55px;
  }
}


@media (max-width: 600px) {

  .final-action {
    padding:
      85px 0
      80px;
  }

  .final-action-inner,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .final-action-content {
    gap: 60px;

    padding-top: 50px;
  }

  .final-action-copy h2 {
    font-size: clamp(
      42px,
      12vw,
      60px
    );
  }

  .final-action-copy p {
    max-width: 330px;

    font-size: 8px;

    line-height: 1.8;
  }

  .newsletter h3 {
    font-size: 16px;
  }

  .newsletter p {
    font-size: 8px;
  }

  .footer-top {
    display: block;

    padding-bottom: 45px;
  }

  .footer-description {
    margin-top: 18px;
  }

  .footer-links {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 45px 20px;

    padding:
      35px 0
      50px;
  }

  .footer-bottom {
    display: block;

    line-height: 1.8;
  }

  .footer-legal {
    margin-top: 15px;

    flex-wrap: wrap;

    gap: 14px 20px;
  }
}

/* =========================================
   COOKIE BANNER
========================================= */

.cookie-banner {
  position: fixed;

  left: 22px;
  right: 22px;
  bottom: 22px;

  z-index: 200;

  display: flex;

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

  gap: 35px;

  padding: 20px 22px;

  border: 1px solid rgba(255,255,255,.12);

  background: rgba(8,8,8,.94);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 20px 70px rgba(0,0,0,.45);

  transform:
    translateY(130%);

  opacity: 0;

  pointer-events: none;

  transition:
    transform .5s var(--ease),
    opacity .4s ease;
}

.cookie-banner.visible {
  transform:
    translateY(0);

  opacity: 1;

  pointer-events: auto;
}


/* =========================================
   COOKIE CONTENT
========================================= */

.cookie-content {
  max-width: 600px;
}

.cookie-label {
  display: block;

  margin-bottom: 9px;

  color: #777;

  font-size: 7px;

  letter-spacing: .13em;
}

.cookie-content p {
  color: #777;

  font-size: 8px;

  line-height: 1.8;
}


/* =========================================
   COOKIE ACTIONS
========================================= */

.cookie-actions {
  display: flex;

  align-items: center;

  gap: 8px;

  flex-shrink: 0;
}

.cookie-button {
  height: 35px;

  padding:
    0 14px;

  border: 1px solid rgba(255,255,255,.14);

  background: transparent;

  color: #777;

  font-family: inherit;

  font-size: 7px;

  cursor: pointer;

  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.cookie-button:hover {
  color: #fff;

  border-color: rgba(255,255,255,.35);
}

.cookie-accept {
  background: #fff;

  border-color: #fff;

  color: #000;
}

.cookie-accept:hover {
  background: #ddd;

  border-color: #ddd;

  color: #000;
}


/* =========================================
   COOKIE MODAL
========================================= */

.cookie-modal {
  position: fixed;

  inset: 0;

  z-index: 300;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

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

.cookie-modal.open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.cookie-modal-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(0,0,0,.72);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cookie-modal-panel {
  position: relative;

  width: min(
    100%,
    480px
  );

  padding: 25px;

  border: 1px solid rgba(255,255,255,.13);

  background: #090909;

  box-shadow:
    0 30px 100px rgba(0,0,0,.65);

  transform:
    translateY(15px);

  transition:
    transform .3s ease;
}

.cookie-modal.open
.cookie-modal-panel {
  transform:
    translateY(0);
}


/* =========================================
   COOKIE MODAL HEADER
========================================= */

.cookie-modal-header {
  display: flex;

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

  padding-bottom: 20px;

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

.cookie-close {
  display: grid;

  place-items: center;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(255,255,255,.1);

  background: transparent;

  color: #777;

  font-family: inherit;

  font-size: 18px;

  line-height: 1;

  cursor: pointer;

  transition:
    color .25s ease,
    border-color .25s ease;
}

.cookie-close:hover {
  color: #fff;

  border-color: rgba(255,255,255,.3);
}


/* =========================================
   COOKIE OPTIONS
========================================= */

.cookie-options {
  padding: 10px 0 20px;
}

.cookie-option {
  display: flex;

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

  gap: 25px;

  padding: 18px 0;

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

  cursor: pointer;
}

.cookie-option-info {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.cookie-option-info strong {
  color: #ddd;

  font-size: 9px;

  font-weight: 500;
}

.cookie-option-info small {
  color: #555;

  font-size: 7px;

  line-height: 1.6;
}

.cookie-option input {
  appearance: none;

  width: 34px;
  height: 18px;

  flex-shrink: 0;

  border: 1px solid #444;

  border-radius: 20px;

  background: #151515;

  cursor: pointer;

  position: relative;

  transition:
    background .25s ease,
    border-color .25s ease;
}

.cookie-option input::after {
  content: "";

  position: absolute;

  top: 3px;
  left: 3px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #666;

  transition:
    transform .25s ease,
    background .25s ease;
}

.cookie-option input:checked {
  background: #fff;

  border-color: #fff;
}

.cookie-option input:checked::after {
  transform:
    translateX(16px);

  background: #000;
}

.cookie-option input:disabled {
  opacity: .5;

  cursor: not-allowed;
}


/* =========================================
   SAVE BUTTON
========================================= */

.cookie-save {
  width: 100%;

  height: 42px;

  border: 1px solid #fff;

  background: #fff;

  color: #000;

  font-family: inherit;

  font-size: 8px;

  cursor: pointer;

  transition:
    background .25s ease,
    color .25s ease;
}

.cookie-save:hover {
  background: #ddd;

  border-color: #ddd;
}


/* =========================================
   COOKIE RESPONSIVE
========================================= */

@media (max-width: 700px) {

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;

    display: block;

    padding: 18px;

    border-radius: 0;
  }

  .cookie-content {
    margin-bottom: 17px;
  }

  .cookie-actions {
    width: 100%;

    display: grid;

    grid-template-columns:
      repeat(3, 1fr);
  }

  .cookie-button {
    width: 100%;

    padding: 0 7px;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal-panel {
    padding: 20px;
  }
}


@media (max-width: 380px) {

  .cookie-actions {
    grid-template-columns:
      1fr 1fr;
  }

  .cookie-accept {
    grid-column:
      1 / -1;
  }

}

/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  border-bottom: 1px solid var(--soft-line);
  overflow: hidden;
}

.about-hero-inner,
.about-section-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );
  margin-inline: auto;
}

.about-index,
.section-index {
  color: #4d4d4d;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-hero-inner {
  min-height: calc(100vh - 240px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-hero-content {
  max-width: 1050px;
  padding: 90px 0 100px;
}

.about-label {
  display: block;
  margin-bottom: 28px;
  color: #555;
  font-size: 8px;
  letter-spacing: .14em;
}

.about-hero-content h1 {
  max-width: 1000px;
  margin-bottom: 40px;
  font-size: clamp(
    58px,
    9vw,
    125px
  );
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.09em;
}

.about-hero-content h1 span {
  display: block;
  color: #555;
}

.about-hero-content p {
  max-width: 520px;
  color: #777;
  font-size: 10px;
  line-height: 1.9;
}

.about-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
  color: #444;
  font-size: 7px;
  letter-spacing: .1em;
}


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

.about-idea {
  padding: 150px 0 170px;
  border-bottom: 1px solid var(--soft-line);
}

.about-idea-content {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(260px, .55fr);
  gap: 90px;
  padding-top: 85px;
}

.about-idea-content h2 {
  max-width: 800px;
  font-size: clamp(
    48px,
    7vw,
    92px
  );
  line-height: .94;
  font-weight: 500;
  letter-spacing: -.08em;
}

.about-idea-content h2 span {
  color: #555;
}

.about-copy {
  align-self: end;
  max-width: 390px;
}

.about-copy p {
  margin-bottom: 25px;
  color: #777;
  font-size: 9px;
  line-height: 1.9;
}

.about-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================
   ABOUT PRINCIPLES
========================================= */

.about-principles {
  padding: 150px 0 170px;
  border-bottom: 1px solid var(--soft-line);
}

.principles-heading {
  padding: 75px 0 80px;
}

.principles-heading h2 {
  font-size: clamp(
    48px,
    7vw,
    88px
  );
  line-height: .94;
  font-weight: 500;
  letter-spacing: -.08em;
}

.principles-heading h2 span {
  color: #555;
}

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

.about-principle {
  display: grid;
  grid-template-columns:
    90px
    minmax(0, 1fr);
  gap: 30px;
  min-height: 145px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
}

.about-principle > span {
  color: #4d4d4d;
  font-size: 8px;
  padding-top: 5px;
}

.about-principle h3 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.about-principle p {
  max-width: 560px;
  color: #666;
  font-size: 9px;
  line-height: 1.8;
}


/* =========================================
   ABOUT VISION
========================================= */

.about-vision {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
}

.vision-content {
  position: relative;
  padding: 100px 0;
  margin-left: 9%;
}

.vision-mark {
  display: block;
  margin-bottom: 25px;
  color: #444;
  font-size: 20px;
}

.vision-content h2 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(
    52px,
    8vw,
    105px
  );
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.085em;
}

.vision-content h2 span {
  color: #555;
}

.vision-content p {
  color: #777;
  font-size: 10px;
}


/* =========================================
   ABOUT PAGE DECORATION
========================================= */

.vision-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -10%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 50%;
  transform: translateY(-50%);
}

.vision-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -4%;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  transform: translateY(-50%);
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .about-hero {
    padding-top: 130px;
  }

  .about-hero-inner {
    min-height: calc(100vh - 210px);
  }

  .about-hero-content {
    padding:
      70px 0
      80px;
  }

  .about-hero-content h1 {
    font-size: clamp(
      55px,
      11vw,
      95px
    );
  }

  .about-idea,
  .about-principles {
    padding:
      110px 0
      120px;
  }

  .about-idea-content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 60px;
  }

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

  .principles-heading {
    padding:
      60px 0
      65px;
  }

  .about-vision {
    min-height: 540px;
    padding: 100px 0;
  }

  .vision-content {
    margin-left: 4%;
    padding: 70px 0;
  }
}


@media (max-width: 600px) {

  .about-hero {
    padding:
      120px 0
      65px;
  }

  .about-hero-inner,
  .about-section-inner {
    width: calc(100% - 28px);
  }

  .about-hero-inner {
    min-height: calc(100vh - 185px);
  }

  .about-hero-content {
    padding:
      60px 0
      70px;
  }

  .about-label {
    margin-bottom: 20px;
    font-size: 7px;
  }

  .about-hero-content h1 {
    margin-bottom: 30px;
    font-size: clamp(
      48px,
      13vw,
      68px
    );
  }

  .about-hero-content p {
    max-width: 340px;
    font-size: 8px;
    line-height: 1.85;
  }

  .about-meta {
    font-size: 6px;
  }

  .about-idea,
  .about-principles {
    padding:
      85px 0
      95px;
  }

  .about-idea-content {
    gap: 35px;
    padding-top: 45px;
  }

  .about-idea-content h2,
  .principles-heading h2 {
    font-size: clamp(
      42px,
      12vw,
      60px
    );
  }

  .about-copy p {
    font-size: 8px;
    line-height: 1.85;
  }

  .principles-heading {
    padding:
      45px 0
      55px;
  }

  .about-principle {
    grid-template-columns:
      35px
      minmax(0, 1fr);
    gap: 12px;
    min-height: 125px;
    padding:
      24px 4px;
  }

  .about-principle h3 {
    font-size: 13px;
  }

  .about-principle p {
    font-size: 8px;
    line-height: 1.75;
  }

  .about-vision {
    min-height: 500px;
    padding: 80px 0;
  }

  .vision-content {
    margin-left: 0;
    padding: 55px 0;
  }

  .vision-mark {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .vision-content h2 {
    font-size: clamp(
      45px,
      13vw,
      65px
    );
  }

  .vision-content p {
    font-size: 8px;
  }

  .vision-content::before {
    width: 150px;
    height: 150px;
    left: -25px;
  }

  .vision-content::after {
    width: 75px;
    height: 75px;
    left: 15px;
  }
}

/* =========================================
   ABOUT PAGE
   SPACING REFINEMENT
========================================= */

.about-hero {
  min-height: 820px;
  padding-top: 120px;
  padding-bottom: 60px;
}

.about-hero-inner {
  min-height: 680px;
}

.about-hero-content {
  padding-top: 55px;
  padding-bottom: 55px;
}

.about-idea {
  padding-top: 95px;
  padding-bottom: 105px;
}

.about-idea-content {
  padding-top: 55px;
  gap: 65px;
}

.about-principles {
  padding-top: 95px;
  padding-bottom: 105px;
}

.principles-heading {
  padding-top: 50px;
  padding-bottom: 55px;
}

.about-principle {
  min-height: 120px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.about-vision {
  min-height: 500px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.vision-content {
  padding-top: 60px;
  padding-bottom: 60px;
}


/* =========================================
   MOBILE SPACING
========================================= */

@media (max-width: 600px) {

  .about-hero {
    min-height: 700px;
    padding-top: 105px;
    padding-bottom: 45px;
  }

  .about-hero-inner {
    min-height: 550px;
  }

  .about-hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-idea {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .about-idea-content {
    padding-top: 40px;
    gap: 30px;
  }

  .about-principles {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .principles-heading {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-principle {
    min-height: 110px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-vision {
    min-height: 420px;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .vision-content {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

/* =========================================
   ABOUT HEADER MOBILE FIX
========================================= */

@media (max-width: 700px) {

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    min-width: auto;
    gap: 9px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

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

  .nav {
    display: none;
  }

  .header-button {
    min-width: auto;
  }

  .header-button .outline-button {
    padding: 9px 11px;
    font-size: 8px;
  }

}

/* =========================================
   ABOUT HERO MOBILE REFINEMENT
========================================= */

@media (max-width: 700px) {

  .about-hero {
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 45px;
  }

  .about-hero-inner {
    min-height: auto;
  }

  .about-hero-content {
    padding-top: 35px;
    padding-bottom: 70px;
  }

  .about-hero-content h1 {
    margin-bottom: 28px;
  }

  .about-meta {
    margin-top: 10px;
  }

}

/* ABOUT MOBILE FIX */

@media (max-width: 700px) {

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    min-width: auto;
    gap: 9px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

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

  .nav {
    display: none;
  }

  .header-button {
    min-width: auto;
  }

  .header-button .outline-button {
    padding: 9px 11px;
    font-size: 8px;
  }


  /* HERO SPACING */

  .about-hero {
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 45px;
  }

  .about-hero-inner {
    min-height: auto;
  }

  .about-hero-content {
    padding-top: 35px;
    padding-bottom: 70px;
  }

  .about-hero-content h1 {
    margin-bottom: 28px;
  }

  .about-meta {
    margin-top: 10px;
  }

}

/* =========================================
   ABOUT PAGE REVEAL ANIMATIONS
========================================= */

.about-hero-content,
.about-meta,
.about-idea-content,
.principles-heading,
.about-principle,
.vision-content {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
}

.about-hero-content {
  transition-delay: .12s;
}

.about-meta {
  transition-delay: .3s;
}

.about-idea-content {
  transition-delay: .08s;
}

.principles-heading {
  transition-delay: .08s;
}

.about-principle:nth-child(1) {
  transition-delay: .05s;
}

.about-principle:nth-child(2) {
  transition-delay: .12s;
}

.about-principle:nth-child(3) {
  transition-delay: .19s;
}

.about-principle:nth-child(4) {
  transition-delay: .26s;
}

.vision-content {
  transition-delay: .08s;
}


/* Revealed state */

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


/* Respect reduced-motion settings */

@media (prefers-reduced-motion: reduce) {

  .about-hero-content,
  .about-meta,
  .about-idea-content,
  .principles-heading,
  .about-principle,
  .vision-content {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

/* =========================================
   NETWORK PAGE
========================================= */

.network-hero {
  position: relative;
  min-height: 100vh;
  padding: 125px 0 70px;
  overflow: hidden;
}

.network-heading,
.network-section-inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );
  margin-inline: auto;
}

.network-heading {
  position: relative;
  z-index: 5;
  padding-top: 25px;
}

.network-index {
  display: block;
  color: #4d4d4d;
  font-size: 8px;
  letter-spacing: .1em;
}

.network-heading h1 {
  max-width: 950px;
  margin-top: 55px;
  font-size: clamp(
    58px,
    9vw,
    120px
  );
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.09em;
}

.network-heading h1 span {
  display: block;
  color: #555;
}

.network-heading p {
  margin-top: 30px;
  color: #666;
  font-size: 9px;
  line-height: 1.8;
}


/* =========================================
   NETWORK VISUAL
========================================= */

.network-visual {
  position: relative;
  width: 100%;
  height: min(
    65vh,
    650px
  );
  min-height: 400px;
  margin-top: -100px;
}

#networkCanvas {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  cursor: crosshair;
}

.network-overlay {
  position: absolute;
  inset: 0;

  pointer-events: none;

  font-size: 7px;
  letter-spacing: .12em;
}

.network-origin {
  position: absolute;

  left: 50%;
  top: 52%;

  transform:
    translate(-50%, -50%);

  color: rgba(255,255,255,.65);
}

.network-status {
  position: absolute;

  right: 24px;
  top: 50%;

  color: #3e3e3e;

  writing-mode: vertical-rl;

  transform:
    translateY(-50%);
}

.network-coordinates {
  position: absolute;

  left: 24px;
  bottom: 25px;

  color: #3d3d3d;

  font-size: 7px;
  letter-spacing: .08em;

  pointer-events: none;
}


/* =========================================
   NETWORK STATEMENT
========================================= */

.network-statement {
  padding: 125px 0 140px;

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

.network-statement-content {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(260px, .55fr);

  gap: 80px;

  padding-top: 65px;
}

.network-statement-content h2 {
  max-width: 800px;

  font-size: clamp(
    48px,
    7vw,
    90px
  );

  line-height: .92;

  font-weight: 500;

  letter-spacing: -.08em;
}

.network-statement-content h2 span {
  display: block;

  color: #555;
}

.network-statement-copy {
  align-self: end;

  max-width: 400px;
}

.network-statement-copy p {
  margin-bottom: 24px;

  color: #707070;

  font-size: 9px;

  line-height: 1.9;
}

.network-statement-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================
   NETWORK PRINCIPLES
========================================= */

.network-principles {
  padding: 125px 0 140px;
}

.network-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  margin-top: 70px;

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

.network-card {
  min-height: 260px;

  padding: 30px;

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

  transition:
    background .35s ease;
}

.network-card:hover {
  background:
    rgba(255,255,255,.025);
}

.network-card > span {
  display: block;

  margin-bottom: 70px;

  color: #444;

  font-size: 8px;
}

.network-card h3 {
  margin-bottom: 14px;

  color: #ddd;

  font-size: 14px;

  font-weight: 500;

  letter-spacing: -.03em;
}

.network-card p {
  max-width: 400px;

  color: #666;

  font-size: 8px;

  line-height: 1.8;
}


/* =========================================
   NETWORK END
========================================= */

.network-end {
  min-height: 560px;

  padding:
    110px 0;

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

  display: flex;
  align-items: center;
}

.network-end-content {
  position: relative;

  padding:
    80px 0 50px;

  margin-left: 8%;
}

.network-end-content > span {
  display: block;

  margin-bottom: 20px;

  color: #444;

  font-size: 18px;
}

.network-end-content h2 {
  max-width: 900px;

  font-size: clamp(
    50px,
    8vw,
    100px
  );

  line-height: .9;

  font-weight: 500;

  letter-spacing: -.085em;
}

.network-end-content h2 span {
  color: #555;
}

.network-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 45px;

  padding-bottom: 8px;

  border-bottom: 1px solid #444;

  color: #aaa;

  font-size: 8px;

  transition:
    color .25s ease,
    border-color .25s ease;
}

.network-link:hover {
  color: #fff;

  border-color: #fff;
}

.network-link span {
  font-size: 13px;
}


/* =========================================
   NETWORK RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .network-hero {
    padding-top: 115px;
  }

  .network-heading {
    padding-top: 20px;
  }

  .network-heading h1 {
    margin-top: 45px;
  }

  .network-visual {
    height: 58vh;
    margin-top: -45px;
  }

  .network-statement {
    padding:
      100px 0
      110px;
  }

  .network-statement-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 55px;
  }

  .network-statement-copy {
    max-width: 520px;
  }

  .network-principles {
    padding:
      100px 0
      110px;
  }

  .network-grid {
    margin-top: 55px;
  }

  .network-card {
    min-height: 230px;
  }

}


@media (max-width: 700px) {

  .network-hero {
    padding:
      100px 0
      45px;
  }

  .network-heading,
  .network-section-inner {
    width: calc(100% - 28px);
  }

  .network-heading h1 {
    margin-top: 35px;

    font-size: clamp(
      48px,
      13vw,
      70px
    );
  }

  .network-heading p {
    margin-top: 24px;

    font-size: 8px;
  }

  .network-visual {
    height: 55vh;

    min-height: 330px;

    margin-top: -15px;
  }

  .network-status {
    right: 8px;
  }

  .network-coordinates {
    left: 8px;
    bottom: 15px;
  }

  .network-statement {
    padding:
      75px 0
      85px;
  }

  .network-statement-content {
    padding-top: 40px;
    gap: 30px;
  }

  .network-statement-content h2 {
    font-size: clamp(
      42px,
      12vw,
      60px
    );
  }

  .network-statement-copy p {
    font-size: 8px;
  }

  .network-principles {
    padding:
      75px 0
      85px;
  }

  .network-grid {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .network-card {
    min-height: 190px;

    padding: 23px;
  }

  .network-card > span {
    margin-bottom: 45px;
  }

  .network-card h3 {
    font-size: 12px;
  }

  .network-card p {
    font-size: 8px;
  }

  .network-end {
    min-height: 430px;

    padding:
      70px 0;
  }

  .network-end-content {
    margin-left: 0;

    padding:
      55px 0
      35px;
  }

  .network-end-content h2 {
    font-size: clamp(
      45px,
      13vw,
      65px
    );
  }

  .network-link {
    margin-top: 35px;
  }

}

/* =========================================
   NETWORK / THE NETWORK
========================================= */

.network-introduction {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--line);
  background: var(--black);
}


.network-introduction-inner {
  width: min(
    100%,
    var(--max)
  );

  margin: 0 auto;

  padding:
    120px 45px
    130px;
}


/* =========================================
   SECTION INDEX
========================================= */

.network-section-index {
  margin-bottom: 75px;

  font-size: 9px;

  letter-spacing: .16em;

  color: #666;
}


/* =========================================
   MAIN INTRO
========================================= */

.network-introduction-main {

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(280px, .85fr);

  gap: 100px;

  padding-bottom: 110px;

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


/* =========================================
   LABEL
========================================= */

.network-label {

  display: block;

  margin-bottom: 24px;

  font-size: 9px;

  letter-spacing: .18em;

  color: #666;
}


/* =========================================
   HEADING
========================================= */

.network-introduction-heading h2 {

  max-width: 760px;

  font-size:
    clamp(
      42px,
      6vw,
      82px
    );

  line-height: .95;

  letter-spacing: -.065em;

  font-weight: 400;
}


.network-introduction-heading h2 span {
  display: block;
  color: #666;
}


/* =========================================
   STATEMENT
========================================= */

.network-introduction-statement {

  align-self: end;

  max-width: 430px;
}


.network-introduction-statement p {

  margin-bottom: 28px;

  font-size: 13px;

  line-height: 1.9;

  color: #888;
}


.network-introduction-statement p:last-child {
  margin-bottom: 0;
  color: #f5f5f2;
}


/* =========================================
   CONNECTIONS
========================================= */

.network-connections {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

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


/* =========================================
   CONNECTION
========================================= */

.network-connection {

  min-height: 300px;

  padding:
    32px 28px
    35px 0;

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

  transition:
    background .35s ease,
    padding .35s ease;
}


.network-connection:not(:first-child) {
  padding-left: 28px;
}


.network-connection:last-child {
  border-right: none;
}


/* =========================================
   NUMBER
========================================= */

.network-connection-number {

  display: block;

  margin-bottom: 85px;

  font-size: 9px;

  color: #555;

  letter-spacing: .12em;
}


/* =========================================
   TITLE
========================================= */

.network-connection h3 {

  margin-bottom: 17px;

  font-size: 11px;

  letter-spacing: .08em;

  font-weight: 500;
}


/* =========================================
   DESCRIPTION
========================================= */

.network-connection p {

  max-width: 220px;

  font-size: 10px;

  line-height: 1.8;

  color: #777;
}


/* =========================================
   HOVER
========================================= */

.network-connection:hover {

  background:
    rgba(255,255,255,.018);

}


.network-connection:hover
.network-connection-number {

  color: #aaa;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

  .network-introduction-inner {

    padding:
      90px 24px
      100px;

  }


  .network-introduction-main {

    grid-template-columns: 1fr;

    gap: 55px;

    padding-bottom: 80px;

  }


  .network-introduction-heading h2 {

    font-size:
      clamp(
        42px,
        12vw,
        65px
      );

  }


  .network-introduction-statement {

    max-width: 560px;

  }


  .network-connections {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .network-connection {

    min-height: 250px;

    padding:
      28px 20px 30px 0;

  }


  .network-connection:nth-child(2) {

    padding-left: 20px;

    border-right: none;

  }


  .network-connection:nth-child(3) {

    padding-left: 0;

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

  }


  .network-connection:nth-child(4) {

    padding-left: 20px;

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

    border-right: none;

  }


  .network-connection-number {

    margin-bottom: 55px;

  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

  .network-introduction-inner {

    padding:
      75px 20px
      80px;

  }


  .network-section-index {

    margin-bottom: 55px;

  }


  .network-introduction-main {

    padding-bottom: 65px;

  }


  .network-introduction-heading h2 {

    font-size: 43px;

  }


  .network-introduction-statement p {

    font-size: 11px;

    line-height: 1.8;

  }


  .network-connections {

    grid-template-columns: 1fr;

  }


  .network-connection,
  .network-connection:not(:first-child) {

    min-height: auto;

    padding:
      28px 0
      32px;

    border-right: none;

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

  }


  .network-connection:first-child {

    border-top: none;

  }


  .network-connection-number {

    margin-bottom: 38px;

  }


  .network-connection p {

    max-width: 300px;

  }

}

/* =========================================
   NETWORK / ORIGIN
========================================= */

.network-origin {
  position: relative;

  width: 100%;

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

  background:
    var(--black);

  overflow: hidden;
}


.network-origin-inner {
  width: min(
    100%,
    var(--max)
  );

  margin: 0 auto;

  padding:
    120px 45px
    110px;
}


/* =========================================
   ORIGIN GRID
========================================= */

.network-origin-grid {

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(280px, .9fr);

  gap: 100px;

  padding-bottom: 90px;

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


/* =========================================
   HEADING
========================================= */

.network-origin-heading h2 {

  max-width: 720px;

  font-size:
    clamp(
      44px,
      6vw,
      78px
    );

  line-height: .96;

  letter-spacing: -.065em;

  font-weight: 400;
}


.network-origin-heading h2 span {

  display: block;

  color: #555;

}


/* =========================================
   COPY
========================================= */

.network-origin-copy {

  align-self: end;

  max-width: 430px;

}


.network-origin-lead {

  margin-bottom: 28px;

  color:
    var(--white) !important;

  font-size: 16px !important;

}


.network-origin-copy p {

  margin-bottom: 25px;

  font-size: 12px;

  line-height: 1.9;

  color: #777;

}


.network-origin-copy p:last-child {

  margin-top: 45px;

  margin-bottom: 0;

  color: #aaa;

  letter-spacing: .04em;

}


/* =========================================
   NETWORK VISUAL
========================================= */

.network-origin-visual {

  position: relative;

  height: 390px;

  margin-top: 90px;

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

  overflow: hidden;

}


/* =========================================
   MAIN HORIZONTAL LINE
========================================= */

.network-origin-line {

  position: absolute;

  left: 5%;

  right: 5%;

  top: 58%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );

}


/* =========================================
   AFRICA MARKER
========================================= */

.network-origin-marker {

  position: absolute;

  left: 22%;

  top: calc(58% - 22px);

  display: flex;

  align-items: center;

  gap: 12px;

}


.network-origin-dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: white;

  box-shadow:
    0 0 0 8px
    rgba(255,255,255,.035),

    0 0 25px
    rgba(255,255,255,.15);

}


.network-origin-label {

  font-size: 9px;

  letter-spacing: .14em;

  color: #aaa;

}


/* =========================================
   ROUTES
========================================= */

.network-origin-route {

  position: absolute;

  left: 22%;

  width: 28%;

  height: 130px;

  border-top:
    1px solid
    rgba(255,255,255,.11);

  transform-origin:
    left center;

}


.network-origin-route::after {

  content: "";

  position: absolute;

  right: -3px;

  top: -3px;

  width: 5px;

  height: 5px;

  border-radius: 50%;

  background: rgba(255,255,255,.65);

}


/* =========================================
   ROUTE ONE
========================================= */

.route-one {

  top: 28%;

  transform:
    rotate(-13deg);

}


/* =========================================
   ROUTE TWO
========================================= */

.route-two {

  top: 57%;

  width: 38%;

  transform:
    rotate(-2deg);

}


/* =========================================
   ROUTE THREE
========================================= */

.route-three {

  top: 67%;

  width: 30%;

  transform:
    rotate(13deg);

}


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

.network-origin-route span {

  position: absolute;

  top: -2px;

  left: 0;

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: white;

  opacity: .8;

  animation:
    originSignal 4s
    linear infinite;

}


.route-two span {

  animation-delay:
    1.2s;

}


.route-three span {

  animation-delay:
    2.3s;

}


@keyframes originSignal {

  0% {

    left: 0;

    opacity: 0;

  }

  10% {

    opacity: .8;

  }

  80% {

    opacity: .8;

  }

  100% {

    left: 100%;

    opacity: 0;

  }

}


/* =========================================
   END POINTS
========================================= */

.network-origin-end {

  position: absolute;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius: 50%;

  background: var(--black);

}


.network-origin-end span {

  font-size: 8px;

  color: #777;

}


/* =========================================
   END POSITIONS
========================================= */

.end-one {

  left: 50%;

  top: 17%;

}


.end-two {

  left: 60%;

  top: 50%;

}


.end-three {

  left: 51%;

  top: 76%;

}


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

.network-origin-footer {

  display: grid;

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

  padding-top: 25px;

  font-size: 8px;

  letter-spacing: .14em;

  color: #555;

}


.network-origin-footer span:nth-child(2) {

  text-align: center;

}


.network-origin-footer span:nth-child(3) {

  text-align: right;

}


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

@media (max-width: 850px) {

  .network-origin-inner {

    padding:
      90px 24px
      90px;

  }


  .network-origin-grid {

    grid-template-columns: 1fr;

    gap: 55px;

    padding-bottom: 70px;

  }


  .network-origin-copy {

    max-width: 560px;

  }


  .network-origin-visual {

    height: 320px;

    margin-top: 70px;

  }


  .network-origin-marker {

    left: 15%;

  }


  .network-origin-route {

    left: 15%;

  }


  .end-one {

    left: 52%;

  }


  .end-two {

    left: 65%;

  }


  .end-three {

    left: 55%;

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

  .network-origin-inner {

    padding:
      75px 20px
      75px;

  }


  .network-origin-grid {

    gap: 45px;

  }


  .network-origin-heading h2 {

    font-size: 43px;

  }


  .network-origin-copy p {

    font-size: 11px;

    line-height: 1.85;

  }


  .network-origin-lead {

    font-size: 14px !important;

  }


  .network-origin-visual {

    height: 260px;

    margin-top: 55px;

  }


  .network-origin-marker {

    left: 8%;

  }


  .network-origin-route {

    left: 8%;

    width: 35%;

  }


  .route-two {

    width: 48%;

  }


  .route-three {

    width: 42%;

  }


  .end-one {

    left: 48%;

  }


  .end-two {

    left: 65%;

  }


  .end-three {

    left: 53%;

  }


  .network-origin-footer {

    grid-template-columns:
      1fr;

    gap: 10px;

  }


  .network-origin-footer
  span:nth-child(2),
  .network-origin-footer
  span:nth-child(3) {

    text-align: left;

  }

}

/* =========================================
   NETWORK / WHAT CONNECTS
========================================= */

.network-connects {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--soft-line);
  background: var(--black);
  overflow: hidden;
}


.network-connects-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px 45px 110px;
}


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

.network-connects-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  column-gap: 100px;
  align-items: end;
  padding-bottom: 90px;
}


.network-connects-header h2 {
  grid-column: 1;
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 400;
}


.network-connects-header h2 span {
  display: block;
  color: #555;
}


.network-connects-header p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 390px;
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  color: #777;
}


/* =========================================
   SYSTEM
========================================= */

.network-system {
  position: relative;
  min-height: 650px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}


/* =========================================
   CENTER
========================================= */

.network-system-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}


.system-center-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: var(--black);
}


.system-center-ring::before,
.system-center-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}


.system-center-ring::before {
  inset: -14px;
}


.system-center-ring::after {
  inset: -28px;
}


.system-center-ring span {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.05em;
}


.system-center-label {
  margin-top: 25px;
  font-size: 8px;
  letter-spacing: .18em;
  color: #777;
}


/* =========================================
   SYSTEM ITEMS
========================================= */

.network-system-item {
  position: absolute;
  z-index: 6;
  width: 190px;
}


.network-system-item .system-number {
  display: block;
  margin-bottom: 18px;
  font-size: 8px;
  letter-spacing: .12em;
  color: #555;
}


.network-system-item h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
}


.system-description {
  display: block;
  max-width: 170px;
  font-size: 10px;
  line-height: 1.7;
  color: #666;
}


/* =========================================
   ITEM POSITIONS
========================================= */

.system-people {
  left: 8%;
  top: 17%;
}


.system-ideas {
  right: 8%;
  top: 17%;
  text-align: right;
}


.system-products {
  right: 8%;
  bottom: 17%;
  text-align: right;
}


.system-opportunity {
  left: 8%;
  bottom: 17%;
}


/* =========================================
   CONNECTION LINES
========================================= */

.system-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: rgba(255,255,255,.09);
  transform-origin: left center;
}


.line-people {
  left: 22%;
  top: 30%;
  width: 29%;
  transform: rotate(27deg);
}


.line-ideas {
  left: 50%;
  top: 30%;
  width: 29%;
  transform: rotate(-27deg);
}


.line-products {
  left: 50%;
  top: 70%;
  width: 29%;
  transform: rotate(27deg);
}


.line-opportunity {
  left: 22%;
  top: 70%;
  width: 29%;
  transform: rotate(-27deg);
}


/* =========================================
   SIGNALS
========================================= */

.system-line::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  animation: systemSignal 4.5s linear infinite;
}


.line-ideas::after {
  animation-delay: 1.1s;
}


.line-products::after {
  animation-delay: 2.1s;
}


.line-opportunity::after {
  animation-delay: 3.1s;
}


@keyframes systemSignal {

  0% {
    left: 0;
    opacity: 0;
  }

  10% {
    opacity: .8;
  }

  80% {
    opacity: .8;
  }

  100% {
    left: 100%;
    opacity: 0;
  }

}


/* =========================================
   HOVER
========================================= */

.network-system-item {
  transition:
    transform .35s ease,
    opacity .35s ease;
}


.network-system-item:hover {
  transform: translateY(-4px);
}


.network-system-item:hover h3 {
  color: #fff;
}


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

.network-connects-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 28px;
  font-size: 8px;
  letter-spacing: .14em;
  color: #555;
}


.network-connects-footer span:nth-child(even) {
  color: #333;
}


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

@media (max-width: 850px) {

  .network-connects-inner {
    padding: 90px 24px;
  }


  .network-connects-header {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 70px;
  }


  .network-connects-header h2 {
    grid-column: auto;
    margin-top: 20px;
  }


  .network-connects-header p {
    grid-column: auto;
    grid-row: auto;
    max-width: 520px;
  }


  .network-system {
    min-height: 560px;
  }


  .network-system-item {
    width: 160px;
  }


  .system-people,
  .system-opportunity {
    left: 5%;
  }


  .system-ideas,
  .system-products {
    right: 5%;
  }


  .system-line {
    opacity: .7;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

  .network-connects-inner {
    padding: 75px 20px 80px;
  }


  .network-connects-header {
    padding-bottom: 55px;
  }


  .network-connects-header h2 {
    font-size: 43px;
  }


  .network-connects-header p {
    font-size: 11px;
    line-height: 1.85;
  }


  .network-system {
    min-height: 540px;
  }


  .network-system-center {
    top: 50%;
  }


  .system-center-ring {
    width: 82px;
    height: 82px;
  }


  .system-center-ring::before {
    inset: -10px;
  }


  .system-center-ring::after {
    inset: -20px;
  }


  .system-center-ring span {
    font-size: 22px;
  }


  .system-center-label {
    margin-top: 18px;
    font-size: 7px;
  }


  .network-system-item {
    width: 125px;
  }


  .network-system-item h3 {
    font-size: 10px;
  }


  .system-description {
    max-width: 125px;
    font-size: 9px;
  }


  .system-people {
    left: 0;
    top: 9%;
  }


  .system-ideas {
    right: 0;
    top: 9%;
  }


  .system-products {
    right: 0;
    bottom: 9%;
  }


  .system-opportunity {
    left: 0;
    bottom: 9%;
  }


  .line-people {
    left: 25%;
    top: 28%;
    width: 27%;
  }


  .line-ideas {
    left: 48%;
    top: 28%;
    width: 27%;
  }


  .line-products {
    left: 48%;
    top: 72%;
    width: 27%;
  }


  .line-opportunity {
    left: 25%;
    top: 72%;
    width: 27%;
  }


  .network-connects-footer {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    line-height: 1.8;
  }

}

/* =========================================
   NETWORK / PRINCIPLES
========================================= */

.network-principles {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--soft-line);
  background: var(--black);
}


.network-principles-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px 45px 80px;
}


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

.network-principles-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 100px;
  align-items: end;
  padding-bottom: 90px;
}


.network-principles-header h2 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 400;
}


.network-principles-header h2 span {
  display: block;
  color: #555;
}


.network-principles-header > p {
  max-width: 390px;
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  color: #777;
}


/* =========================================
   PRINCIPLE LIST
========================================= */

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


.network-principle {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 40px;
  gap: 30px;
  align-items: start;
  min-height: 180px;
  padding: 38px 0;
  border-bottom: 1px solid var(--soft-line);
  transition:
    padding .35s ease,
    background .35s ease;
}


.network-principle:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255,255,255,.015);
}


/* =========================================
   NUMBER
========================================= */

.network-principle-number {
  padding-top: 4px;
  font-size: 9px;
  letter-spacing: .12em;
  color: #555;
}


/* =========================================
   CONTENT
========================================= */

.network-principle-content h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
}


.network-principle-content p {
  max-width: 480px;
  margin: 0;
  font-size: 11px;
  line-height: 1.85;
  color: #777;
}


/* =========================================
   MARK
========================================= */

.network-principle-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #555;
  font-size: 13px;
  transition:
    transform .35s ease,
    color .35s ease,
    border-color .35s ease;
}


.network-principle:hover
.network-principle-mark {
  transform: rotate(45deg);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}


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

.network-principles-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 8px;
  letter-spacing: .14em;
  color: #555;
}


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

@media (max-width: 850px) {

  .network-principles-inner {
    padding: 90px 24px 70px;
  }


  .network-principles-header {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 70px;
  }


  .network-principles-header h2 {
    margin-top: 20px;
  }


  .network-principles-header > p {
    max-width: 520px;
  }


  .network-principle {
    min-height: 160px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

  .network-principles-inner {
    padding: 75px 20px 65px;
  }


  .network-principles-header {
    padding-bottom: 55px;
  }


  .network-principles-header h2 {
    font-size: 43px;
  }


  .network-principles-header > p {
    font-size: 11px;
    line-height: 1.85;
  }


  .network-principle {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 15px;
    min-height: auto;
    padding: 30px 0;
  }


  .network-principle:hover {
    padding-left: 0;
    padding-right: 0;
  }


  .network-principle-content h3 {
    font-size: 11px;
    line-height: 1.5;
  }


  .network-principle-content p {
    font-size: 10px;
    line-height: 1.8;
  }


  .network-principle-mark {
    position: absolute;
    right: 0;
    top: 30px;
    width: 24px;
    height: 24px;
    font-size: 11px;
  }


  .network-principles-footer {
    font-size: 7px;
  }

}

/* =========================================
   NETWORK / JOIN THE NETWORK
========================================= */

.network-join {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--soft-line);
  background: var(--black);
  overflow: hidden;
}


.network-join-inner {
  width: min(100%, var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 120px 45px 35px;

  display: flex;
  flex-direction: column;
}


/* =========================================
   CONTENT
========================================= */

.network-join-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding:
    80px 0
    120px;
}


.network-join-content h2 {
  max-width: 850px;

  margin:
    22px 0
    30px;

  font-size:
    clamp(
      55px,
      9vw,
      120px
    );

  line-height: .88;

  letter-spacing: -.075em;

  font-weight: 400;
}


.network-join-content h2 span {
  display: block;
  color: #555;
}


.network-join-content p {
  max-width: 410px;

  margin-bottom: 45px;

  font-size: 12px;

  line-height: 1.9;

  color: #777;
}


/* =========================================
   BUTTON
========================================= */

.network-join-button {
  position: relative;

  display: inline-flex;

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

  gap: 70px;

  min-width: 250px;

  padding:
    17px 18px
    17px 22px;

  border:
    1px solid
    rgba(255,255,255,.25);

  color: #fff;

  text-decoration: none;

  font-size: 9px;

  letter-spacing: .13em;

  overflow: hidden;

  transition:
    color .35s ease,
    border-color .35s ease;
}


.network-join-button::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #fff;

  transform:
    translateY(101%);

  transition:
    transform .4s
    cubic-bezier(.65,0,.35,1);

  z-index: 0;
}


.network-join-button span {
  position: relative;
  z-index: 1;
}


.network-join-button:hover {
  color: #000;

  border-color: #fff;
}


.network-join-button:hover::before {
  transform:
    translateY(0);
}


.network-join-arrow {
  font-size: 15px;

  transition:
    transform .35s ease;
}


.network-join-button:hover
.network-join-arrow {
  transform:
    translate(3px,-3px);
}


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

.network-join-footer {
  display: grid;

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

  padding-top: 25px;

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

  font-size: 8px;

  letter-spacing: .14em;

  color: #555;
}


.network-join-footer span:nth-child(2) {
  text-align: center;
}


.network-join-footer span:nth-child(3) {
  text-align: right;
}


/* =========================================
   SUBTLE AMBIENT GLOW
========================================= */

.network-join::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.025),
      transparent 68%
    );

  pointer-events: none;
}


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

@media (max-width: 850px) {

  .network-join-inner {
    min-height: 650px;

    padding:
      90px 24px
      30px;
  }


  .network-join-content {
    padding:
      70px 0
      90px;
  }


  .network-join-content h2 {
    font-size:
      clamp(
        52px,
        10vw,
        85px
      );
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

  .network-join-inner {
    min-height: 600px;

    padding:
      75px 20px
      25px;
  }


  .network-join-content {
    padding:
      60px 0
      70px;
  }


  .network-join-content h2 {
    margin:
      18px 0
      25px;

    font-size: 52px;

    line-height: .9;
  }


  .network-join-content p {
    max-width: 300px;

    margin-bottom: 35px;

    font-size: 11px;
  }


  .network-join-button {
    width: 100%;

    min-width: 0;

    gap: 20px;
  }


  .network-join-footer {
    grid-template-columns: 1fr;

    gap: 10px;

    line-height: 1.6;
  }


  .network-join-footer span:nth-child(2),
  .network-join-footer span:nth-child(3) {
    text-align: left;
  }


  .network-join::after {
    width: 300px;
    height: 300px;
  }

}