:root {
  --bg: #05060e;
  --surface: #111827;
  --surface-alt: #1f2937;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #25f4eb;
  --accent-strong: #22c55e;
  --danger: #ef4444;
  --border: rgba(148, 163, 184, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top left, rgba(37, 244, 235, 0.12), transparent 35%),
    linear-gradient(180deg, #05060e 0%, #111827 100%);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25f4eb, #22c55e);
  color: #05060e;
  font-weight: 700;
  border-radius: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 32px;
  height: 3px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 2px;
}

.site-nav.open a {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 16px 18px;
}

.site-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 24px;
  background: rgba(17, 24, 39, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.home-main,
.panel-page {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 32px 24px 64px;
  flex: 1;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 44px;
}

.hero-copy .eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.hero-copy h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin: 20px 0 16px;
  line-height: 1.05;
}

.hero-copy p {
  max-width: 640px;
  line-height: 1.8;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, #25f4eb, #22c55e);
  color: #05060e;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button-tertiary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.button.small {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.hero-image {
  position: relative;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-photo {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-photo img,
.tiktok-badge {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #25f4eb, #22c55e);
  color: #05060e;
  font-weight: 800;
  font-size: 1.2rem;
}

.hero-photo-copy h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.hero-photo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.copy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.copy-row strong {
  font-size: 1.1rem;
}

.opay-image {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, #000, #111);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.support-list {
  margin-top: 32px;
}

.chat-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
  max-height: 420px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.chat-message {
  margin-bottom: 14px;
}

.chat-bubble {
  max-width: min(700px, 100%);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.client-message .chat-bubble {
  background: rgba(37, 244, 235, 0.1);
}

.admin-message .chat-bubble {
  background: rgba(255, 255, 255, 0.08);
}

.chat-time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.chat-form textarea,
.thread-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  color: var(--text);
  padding: 14px 16px;
  resize: vertical;
}

.chat-form {
  display: grid;
  gap: 14px;
}

.thread-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 22px;
  margin-top: 18px;
}

.thread-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.thread-messages {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.thread-message {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.thread-message.client-message {
  background: rgba(37, 244, 235, 0.12);
}

.thread-message.admin-message {
  background: rgba(255, 255, 255, 0.08);
}

.thread-message strong {
  display: block;
  margin-bottom: 8px;
}

.thread-form {
  display: grid;
  gap: 12px;
}

.thread-form button {
  width: fit-content;
}

@media (max-width: 720px) {
  .hero-photo {
    flex-direction: column;
    text-align: center;
  }

  .hero-photo img,
  .tiktok-badge {
    margin: 0 auto;
  }
}
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37, 244, 235, 0.16);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-account {
  font-size: 1.35rem;
  line-height: 1.5;
}

.tiktok-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #25f4eb, #152b40);
  box-shadow: 0 24px 60px rgba(37, 244, 235, 0.15);
  margin-bottom: 18px;
}

.tiktok-mark {
  font-size: 1.7rem;
  font-weight: 800;
  color: #f8fafc;
}

/* Proof/payment button spacing - touch friendly */
.proof-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-form textarea,
.proof-form input[type="file"] {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.proof-form .button,
.proof-section > form .button {
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 12px;
}
@media (max-width: 720px) {
  .proof-section { gap: 18px; }
  .proof-form .button,
  .proof-section > form .button { width: 100%; }
}

.cta-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
}

.cta-top {
  margin-bottom: 24px;
}

.cta-tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37, 244, 235, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.1;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 20px 22px;
  min-height: 160px;
}

.feature-card strong {
  display: block;
  margin-bottom: 12px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-section {
  padding: 40px 0 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px;
  min-height: 210px;
}

.review-card p {
  margin: 0 0 18px;
  line-height: 1.75;
  color: var(--muted);
}

.review-author {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  margin: 0 0 12px;
  color: #facc15;
  font-size: 1rem;
}

.reviews-live {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
}

.live-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.live-top span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 244, 235, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.review-rotator {
  min-height: 130px;
}

.review-rotator .quote-text {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.review-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-name {
  font-weight: 700;
  color: var(--text);
}

.review-handle {
  opacity: 0.8;
}

.fb-auth-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
}

.fb-brand {
  margin-bottom: 24px;
}

.fb-logo {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.fb-auth-form {
  display: grid;
  gap: 18px;
}

.fb-auth-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.fb-auth-controls button {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
}

.fb-auth-controls button.active,
.fb-auth-controls button:hover {
  background: rgba(37, 244, 235, 0.14);
  border-color: rgba(37, 244, 235, 0.28);
}

.fb-field {
  display: grid;
  gap: 8px;
}

.fb-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.fb-action-row a {
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 24px 20px;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-copy h2 {
    font-size: 2.2rem;
  }

  .hero-card,
  .cta-panel,
  .fb-auth-card,
  .review-card,
  .reviews-live {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-main,
  .panel-page {
    padding: 24px 16px 48px;
  }
}

.auth-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px;
}

.auth-header {
  margin-bottom: 18px;
}

.auth-header h3 {
  margin: 0;
}

.auth-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.auth-tabs button {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 12px 14px;
  cursor: pointer;
}

.auth-tabs button.active,
.auth-tabs button:hover {
  background: rgba(37, 244, 235, 0.14);
  border-color: rgba(37, 244, 235, 0.28);
}

.auth-view {
  display: none;
}

.auth-view.active {
  display: block;
}

.auth-view label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--muted);
}

.auth-view input,
.auth-view textarea,
.auth-view select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.auth-view textarea {
  resize: vertical;
}

.auth-view .tip {
  margin: 0 0 18px;
  color: var(--muted);
}

.accounts-section {
  padding: 34px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-header h3 {
  margin: 0;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.account-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.account-image {
  height: 180px;
  background: radial-gradient(circle at top, rgba(37, 244, 235, 0.18), transparent 40%),
    linear-gradient(180deg, #060b18 0%, #121b2c 100%);
  background-size: cover;
  background-position: center;
}

.account-image-link {
  display: block;
}

.account-image-link .account-image {
  cursor: pointer;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 13, 32, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.image-modal.open {
  display: flex;
}

.image-modal img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.image-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}

.no-image {
  background-color: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.account-content {
  padding: 24px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill.sold {
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.status-pill.available {
  background: rgba(34, 197, 94, 0.12);
  color: #d1fae5;
}

.account-content h4 {
  margin: 0 0 12px;
}

.price-text {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--text);
}

.account-copy {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.panel-page {
  padding-top: 24px;
}

.panel-card {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.status-card,
.account-details-card,
.billing-card,
.admin-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
}

  .admin-card form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .admin-card form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .admin-card form.vertical-form {
    max-width: 100%;
  }

  .admin-card form.vertical-form .button {
    width: 100%;
  }

  .admin-card form input,
  .admin-card form textarea,
  .admin-card form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
  }

  .payment-image-preview img {
    max-width: 100%;
    border-radius: 16px;
    margin-top: 10px;
    display: block;
  }
}

.pay-logo {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #25f4eb, #22c55e);
  color: #05060e;
  font-weight: 800;
  font-size: 1.1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  padding: 14px 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.alert {
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.alert-success { background: rgba(34, 197, 94, 0.12); color: #d1fae5; }
.alert-error { background: rgba(239, 68, 68, 0.12); color: #fecaca; }
.alert-info { background: rgba(37, 244, 235, 0.12); color: #c8f7f4; }

.note {
  color: var(--muted);
  margin-top: 16px;
}

.important-note {
  color: #92400e;
  background: rgba(245, 158, 11, 0.16);
  border-left: 4px solid #c2410c;
  padding: 18px 20px;
  border-radius: 16px;
  margin-top: 18px;
  transform: skew(-2deg);
}

.important-note p {
  margin: 0;
  transform: skew(2deg);
  font-weight: 700;
  line-height: 1.5;
}

.credential {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 12px;
}

.auth-view form button {
    width: 100%;
    margin-top: 20px;
  }

  .site-footer {
    margin-top: auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer a {
    color: var(--accent);
  }

  .admin-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
  }

  .admin-left-column {
    display: grid;
    gap: 24px;
  }

  .table-scroll {
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
  }

  .account-detail-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px;
    margin-top: 14px;
  }

  .account-details-row td {
    padding: 0;
    border: none;
  }

  .section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .status-form {
    display: grid;
    gap: 8px;
  }

  .status-form button {
    width: 100%;
  }

  .payment-image-preview img {
    max-width: 100%;
    border-radius: 14px;
    margin-top: 10px;
  }


  .admin-card table,
  .admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
  }

  .admin-card .table-scroll {
    padding-bottom: 8px;
  }

  .action-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }

  .inline-form {
    display: inline-block;
    margin: 0;
  }

  .admin-card {
    overflow: visible;
  }

  .admin-table th,
  .admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
  }

  .admin-table th {
    font-weight: 700;
  }

  .admin-card table,
  .admin-table {
    min-width: 860px;
  }

  .admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  @media (max-width: 920px) {
    .hero-section,
    .forms-section,
    .status-grid,
    .admin-grid {
      grid-template-columns: 1fr;
    }

    .site-header {
      flex-direction: column;
      align-items: flex-start;
      position: relative;
    }

    .site-nav {
      display: none;
      width: 100%;
      margin-top: 18px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .site-nav.open {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }

    .hero-section {
      gap: 24px;
    }

    .panel-card {
      padding: 24px;
    }

    .admin-table th,
    .admin-table td {
      padding: 12px 10px;
      font-size: 0.95rem;
    }

    .action-row {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
    }

    .account-detail-box {
      padding: 16px;
    }

    .admin-grid {
      grid-template-columns: 1fr;
    }

    .admin-card table,
    .admin-table {
      min-width: 980px;
    }

    .dashboard-header {
      flex-wrap: wrap;
    }

    .dashboard-header > div {
      width: 100%;
    }

    .section-heading-row {
      flex-direction: column;
      align-items: stretch;
    }

    .admin-card .button {
      width: 100%;
    }
  }

  @media (max-width: 640px) {
    .site-header,
    .page-shell,
    .home-main,
    .panel-page,
    .site-footer {
      padding-left: 16px;
      padding-right: 16px;
    }

    .site-header {
      padding: 24px 16px;
    }

    .hero-section {
      grid-template-columns: 1fr;
    }

    .hero-copy h2 {
      font-size: 2.6rem;
    }

    .hero-card {
      padding: 24px;
      min-height: auto;
    }

    .account-image {
      height: 140px;
    }

    .status-grid {
      grid-template-columns: 1fr;
    }

    .site-footer {
      flex-direction: column;
      align-items: flex-start;
    }

    .auth-tabs button {
      flex: 1 1 100%;
    }

    .auth-panel {
      width: 100%;
    }
  }
