:root {
  color: oklch(0.27 0.022 260);
  background: oklch(0.95 0.018 255);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: oklch(0.95 0.018 255);
}

.landing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  width: min(1120px, calc(100vw - 48px));
  min-height: 100vh;
  align-items: center;
  gap: clamp(40px, 8vw, 96px);
  margin: 0 auto;
  padding: 56px 0;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: oklch(0.45 0.08 250);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: oklch(0.23 0.03 260);
  font-size: clamp(4.8rem, 12vw, 8.8rem);
  font-weight: 780;
  line-height: 0.9;
  letter-spacing: 0;
}

.headline {
  max-width: 12ch;
  margin: 26px 0 0;
  color: oklch(0.29 0.035 260);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.summary {
  max-width: 62ch;
  margin: 28px 0 0;
  color: oklch(0.38 0.025 255);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 34px 0 0;
  padding: 0 16px;
  border: 1px solid oklch(0.76 0.05 250);
  border-radius: 999px;
  background: oklch(0.98 0.01 255);
  color: oklch(0.33 0.08 250);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-visual {
  display: grid;
  min-width: 0;
  margin: 0;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 24px 44px oklch(0.32 0.04 250 / 0.18));
}

@media (max-width: 760px) {
  .landing-shell {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 560px);
    min-height: auto;
    gap: 36px;
    padding: 48px 0 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(72vw, 300px);
  }

  .headline {
    max-width: 11ch;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual {
    animation: reveal 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-visual {
    animation-delay: 90ms;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
