@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --border: #2a2a30;
  --accent: #e8c97e;
  --accent2: #7eb8e8;
  --text: #e8e8ec;
  --muted: #6b6b78;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.badge {
  display: inline-block;
  background: rgba(232,201,126,0.1);
  border: 1px solid rgba(232,201,126,0.25);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1rem;
}
h1 em { font-style: italic; color: var(--accent); }
.subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* ── CONTENT ── */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

section {
  margin-bottom: 3.5rem;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
  letter-spacing: 0.03em;
}

p, li {
  color: #b0b0bc;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}

ul { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--text); font-weight: 500; }

/* ── INFO BOX ── */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box p { margin: 0; font-size: 0.88rem; }

/* ── APP CARDS ── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.app-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}
.app-card-name {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.app-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
footer p { color: var(--muted); font-size: 0.8rem; margin: 0; }
