:root {
  --bg: #f7f2f0;
  --ink: #101113;
  --muted: #5c5f66;
  --panel: #ffffff;
  --line: #ded8d4;
  --red: #e10600;
  --red-dark: #9f0804;
  --focus: #111111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, #fff7f2 0, var(--bg) 42%, #eee7e2 100%);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.hero {
  min-height: 280px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #111, #2a0202);
  color: #fff;
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -40% 42%;
  height: 220px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.55));
  transform: rotate(-12deg);
}

.brand-mark {
  width: max-content;
  border-bottom: 2px solid var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow {
  margin: 42px 0 6px;
  color: #d8d8d8;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 740px;
  font-size: clamp(42px, 8vw, 76px);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: #f1eeee;
  font-size: 18px;
}

.intro,
.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: 8px;
  margin-top: 18px;
  padding: 28px;
}

.intro p {
  color: var(--muted);
}

.note {
  font-weight: 700;
  color: var(--ink) !important;
}

.form {
  display: grid;
  gap: 22px;
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

label span {
  color: var(--red);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8c3;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(225, 6, 0, 0.18);
  border-color: var(--focus);
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

fieldset legend,
.method-grid p {
  font-weight: 800;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

fieldset input {
  width: auto;
}

.method-grid {
  display: grid;
  gap: 14px;
}

.submit-button {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 15px 20px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 920px);
    padding-top: 10px;
  }

  .hero,
  .intro,
  .form {
    padding: 20px;
  }

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

