:root {
  --bg: #070b10;
  --bg2: #101923;
  --gold: #d6a93c;
  --gold2: #f4d06f;
  --steel: #7fa8bd;
  --text: #eef5f7;
  --muted: #9fb0ba;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(214,169,60,.20), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(127,168,189,.18), transparent 24rem),
    linear-gradient(145deg, var(--bg), #030507 72%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}
.shell {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}
.hero {
  position: relative;
  width: min(1120px, 100%);
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(214,169,60,.35);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(10,18,26,.82), rgba(7,11,16,.66));
  box-shadow: 0 28px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.logo {
  position: relative;
  display: block;
  width: min(430px, 82vw);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.52));
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.glow { position: absolute; border-radius: 999px; filter: blur(20px); opacity: .65; }
.glow-a { width: 280px; height: 280px; right: -90px; top: -90px; background: rgba(214,169,60,.22); }
.glow-b { width: 240px; height: 240px; left: -80px; bottom: -80px; background: rgba(127,168,189,.16); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.insta-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(244,208,111,.55);
}
.insta-link:hover {
  color: #fff3bf;
  border-bottom-color: #fff3bf;
}
.tagline {
  margin: 18px 0 0;
  font-size: clamp(28px, 4.8vw, 58px);
  font-weight: 900;
  letter-spacing: -.055em;
  text-align: center;
}
.copy {
  max-width: 820px;
  margin: 18px auto 34px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.45;
  text-align: center;
}
.upload-card, .panel {
  width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.upload-card, .panel {
  border-radius: 22px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.upload-card { padding: 22px; margin-top: 22px; }
.free-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(214,169,60,.13);
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.upload-card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -.04em;
}
.small-copy {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.45;
}
.upload-form { display: grid; gap: 12px; }
.dropzone {
  display: grid;
  gap: 6px;
  min-height: 128px;
  place-content: center;
  text-align: center;
  padding: 20px;
  border: 1.5px dashed rgba(244,208,111,.46);
  border-radius: 18px;
  background: rgba(214,169,60,.055);
}
.dropzone input { display: none; }
.drop-title { font-weight: 900; font-size: 21px; color: #fff; }
.drop-meta { color: var(--muted); font-size: 14px; }
button {
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  color: #111;
  font-weight: 950;
  font-size: 16px;
  cursor: not-allowed;
  opacity: .72;
}
.progress-wrap { margin-top: 18px; }
.progress-label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; color: var(--muted); font-size: 13px; }
.progress-label strong { color: var(--gold2); text-transform: uppercase; letter-spacing: .12em; }
.progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.progress i {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--steel));
}
.panel { padding: 18px; }
.summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.summary span {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(214,169,60,.13);
  color: #fff;
  font-weight: 800;
}
.splits { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.splits li { display: grid; grid-template-columns: 56px 92px 1fr; gap: 12px; align-items: center; color: #eaf1f4; }
.splits b { color: var(--gold2); }
.splits span { font-weight: 900; }
.splits em { color: var(--muted); font-style: normal; }
.status {
  display: inline-block;
  margin: 34px 0 0;
  padding: 11px 16px;
  border: 1px solid rgba(214,169,60,.45);
  border-radius: 999px;
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .18em;
  background: rgba(214,169,60,.08);
}
@media (max-width: 640px) {
  .splits li { grid-template-columns: 48px 86px 1fr; gap: 8px; font-size: 14px; }
  .eyebrow { letter-spacing: .14em; }
}
