:root {
  color-scheme: light;
  --ink: #151819;
  --muted: #596165;
  --paper: #f3f4f1;
  --surface: #ffffff;
  --line: rgba(16, 32, 27, 0.12);
  --accent: #0b6f8f;
  --accent-dark: #084b63;
  --sun: #f2b84b;
  --sky: #7fb3c2;
  --coral: #d95d4f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(127, 179, 194, 0.24), transparent 42%),
    linear-gradient(315deg, rgba(242, 184, 75, 0.18), transparent 38%),
    var(--paper);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}

.hero {
  display: grid;
  gap: 42px;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fbfaf5;
  font-weight: 800;
  font-size: 1rem;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.status {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--accent-dark);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(160deg, rgba(15, 124, 102, 0.14), rgba(220, 114, 95, 0.16)),
    var(--surface);
  box-shadow: 0 22px 70px rgba(16, 32, 27, 0.12);
}

.visual-panel::before,
.visual-panel::after {
  position: absolute;
  content: "";
  inset: auto;
}

.visual-panel::before {
  width: 70%;
  aspect-ratio: 1;
  left: 15%;
  top: 13%;
  border: 1px solid rgba(16, 32, 27, 0.16);
  border-radius: 50%;
}

.visual-panel::after {
  width: 52%;
  aspect-ratio: 1;
  right: -12%;
  bottom: -8%;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: -150px -170px 0 -50px var(--sky), -235px 130px 0 -84px var(--coral);
}

.orbital {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(16, 32, 27, 0.22);
  border-radius: 50%;
}

.orbital span {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
}

.orbital span:nth-child(1) {
  left: 7%;
  top: 22%;
}

.orbital span:nth-child(2) {
  right: 16%;
  top: 10%;
  background: var(--coral);
}

.orbital span:nth-child(3) {
  left: 38%;
  bottom: -9px;
  background: var(--sun);
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 620px);
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px 0;
  }

  .hero {
    gap: 30px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.9rem);
  }

  .visual-panel {
    min-height: 280px;
    order: -1;
  }

  .brand-row {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
  }
}

@media (max-width: 460px) {
  .page-shell {
    width: min(100% - 24px, 620px);
  }

  .action-row,
  .status {
    width: 100%;
  }

  .note {
    width: 100%;
  }
}
