* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mint: #5eead4;
  --mint-dark: #14b8a6;
  --bg: #0a0f14;
  --panel-border: rgba(94, 234, 212, 0.18);
  --input-bg: rgba(255, 255, 255, 0.03);
  --input-border: rgba(255, 255, 255, 0.08);
  --muted: #8a9aa6;
  --panel-bg: rgba(255, 255, 255, 0.015);
}

html, body { height: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(94, 234, 212, 0.06), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 20px 16px 40px;
}

.container {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Top bar */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 12px 14px;
  background: var(--panel-bg);
}
.topbar-center { display: flex; justify-content: center; }
.topbar-right  { display: flex; justify-content: flex-end; }

.lang-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
}
.lang-pill select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 14px;
  padding-right: 16px;
  cursor: pointer;
}
.lang-pill select option { color: #000; }
.lang-caret { margin-left: -12px; pointer-events: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid var(--panel-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

/* Hero card */
.hero-card {
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 28px 22px;
  background: var(--panel-bg);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.brand-text { font-size: 24px; letter-spacing: 1px; }
.brand-bold  { font-weight: 800; }
.brand-light { font-weight: 300; margin-left: 6px; }

.hero-card h1 {
  text-align: center;
  margin-top: 22px;
  font-size: 28px;
  font-weight: 700;
}
.hero-card p {
  text-align: center;
  color: #d7dee3;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

#emailForm, #cityForm, #complaintForm { margin-top: 22px; }
.form-group { margin-top: 14px; }
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.form-group input::placeholder { color: #8a9aa6; }
.form-group input:focus { border-color: var(--mint); }

.continue {
  width: 100%;
  margin-top: 18px;
  padding: 16px 14px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-dark) 60%, #0f766e 100%);
  color: #0a0f14;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px -12px rgba(20, 184, 166, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
}
.continue:disabled { opacity: 0.7; cursor: not-allowed; }

#emailForm, #complaintForm { margin-top: 22px; }
.form-group { margin-top: 14px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #d7dee3;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a9aa6;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--mint); }

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #cfdce6;
  min-height: 20px;
}

.status-card {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(94, 234, 212, 0.08);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.14);
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.status-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.status-text {
  color: #d7dee3;
  font-size: 14px;
  line-height: 1.6;
}
.status-list {
  margin-top: 10px;
  padding-left: 18px;
  color: #d7dee3;
  font-size: 14px;
  line-height: 1.6;
}
.status-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.status-actions .continue,
.status-actions .btn-outline {
  margin-top: 0;
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Footer */
.footer {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.footer a { color: var(--muted); text-decoration: none; }
.footer-row-top { display: flex; justify-content: center; gap: 32px; }
.divider { height: 1px; background: var(--input-border); margin: 22px auto; max-width: 260px; }
.footer-row-bottom { display: flex; flex-direction: column; gap: 18px; }

/* Mobile responsive */
@media (max-width: 480px) {
  .page { padding: 14px 12px 30px; }
  .topbar { padding: 10px 10px; border-radius: 16px; }
  .lang-pill { padding: 6px 10px; gap: 6px; }
  .lang-pill select { font-size: 13px; }
  .btn-outline { padding: 7px 12px; font-size: 13px; }
  .hero-card { padding: 22px 16px; border-radius: 16px; }
  .hero-card h1 { font-size: 24px; margin-top: 18px; }
  .hero-card p { font-size: 14px; }
  .form-group input { padding: 12px 14px; font-size: 14px; }
  .continue { padding: 14px 12px; font-size: 15px; }
  .footer-row-top { gap: 20px; font-size: 14px; }
}

@media (max-width: 360px) {
  .topbar { grid-template-columns: auto auto auto; gap: 6px; }
  .btn-outline { padding: 6px 10px; font-size: 12px; }
}/* Mobile responsive */
@media (max-width: 480px) {
  .page { padding: 14px 12px 30px; }
  .topbar { padding: 10px 10px; border-radius: 16px; }
  .lang-pill { padding: 6px 10px; gap: 6px; }
  .lang-pill select { font-size: 13px; }
  .btn-outline { padding: 7px 12px; font-size: 13px; }
  .hero-card { padding: 22px 16px; border-radius: 16px; }
  .hero-card h1 { font-size: 24px; margin-top: 18px; }
  .hero-card p { font-size: 14px; }
  .form-group input { padding: 12px 14px; font-size: 14px; }
  .continue { padding: 14px 12px; font-size: 15px; }
  .footer-row-top { gap: 20px; font-size: 14px; }
}

@media (max-width: 360px) {
  .topbar { grid-template-columns: auto auto auto; gap: 6px; }
  .btn-outline { padding: 6px 10px; font-size: 12px; }
}