:root {
  color-scheme: dark;
  --bg: #0b0c10;
  --panel: #151b23;
  --panel-strong: #1f2833;
  --text: #e8f0f2;
  --muted: #aeb8bd;
  --accent: #66fcf1;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 12, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  min-height: 62vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: center;
  padding: 0 max(16px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(90deg, rgba(11, 12, 16, 0.95), rgba(11, 12, 16, 0.58)),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
}

.avatar-preview {
  background: rgba(21, 27, 35, 0.86);
  border: 1px solid rgba(255, 216, 102, 0.3);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.avatar-stage {
  min-height: 260px;
  display: grid;
  place-items: end center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(102, 252, 241, 0.16), rgba(11, 12, 16, 0.18)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 38px);
}

.avatar-shadow {
  position: absolute;
  bottom: 24px;
  width: 170px;
  height: 24px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
}

.avatar-head,
.avatar-torso,
.avatar-legs {
  position: absolute;
}

.avatar-head {
  bottom: 158px;
  width: 76px;
  height: 82px;
  background: #f0b88f;
  border-radius: 36px 36px 30px 30px;
  box-shadow: inset 0 -7px 0 rgba(0,0,0,0.08);
  z-index: 3;
}

.avatar-head::before {
  content: "";
  position: absolute;
  inset: -7px 4px auto;
  height: 32px;
  background: #2d2437;
  border-radius: 34px 34px 12px 12px;
}

.avatar-head i,
.avatar-head b {
  position: absolute;
  top: 41px;
  width: 8px;
  height: 8px;
  background: #15151f;
  border-radius: 50%;
}

.avatar-head i {
  left: 24px;
}

.avatar-head b {
  right: 24px;
}

.avatar-head::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 56px;
  width: 18px;
  height: 8px;
  border-bottom: 3px solid #7a3e44;
  border-radius: 50%;
}

.avatar-torso {
  bottom: 64px;
  width: 108px;
  height: 104px;
  background:
    linear-gradient(90deg, #2e3144 0 26%, transparent 26% 74%, #2e3144 74%),
    #66fcf1;
  border-radius: 30px 30px 24px 24px;
  box-shadow: inset 0 -18px 0 rgba(0,0,0,0.13);
  z-index: 2;
}

.avatar-legs {
  bottom: 18px;
  width: 70px;
  height: 62px;
  background: linear-gradient(90deg, #252b35 0 45%, transparent 45% 55%, #252b35 55%);
  border-radius: 0 0 18px 18px;
}

.avatar-drop {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  margin-top: 16px;
}

.avatar-drop span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.avatar-drop strong {
  grid-column: 1;
}

.avatar-drop b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #ffd866;
  font-size: 1.35rem;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

h2 {
  margin: 0 0 24px;
  font-size: 2rem;
  letter-spacing: 0;
}

.grid,
.policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.policy-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

article {
  min-height: 150px;
  padding: 22px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0;
}

article p,
.contact p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 56vh;
    grid-template-columns: 1fr;
    padding: 0 16px 32px;
  }

  .grid,
  .policy-list {
    grid-template-columns: 1fr;
  }
}
