/* ReelEsto — create.html layout only. Loaded after tokens.css + base.css. */

main { max-width: 620px; margin: 0 auto; padding: 116px 20px 72px; }

.create-head { margin-bottom: 36px; }
.create-head .eyebrow { display: block; margin-bottom: 16px; }
.create-head h1 { font-size: clamp(30px, 7vw, 46px); letter-spacing: -.02em; margin-bottom: 14px; }
.create-head h1 .accent { display: inline; }
.subtitle { font-size: 16px; color: var(--t2); line-height: 1.65; max-width: 520px; }

/* Mini steps row */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 30px; }
.step {
  padding: 18px 16px;
  background: var(--bg-lift); border: 1px solid var(--hair); border-radius: var(--radius-sm);
}
.step-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--brand); margin-bottom: 12px; }
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--t2); line-height: 1.5; }

/* Form */
.form-card { padding: 30px; }
.field { margin-bottom: 20px; }
.field:last-of-type { margin-bottom: 0; }
label { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--t2); margin-bottom: 9px; }

.file-drop {
  border: 1.5px dashed var(--hair);
  border-radius: var(--radius-sm);
  padding: 30px 16px; text-align: center; cursor: pointer;
  position: relative;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.file-drop:hover, .file-drop.dragover { border-color: var(--brand); background: var(--brand-soft); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-drop-ico { width: 30px; height: 30px; margin: 0 auto 10px; stroke: var(--t2); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.file-drop-text { font-size: 15px; color: var(--t1); font-weight: 600; }
.file-drop-hint { font-size: 13px; color: var(--t3); margin-top: 5px; }
.file-name { font-size: 13px; color: var(--brand); font-weight: 600; margin-top: 12px; }

.submit-btn { width: 100%; margin-top: 26px; }
.submit-btn:disabled { opacity: .55; cursor: not-allowed; }
.submit-btn:disabled::before { transform: scaleX(0); }

.email-note { text-align: center; font-size: 13px; color: var(--t3); margin-top: 14px; }

.error-box {
  display: none;
  background: var(--red-bg); border: 1px solid var(--red-border);
  color: var(--red); border-radius: var(--radius-sm); padding: 13px 15px;
  font-size: 14px; margin-top: 16px;
}

/* Processing */
.status-card { display: none; text-align: center; padding: 48px 28px; }
.spinner {
  width: 46px; height: 46px; margin: 0 auto 22px;
  border: 3px solid var(--hair); border-top-color: var(--brand);
  border-radius: 50%; animation: spin .9s linear infinite;
}
.status-title { font-size: 20px; margin-bottom: 8px; }
.status-sub { font-size: 14px; color: var(--t2); }

/* Results */
.results { display: none; }
.results-title { font-size: 26px; margin-bottom: 6px; }
.results-title .accent { display: inline; }
.results-sub { font-size: 15px; color: var(--t2); margin-bottom: 26px; }
.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.reel-card { background: var(--bg-lift); border: 1px solid var(--hair); border-radius: var(--radius-sm); overflow: hidden; }
.reel-card video { width: 100%; aspect-ratio: 9/16; background: #000; display: block; }
.reel-card-footer { padding: 11px; text-align: center; }
.reel-card-footer .name { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--t2); margin-bottom: 9px; }
.reel-card-footer a { display: block; font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--on-fill); background: var(--fill); padding: 8px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.reel-card-footer a:hover { background: var(--brand); color: var(--fill); }
.start-over {
  display: block; text-align: center; margin-top: 26px; width: 100%;
  font-family: var(--font-mono); font-size: 13px; color: var(--t2);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  background: none; border: none;
}
.start-over:hover { color: var(--brand); }

@media (max-width: 560px) {
  main { padding: 100px 16px 56px; }
  .steps { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .reel-grid { gap: 8px; }
  .reel-card-footer { padding: 7px; }
}
