/* ================= GLOBAL ================= */

* {
  box-sizing: border-box;
}

:root {

  --bg: #f6f7f9;
  --ink: #1a1d23;
  --muted: #6b7280;
  --line: rgba(0,0,0,0.08);
  --accent: #2b6cb0;

}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* ---------- Main layout ---------- */
.landing {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1.4rem;
  transform: translateX(-4%);
}

/* ---------- Brand block ---------- */
.brand {
  display: flex;
  align-items: center;
}

.name {
  font-family: "Georgia", "Times New Roman", serif;

  font-size: 3.9rem;
  /* Slightly increased for stronger identity presence */

  font-weight: 400;
  letter-spacing: 0.06em;
  /* Increased spacing reinforces logotype feel */
}

.brace {
  font-size: 10rem;
  /* Reduced slightly to prevent visual dominance */

  margin-left: 0.9rem;
  /* Tightened spacing to pull structure together */

  line-height: 1;

  opacity: 0.88;
  /* Softens brace so it reads as structure, not headline */

  transform: translateY(-0.12em);
  /* Optical vertical centering relative to text */
}

/* ---------- Section links ---------- */
.sections {
  display: flex;
  flex-direction: column;

  gap: 0.7rem;
  /* Increased spacing improves vertical rhythm */

  margin-left: -0.2rem;
  /* Micro optical alignment toward brace */
}

.sections a {
  text-decoration: none;
  color: var(--ink);
  font-size: 1.45rem;
  /* Slightly larger for clearer hierarchy */

  letter-spacing: 0.14em;

  transition:
    color 0.2s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  /* Easing curve adds weight and intention to hover */
}

.sections a:hover {
  color: var(--accent);
    transform: translateX(6px);
}
