:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --ink: #1f2523;
  --muted: #626b67;
  --line: #d9ddd7;
  --panel: #ffffff;
  --accent: #0b7a75;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.nav,
.container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.links a:hover {
  color: var(--accent);
}

main {
  padding: 56px 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.status-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
}

.status-panel {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: center;
}

.status-dot {
  width: 14px;
  height: 14px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #21c483;
  box-shadow: 0 0 0 8px rgba(33, 196, 131, 0.14);
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
}

ul {
  padding-left: 22px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  color: var(--accent);
  background: transparent;
}

.button.full {
  width: 100%;
  border: 0;
}

.upload-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  margin-top: 24px;
}

.upload-panel h2,
.review-panel h2 {
  margin-top: 8px;
}

label {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

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

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.steps {
  margin: 18px 0;
  padding-left: 22px;
}

.steps li {
  margin: 9px 0;
}

.steps li.done {
  color: var(--ink);
  font-weight: 700;
}

.upload-summary,
.code-box {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf8;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}

.upload-summary strong,
.code-box strong {
  color: var(--ink);
}

.upload-summary span,
.code-box span {
  overflow-wrap: anywhere;
}

.upload-summary small {
  margin-top: 8px;
  color: var(--muted);
}

.callback-panel {
  max-width: 760px;
}

.legal-doc {
  max-width: 760px;
}

.updated {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 560px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  main {
    padding: 32px 0;
  }

  .app-shell,
  .upload-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
