:root {
  --bg-base: #0a1222;
  --bg-elevated: rgba(18, 24, 45, 0.7);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-strong: rgba(255, 255, 255, 0.2);
  --text-primary: #f8fafc;
  --text-muted: rgba(248, 250, 252, 0.7);
  --accent-teal: #34d399;
  --accent-cyan: #22d3ee;
  --accent-pink: #f472b6;
  --accent-purple: #a78bfa;
  --danger: #fb7185;
  --danger-hover: #f43f5e;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px rgba(5, 6, 10, 0.45);
  --shadow-strong: 0 30px 80px rgba(3, 4, 15, 0.55);
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  background: var(--bg-base);
  color: var(--text-primary);
  padding: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:hover {
  color: var(--accent-cyan);
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.4;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.45), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.4), transparent 60%);
  filter: blur(25px);
}

body::after {
  background: radial-gradient(circle at 40% 80%, rgba(34, 211, 238, 0.45), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(52, 211, 153, 0.35), transparent 75%);
  animation: aurora 24s ease-in-out infinite alternate;
}

body.chat-body {
  padding: clamp(1rem, 3vw, 2.5rem);
}

@keyframes aurora {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-40px); opacity: 0.65; }
  100% { transform: translateY(20px); opacity: 0.85; }
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, 95vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.eyebrow.tight {
  margin-bottom: 0.35rem;
}

.lede {
  max-width: 60ch;
  color: var(--text-muted);
}

.hero {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.35), rgba(236, 72, 153, 0.2));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--accent-teal), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.glass-panel {
  backdrop-filter: blur(24px);
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.glass-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.glass-panel:hover::after {
  opacity: 1;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  padding: 1.25rem;
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.5);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.subheading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Utility helpers */
.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.gap-xs { gap: 0.35rem; }
.gap-md { gap: 1rem; }
.mb-md { margin-bottom: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2rem; }
.text-right { text-align: right; }
.text-faint { opacity: 0.55; }
.is-hidden { display: none !important; }

/* Form styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 6, 23, 0.65);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.35);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.inline-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
  margin-top: 0.35rem;
}

.form-group small a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: none;
}

.form-group small a:hover {
  text-decoration: underline;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.35);
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent-teal), var(--accent-cyan));
  color: #012b26;
  border: none;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-hover));
  border: none;
  color: #fff5f6;
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 180ms ease;
  vertical-align: middle;
  color: var(--text-primary);
  min-width: 28px;
  min-height: 28px;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Fallback content for copy buttons if icon doesn't load */
.btn-icon.copy-project-btn:empty::before {
  content: "📋";
  font-size: 14px;
}

/* HTMX indicators */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline; }
.htmx-request .htmx-not-indicator { display: none; }

/* Table */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(4, 7, 20, 0.9);
  border: 1px solid var(--glass-border-strong);
}

thead {
  background: rgba(148, 163, 184, 0.08);
}

thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

tbody td {
  padding: 1.1rem 1.25rem;
  vertical-align: middle;
}

tbody td a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: none;
}

tbody td a:hover {
  color: var(--accent-teal);
  text-decoration: underline;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

.actions .btn {
  width: 100%;
  min-width: 120px;
  justify-content: flex-start;
}

.status-badge {
  display: inline-flex;
  padding: 0.2rem 0.75rem;
  font-size: 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
  text-transform: uppercase;
}

.status-ready { background: rgba(52, 211, 153, 0.15); color: #a7f3d0; }
.status-cloning { background: rgba(59, 130, 246, 0.15); color: #bfdbfe; }
.status-error { background: rgba(248, 113, 113, 0.18); color: #fecaca; }

/* Text utilities */
.text-muted { color: var(--text-muted); }
.error {
  color: var(--danger);
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  padding: 1rem;
  border-radius: var(--radius);
}

.form-error-container:not(:empty) {
  margin-bottom: 1rem;
}

.alert {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 500;
}

.alert.success {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
  color: #d1fae5;
}

.alert.error {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.12);
  color: #fee2e2;
}

/* Fade animations */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* Chat surfaces */
.chat-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.chat-container {
  width: min(1200px, 96vw);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chat-shell {
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(7, 10, 24, 0.85);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.chat-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(120deg, rgba(52, 211, 153, 0.15), rgba(56, 189, 248, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-header h2 {
  font-size: 1.75rem;
}

.chat-header p {
  color: var(--text-muted);
}

.home-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.home-icon:hover {
  transform: translateY(-2px);
  border-color: var(--accent-teal);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(2, 6, 23, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tab-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  transition: var(--transition);
}

.tab-btn.active {
  background: linear-gradient(120deg, rgba(52, 211, 153, 0.3), rgba(56, 189, 248, 0.3));
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}

.tab-content {
  display: none;
  padding: 1.5rem;
  min-height: 320px;
}

.tab-content.active { display: block; }

.chat-input-container {
  margin-bottom: 1.25rem;
}

.chat-input-form textarea {
  width: 100%;
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  min-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

.button-row {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.button-row.align-start {
  justify-content: flex-start;
}

.chat-messages {
  max-height: 55vh;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.55);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-history {
  background: linear-gradient(140deg, rgba(13, 20, 44, 0.9), rgba(20, 30, 62, 0.8));
  border-color: rgba(191, 219, 254, 0.35);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.25), 0 35px 80px rgba(5, 8, 20, 0.45);
  min-height: clamp(420px, 60vh, 900px);
  max-height: calc(100vh - 340px);
  overflow-y: auto;
}

.message {
  width: fit-content;
  max-width: min(72ch, 100%);
  align-self: flex-start;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.message.user {
  margin-left: auto;
  align-self: flex-end;
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(16, 185, 129, 0.08);
}

.message.model {
  margin-right: auto;
  align-self: flex-start;
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(37, 99, 235, 0.08);
}

.chat-history .message {
  background: rgba(13, 20, 44, 0.75);
  border-color: rgba(191, 219, 254, 0.3);
  box-shadow: 0 20px 35px rgba(4, 7, 21, 0.35);
}

.chat-history .message.user {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.3), rgba(59, 130, 246, 0.24));
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 25px 45px rgba(30, 64, 175, 0.35);
}

.chat-history .message.model {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(129, 140, 248, 0.28));
  border-color: rgba(224, 231, 255, 0.65);
  box-shadow: 0 25px 45px rgba(109, 40, 217, 0.35);
}

.chat-history .message-time {
  color: rgba(248, 250, 252, 0.65);
}

.message-time {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mode-badge {
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  margin-left: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.mode-enhance { background: rgba(59, 130, 246, 0.25); }
.mode-ask { background: rgba(251, 191, 36, 0.2); }

.prompt-viewer {
  max-height: 55vh;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.55);
}

/* Markdown rendering */
.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
  margin: 1.25rem 0 0.75rem;
}

.markdown-content p,
.markdown-content li {
  margin-bottom: 0.75rem;
}

.markdown-content ul,
.markdown-content ol {
  padding-left: 1.5rem;
}

.markdown-content code {
  background: rgba(15, 23, 42, 0.8);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
}

.markdown-content pre {
  background: rgba(2, 6, 23, 0.75);
  padding: 1rem;
  border-radius: var(--radius);
  overflow-x: auto;
}

.markdown-content blockquote {
  border-left: 3px solid var(--accent-teal);
  padding-left: 1rem;
  color: var(--text-muted);
}

.curl-example {
  height: 100%;
}

.curl-code-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.curl-code-container pre {
  margin: 0;
  padding: 1.5rem;
  background: rgba(2, 6, 23, 0.9);
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 0.95rem;
  white-space: pre !important;
  overflow-x: auto;
  line-height: 1.6;
  display: block;
}

.copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Prompt table rows */
.prompt-row {
  background: rgba(15, 23, 42, 0.65);
}

.prompt-container {
  padding: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  body { padding: 1rem; }
  .hero-actions,
  .section-header { flex-direction: column; align-items: flex-start; }
  .tabs { justify-content: center; }
  .button-row {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .button-row .btn { width: 100%; }
}

body.auth-locked main,
body.auth-locked .page-shell,
body.auth-locked .chat-page {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

#auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

#auth-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

#auth-overlay .auth-card {
  width: min(420px, 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(11, 13, 30, 0.85);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

#auth-overlay .auth-card h2 {
  margin: 0.25rem 0 0.75rem;
}

#auth-overlay .auth-card p {
  margin-bottom: 1rem;
}

#auth-overlay .auth-card .btn {
  width: 100%;
  justify-content: center;
}

.auth-error {
  color: var(--danger);
  font-size: 0.9rem;
  min-height: 1.25rem;
  margin-top: 0.5rem;
}

#auth-user-chip {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(8, 10, 24, 0.85);
  padding: 0.6rem 1rem;
  color: inherit;
  font: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, background 200ms ease;
  z-index: 900;
}

#auth-user-chip:hover {
  transform: translateY(-1px);
  background: rgba(8, 10, 24, 0.95);
}

#auth-user-chip .auth-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #05060a;
}

#auth-user-chip .auth-user-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

#auth-user-chip .auth-user-name {
  font-weight: 600;
  font-size: 0.9rem;
}

#auth-user-chip .auth-user-email {
  font-size: 0.75rem;
  color: var(--text-muted);
}

#auth-user-chip .auth-user-action {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

@media (max-width: 720px) {
  #auth-user-chip {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1rem;
    border-radius: var(--radius);
    justify-content: center;
  }
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-panel {
  max-width: 520px;
  width: 100%;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.auth-form .form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.auth-form .form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(8, 10, 24, 0.65);
  color: var(--text-primary);
  font: inherit;
}

.auth-form .form-group input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.auth-submit {
  width: 100%;
  justify-content: center;
}

.auth-alt-links {
  text-align: center;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.auth-alt-links a {
  color: var(--accent-cyan);
}
