:root {
  --navy: #082c52;
  --navy-soft: #173f63;
  --blue-soft: #dfeef8;
  --paper: #f7f2e9;
  --cream: #fffdf8;
  --white: #ffffff;
  --gold: #d79a36;
  --gold-light: #e9ba67;
  --line: rgba(8, 44, 82, 0.14);
  --muted: #687684;

  --green: #29a884;
  --blue: #338adb;
  --purple: #8b6be7;
  --orange: #f2a31b;
  --coral: #e96d61;
  --learning: #279be8;

  --sidebar-width: 252px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow: 0 14px 40px rgba(38, 51, 63, 0.1);

  --shadow-soft: 0 8px 24px rgba(38, 51, 63, 0.08);
}

/* ============================================================
   BASE
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

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

  background:
    radial-gradient(
      circle at top right,
      rgba(242, 212, 168, 0.2),
      transparent 40%
    ),
    var(--paper);
}

button {
  font: inherit;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible {
  outline: 3px solid rgba(51, 138, 219, 0.28);
  outline-offset: 3px;
}

svg {
  display: block;
}

.app-shell {
  min-height: 100vh;

  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
  height: 100vh;

  position: sticky;
  top: 0;

  z-index: 50;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 22px 21px 0;

  background: linear-gradient(
    180deg,
    rgba(255, 254, 251, 0.98) 0%,
    rgba(255, 254, 251, 0.98) 76%,
    rgba(255, 253, 248, 0.94) 100%
  );

  border-right: 1px solid rgba(8, 44, 82, 0.1);
}

.sidebar-brand {
  position: relative;
  z-index: 2;

  text-align: center;

  margin-bottom: 19px;
}

.brand-compass {
  width: 52px;
  height: 52px;

  margin: 0 auto 5px;

  display: grid;
  place-items: center;

  color: var(--navy);
}

.brand-compass svg {
  width: 48px;
  height: 48px;

  stroke-width: 1.25;
}

.brand-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 5px;

  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.15;
  color: #315071;
}

.sidebar-nav {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 3px;
}

.nav-item {
  width: 100%;

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

  min-height: 42px;

  padding: 9px 13px;

  border: 0;
  border-radius: 7px;

  background: transparent;

  color: var(--navy);

  cursor: pointer;

  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;

  text-align: left;

  transition:
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.nav-item svg {
  flex: 0 0 auto;

  width: 21px;
  height: 21px;

  stroke-width: 1.65;
}

.nav-item:hover {
  background: rgba(198, 219, 234, 0.38);
}

.nav-item.active {
  background: #d9e8f3;
}

.nav-item:active {
  transform: translateY(1px);
}

.sidebar-secondary {
  position: relative;
  z-index: 2;

  margin-top: 16px;
  padding-top: 15px;

  border-top: 1px solid rgba(8, 44, 82, 0.13);

  display: grid;
  gap: 3px;
}

.sidebar-quote {
  position: relative;
  z-index: 2;

  margin-top: auto;

  padding: 18px 7px 126px;

  border-top: 1px solid rgba(8, 44, 82, 0.11);
}

.sidebar-quote p {
  margin: 0;

  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.25;
  font-style: italic;

  color: #244d72;
}

.sidebar-quote span {
  display: block;

  margin-top: 9px;

  font-family: var(--serif);
  font-size: 13px;

  color: #244d72;
}

.sidebar-landscape {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 130px;

  z-index: 1;

  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 253, 248, 1) 0%,
      rgba(255, 253, 248, 0) 28%
    ),
    url("assets/sidebar-templo.png");

  background-size: cover;
  background-position: 45% 80%;
}

/* ============================================================
   PAGE / MOBILE HEADER
   ============================================================ */

.page {
  min-width: 0;
}

.mobile-header {
  display: none;
}

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

.main-content {
  min-width: 0;

  padding: 14px;

  overflow: hidden;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

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

.hero {
  position: relative;

  min-height: 654px;

  overflow: hidden;

  border-radius: 15px;

  background-image: url("assets/hero-mediterraneo.png");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: cover;

  box-shadow:
    inset 0 0 0 1px rgba(8, 44, 82, 0.08),
    var(--shadow-soft);
}

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

  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 253, 247, 0.84) 0%,
    rgba(255, 251, 242, 0.52) 18%,
    rgba(255, 249, 236, 0.06) 45%,
    rgba(255, 249, 236, 0.04) 73%,
    rgba(255, 250, 240, 0.24) 100%
  );
}

.hero-topbar {
  position: absolute;

  top: 15px;
  left: 0;
  right: 0;

  z-index: 8;

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

  pointer-events: none;
}

.mode-switch {
  display: flex;

  width: 304px;

  padding: 3px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(8, 44, 82, 0.1);

  box-shadow:
    0 6px 18px rgba(18, 55, 84, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(12px);

  pointer-events: auto;
}

.mode-button {
  flex: 1;

  padding: 8px 18px;

  border: 0;
  border-radius: 999px;

  background: transparent;

  font-family: var(--serif);
  font-size: 16px;

  cursor: pointer;

  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mode-button.selected {
  color: #fff;

  background: var(--navy);

  box-shadow: 0 4px 10px rgba(8, 44, 82, 0.18);
}

.hero-date {
  position: absolute;

  right: 26px;

  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;

  color: var(--navy);
}

.hero-copy {
  position: absolute;

  top: 70px;
  left: 50%;

  z-index: 6;

  width: min(880px, 74%);

  transform: translateX(-50%);

  text-align: center;
}

.hero-copy h1 {
  margin: 0 auto;

  max-width: 850px;

  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.03em;

  color: var(--navy);

  text-wrap: balance;

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.55);
}

.hero-subtitle {
  display: none;

  margin: 0;

  font-family: var(--serif);
  font-size: clamp(28px, 2.3vw, 39px);
  line-height: 1;

  font-weight: 500;

  color: var(--navy);
}

.gold-divider {
  width: 41px;
  height: 1px;

  margin: 15px auto 0;

  background: var(--gold);
}

.hero-description {
  display: none;

  max-width: 580px;

  margin: 11px auto 0;

  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.14;

  color: var(--navy);
}

/* ============================================================
   SHARE MODE HERO COPY
   ============================================================ */

body[data-mode="share"] .hero-copy {
  top: 68px;
}

body[data-mode="share"] .hero-copy h1 {
  font-size: clamp(60px, 5vw, 80px);
  line-height: 0.86;
}

body[data-mode="share"] .hero-subtitle {
  display: block;
  margin-top: 7px;
}

body[data-mode="share"] .hero-description {
  display: block;
}

body[data-mode="share"] .gold-divider {
  margin-top: 14px;
}

body[data-mode="share"] .hero-navigation {
  top: 256px;
}

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

.hero-navigation {
  position: absolute;

  z-index: 5;

  top: 233px;
  left: 50%;

  width: min(1050px, calc(100% - 90px));

  transform: translateX(-50%);

  display: grid;
  grid-template-columns: 1fr 1.02fr 1fr;
  align-items: center;
  justify-items: center;
}

.hero-node {
  position: relative;

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

  min-width: 0;
}

.node-image {
  width: min(280px, 24vw);
  height: min(280px, 24vw);

  object-fit: contain;

  filter: drop-shadow(0 12px 18px rgba(33, 50, 63, 0.1));
}

.compass-image {
  position: relative;

  z-index: 3;

  width: min(310px, 26vw);
  height: min(310px, 26vw);

  object-fit: contain;

  filter: drop-shadow(0 16px 18px rgba(48, 31, 11, 0.16));
}

.compass-decoration {
  position: absolute;

  z-index: 1;

  width: 345px;
  height: 345px;

  border-radius: 50%;

  border: 1px solid rgba(203, 145, 47, 0.32);

  background:
    linear-gradient(
      90deg,
      transparent calc(50% - 0.5px),
      rgba(203, 145, 47, 0.22) 50%,
      transparent calc(50% + 0.5px)
    ),
    linear-gradient(
      0deg,
      transparent calc(50% - 0.5px),
      rgba(203, 145, 47, 0.22) 50%,
      transparent calc(50% + 0.5px)
    );

  opacity: 0.65;
}

.compass-decoration::before,
.compass-decoration::after {
  content: "";

  position: absolute;
  inset: 24px;

  border: 1px solid rgba(203, 145, 47, 0.22);
  border-radius: 50%;
}

.compass-decoration::after {
  inset: 59px;
}

.compass-caption {
  position: absolute;

  z-index: 7;

  top: calc(100% - 9px);

  width: 240px;

  text-align: center;

  color: var(--navy);

  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.compass-caption strong {
  display: block;

  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.compass-caption span {
  display: block;

  margin-top: 3px;

  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.caption-ornament {
  width: 48px;
  height: 1px;

  margin: 11px auto 0;

  position: relative;

  background: var(--gold);
}

.caption-ornament::after {
  content: "";

  position: absolute;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  left: 50%;
  top: 50%;

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

  background: var(--gold);
}

/* ============================================================
   EXPLORE CARDS
   ============================================================ */

.explore-card {
  position: absolute;

  top: calc(100% - 12px);

  z-index: 10;

  width: 294px;
  min-height: 91px;

  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;

  padding: 18px 17px 14px 24px;

  border: 1px solid rgba(8, 44, 82, 0.08);
  border-radius: 17px;

  background: rgba(255, 253, 247, 0.94);

  box-shadow: 0 11px 24px rgba(43, 52, 59, 0.1);

  backdrop-filter: blur(8px);

  cursor: pointer;

  text-align: left;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.explore-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 16px 30px rgba(43, 52, 59, 0.14);
}

.explore-icon {
  position: absolute;

  width: 58px;
  height: 58px;

  left: 50%;
  top: -37px;

  transform: translateX(-50%);

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fffdf8;

  border: 1px solid rgba(203, 145, 47, 0.18);

  box-shadow: 0 7px 15px rgba(43, 52, 59, 0.1);
}

.explore-icon svg {
  width: 28px;
  height: 28px;

  stroke-width: 1.55;

  color: var(--navy);
}

.explore-content strong {
  display: block;

  margin-bottom: 3px;

  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;

  color: var(--navy);
}

.explore-content small {
  display: block;

  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.15;

  color: #244f73;
}

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

  display: grid;
  place-items: center;

  justify-self: end;

  border-radius: 50%;

  background: #fff;

  border: 1px solid rgba(203, 145, 47, 0.25);

  box-shadow: 0 4px 10px rgba(43, 52, 59, 0.06);
}

.explore-arrow svg {
  width: 15px;
  height: 15px;

  stroke-width: 1.8;
}

/* ============================================================
   EUDAIMONIA
   ============================================================ */

.eudaimonia-card {
  min-height: 136px;

  margin-top: 13px;

  display: grid;
  grid-template-columns: 185px 270px 1px minmax(0, 1fr);
  align-items: center;

  overflow: hidden;

  border-radius: 15px;

  border: 1px solid rgba(8, 44, 82, 0.08);

  background: linear-gradient(
    90deg,
    rgba(248, 245, 237, 0.95),
    rgba(255, 254, 250, 0.97)
  );

  box-shadow: var(--shadow-soft);
}

.aristotle-area {
  align-self: stretch;

  position: relative;

  overflow: hidden;

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

  background: radial-gradient(
    ellipse at center,
    rgba(183, 205, 220, 0.35),
    transparent 66%
  );
}

.aristotle-area img {
  width: 150px;
  max-height: 135px;

  object-fit: contain;
  object-position: bottom center;

  transform: translateY(4px);
}

.eudaimonia-title {
  padding: 20px 26px;

  text-align: center;

  color: var(--navy);
}

.eudaimonia-title strong {
  display: block;

  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.95;
  font-weight: 600;
}

.eudaimonia-title span {
  display: block;

  margin-top: 5px;

  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;

  letter-spacing: 0.04em;
}

.eudaimonia-divider {
  width: 1px;
  height: 65px;

  background: rgba(8, 44, 82, 0.23);
}

.eudaimonia-text {
  padding: 20px 38px;

  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.17;

  color: #244f73;
}

/* ============================================================
   INDICATORS
   ============================================================ */

.indicators-card {
  margin-top: 13px;

  padding: 13px 23px 17px;

  border-radius: 15px;

  border: 1px solid rgba(8, 44, 82, 0.08);

  background: rgba(255, 255, 255, 0.91);

  box-shadow: var(--shadow-soft);
}

.indicators-header {
  min-height: 34px;

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

.indicators-header h2 {
  margin: 0;

  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;

  color: var(--navy);
}

.view-all-button {
  display: flex;
  align-items: center;
  gap: 7px;

  padding: 5px 0;

  border: 0;

  background: transparent;

  color: #2984d0;

  font-family: var(--serif);
  font-size: 14px;

  cursor: pointer;
}

.view-all-button svg {
  width: 16px;
  height: 16px;
}

.indicator-grid {
  margin-top: 6px;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.indicator {
  min-width: 0;

  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;

  padding: 9px 19px;
}

.indicator + .indicator {
  border-left: 1px solid rgba(8, 44, 82, 0.1);
}

.indicator-icon {
  display: grid;
  place-items: center;
}

.indicator-icon svg {
  width: 32px;
  height: 32px;

  stroke-width: 1.75;
}

.indicator-label {
  display: block;

  overflow: hidden;

  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.05;

  white-space: nowrap;
  text-overflow: ellipsis;

  color: #2d5275;
}

.indicator-info strong {
  display: block;

  margin-top: 2px;

  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;

  white-space: nowrap;

  color: var(--navy);
}

.progress-track {
  width: 100%;
  max-width: 84px;
  height: 6px;

  margin-top: 8px;

  overflow: hidden;

  border-radius: 999px;

  background: #e9eaeb;
}

.progress-value {
  width: var(--progress);
  height: 100%;

  border-radius: inherit;

  background: currentColor;
}

.indicator-energy {
  color: var(--green);
}

.indicator-family {
  color: var(--blue);
}

.indicator-projects {
  color: var(--purple);
}

.indicator-reading {
  color: var(--orange);
}

.indicator-training {
  color: var(--coral);
}

.indicator-learning {
  color: var(--learning);
}

/* ============================================================
   INNER VIEWS
   ============================================================ */

.content-view {
  min-height: calc(100vh - 28px);

  padding: 42px;

  border-radius: 16px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(249, 246, 238, 0.96)
  );

  border: 1px solid rgba(8, 44, 82, 0.08);

  box-shadow: var(--shadow-soft);
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 25px;

  margin-bottom: 34px;
}

.section-head > div {
  max-width: 860px;
}

.section-kicker {
  display: block;

  margin-bottom: 5px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;

  color: #437190;
}

.section-head h2 {
  margin: 0;

  font-family: var(--serif);
  font-size: clamp(35px, 3.4vw, 52px);
  line-height: 0.98;
  font-weight: 500;

  color: var(--navy);
}

.section-head p {
  max-width: 760px;

  margin: 12px 0 0;

  line-height: 1.55;

  color: var(--muted);
}

.back {
  flex: 0 0 auto;

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

  padding: 9px 13px;

  border: 1px solid rgba(8, 44, 82, 0.14);
  border-radius: 999px;

  background: #fff;

  cursor: pointer;
}

.back svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   LIFE MATRIX
   ============================================================ */

.matrix {
  display: grid;
  grid-template-columns: 150px repeat(4, minmax(170px, 1fr));

  gap: 9px;
}

.matrix-cell {
  min-height: 116px;

  padding: 16px;

  border-radius: 13px;

  border: 1px solid rgba(8, 44, 82, 0.1);

  background: rgba(255, 255, 255, 0.86);
}

.matrix-cell.head {
  min-height: auto;

  border: 0;

  background: transparent;

  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;

  color: #3f6988;
}

.matrix-cell.row {
  display: flex;
  align-items: center;

  border: 0;

  background: transparent;

  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;

  color: var(--navy);
}

.matrix-cell strong {
  font-family: var(--serif);
  font-size: 18px;
}

.matrix-cell p {
  margin: 7px 0 0;

  font-size: 12px;
  line-height: 1.4;

  color: var(--muted);
}

.dot {
  width: 7px;
  height: 7px;

  margin-right: 6px;

  display: inline-block;

  border-radius: 50%;

  background: var(--gold);
}

/* ============================================================
   SHIP GRID
   ============================================================ */

.ship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.ship-item {
  min-height: 188px;

  padding: 26px;

  border-radius: 16px;

  border: 1px solid rgba(8, 44, 82, 0.1);

  background: rgba(255, 255, 255, 0.88);

  box-shadow: var(--shadow-soft);
}

.ship-item .icon {
  font-family: var(--serif);
  font-size: 35px;

  color: var(--gold);
}

.ship-item h3 {
  margin: 10px 0 6px;

  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;

  color: var(--navy);
}

.ship-item p {
  margin: 0;

  line-height: 1.55;

  color: var(--muted);
}

/* ============================================================
   SIDEBAR BACKDROP
   ============================================================ */

.sidebar-backdrop {
  display: none;
}

/* ============================================================
   LARGE SCREENS
   ============================================================ */

@media (min-width: 1700px) {
  :root {
    --sidebar-width: 270px;
  }

  .main-content {
    padding: 14px 16px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-navigation {
    width: 1110px;
    top: 245px;
  }

  body[data-mode="share"] .hero-navigation {
    top: 270px;
  }

  .node-image {
    width: 295px;
    height: 295px;
  }

  .compass-image {
    width: 330px;
    height: 330px;
  }

  .compass-decoration {
    width: 365px;
    height: 365px;
  }

  .explore-card {
    width: 310px;
  }
}

/* ============================================================
   NOTEBOOK / SMALL DESKTOP
   ============================================================ */

@media (max-width: 1250px) {
  :root {
    --sidebar-width: 220px;
  }

  .sidebar {
    padding-inline: 16px;
  }

  .hero {
    min-height: 625px;
  }

  .hero-navigation {
    width: calc(100% - 50px);
  }

  .node-image {
    width: 235px;
    height: 235px;
  }

  .compass-image {
    width: 270px;
    height: 270px;
  }

  .compass-decoration {
    width: 300px;
    height: 300px;
  }

  .explore-card {
    width: 250px;
  }

  .explore-content strong {
    font-size: 19px;
  }

  .explore-content small {
    font-size: 13px;
  }

  .indicator {
    grid-template-columns: 35px 1fr;
    padding-inline: 10px;
  }

  .indicator-icon svg {
    width: 27px;
    height: 27px;
  }
}

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

@media (max-width: 980px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: fixed;

    width: 260px;

    left: 0;
    top: 0;
    bottom: 0;

    transform: translateX(-105%);

    transition: transform 220ms ease;

    box-shadow: 14px 0 30px rgba(0, 0, 0, 0.13);
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;

    z-index: 45;

    display: block;

    background: rgba(10, 26, 38, 0.34);

    opacity: 0;
    pointer-events: none;

    transition: opacity 220ms ease;
  }

  body.sidebar-open .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-header {
    height: 62px;

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

    padding: 0 17px;

    background: rgba(255, 253, 248, 0.96);

    border-bottom: 1px solid rgba(8, 44, 82, 0.08);
  }

  .mobile-menu-button {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 9px;

    background: #e4eef5;

    cursor: pointer;
  }

  .mobile-header strong {
    display: block;

    font-family: var(--serif);
    font-size: 20px;
  }

  .mobile-header span {
    display: block;

    font-family: var(--serif);
    font-size: 12px;

    color: #476785;
  }

  .main-content {
    padding: 10px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-date {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 50px);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 7vw, 60px);
  }

  .hero-navigation {
    top: 240px;

    width: calc(100% - 42px);

    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "compass compass"
      "ship map";

    row-gap: 100px;
  }

  body[data-mode="share"] .hero-navigation {
    top: 280px;
  }

  .hero-node-compass {
    grid-area: compass;
  }

  .hero-node-ship {
    grid-area: ship;
  }

  .hero-node-map {
    grid-area: map;
  }

  .node-image {
    width: 210px;
    height: 210px;
  }

  .compass-image {
    width: 245px;
    height: 245px;
  }

  .compass-decoration {
    width: 275px;
    height: 275px;
  }

  .compass-caption {
    top: calc(100% - 4px);
  }

  .explore-card {
    width: min(250px, 41vw);
  }

  .eudaimonia-card {
    grid-template-columns: 160px 210px 1px 1fr;
  }

  .eudaimonia-title strong {
    font-size: 27px;
  }

  .eudaimonia-text {
    padding-inline: 24px;
    font-size: 16px;
  }

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

  .indicator:nth-child(4) {
    border-left: 0;
  }

  .indicator:nth-child(n + 4) {
    border-top: 1px solid rgba(8, 44, 82, 0.1);
  }

  .matrix {
    overflow-x: auto;

    grid-template-columns:
      130px
      repeat(4, minmax(180px, 1fr));
  }
}

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

@media (max-width: 660px) {
  .main-content {
    padding: 0;
  }

  .hero {
    min-height: 1090px;

    border-radius: 0;
  }

  .hero-topbar {
    top: 13px;
  }

  .mode-switch {
    width: 250px;
  }

  .mode-button {
    padding: 7px 12px;
    font-size: 15px;
  }

  .hero-copy {
    top: 70px;

    width: calc(100% - 34px);
  }

  .hero-copy h1 {
    font-size: 43px;
    line-height: 0.94;
  }

  body[data-mode="share"] .hero-copy h1 {
    font-size: 55px;
  }

  body[data-mode="share"] .hero-subtitle {
    font-size: 27px;
  }

  body[data-mode="share"] .hero-description {
    font-size: 16px;
  }

  .hero-navigation,
  body[data-mode="share"] .hero-navigation {
    top: 250px;

    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 101px;
  }

  body[data-mode="share"] .hero-navigation {
    top: 322px;
  }

  .hero-node-compass {
    order: 1;
  }

  .hero-node-ship {
    order: 2;
  }

  .hero-node-map {
    order: 3;
  }

  .node-image {
    width: 220px;
    height: 220px;
  }

  .compass-image {
    width: 250px;
    height: 250px;
  }

  .compass-decoration {
    width: 280px;
    height: 280px;
  }

  .explore-card {
    width: 280px;
  }

  .eudaimonia-card {
    margin: 10px;

    grid-template-columns: 115px 1fr;

    min-height: 145px;
  }

  .aristotle-area img {
    width: 110px;
  }

  .eudaimonia-title {
    text-align: left;

    padding: 20px;
  }

  .eudaimonia-title strong {
    font-size: 26px;
  }

  .eudaimonia-divider {
    display: none;
  }

  .eudaimonia-text {
    grid-column: 1 / -1;

    padding: 14px 20px 20px;

    border-top: 1px solid rgba(8, 44, 82, 0.1);

    font-size: 16px;
  }

  .indicators-card {
    margin: 10px;

    padding-inline: 16px;
  }

  .indicator-grid {
    grid-template-columns: 1fr 1fr;
  }

  .indicator {
    border-left: 0 !important;
    border-top: 1px solid rgba(8, 44, 82, 0.1);
  }

  .indicator:nth-child(1),
  .indicator:nth-child(2) {
    border-top: 0;
  }

  .indicator:nth-child(even) {
    border-left: 1px solid rgba(8, 44, 82, 0.1) !important;
  }

  .content-view {
    min-height: calc(100vh - 62px);

    padding: 25px 18px;

    border-radius: 0;
  }

  .section-head {
    display: block;
  }

  .back {
    margin-bottom: 20px;
  }

  .ship-grid {
    grid-template-columns: 1fr;
  }
}
