html {
  background: var(--color-background);
  color: var(--color-text);

  font-family: var(--font-sans);

  scroll-behavior: auto;
}

body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 65% 120%,
      rgba(115, 87, 255, 0.08),
      transparent 35%
    ),
    var(--color-background);

  color: var(--color-text);
}

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

/* ========================================
   LAYOUT
======================================== */

.site {
  position: relative;

  width: 100%;
  min-height: 100vh;
}

.container {
  width: min(
    calc(100% - (var(--container-padding) * 2)),
    var(--container-width)
  );

  margin-inline: auto;
}

/* ========================================
   TYPOGRAPHY
======================================== */

.label {
  color: var(--color-text-muted);

  font-size: var(--font-size-xs);
  font-weight: 500;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

.display {
  font-size: var(--font-size-display);
  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;
}

.body-copy {
  max-width: 34rem;

  color: var(--color-text-soft);

  font-size: var(--font-size-md);

  line-height: 1.7;
}

/* ========================================
   UTILITIES
======================================== */

.text-muted {
  color: var(--color-text-muted);
}

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

.screen-reader-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* ========================================
   DEVELOPMENT FOUNDATION
======================================== */

.foundation {
  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

.foundation-header {
  position: relative;
  z-index: var(--z-navigation);

  width: 100%;

  padding-top: 2rem;
}

.foundation-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foundation-logo {
  font-size: 1rem;
  font-weight: 700;

  letter-spacing: 0.28em;
}

.foundation-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.foundation-status-dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--color-text-muted);
}

.foundation-main {
  flex: 1;

  display: flex;
  align-items: center;

  padding-block: var(--space-8);
}

.foundation-content {
  width: 100%;
}

.foundation-title {
  max-width: 1100px;

  margin-top: var(--space-5);
}

.foundation-title span {
  display: block;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(255, 255, 255, 0.42);
}

.foundation-description {
  margin-top: var(--space-7);
  margin-left: auto;
}

.foundation-footer {
  padding-bottom: 2rem;
}

.foundation-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}