:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a28;
  --fg-primary: #e8e6e3;
  --fg-secondary: #9a9a9a;
  --fg-muted: #5a5a6a;
  --accent: #c4a35a;
  --accent-glow: #d4b36a;
  --accent-dim: #8a7340;
  --alpha-color: #c4a35a;
  --beta-color: #7a8fa8;
  --scout-color: #6aaa7a;
  --omega-color: #8a6a6a;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.highlight {
  color: var(--accent);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 163, 90, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(196, 163, 90, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-hook {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--fg-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--fg-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 24px rgba(196, 163, 90, 0.25);
  margin-bottom: 48px;
}

.hero-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(196, 163, 90, 0.4);
}

.hero-cta:active {
  transform: translateY(0);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.rank-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-width: 160px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.rank-card:hover {
  transform: translateY(-4px);
}

.rank-alpha { border-top: 3px solid var(--alpha-color); }
.rank-beta { border-top: 3px solid var(--beta-color); }
.rank-scout { border-top: 3px solid var(--scout-color); }

.rank-icon {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.rank-alpha .rank-icon { color: var(--alpha-color); }
.rank-beta .rank-icon { color: var(--beta-color); }
.rank-scout .rank-icon { color: var(--scout-color); }

.rank-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.rank-desc {
  font-size: 0.8rem;
  color: var(--fg-secondary);
}

/* =================== HIERARCHY =================== */
.hierarchy {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.hierarchy-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hierarchy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  color: var(--fg-secondary);
  max-width: 640px;
  margin: 0 auto 64px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hierarchy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tier-block {
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.tier-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.tier-alpha::before { background: var(--alpha-color); }
.tier-beta::before { background: var(--beta-color); }
.tier-scout::before { background: var(--scout-color); }
.tier-omega::before { background: var(--omega-color); }

.tier-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.tier-block h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tier-alpha h3 { color: var(--alpha-color); }
.tier-beta h3 { color: var(--beta-color); }
.tier-scout h3 { color: var(--scout-color); }
.tier-omega h3 { color: var(--omega-color); }

.tier-block p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =================== FEATURES =================== */
.features {
  padding: 120px 24px;
}

.features-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.challenge-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.challenge-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.challenge-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.challenge-metric {
  color: var(--fg-secondary);
  font-size: 0.9rem;
}

.territory-map {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.territory-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(196, 163, 90, 0.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

.territory-dot span {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg-secondary);
  white-space: nowrap;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.merit-bars {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.merit-bar {
  position: relative;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
}

.merit-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 8px;
  transition: width 1s ease;
}

.merit-bar span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg-primary);
}

/* =================== CLOSING =================== */
.closing {
  padding: 140px 24px;
  background: var(--bg-secondary);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* =================== FOOTER =================== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--fg-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; min-height: auto; }
  .hero-visual { flex-direction: column; align-items: center; gap: 12px; }
  .rank-card { min-width: 240px; }
  .hierarchy-grid { grid-template-columns: 1fr; }
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .feature-row.reverse > * { direction: ltr; }
  .hierarchy, .features { padding: 80px 20px; }
  .closing { padding: 80px 20px; }
  .tier-block { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .rank-card { min-width: 200px; padding: 20px 16px; }
}

/* =================== APP SHELL =================== */
.app-body {
  background: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =================== NAV =================== */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
}

.app-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--fg-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-user {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg-primary); }

.nav-link-cta {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 7px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-link-cta:hover {
  background: var(--accent-glow);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

.nav-logout {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.nav-logout:hover { color: var(--fg-secondary); }

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 11px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(196, 163, 90, 0.2);
}
.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(196, 163, 90, 0.35);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-secondary);
  background: transparent;
  padding: 11px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: var(--fg-primary); }

.btn-block { width: 100%; text-align: center; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: none;
  cursor: pointer;
  color: var(--fg-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.btn-icon:hover { background: rgba(255,255,255,0.1); color: var(--fg-primary); }
.btn-icon-danger:hover { background: rgba(200,70,70,0.15); color: #e07070; }

/* =================== FORMS =================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg-secondary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  background: rgba(200,70,70,0.12);
  border: 1px solid rgba(200,70,70,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #e07070;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.required { color: var(--accent); }

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* =================== AUTH PAGE =================== */
.auth-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 36px;
}

.auth-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.auth-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.auth-sub {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.auth-form { margin-bottom: 0; }

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 24px;
}
.auth-switch a { color: var(--accent); text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* =================== DASHBOARD =================== */
.dashboard {
  flex: 1;
  padding: 40px 24px 60px;
}

.dashboard-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}

.dashboard-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 6px;
}

.dashboard-sub {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.empty-state h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.empty-state p {
  color: var(--fg-secondary);
  max-width: 400px;
  margin: 0 auto 28px;
}

/* Tier sections */
.tiers-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tier-section {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tier-icon {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-icon-alpha    { color: var(--alpha-color);  background: rgba(196,163,90,0.12); }
.tier-icon-beta     { color: var(--beta-color);   background: rgba(122,143,168,0.12); }
.tier-icon-eclaireur{ color: var(--scout-color);  background: rgba(106,170,122,0.12); }
.tier-icon-dormant  { color: var(--omega-color);  background: rgba(138,106,106,0.12); }

.tier-alpha-section    { border-left: 3px solid var(--alpha-color); }
.tier-beta-section     { border-left: 3px solid var(--beta-color); }
.tier-eclaireur-section{ border-left: 3px solid var(--scout-color); }
.tier-dormant-section  { border-left: 3px solid var(--omega-color); }

.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex: 1;
}

.tier-count {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.05);
  padding: 2px 10px;
  border-radius: 100px;
}

/* Contact cards */
.contact-list {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px;
  border-radius: 8px;
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(255,255,255,0.1); }

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-avatar-alpha    { background: rgba(196,163,90,0.2);  color: var(--alpha-color); }
.contact-avatar-beta     { background: rgba(122,143,168,0.2); color: var(--beta-color); }
.contact-avatar-eclaireur{ background: rgba(106,170,122,0.2); color: var(--scout-color); }
.contact-avatar-dormant  { background: rgba(138,106,106,0.2); color: var(--omega-color); }

.contact-details { min-width: 0; }

.contact-name {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-company, .contact-email {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.contact-email a { color: var(--fg-muted); text-decoration: none; }
.contact-email a:hover { color: var(--accent); }

.contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.rank-select {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  background: var(--bg-secondary);
  color: var(--fg-primary);
  transition: border-color 0.2s;
}
.rank-select:focus { outline: none; border-color: var(--accent-dim); }

/* =================== RANK PICKER =================== */
.rank-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rank-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg-secondary);
}
.rank-option input { display: none; }

.rank-option:hover { border-color: rgba(255,255,255,0.15); }

.rank-option.selected,
.rank-opt-alpha:has(input:checked) { border-color: var(--alpha-color); background: rgba(196,163,90,0.06); }
.rank-opt-beta:has(input:checked)     { border-color: var(--beta-color);  background: rgba(122,143,168,0.06); }
.rank-opt-eclaireur:has(input:checked){ border-color: var(--scout-color); background: rgba(106,170,122,0.06); }
.rank-opt-dormant:has(input:checked)  { border-color: var(--omega-color); background: rgba(138,106,106,0.06); }

.rank-opt-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.rank-opt-alpha .rank-opt-label    { color: var(--alpha-color); }
.rank-opt-beta .rank-opt-label     { color: var(--beta-color); }
.rank-opt-eclaireur .rank-opt-label{ color: var(--scout-color); }
.rank-opt-dormant .rank-opt-label  { color: var(--omega-color); }

.rank-opt-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* =================== FORM PAGE =================== */
.form-page {
  flex: 1;
  padding: 40px 24px 60px;
}

.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px;
}

.form-card-header {
  margin-bottom: 32px;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.form-card-header h1 {
  font-size: 1.8rem;
}

/* =================== APP RESPONSIVE =================== */
@media (max-width: 768px) {
  .dashboard-header { flex-direction: column; align-items: stretch; }
  .form-row { grid-template-columns: 1fr; }
  .rank-picker { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .form-card { padding: 24px; }
  .contact-actions { flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 480px) {
  .contact-company, .contact-email { display: none; }
}