﻿:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f6368;
  --paper: #fbfaf7;
  --line: #ded9ce;
  --mint: #a8d7c5;
  --coral: #ff8f70;
  --gold: #efc35a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1040px, 100%);
  min-height: min(720px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  align-items: center;
  gap: 56px;
}

.visual {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 23, 0.07) 1px, transparent 1px),
    #f4efe4;
  background-size: 34px 34px;
  overflow: hidden;
}

.window {
  position: absolute;
  inset: 28px 28px auto;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.86);
}

.window span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.window span:nth-child(2) {
  background: var(--gold);
}

.window span:nth-child(3) {
  background: var(--mint);
}

.orbital {
  position: absolute;
  inset: 104px 42px 42px;
  border: 1px solid rgba(23, 23, 23, 0.22);
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(23, 23, 23, 0.18);
  transform: rotate(28deg);
}

.orbital::after {
  inset: 29%;
  transform: rotate(-18deg);
}

.node {
  position: absolute;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, 0.16);
}

.primary {
  left: 10%;
  top: 18%;
  background: var(--mint);
}

.secondary {
  right: 9%;
  top: 34%;
  background: var(--coral);
}

.accent {
  left: 40%;
  bottom: 8%;
  background: var(--gold);
}

.content {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.actions a.secondary {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 760px) {
  .page {
    padding: 22px;
    place-items: start center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visual {
    order: -1;
    width: min(100%, 430px);
  }
}
