/* RESET */

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

/* BODY */

body {
  background: #f4efe6;
  color: #171717;

  font-family: "IBM Plex Mono", monospace;

  overflow-x: hidden;
  cursor: default;
}

/* GRID */

.grid {
  position: fixed;
  inset: 0;

  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);

  background-size: 28px 28px;

  pointer-events: none;

  z-index: -1;
}

/* MAIN CONTAINER */

.container {
  width: min(1200px, calc(100% - 60px));

  margin: auto;

  padding: 30px 0 100px;
}

/* TOPBAR */

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

  margin-bottom: 120px;
}

.logo {
  font-family: "VT323", monospace;

  font-size: 2rem;

  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 12px;
}

/* BUTTONS */

button {
  background: #f8f4ed;

  border: 1.5px solid #171717;

  border-radius: 14px;

  padding: 11px 18px;

  font-family: "IBM Plex Mono", monospace;

  font-size: 0.85rem;

  cursor: pointer;

  transition: 0.2s ease;
}

button:hover {
  background: #171717;
  color: #f4efe6;

  transform: translateY(-2px);
}

/* HERO */

.hero-large {
  padding-bottom: 200px;
}

.eyebrow,
.section-label {
  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 2px;

  opacity: 0.45;

  margin-bottom: 20px;
}

.hero-large h1 {
  font-family: "VT323", monospace;

  font-size: clamp(5rem, 11vw, 9rem);

  line-height: 0.9;

  font-weight: 400;

  max-width: 850px;
}

.hero-text {
  margin-top: 28px;

  max-width: 560px;

  line-height: 1.9;

  opacity: 0.7;
}

.button-row {
  display: flex;
  gap: 14px;

  margin-top: 36px;
}

/* SPLIT SECTION */

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

  gap: 70px;

  padding: 70px 0;
}

.split-section h2 {
  font-family: "VT323", monospace;

  font-size: 4rem;

  line-height: 0.95;

  font-weight: 400;
}

.section-paragraph {
  line-height: 2;

  opacity: 0.7;
}

/* IMAGE CARD */

.image-card {
  overflow: hidden;

  border: 1.5px solid #171717;

  border-radius: 26px;

  background: #f8f4ed;

  margin: 40px 0 120px;
}

.image-card img {
  width: 100%;

  display: block;
}

.image-card-content {
  padding: 34px;
}

.image-card-content h3 {
  font-family: "VT323", monospace;

  font-size: 3rem;

  font-weight: 400;

  margin: 8px 0 18px;
}

.image-card-content p {
  line-height: 1.9;

  opacity: 0.7;
}

/* NOTES */

.notes-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 18px;

  padding-bottom: 120px;
}

.note {
  border: 1.5px solid #171717;

  border-radius: 24px;

  padding: 24px;

  background: #f8f4ed;
}

.note-title {
  margin-bottom: 12px;

  opacity: 0.45;
}

.note p {
  line-height: 1.8;
}

/* TERMINAL */

.terminal-box {
  background: #111;

  color: #f4efe6;

  border-radius: 26px;

  padding: 32px;

  line-height: 2;

  margin-bottom: 120px;
}

/* QUOTE */

.quote-block {
  padding-bottom: 120px;
}

.quote-block p {
  font-family: "VT323", monospace;

  font-size: clamp(3rem, 7vw, 6rem);

  line-height: 0.95;

  max-width: 950px;
}

/* TIMELINE */

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

  gap: 20px;

  padding-bottom: 120px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);

  padding-bottom: 18px;
}

.timeline-item span {
  opacity: 0.45;
}

/* LINKS */

.link-list {
  display: flex;
  flex-direction: column;

  gap: 14px;

  padding-bottom: 120px;
}

.link-list a {
  text-decoration: none;

  color: inherit;

  border: 1.5px solid #171717;

  border-radius: 18px;

  padding: 18px 22px;

  background: #f8f4ed;

  transition: 0.2s;
}

.link-list a:hover {
  background: #171717;

  color: #f4efe6;
}

/* BANNER */

.large-banner {
  overflow: hidden;

  border-radius: 32px;

  margin-bottom: 120px;
}

.large-banner img {
  width: 100%;

  display: block;
}

/* FOOTER */

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

  opacity: 0.45;

  font-size: 0.8rem;
}

a {
  text-decoration: none;
  color: #111;
}

/* MOBILE */

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    gap: 20px;

    align-items: flex-start;
  }

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