:root {
  color-scheme: dark;
  --bg: #13091f;
  --surface: #201033;
  --surface-strong: #2a1544;
  --text: #f7f3ff;
  --muted: #b7abc8;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #7fffd4;
  --accent-2: #e94560;
  --gold: #ffd86b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(127, 255, 212, 0.14), transparent 28rem),
    radial-gradient(circle at 20% 0%, rgba(233, 69, 96, 0.2), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
main,
footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
}

nav,
footer div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
footer a:hover,
.contact-link:hover {
  color: var(--accent);
}

.hero {
  min-height: 56vh;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 11vw, 118px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.45;
}

.section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 26px;
}

.project {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.project img {
  width: 112px;
  height: 112px;
  border-radius: 999px;
}

.project p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(127, 255, 212, 0.36);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-link {
  color: var(--gold);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.legal {
  padding: 48px 0 72px;
}

.legal h1 {
  font-size: clamp(38px, 7vw, 72px);
}

.legal section {
  max-width: 760px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.placeholder {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1080px);
  }

  .site-header,
  nav,
  .contact,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav,
  footer div {
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 56px;
  }

  .project {
    grid-template-columns: 1fr;
  }
}
