:root {
  color-scheme: dark;
  --bg: #090908;
  --ink: #fff8ed;
  --muted: #c8c0b4;
  --line: rgba(255, 248, 237, 0.15);
  --panel: rgba(255, 248, 237, 0.06);
  --red: #ff5a5f;
  --cyan: #36d1dc;
  --yellow: #ffd166;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 90, 95, 0.16), transparent 30%),
    linear-gradient(225deg, rgba(54, 209, 220, 0.14), transparent 35%),
    linear-gradient(0deg, rgba(255, 209, 102, 0.08), transparent 44%),
    var(--bg);
}

a {
  color: inherit;
}

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

.brand {
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
}

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

nav a {
  text-decoration: none;
}

.hero,
.domains,
.studio,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(76vh - 72px);
  display: grid;
  align-items: center;
  padding: 48px 0 56px;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  line-height: 0.95;
  max-width: 980px;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.button.primary {
  color: #110707;
  background: var(--yellow);
  border-color: transparent;
}

.domains {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 36px 0 28px;
}

.domains article,
.studio {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.domains article {
  min-height: 230px;
  padding: 20px;
}

.domains span {
  color: var(--cyan);
  font-weight: 900;
}

.domains h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
}

.domains p,
.studio p,
footer {
  color: var(--muted);
  line-height: 1.6;
}

.studio {
  margin-top: 32px;
  padding: 34px;
}

.studio h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.studio p {
  max-width: 760px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 42px 0;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .domains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

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