:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101114;
  color: #f4f0e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(17, 75, 95, 0.32), transparent 36%),
    radial-gradient(circle at 78% 10%, rgba(176, 56, 47, 0.2), transparent 30%),
    #101114;
}

a {
  color: inherit;
}

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

.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: 132px;
  padding-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #8ed7cc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.status {
  flex: 0 0 auto;
  border: 1px solid rgba(244, 240, 232, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  color: #c8c0b2;
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tile {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  padding: 24px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 8px;
  background: #1a1b1f;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 54%, rgba(0, 0, 0, 0.72) 100%),
    var(--tile-bg);
  opacity: 0.96;
  transition: opacity 160ms ease;
}

.tile:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 240, 232, 0.34);
}

.tile:hover::before {
  opacity: 1;
}

.tile > span {
  position: relative;
  z-index: 1;
}

.urban {
  --tile-bg:
    linear-gradient(145deg, rgba(12, 18, 13, 0.2), rgba(5, 8, 5, 0.86)),
    repeating-linear-gradient(90deg, rgba(147, 171, 92, 0.18) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, #293525, #11170f 58%, #050806);
}

.jetlag {
  --tile-bg:
    linear-gradient(140deg, rgba(42, 35, 28, 0.2), rgba(8, 8, 10, 0.82)),
    repeating-linear-gradient(45deg, rgba(221, 167, 89, 0.16) 0 2px, transparent 2px 62px),
    linear-gradient(135deg, #49352a, #171414 56%, #0b0b0d);
}

.board {
  --tile-bg:
    linear-gradient(145deg, rgba(10, 25, 33, 0.15), rgba(6, 12, 17, 0.86)),
    repeating-linear-gradient(0deg, rgba(73, 190, 207, 0.16) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, #133344, #101923 55%, #070b10);
}

.tile-kicker {
  color: #b8dace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tile-title {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
}

.tile-copy {
  min-height: 70px;
  margin-top: 12px;
  color: #ded8ca;
  font-size: 15px;
  line-height: 1.45;
}

.tile-action {
  align-self: flex-start;
  margin-top: 18px;
  border: 1px solid rgba(244, 240, 232, 0.34);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

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

  .tile {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding: 28px 0;
  }

  .topbar {
    display: block;
    min-height: 0;
  }

  .status {
    display: inline-block;
    margin-top: 18px;
  }
}
