﻿@font-face {
  font-family: "Stack Sans Text";
  src: url("s/stacksanstext/v1/kJErBuAJ-Q0hiGPmzHEu345X1JJnBLy4NY8.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Funnel Sans";
  src: url("s/funnelsans/v3/OpNIno8Dg9bX6Bsp3Wq69Tpyfhg.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
:root {
  color-scheme: dark;
  --bg: #050507;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-muted: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #b8c1d3;
  --button-bg: #ffffff;
  --button-text: #0f172a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #12131c 0%, var(--bg) 28%, #030305 100%);
  color: var(--text);
  font-family: "Funnel Sans", Inter, system-ui, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  gap: 1rem;
  background: rgba(8, 10, 16, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 0.95rem;
  font-family: "Stack Sans Text", sans-serif;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  flex: 1;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}
.nav-action {
  display: inline-flex;
  align-items: center;
}
.nav-button {
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.page {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}
.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2rem;
}
.page-title {
  margin: 0;
  font-family: "Stack Sans Text", sans-serif;
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  line-height: 0.92;
}
.hero-subtitle {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}
.hero-note {
  padding: 1.75rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.8;
}
.section-panel,
.card-panel,
.note-panel,
.list-item,
.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
}
.hero-card,
.section-panel,
.note-panel {
  padding: 1.85rem;
}
.section-panel {
  display: grid;
  gap: 1rem;
}
.section-heading {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  font-family: "Stack Sans Text", sans-serif;
}
.section-copy,
.hero-note,
.card-panel p,
.list-item p,
.note-panel p,
.single-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}
.actions {
  margin-top: 1.75rem;
}
.actions .button {
  padding: 0.95rem 1.4rem;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.list-panel {
  display: grid;
  gap: 1rem;
}
.list-item {
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
}
.list-item strong,
.list-item h3 {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text);
  font-family: "Stack Sans Text", sans-serif;
}
.list-item a {
  color: var(--muted);
  font-size: 0.95rem;
  word-break: break-all;
}
.footer {
  margin-top: 3rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  color: var(--muted);
}
@media (max-width: 900px) {
  .page-hero,
  .content-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav {
    justify-content: flex-start;
  }
  .page {
    width: min(100% - 1.5rem, 1000px);
    padding-top: 1.5rem;
  }
  .nav-button {
    width: 100%;
  }
}
