:root {
  --bg: #0A1420;
  --card: #111F2E;
  --raised: #182B3E;
  --hairline: #223648;
  --text: #F2F6F8;
  --body: #C6D3DC;
  --secondary: #8CA1B0;
  --orange: #FF7A1A;
  --teal: #3EC6CE;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: #6FD9DF; }

header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 24px; letter-spacing: 3px;
  color: var(--text); display: flex; align-items: center; gap: 10px;
}
.logo img { width: 34px; height: 34px; border-radius: 8px; }
.logo .accent { color: var(--orange); }
nav a { margin-left: 22px; font-size: 14px; color: var(--secondary); }
nav a:hover { color: var(--text); }

.hero { padding: 56px 0 40px; text-align: center; }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(38px, 7vw, 64px);
  line-height: 1.05; letter-spacing: 0.5px;
}
.hero h1 .accent { color: var(--orange); }
.hero p.sub {
  max-width: 620px; margin: 18px auto 0;
  font-size: 18px; color: var(--body);
}
.hero .note {
  display: inline-block; margin-top: 26px; padding: 10px 18px;
  border: 1px solid var(--hairline); border-radius: 12px;
  color: var(--secondary); font-size: 14px;
}

.profile-band { margin: 36px 0 8px; }
.profile-band svg { display: block; width: 100%; height: 90px; }

.shots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 30px 0 10px;
}
.shots img {
  width: 100%; max-width: 100%; border-radius: 22px;
  border: 1px solid var(--hairline);
}
@media (max-width: 700px) { .shots { grid-template-columns: 1fr; } }

.features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  padding: 40px 0;
}
@media (max-width: 700px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border-radius: 16px; padding: 20px;
  border: 1px solid var(--hairline);
}
.feature h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.feature h3 .dot { width: 8px; height: 8px; border-radius: 4px; background: var(--teal); }
.feature p { font-size: 14px; color: var(--body); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 3px;
  color: var(--secondary); text-transform: uppercase;
  margin: 30px 0 14px;
}

article.doc { padding: 30px 0 60px; max-width: 720px; }
article.doc h1 { font-size: 30px; margin-bottom: 6px; }
article.doc .meta { color: var(--secondary); font-size: 13px; margin-bottom: 24px; }
article.doc h2 { font-size: 19px; margin: 28px 0 8px; }
article.doc p, article.doc li { color: var(--body); font-size: 15px; margin-bottom: 10px; }
article.doc ul { padding-left: 22px; }
article.doc .placeholder { color: var(--orange); font-weight: 600; }

footer.site {
  border-top: 1px solid var(--hairline);
  padding: 26px 0 40px; margin-top: 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--secondary); font-size: 13px;
}
footer.site a { margin-right: 18px; }
