:root {
  color-scheme: light;
  --ink: #16211f;
  --muted: #5b6663;
  --line: #d9e2dd;
  --paper: #fbfcf9;
  --mist: #eef6f2;
  --teal: #1c8c81;
  --teal-dark: #12645d;
  --coral: #ed795f;
  --gold: #d7a84c;
  --white: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(238, 246, 242, 0.92), rgba(255, 255, 255, 0.6)),
    var(--paper);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

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

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

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  margin: 28px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.55;
}

.signup {
  margin-top: 36px;
  max-width: 520px;
}

.signup label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.93rem;
  font-weight: 800;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.signup input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  min-height: 52px;
  padding: 0 16px;
  outline: none;
}

.signup input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(28, 140, 129, 0.14);
}

.signup button {
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  min-height: 52px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.signup button:hover {
  background: var(--teal-dark);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-media {
  margin: 0;
  position: relative;
}

.hero-media img {
  display: block;
  width: 100%;
  max-height: min(74vh, 720px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(22, 33, 31, 0.16);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.status-strip div {
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.status-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-strip strong {
  display: block;
  font-size: 1rem;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 28px, 640px);
    padding: 22px 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-height: 420px;
  }

  .signup-row,
  .status-strip {
    grid-template-columns: 1fr;
  }

  .signup button {
    width: 100%;
  }
}
