/* ===== ANT.FUN front desk ===== */
:root {
  --ink: #101316;
  --ink-2: #182026;
  --chalk: #f7f3ea;
  --paper: #efebe2;
  --panel: #fffdf8;
  --panel-2: #f9f6ef;
  --line: rgba(16, 19, 22, 0.14);
  --line-dark: rgba(247, 243, 234, 0.2);
  --text: #263039;
  --text-strong: #11161a;
  --text-dim: #68737c;
  --text-invert: #fffaf0;
  --gold: #d99a42;
  --gold-deep: #8e5d26;
  --cyan: #35b9b2;
  --coral: #d8644d;
  --success: #237a4d;
  --danger: #b94040;
  --radius: 8px;
  --maxw: 1160px;
  --shadow-soft: 0 16px 42px rgba(18, 20, 22, 0.12);
  --shadow-strong: 0 26px 70px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f6f1e7 0, #ede7db 54%, #f4f0e8 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.bg-glow { display: none; }

.glass {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: var(--text-invert);
  background: rgba(16, 19, 22, 0.86);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 154, 66, 0.72), transparent);
  pointer-events: none;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 122px;
  color: var(--text-invert);
  font-size: 22px;
  font-weight: 880;
  text-decoration: none;
}

.logo-mark { color: var(--text-invert); }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.06);
}

.nav-links a {
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 14px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover {
  color: var(--text-invert);
  background: rgba(255, 250, 240, 0.1);
}

.nav-cta,
.btn-hero,
.btn-ghost,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.nav-cta {
  padding: 0 18px;
  color: #191108;
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.nav-cta:hover,
.btn-hero:hover,
.btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(217, 154, 66, 0.25);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: var(--text-invert);
  background: var(--ink);
  isolation: isolate;
}

.hero-backdrop,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero-backdrop {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(12, 15, 18, 0.96) 0%, rgba(12, 15, 18, 0.82) 36%, rgba(12, 15, 18, 0.38) 73%, rgba(12, 15, 18, 0.62) 100%),
    url("/images/speaker-stage-hero.jpg") center right / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero::before {
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.04) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, transparent 0%, rgba(16, 19, 22, 0.2) 64%, var(--paper) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.hero::after {
  z-index: -1;
  background: linear-gradient(180deg, transparent 0, transparent 72%, var(--paper) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: end;
  gap: 64px;
  width: min(100%, var(--maxw));
  min-height: 76svh;
  margin: 0 auto;
  padding: 94px 28px 78px;
}

.hero-copy,
.hero-panel,
.section-copy,
.intro-copy,
.register-intro,
.register-card { min-width: 0; }

.mobile-title-break { display: none; }

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 820;
}

.hero-kicker::before,
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero-title {
  max-width: 760px;
  margin-top: 16px;
  color: var(--text-invert);
  font-size: 60px;
  font-weight: 920;
  line-height: 1.08;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 570px;
  margin-top: 20px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn-hero {
  min-width: 144px;
  padding: 0 24px;
  color: #191108;
  background: var(--gold);
  font-size: 15px;
  font-weight: 840;
}

.btn-ghost {
  min-width: 126px;
  padding: 0 22px;
  color: var(--text-invert);
  background: rgba(255, 250, 240, 0.07);
  border-color: rgba(255, 250, 240, 0.3);
  font-size: 15px;
  font-weight: 760;
}

.btn-ghost:hover {
  background: rgba(255, 250, 240, 0.13);
  border-color: rgba(255, 250, 240, 0.52);
}

.hero-panel {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: rgba(15, 19, 23, 0.68);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.live-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.82);
  font-size: 13px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(53, 185, 178, 0.16);
}

.equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-left: auto;
}

.equalizer i {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: eq 1.1s ease-in-out infinite;
}

.equalizer i:nth-child(2) { animation-delay: .15s; }
.equalizer i:nth-child(3) { animation-delay: .3s; }
.equalizer i:nth-child(4) { animation-delay: .45s; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.hero-metrics div {
  min-height: 96px;
  padding: 15px 12px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
}

.hero-metrics strong {
  display: block;
  color: var(--text-invert);
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 12px;
}

/* ===== Sections ===== */
.section {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 84px 28px;
}

.intro-band,
.split-section,
.process,
.register-section {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section-copy { max-width: 580px; }

.section-title {
  margin-top: 10px;
  color: var(--text-strong);
  font-size: 34px;
  font-weight: 860;
  line-height: 1.22;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.section-sub {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 16px;
}

.intro-band {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-item {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 12px 34px rgba(18, 20, 22, 0.06);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.intro-item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .28s ease;
}

.intro-item:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 185, 178, 0.3);
  box-shadow: var(--shadow-soft);
}

.intro-item:hover::after { transform: scaleX(1); }

.intro-num {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(217, 154, 66, 0.14);
  font-size: 13px;
  font-weight: 850;
}

.intro-item h3 {
  margin-top: 18px;
  color: var(--text-strong);
  font-size: 20px;
}

.intro-item p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: start;
  gap: 54px;
  border-top: 1px solid var(--line);
}

.prize-board {
  display: grid;
  gap: 10px;
}

.prize-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 100px;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(18, 20, 22, 0.06);
}

.prize-row.is-primary {
  color: var(--text-invert);
  border-color: rgba(217, 154, 66, 0.48);
  background: linear-gradient(135deg, #1a2025, #29323a);
}

.prize-row span,
.prize-row em {
  color: var(--text-dim);
  font-style: normal;
  font-size: 14px;
}

.prize-row.is-primary span,
.prize-row.is-primary em {
  color: rgba(255, 250, 240, 0.68);
}

.prize-row strong {
  color: var(--text-strong);
  font-size: 24px;
  word-break: break-word;
}

.prize-row.is-primary strong { color: var(--text-invert); }

.process {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 82px 28px;
  color: var(--text-invert);
  background:
    linear-gradient(180deg, #151a1f 0%, #101316 100%);
}

.process > .section-copy,
.process > .timeline {
  width: min(100%, var(--maxw));
  margin-left: auto;
  margin-right: auto;
}

.process .section-title { color: var(--text-invert); }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.timeline-step {
  position: relative;
  min-height: 146px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.06);
}

.timeline-step::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--coral));
  transform: scaleX(.42);
  transform-origin: left;
  transition: transform .35s ease;
}

.timeline-step:hover::after { transform: scaleX(1); }

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #15100a;
  background: var(--gold);
  font-weight: 850;
}

.timeline-step p {
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 15px;
}

/* ===== Register ===== */
.register-section {
  padding: 86px 28px 100px;
  background:
    linear-gradient(180deg, rgba(239, 235, 226, 0), rgba(224, 231, 227, 0.86));
}

.register-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 52px;
  width: min(100%, var(--maxw));
  margin: 0 auto;
}

.register-intro {
  position: sticky;
  top: 94px;
  align-self: start;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.spec-list span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-strong);
  background: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.spec-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.register-card {
  padding: 34px;
  border: 1px solid rgba(16, 19, 22, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

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

.form-group { margin-bottom: 20px; }

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 760;
}

.req { color: var(--coral); }

input[type="text"],
input[type="password"],
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(16, 19, 22, 0.2);
  border-radius: 6px;
  background: var(--panel-2);
  color: var(--text-strong);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input::placeholder,
textarea::placeholder { color: #9aa3aa; }

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(53, 185, 178, 0.16);
}

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

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

select:disabled {
  color: #a6acb0;
  background: #ece8df;
  cursor: not-allowed;
}

.file-drop {
  display: grid;
  gap: 14px;
  min-height: 142px;
  padding: 18px;
  border: 1px dashed rgba(16, 19, 22, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf8, #f3f7f4);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.file-drop:hover,
.file-drop.dragover {
  border-color: var(--cyan);
  background: #f2fbf9;
  transform: translateY(-1px);
}

.file-drop-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.upload-mark {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(53, 185, 178, 0.14);
}

.upload-mark::before,
.upload-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 3px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
}

.upload-mark::before { width: 3px; height: 22px; }
.upload-mark::after { width: 22px; height: 3px; }

.file-drop-text {
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 800;
}

.file-drop-hint,
.file-info {
  color: var(--text-dim);
  font-size: 13px;
}

.file-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.file-info span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 5px;
  background: #e8f2ef;
}

audio {
  width: 100%;
  margin-top: 12px;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
}

.agree input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}

.btn-submit {
  width: 100%;
  min-height: 52px;
  color: #191108;
  background: linear-gradient(135deg, var(--gold), #e7b866);
  font-size: 16px;
  font-weight: 860;
}

.btn-submit:disabled {
  cursor: not-allowed;
  opacity: .65;
}

button:focus-visible,
a:focus-visible,
.file-drop:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ===== Modal / footer / errors ===== */
.modal {
  display: none;
}

.modal.is-visible {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 7, 9, 0.74);
  backdrop-filter: blur(8px);
}

.modal-card {
  width: min(100%, 420px);
  padding: 34px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.modal-mark {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(35, 122, 77, 0.12);
}

.modal-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 13px;
  height: 22px;
  border: solid var(--success);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.modal-card h3 {
  margin-top: 18px;
  color: var(--text-strong);
  font-size: 24px;
}

.modal-card p {
  margin-top: 10px;
  color: var(--text-dim);
}

#regId { color: var(--gold-deep); }

.footer {
  padding: 36px 28px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  background: #e5ded1;
  text-align: center;
  font-size: 13px;
}

.footer p + p { margin-top: 6px; }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 28px;
  text-align: center;
}

.error-page .code {
  color: var(--gold-deep);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.form-error {
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(185, 64, 64, 0.28);
  border-radius: 6px;
  color: #963333;
  background: rgba(185, 64, 64, 0.08);
  font-size: 14px;
}

/* ===== Motion ===== */
.js.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s ease;
}

.js.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.06) translateX(-1.2%); }
}

@keyframes eq {
  0%, 100% { height: 7px; opacity: .55; }
  45% { height: 18px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .js.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-data: reduce) {
  .hero-backdrop { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1020px) {
  .hero-inner,
  .intro-band,
  .split-section,
  .register-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 34px;
    padding-top: 78px;
  }

  .hero-title { font-size: 48px; }

  .hero-panel,
  .register-intro {
    position: static;
  }

  .intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section { gap: 30px; }
}

@media (max-width: 760px) {
  .nav {
    min-height: 58px;
    padding: 0 18px;
    gap: 14px;
    justify-content: flex-start;
  }

  .nav-logo {
    min-width: 0;
    font-size: 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 78svh;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(12, 15, 18, 0.94) 0%, rgba(12, 15, 18, 0.74) 56%, rgba(12, 15, 18, 0.93) 100%),
      url("/images/speaker-stage-hero.jpg") center right / cover no-repeat;
    animation: none;
  }

  .hero::before {
    mask-image: none;
  }

  .hero-inner {
    width: 100%;
    padding: 60px 20px 46px;
  }

  .hero-title {
    max-width: 360px;
    font-size: 34px;
  }

  .mobile-title-break { display: inline; }

  .hero-lead {
    max-width: 360px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 360px;
  }

  .btn-hero,
  .btn-ghost {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
    max-width: 360px;
    padding: 14px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 76px;
  }

  .section,
  .process,
  .register-section {
    padding: 58px 20px;
  }

  .section-title {
    max-width: 360px;
    font-size: 27px;
  }

  .intro-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .intro-item,
  .timeline-step {
    min-height: 0;
  }

  .prize-row {
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 98px;
    padding: 16px;
  }

  .prize-row strong {
    font-size: 22px;
  }

  .register-card {
    padding: 22px;
  }

  .form-row,
  .region-selects {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .file-drop-inner {
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .hero-inner,
  .section,
  .process,
  .register-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 25px;
  }

  .register-card {
    padding: 18px;
  }

  .file-drop {
    padding: 16px;
  }
}
