:root {
  --bg: #f6f8fb;
  --card: rgba(255, 255, 255, 0.88);
  --text: #172033;
  --muted: #6b7280;
  --line: #e5e7eb;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #dbeafe, transparent 34%),
    radial-gradient(circle at bottom right, #e0e7ff, transparent 32%),
    var(--bg);
}

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

.card {
  width: min(720px, 100%);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
}

.drop-zone {
  padding: 44px 24px;
  text-align: center;
  border: 2px dashed #bfdbfe;
  border-radius: 24px;
  background: #f8fbff;
  cursor: pointer;
  transition: 0.18s ease;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--primary);
  background: #eff6ff;
  transform: translateY(-1px);
}

.drop-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-size: 26px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.drop-main {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.drop-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.file-info {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 14px;
}

.hidden {
  display: none;
}

.fields {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background: white;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

button {
  width: 100%;
  margin-top: 20px;
  padding: 15px 18px;
  border: 0;
  border-radius: 16px;
  color: white;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  cursor: pointer;
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.status {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}