:root {
  --font-display: "Unbounded", "Inter", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --fs-hero: 32px;
  --fs-h1: 24px;
  --fs-h2: 20px;
  --fs-title: 18px;
  --fs-body: 15px;
  --fs-caption: 13px;
  --fs-micro: 11px;

  --lh-tight: 1.15;
  --lh-base: 1.35;
  --lh-relaxed: 1.5;

  --fw-display: 700;
  --fw-title: 600;
  --fw-body: 500;
  --fw-regular: 400;

  --bg-0: #0d1b2a;
  --bg-1: #132a3e;
  --surface-glass: rgba(255, 255, 255, 0.14);
  --surface-glass-strong: rgba(255, 255, 255, 0.22);
  --stroke-soft: rgba(255, 255, 255, 0.24);
  --text-primary: #f6faff;
  --text-secondary: #c9d7e6;
  --text-muted: #93a9bf;

  --brand-primary: #f97316;
  --brand-primary-pressed: #dd5f08;
  --accent-like: #23c16b;
  --accent-pass: #f04452;
  --accent-info: #1d9bf0;
  --accent-warning: #f59e0b;
  --accent-success: #16a34a;
  --accent-error: #dc2626;

  --grad-atmosphere: linear-gradient(165deg, #0d1b2a 0%, #12324a 48%, #1b3f4d 100%);
  --grad-card-photo-mask: linear-gradient(180deg, rgba(6, 12, 20, 0.05) 0%, rgba(6, 12, 20, 0.7) 100%);
  --grad-cta-like: linear-gradient(135deg, #23c16b 0%, #16a34a 100%);
  --grad-cta-primary: linear-gradient(135deg, #ff8b3d 0%, #f97316 60%, #dd5f08 100%);

  --screen-max-width: 430px;
  --space-2: 2px;
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --blur-glass: 18px;
  --shadow-card: 0 14px 40px rgba(4, 10, 17, 0.42);
  --shadow-fab: 0 8px 22px rgba(0, 0, 0, 0.35);
  --shadow-success: 0 0 0 4px rgba(35, 193, 107, 0.25);
  --shadow-error: 0 0 0 4px rgba(240, 68, 82, 0.25);

  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-swipe-out: 320ms;
  --dur-snap-back: 260ms;
  --dur-stagger: 80ms;

  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);

  --swipe-threshold-x: 120px;
  --swipe-overlay-start: 36px;
  --swipe-rotation-max: 12deg;
  --swipe-overlay-max-opacity: 0.42;
  --next-card-scale: 0.96;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-primary);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.25), transparent 40%),
    radial-gradient(circle at 88% 10%, rgba(29, 155, 240, 0.22), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(35, 193, 107, 0.18), transparent 38%),
    var(--grad-atmosphere);
  padding: var(--space-16);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.shell,
.phone-shell {
  width: min(100%, var(--screen-max-width));
  margin: 0 auto;
}

.phone-shell {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.glass-panel {
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  backdrop-filter: blur(var(--blur-glass));
  border-radius: var(--radius-md);
}

.kicker {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-micro);
  font-family: var(--font-mono);
}

.hero {
  padding: var(--space-20) var(--space-16);
}

.hero h1 {
  margin-top: var(--space-12);
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}

.lead {
  margin-top: var(--space-12);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.nav-list {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.screen-link {
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke-soft);
  padding: var(--space-12);
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.screen-link span {
  display: block;
  color: var(--text-muted);
  font-size: var(--fs-caption);
  margin-bottom: var(--space-4);
}

.note-block {
  margin-top: var(--space-12);
  padding: var(--space-12);
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
}

.topbar {
  padding: var(--space-12) var(--space-16);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-top: var(--space-4);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.chip {
  height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-soft);
  padding: 0 var(--space-12);
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--fs-caption);
}

.stack-zone {
  position: relative;
  height: min(68vh, 620px);
}

.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background: rgba(13, 27, 42, 0.7);
  border: 1px solid var(--stroke-soft);
}

.back-card {
  transform: translateY(10px) scale(var(--next-card-scale));
  opacity: 0.86;
  transition: transform var(--dur-base) var(--ease-emphasis), opacity var(--dur-base) var(--ease-standard);
}

.back-card.promote {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.front-card {
  touch-action: none;
}

.card-photo {
  height: 44%;
  border-radius: var(--radius-md);
  margin: var(--space-16);
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-card-photo-mask);
  pointer-events: none;
}

/* Photo gallery streak (indicator bars) */
.photo-streak {
  position: absolute;
  top: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  z-index: 3;
  display: flex;
  gap: 4px;
}

.photo-streak-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

.photo-streak-bar.active {
  background: rgba(255, 255, 255, 0.92);
}

/* Tap zones for photo navigation */
.photo-tap {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}

.photo-tap-left {
  left: 0;
  width: 40%;
}

.photo-tap-right {
  right: 0;
  width: 60%;
}

.card-body {
  padding: 0 var(--space-16) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.title-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  align-items: flex-start;
}

.title-row h2 {
  font-size: var(--fs-title);
  font-family: var(--font-display);
  line-height: var(--lh-tight);
}

.rate-badge {
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-pill);
  background: var(--grad-cta-primary);
  font-weight: var(--fw-title);
  white-space: nowrap;
}

.meta,
.desc,
.trust-meta {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
}

.desc {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-12);
  border-radius: var(--radius-sm);
}

.trust-name {
  font-weight: var(--fw-title);
  margin-bottom: var(--space-2);
}

.overlay {
  position: absolute;
  top: var(--space-24);
  padding: var(--space-8) var(--space-12);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  border: 2px solid currentColor;
  opacity: 0;
  pointer-events: none;
}

.overlay-like {
  left: var(--space-16);
  color: var(--accent-like);
}

.overlay-pass {
  right: var(--space-16);
  color: var(--accent-pass);
}

.actions-row,
.contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-20);
}

/* ===== FEED TOPBAR ===== */
.feed-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0 var(--space-8);
}
.feed-topbar-left { display: flex; align-items: center; gap: var(--space-8); }
.feed-topbar-right { display: flex; align-items: center; }
.feed-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-display);
  margin: 0;
}
.feed-avatar-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background var(--dur-fast);
}
.feed-avatar-btn:hover { background: var(--surface-glass-strong); }

/* ===== FEED EMPTY STATE ===== */
.feed-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-24) var(--space-16);
  flex: 1;
  gap: var(--space-16);
}
.feed-empty-anim { margin-bottom: var(--space-8); }
.feed-empty-spinner {
  animation: feedSpin 2s linear infinite;
  transform-origin: 60px 60px;
}
.feed-empty-done {
  font-size: 56px;
  margin-bottom: var(--space-4);
}
.feed-empty-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-display);
  color: var(--text-primary);
  margin: 0;
}
.feed-empty-text {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 300px;
  margin: 0;
}

/* ===== FEED TIPS ===== */
.feed-tips {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  width: 100%;
  max-width: 340px;
  margin-top: var(--space-8);
}
.feed-tip {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-12) var(--space-16);
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(var(--blur-glass));
  text-align: left;
}
.feed-tip-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.feed-tip-title {
  display: block;
  font-weight: var(--fw-title);
  font-size: var(--fs-body);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.feed-tip-desc {
  display: block;
  font-size: var(--fs-caption);
  color: var(--text-muted);
  line-height: var(--lh-base);
}

/* ===== FEED ACTION BUTTONS ===== */
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--dur-fast);
}
.action-btn:hover { transform: scale(1.06); }
.action-btn:active { transform: scale(0.95); }
.action-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: var(--fw-title);
  box-shadow: var(--shadow-fab);
  color: #fff;
}
.action-pass .action-icon { background: linear-gradient(135deg, #f45a67, var(--accent-pass)); }
.action-info .action-icon {
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  backdrop-filter: blur(var(--blur-glass));
  font-size: var(--fs-title);
  color: var(--text-secondary);
  box-shadow: none;
}
.action-like .action-icon { background: var(--grad-cta-like); }
.action-label {
  font-size: var(--fs-micro);
  color: var(--text-muted);
}

@keyframes feedSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== ROLE GRID MOBILE ===== */
@media (max-width: 768px) {
  .role-grid { grid-template-columns: 1fr; }
}

.cta,
.secondary-action {
  border: 1px solid transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-standard),
    filter var(--dur-fast) var(--ease-standard),
    opacity var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard),
    background var(--dur-fast) var(--ease-standard),
    border var(--dur-fast) var(--ease-standard);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  font-size: 22px;
  font-weight: var(--fw-title);
  box-shadow: var(--shadow-fab);
  position: relative;
}

.cta::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  animation: spin 1200ms linear infinite;
}

.cta-pass {
  background: linear-gradient(135deg, #f45a67 0%, var(--accent-pass) 100%);
}

.cta-like {
  background: var(--grad-cta-like);
}

.cta-primary {
  background: var(--grad-cta-primary);
  min-width: 146px;
  width: auto;
  padding: 0 var(--space-20);
  font-size: var(--fs-body);
}

.secondary-action {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  border-color: var(--stroke-soft);
  backdrop-filter: blur(var(--blur-glass));
  font-size: var(--fs-title);
}

.secondary-action:hover,
.secondary-action[data-state="hover"] {
  background: var(--surface-glass-strong);
}

.secondary-action:active,
.secondary-action[data-state="pressed"] {
  transform: scale(0.98);
  filter: brightness(0.92);
}

.secondary-action[data-state="loading"] {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.secondary-action[data-state="loading"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
  animation: shimmer 1200ms linear infinite;
}

.secondary-action[data-state="success"] {
  animation: flash-success 180ms var(--ease-standard);
}

.secondary-action[data-state="error"] {
  border: 1px solid var(--accent-error);
  color: var(--accent-error);
}

.cta:hover,
.cta[data-state="hover"] {
  transform: scale(1.03);
}

.cta:active,
.cta[data-state="pressed"] {
  transform: scale(0.97);
  background: var(--brand-primary-pressed);
}

.cta[data-state="loading"] {
  opacity: 0.72;
  pointer-events: none;
}

.cta[data-state="loading"]::after {
  opacity: 1;
}

.cta[data-state="success"] {
  background: var(--accent-success);
  box-shadow: var(--shadow-success);
}

.cta[data-state="error"] {
  background: var(--accent-error);
  box-shadow: var(--shadow-error);
}

.bottom-zone {
  padding: var(--space-12);
}

.progress {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.profile-hero {
  padding: 20px 16px 16px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: var(--space-12);
}

.avatar {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-pill);
  border: 3px solid var(--accent-info);
  object-fit: cover;
}

.profile-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

.verified {
  margin-top: var(--space-8);
  color: var(--accent-success);
  font-size: var(--fs-caption);
}

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.stats div {
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-title);
}

.stats span {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.section-card {
  padding: 14px;
  border-radius: var(--radius-md);
}

.section-card h2 {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  margin-bottom: var(--space-8);
}

.section-card p {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.skill {
  width: auto;
  min-height: 32px;
  border-radius: var(--radius-pill);
  padding: 0 var(--space-12);
  font-size: var(--fs-caption);
}

.skill.highlight {
  border-color: rgba(249, 115, 22, 0.6);
  background: rgba(249, 115, 22, 0.22);
}

.metrics p,
.docs-list p {
  margin-bottom: var(--space-4);
}

.metrics p:last-child,
.docs-list p:last-child {
  margin-bottom: 0;
}

.profile-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.profile-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 var(--space-12);
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-soft);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--fs-caption);
}

.profile-quick-link:last-child {
  grid-column: 1 / -1;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes flash-success {
  from { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  to { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
}

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

@media (max-width: 370px) {
  .actions-row,
  .contact-row {
    gap: var(--space-12);
  }
}

/* ==================== NAVIGATION ==================== */

.route-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.route-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6, 6px);
  padding: var(--space-14) var(--space-14);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke-soft);
  background: var(--surface-glass);
  text-decoration: none;
  color: var(--text-primary);
  min-height: 92px;
}

.route-card strong {
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  line-height: var(--lh-tight);
}

.route-card span {
  color: var(--text-muted);
  font-size: var(--fs-micro);
  line-height: var(--lh-base);
}

.route-card-icon {
  font-size: 24px;
  line-height: 1;
}

.executor-launch-topbar {
  align-items: center;
}

.executor-launch-topbar h1 {
  margin-top: var(--space-4);
}

.executor-launch-hero {
  padding: var(--space-24) var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-12);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(10, 20, 31, 0.38);
}

.executor-launch-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.executor-launch-hero h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

.executor-launch-hero p:last-of-type {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}

.executor-launch-cta {
  width: 100%;
  min-height: 54px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: var(--fs-body);
}

.executor-launch-shortcuts {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.executor-launch-shortcut {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-14) var(--space-16);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke-soft);
  background: var(--surface-glass);
  text-decoration: none;
  color: var(--text-primary);
}

.executor-launch-shortcut-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
}

.executor-launch-shortcut strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  line-height: var(--lh-tight);
}

.executor-launch-shortcut span:last-child {
  display: block;
  margin-top: var(--space-4);
  color: var(--text-muted);
  font-size: var(--fs-micro);
  line-height: var(--lh-base);
}

.executor-launch-helper {
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.executor-launch-helper p:last-child {
  color: var(--text-secondary);
  font-size: var(--fs-caption);
  line-height: var(--lh-relaxed);
}

.provider-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.provider-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 80px;
  padding: 0 14px 0 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    rgba(10, 20, 31, 0.38);
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(3, 10, 18, 0.24);
  transition: transform var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}

.provider-btn:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 36px rgba(3, 10, 18, 0.3);
}

.provider-btn:active {
  transform: translateY(1px) scale(0.995);
}

.provider-btn strong {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
}

.provider-btn small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.provider-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.provider-btn.tbank .provider-badge { background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%); color: #101010; }
.provider-btn.sber .provider-badge { background: linear-gradient(135deg, #23c16b 0%, #0e9f6e 100%); }
.provider-btn.gos .provider-badge { background: linear-gradient(135deg, #1d9bf0 0%, #0d7dbf 100%); }

.provider-btn.tbank {
  border-color: rgba(250, 204, 21, 0.22);
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.04) 42%, rgba(255, 255, 255, 0.06) 100%),
    rgba(10, 20, 31, 0.38);
}

.provider-btn.sber {
  border-color: rgba(35, 193, 107, 0.22);
  background:
    linear-gradient(135deg, rgba(35, 193, 107, 0.12), rgba(14, 159, 110, 0.04) 42%, rgba(255, 255, 255, 0.06) 100%),
    rgba(10, 20, 31, 0.38);
}

.provider-btn.gos {
  border-color: rgba(29, 155, 240, 0.22);
  background:
    linear-gradient(135deg, rgba(29, 155, 240, 0.12), rgba(13, 125, 191, 0.04) 42%, rgba(255, 255, 255, 0.06) 100%),
    rgba(10, 20, 31, 0.38);
}

.provider-body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.provider-trail {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}

.session-card {
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.session-card p {
  color: var(--text-muted);
  font-size: var(--fs-caption);
  line-height: var(--lh-relaxed);
}

.session-card strong {
  font-family: var(--font-display);
  font-size: var(--fs-caption);
}

.back-header {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-12) var(--space-16);
}

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.back-header-title {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  line-height: var(--lh-tight);
}

/* ==================== SCREEN LAYOUT ==================== */

.screen-scrollable {
  padding-bottom: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.screen-footer,
.wizard-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--screen-max-width));
  padding: var(--space-16);
  background: rgba(8, 16, 26, 0.88);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--stroke-soft);
  z-index: 50;
}

.screen-footer .cta,
.wizard-footer .cta {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  font-family: var(--font-display);
}

/* ==================== WIZARD ==================== */

.wizard-header {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-12) var(--space-16) var(--space-8);
}

.wizard-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.wizard-fill {
  height: 100%;
  background: var(--grad-cta-primary);
  border-radius: var(--radius-pill);
  transition: width var(--dur-base) var(--ease-snap);
}

.wizard-step-label {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: var(--fs-micro);
  white-space: nowrap;
}

.wizard-body {
  padding: var(--space-24) var(--space-16) 100px;
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.wizard-question {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

.wizard-hint {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}

/* ==================== FORM CONTROLS ==================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-label {
  color: var(--text-secondary);
  font-size: var(--fs-caption);
}

.form-input,
.form-textarea {
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  padding: var(--space-12) var(--space-16);
  outline: none;
  transition: border var(--dur-fast) var(--ease-standard);
  width: 100%;
}

.form-textarea {
  min-height: 120px;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--brand-primary);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--accent-error);
  animation: shake 240ms var(--ease-snap);
}

.form-error-msg {
  font-size: var(--fs-caption);
  color: var(--accent-error);
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.option-item {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-14) var(--space-16);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke-soft);
  background: var(--surface-glass);
  cursor: pointer;
  color: var(--text-primary);
  font-size: var(--fs-body);
  font-family: var(--font-body);
  transition: border var(--dur-fast), background var(--dur-fast);
  text-align: left;
  width: 100%;
}

.option-item.selected,
.option-item:active {
  border-color: var(--brand-primary);
  background: rgba(249, 115, 22, 0.14);
}

.option-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.option-item-check {
  margin-left: auto;
  color: var(--brand-primary);
  opacity: 0;
  font-size: 18px;
}

.option-item.selected .option-item-check {
  opacity: 1;
}

/* ==================== STATUS BADGES ==================== */

.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 var(--space-8);
  border-radius: var(--radius-pill);
  font-size: var(--fs-micro);
  font-weight: var(--fw-title);
}

.badge-active    { background: rgba(249,115,22,0.22); color: var(--brand-primary);  }
.badge-pending   { background: rgba(147,169,191,0.18); color: var(--text-muted);    }
.badge-hired     { background: rgba(35,193,107,0.22);  color: var(--accent-like);   }
.badge-rejected  { background: rgba(240,68,82,0.18);   color: var(--accent-pass);   }
.badge-completed { background: rgba(29,155,240,0.18);  color: var(--accent-info);   }
.badge-verified  { background: rgba(35,193,107,0.16);  color: var(--accent-success);}
.badge-urgent    { background: rgba(245,158,11,0.22);  color: var(--accent-warning);}

/* ==================== LIST ITEMS ==================== */

.task-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.task-list-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-12);
  padding: var(--space-12);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke-soft);
  background: var(--surface-glass);
  text-decoration: none;
  color: var(--text-primary);
  cursor: pointer;
}

.task-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.task-list-title {
  font-weight: var(--fw-title);
  font-size: var(--fs-body);
  margin-bottom: var(--space-4);
}

.task-list-meta {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.task-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.response-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.response-card {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-12);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke-soft);
  background: var(--surface-glass);
  text-decoration: none;
  color: var(--text-primary);
  cursor: pointer;
}

.response-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  flex-shrink: 0;
}

.response-name {
  font-weight: var(--fw-title);
  font-size: var(--fs-body);
}

.response-meta {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-top: var(--space-2);
}

.response-badge {
  margin-left: auto;
  flex-shrink: 0;
}

/* ==================== SPLASH / AUTH ==================== */

.splash-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-24);
  padding: var(--space-32);
  width: min(100%, var(--screen-max-width));
  margin: 0 auto;
}

.logo-mark {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: var(--grad-cta-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.45);
  margin: 0 auto;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  width: 100%;
}

.role-select-subtitle {
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  text-align: center;
  margin-bottom: var(--space-20);
}

.identity-note {
  width: 100%;
  display: flex;
  gap: var(--space-12);
  align-items: flex-start;
  text-align: left;
  padding: 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(29, 155, 240, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(12, 25, 37, 0.42);
  border: 1px solid rgba(29, 155, 240, 0.2);
  box-shadow: 0 10px 28px rgba(4, 11, 18, 0.2);
}

.identity-note p {
  color: var(--text-secondary);
  font-size: var(--fs-caption);
  line-height: var(--lh-relaxed);
}

.identity-note-title {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.identity-note-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 18px;
}

.identity-note-copy {
  flex: 1;
  min-width: 0;
}

.auth-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.auth-kicker {
  text-align: center;
}

.auth-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 30px);
  line-height: 1.08;
  text-align: center;
  letter-spacing: -0.03em;
}

.auth-subtitle {
  max-width: 28ch;
  margin: 0 auto;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  text-align: center;
}

.role-card {
  padding: var(--space-20) var(--space-16);
  border-radius: var(--radius-lg);
  border: 2px solid var(--stroke-soft);
  background: var(--surface-glass);
  cursor: pointer;
  color: var(--text-primary);
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.role-card:hover {
  background: var(--surface-glass-strong);
  border-color: rgba(255, 255, 255, 0.4);
}

.role-card.executor:hover,
.role-card.executor:active {
  border-color: var(--accent-like);
  background: rgba(35, 193, 107, 0.12);
}

.role-card.customer:hover,
.role-card.customer:active {
  border-color: var(--brand-primary);
  background: rgba(249, 115, 22, 0.12);
}

.role-icon {
  font-size: 36px;
  display: block;
  margin-bottom: var(--space-8);
}

.role-label {
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  font-weight: var(--fw-display);
  color: var(--text-secondary);
}

.role-cta {
  display: block;
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--fs-title);
  font-weight: var(--fw-display);
  line-height: 1.15;
}

.role-copy {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-top: var(--space-8);
  line-height: var(--lh-relaxed);
}

/* ==================== SUCCESS / EMPTY ==================== */

.success-shell,
.empty-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-24);
  padding: var(--space-32) var(--space-24);
  width: min(100%, var(--screen-max-width));
  margin: 0 auto;
}

.success-icon {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-pill);
  background: var(--grad-cta-like);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto;
  box-shadow: var(--shadow-success);
}

.auth-fail-icon {
  background: linear-gradient(135deg, #f45a67 0%, var(--accent-error) 100%);
  box-shadow: var(--shadow-error);
}

.success-shell h1,
.empty-shell h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

.success-shell p,
.empty-shell p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.empty-icon {
  font-size: 56px;
  line-height: 1;
}

.empty-shell h2 {
  font-size: var(--fs-title);
}

/* ==================== PAYWALL & SUBSCRIPTION ==================== */

.paywall-hero {
  text-align: center;
  padding: var(--space-32) var(--space-16) var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
}

.paywall-icon {
  font-size: 52px;
  line-height: 1;
}

.paywall-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

.plan-card {
  border: 2px solid var(--stroke-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-20);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.plan-card.highlighted {
  border-color: var(--brand-primary);
  background: rgba(249, 115, 22, 0.08);
}

.plan-price {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}

.plan-price span {
  font-size: var(--fs-body);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
}

.feature-item::before {
  content: "✓";
  color: var(--accent-like);
  font-weight: var(--fw-title);
  flex-shrink: 0;
}

/* ==================== CONTACT ==================== */

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-32) var(--space-24);
  text-align: center;
}

.contact-card h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
}

.contact-phone {
  font-family: var(--font-mono);
  font-size: var(--fs-h2);
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-12);
  width: 100%;
}

.contact-buttons .cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.cta-max {
  background: linear-gradient(135deg, #10b981 0%, #0f766e 100%);
}

.cta-chat {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.chat-preview {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  text-decoration: none;
  color: inherit;
  padding: var(--space-12) var(--space-16);
  border-bottom: 1px solid var(--stroke-soft);
}

.chat-preview:last-child {
  border-bottom: none;
}

.chat-preview-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: var(--grad-cta-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-body);
}

.chat-preview-meta {
  flex: 1;
  min-width: 0;
}

.chat-preview-meta strong,
.chat-preview-meta p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-bubble {
  max-width: 82%;
  padding: var(--space-10) var(--space-12);
  border-radius: var(--radius-md);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-body);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.chat-bubble.me {
  margin-left: auto;
  background: var(--grad-cta-primary);
  color: #0f172a;
}

.chat-bubble.other {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke-soft);
}

.placeholder-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.placeholder-shot {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke-soft);
  background:
    linear-gradient(150deg, rgba(249,115,22,0.15), rgba(29,155,240,0.12)),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-12);
}

.placeholder-shot::before {
  content: "";
  position: absolute;
  inset: 14% 16% 28% 16%;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255,255,255,0.22);
}

.placeholder-shot.map::after {
  content: "";
  position: absolute;
  inset: 24% 20% 24% 20%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255,255,255,0.14) 47%, rgba(255,255,255,0.14) 53%, transparent 53%),
    linear-gradient(transparent 47%, rgba(255,255,255,0.14) 47%, rgba(255,255,255,0.14) 53%, transparent 53%);
}

.placeholder-shot span {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  font-size: var(--fs-micro);
  line-height: var(--lh-base);
}

.logout-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: var(--space-20);
}

/* ==================== ANIMATIONS ==================== */

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

@keyframes pulse-ring {
  from { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  to   { box-shadow: 0 0 0 18px rgba(249, 115, 22, 0); }
}

/* ==================== EMPTY STATES ==================== */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-16);
  padding: var(--space-32) var(--space-16);
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  line-height: var(--lh-tight);
}

.empty-state p {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}

/* ==================== SECTION HEADERS ==================== */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--fs-body);
}

.section-link {
  font-size: var(--fs-caption);
  color: var(--brand-primary);
  text-decoration: none;
}

/* ==================== METRICS ROW ==================== */

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.metric-card {
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-md);
  padding: var(--space-12) var(--space-8);
  text-align: center;
}

.metric-value {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: var(--brand-primary);
}

.metric-label {
  font-size: var(--fs-micro);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* ==================== QUICK ACTION GRID ==================== */

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.quick-action-item {
  background: var(--surface-glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-md);
  padding: var(--space-16) var(--space-12);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  transition: background var(--dur-fast);
}

.quick-action-item:active {
  background: var(--surface-glass-strong);
}

.quick-action-icon {
  font-size: 28px;
}

.quick-action-label {
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  line-height: var(--lh-tight);
}

/* ==================== FILTER CHIPS ==================== */

.filter-chips {
  display: flex;
  gap: var(--space-8);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  padding: var(--space-8) var(--space-12);
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-soft);
  background: var(--surface-glass);
  color: var(--text-secondary);
  font-size: var(--fs-caption);
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}

.chip.active {
  border-color: var(--brand-primary);
  background: rgba(249,115,22,0.14);
  color: var(--brand-primary);
}

/* ==================== PROFILE HEADER ==================== */

.profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-24) var(--space-16) var(--space-20);
  text-align: center;
}

.profile-avatar-wrap {
  position: relative;
  width: 88px;
  height: 88px;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-pill);
  object-fit: cover;
  border: 3px solid var(--brand-primary);
}

.profile-verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: var(--accent-like);
  border-radius: 50%;
  border: 2px solid var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ==================== SCROLL SPACER ==================== */

.scroll-spacer-80 {
  height: 80px;
  flex-shrink: 0;
}

/* ==================== UTILITY ==================== */

.text-center { text-align: center; }
.text-brand  { color: var(--brand-primary); }
.text-muted  { color: var(--text-muted); }
.mt-auto     { margin-top: auto; }
.gap-8       { gap: var(--space-8); }
.gap-12      { gap: var(--space-12); }
.gap-16      { gap: var(--space-16); }
.px-16       { padding-left: var(--space-16); padding-right: var(--space-16); }

/* ==================== GOLD GRID & PARTICLES ==================== */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.phone-shell {
  position: relative;
  z-index: 1;
}

.proto-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: protoDrift linear infinite;
}

@keyframes protoDrift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-60px) translateX(var(--drift-x)) scale(0.6); opacity: 0; }
}
