:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5e6a64;
  --line: #dce3df;
  --surface: #f7faf8;
  --surface-strong: #ffffff;
  --accent: #2f7d68;
  --accent-dark: #245f50;
  --sky: #cce3ed;
  --sun: #e8bd5a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(204, 227, 237, 0.58), transparent 42%),
    linear-gradient(315deg, rgba(232, 189, 90, 0.2), transparent 34%),
    var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 48px);
  place-items: center;
}

.hero {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 84px);
}

.hero__visual {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 24%, rgba(232, 189, 90, 0.25), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(204, 227, 237, 0.36));
  box-shadow: 0 22px 70px rgba(23, 32, 29, 0.08);
}

.hero__visual img {
  width: min(62%, 250px);
  height: auto;
}

.hero__content {
  max-width: 560px;
}

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

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.6rem, 11vw, 7.8rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.9;
}

.status {
  width: fit-content;
  margin: 28px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(47, 125, 104, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 760;
}

.intro {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.38rem);
  line-height: 1.55;
}


@media (max-width: 760px) {
  .page-shell {
    place-items: stretch;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 30px;
  }

  .hero__visual {
    min-height: 210px;
  }

  .hero__visual img {
    width: min(46%, 170px);
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.3rem);
  }
}
