:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f5f0;
  color: #17251e;
}

* { box-sizing: border-box; }

body { margin: 0; min-height: 100vh; }

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(207, 177, 100, .18), transparent 34rem),
    #f3f5f0;
}

.card {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid #d5ddd6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(17, 48, 35, .10);
}

.mark { width: 54px; height: 54px; object-fit: contain; }

.eyebrow {
  margin: 24px 0 10px;
  color: #8b6418;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

h1 { margin: 0; font-size: clamp(32px, 7vw, 46px); line-height: 1.05; }

.description, .fine-print { color: #526158; line-height: 1.6; }
.description { margin: 20px 0 26px; font-size: 17px; }
.fine-print { margin: 22px 0 0; font-size: 13px; }

button {
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: #153d2c;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:focus-visible { outline: 3px solid #d5b65c; outline-offset: 3px; }
button:disabled { cursor: wait; opacity: .65; }
.status { min-height: 24px; margin: 18px 0 0; font-weight: 700; }
.status.error { color: #9d2d24; }
.status.success { color: #16633e; }
