:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #637083;
  --paper: #fffaf5;
  --panel: #ffffff;
  --line: #ecdccb;
  --accent: #d94f30;
  --accent-deep: #9f3524;
  --mint: #2f8f83;
  --sky: #dff3f6;
  --sun: #ffe39a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--sun), transparent 34rem),
    linear-gradient(135deg, var(--paper) 0%, var(--sky) 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, white);
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent-deep);
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(159, 53, 36, 0.18);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-deep);
}

.status {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(47, 143, 131, 0.13);
}

.hero-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(31, 41, 51, 0.14);
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card figcaption {
  margin: 0;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 24px, 560px);
    align-items: start;
    padding: 28px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-card img {
    aspect-ratio: 16 / 11;
  }
}
