:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #667268;
  --leaf: #2e6f52;
  --leaf-dark: #1d4c38;
  --paper: #f9f5eb;
  --cream: #fffaf1;
  --line: rgba(23, 33, 27, 0.14);
  --shadow: 0 24px 70px rgba(31, 49, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(46, 111, 82, 0.1), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(217, 196, 139, 0.26), transparent 32%),
    var(--paper);
}

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  width: min(100%, 760px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: var(--shadow);
}

.brand-mark {
  width: clamp(86px, 16vw, 128px);
  aspect-ratio: 1;
  margin-bottom: 24px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

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

.status-panel > div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.signup {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--leaf-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

input:focus {
  border-color: rgba(46, 111, 82, 0.58);
  box-shadow: 0 0 0 4px rgba(46, 111, 82, 0.12);
}

button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #fffdf8;
  background: var(--leaf);
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: var(--leaf-dark);
}

.privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .page-shell {
    align-items: start;
    padding: 16px;
  }

  .hero {
    padding: 26px 20px;
  }

  .status-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
