@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #101418;
  --bg-alt: #171c22;
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f3f5f9;
  --text-dim: #9aa0ae;
  --accent: #4fd1c5;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 820px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 900px 500px at 20% -10%, rgba(79, 209, 197, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 0%, rgba(79, 209, 197, 0.08), transparent 55%);
  background-repeat: no-repeat;
}

header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(16, 20, 24, 0.7);
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.6rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-glyph {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  margin-left: 1.75rem;
  white-space: nowrap;
  transition: color 0.15s ease;
}

@media (max-width: 480px) {
  .wrap {
    padding: 1.1rem 1.25rem;
  }

  .logo {
    font-size: 0.98rem;
  }

  .logo-glyph {
    width: 32px;
    height: 32px;
  }

  nav a {
    margin-left: 0;
  }

  nav a:first-child {
    margin-left: 0;
  }

  nav {
    display: flex;
    gap: 1.1rem;
  }

  main {
    padding: 3rem 1.25rem 3.5rem;
  }
}

nav a:hover {
  color: var(--text);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}

.hero {
  padding: 1rem 0 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px var(--accent);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 1.15rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 30%, #b9bdc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin: 0;
  max-width: 58ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.75rem;
}

.card {
  background: linear-gradient(180deg, var(--bg-alt), rgba(18, 20, 27, 0.4));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 209, 197, 0.35);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(79, 209, 197, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 19px;
  height: 19px;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.93rem;
}

section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 3rem 0 0.9rem;
  letter-spacing: -0.015em;
}

section h2:first-child {
  margin-top: 0;
}

section h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 1.75rem 0 0.6rem;
  letter-spacing: -0.005em;
  color: var(--text);
}

p, li {
  color: var(--text-dim);
}

.policy-meta {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0 0 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.policy-meta strong {
  color: var(--text);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.25);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin: 0.25rem 0 1.1rem;
}

a {
  color: var(--accent);
  text-decoration-color: rgba(79, 209, 197, 0.4);
}

a:hover {
  text-decoration-color: var(--accent);
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer a {
  color: var(--text-dim);
}

footer a:hover {
  color: var(--text);
}
