/* ============================================
   AiroDZ Landing — Design System
   ============================================ */

:root {
  /* Brand — extracted from logo */
  --pink: #E91E8C;
  --pink-light: #FF4DA6;
  --blue: #5B7FE0;
  --blue-light: #7B9CF0;
  --purple: #8B5CF6;

  /* Gradient */
  --gradient: linear-gradient(135deg, var(--pink) 0%, var(--blue) 50%, var(--purple) 100%);
  --gradient-hover: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 50%, var(--purple) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(233,30,140,0.08) 0%, rgba(91,127,224,0.08) 100%);

  /* Neutrals */
  --gray-50: #FAFBFC;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --gray-950: #0A0E17;

  /* Layout */
  --max-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(233,30,140,0.15), 0 0 80px rgba(91,127,224,0.1);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn .material-icons-round {
  font-size: 1.125rem;
  transition: transform 0.3s var(--ease);
}

.btn:hover .material-icons-round {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}

.btn-primary:hover {
  background: var(--gradient-hover);
  box-shadow: 0 6px 24px rgba(233,30,140,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  padding: 12px 20px;
}

.btn-ghost:hover {
  color: var(--pink);
}

.btn-login {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-login:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.navbar.scrolled .btn-login,
.navbar.menu-open .btn-login {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(233,30,140,0.25);
}

.navbar.scrolled .btn-login:hover,
.navbar.menu-open .btn-login:hover {
  box-shadow: 0 6px 24px rgba(233,30,140,0.35);
  transform: translateY(-1px);
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.btn-white {
  background: #fff;
  color: var(--gray-900);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s var(--ease);
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  transition: color 0.35s var(--ease);
}

.navbar.scrolled .navbar-name,
.navbar.menu-open .navbar-name {
  color: var(--gray-900);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a:not(.btn) {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  transition: all 0.2s var(--ease);
}

.navbar.scrolled .navbar-links a:not(.btn),
.navbar.menu-open .navbar-links a:not(.btn) {
  color: var(--gray-600);
}

.navbar-links a:not(.btn):hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .navbar-links a:not(.btn):hover,
.navbar.menu-open .navbar-links a:not(.btn):hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.navbar.scrolled .btn-ghost,
.navbar.menu-open .btn-ghost {
  color: var(--gray-600);
}

.navbar.scrolled .btn-ghost:hover,
.navbar.menu-open .btn-ghost:hover {
  color: var(--pink);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}

.navbar.scrolled .lang-switcher,
.navbar.menu-open .lang-switcher {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.lang-option {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.navbar.scrolled .lang-option,
.navbar.menu-open .lang-option {
  color: var(--gray-400);
}

.lang-option:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .lang-option:hover,
.navbar.menu-open .lang-option:hover {
  color: var(--gray-700);
  background: var(--gray-200);
}

.lang-option.active {
  color: #fff;
  background: rgba(255,255,255,0.2);
}

.navbar.scrolled .lang-option.active,
.navbar.menu-open .lang-option.active {
  color: #fff;
  background: var(--gradient);
}

/* Mobile lang switcher */
.mobile-menu .lang-switcher {
  background: var(--gray-100);
  border-color: var(--gray-200);
  align-self: flex-start;
  margin: 4px 0;
}

.mobile-menu .lang-option {
  color: var(--gray-400);
}

.mobile-menu .lang-option:hover {
  color: var(--gray-700);
  background: var(--gray-200);
}

.mobile-menu .lang-option.active {
  color: #fff;
  background: var(--gradient);
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled .navbar-toggle span,
.navbar.menu-open .navbar-toggle span {
  background: var(--gray-800);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.mobile-menu.open {
  max-height: 400px;
  padding: 16px 24px 24px;
}

.mobile-menu a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--gray-100);
}

.mobile-menu .btn-primary {
  color: #fff;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/login-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,14,23,0.75) 0%,
      rgba(10,14,23,0.5) 40%,
      rgba(10,14,23,0.7) 100%),
    linear-gradient(135deg,
      rgba(233,30,140,0.2) 0%,
      rgba(91,127,224,0.15) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 140px 24px 100px;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 60%, #C084FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #fff);
}

/* ============================================
   Section Shared
   ============================================ */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s var(--ease);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gradient-subtle);
  color: var(--pink);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   Features
   ============================================ */

.features {
  padding: 100px 0 120px;
  background: var(--gray-50);
}

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

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.40s; }
.feature-card:nth-child(7) { transition-delay: 0.48s; }
.feature-card:nth-child(8) { transition-delay: 0.56s; }
.feature-card:nth-child(9) { transition-delay: 0.64s; }

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon .material-icons-round {
  font-size: 28px;
  color: #fff;
}

.feature-card--accent1 .feature-icon { background: linear-gradient(135deg, var(--pink), #F472B6); }
.feature-card--accent2 .feature-icon { background: linear-gradient(135deg, var(--blue), #93C5FD); }
.feature-card--accent3 .feature-icon { background: linear-gradient(135deg, var(--purple), #A78BFA); }
.feature-card--accent4 .feature-icon { background: linear-gradient(135deg, #10B981, #6EE7B7); }
.feature-card--accent5 .feature-icon { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.feature-card--accent6 .feature-icon { background: linear-gradient(135deg, #3B82F6, #60A5FA); }
.feature-card--accent7 .feature-icon { background: linear-gradient(135deg, #8B5CF6, #C4B5FD); }
.feature-card--accent8 .feature-icon { background: linear-gradient(135deg, #EC4899, #F9A8D4); }
.feature-card--accent9 .feature-icon { background: linear-gradient(135deg, #0EA5E9, #7DD3FC); }

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  padding: 100px 0 120px;
  background: #fff;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  text-align: center;
  max-width: 280px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(3) { transition-delay: 0.15s; }
.step:nth-child(5) { transition-delay: 0.3s; }

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(233,30,140,0.25);
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: var(--gradient);
  opacity: 0.3;
  margin-top: 32px;
  border-radius: 1px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 100px 0 120px;
  background: var(--gray-50);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(91,127,224,0.1);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--blue);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Early Access / Lead Form
   ============================================ */

.early-access {
  padding: 100px 0 120px;
  background: var(--gray-950);
  position: relative;
  overflow: hidden;
}

.early-access::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.early-access::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,127,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.early-access .section-header {
  position: relative;
}

.early-access .section-tag {
  background: rgba(233,30,140,0.15);
  color: var(--pink-light);
}

.early-access .section-title {
  color: #fff;
}

.early-access .section-subtitle {
  color: var(--gray-400);
}

.lead-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.02em;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder {
  color: var(--gray-500);
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255,255,255,0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.lead-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  cursor: pointer;
}

.lead-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lead-form-success {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.lead-success-icon {
  font-size: 64px;
  color: #22c55e;
  margin-bottom: 16px;
}

.lead-form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.lead-form-success p {
  font-size: 1rem;
  color: var(--gray-400);
}

@media (max-width: 600px) {
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--gray-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .navbar.scrolled .mobile-menu,
  .navbar.menu-open .mobile-menu {
    background: rgba(255,255,255,0.92);
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .step {
    max-width: 100%;
  }

  .hero-content {
    padding: 120px 20px 80px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

/* ============================================
   Product Preview Section
   ============================================ */

.product-preview {
  padding: 100px 0 120px;
  background: var(--gray-950);
  position: relative;
  overflow: hidden;
}

.product-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(233,30,140,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.product-preview .section-tag {
  background: rgba(233,30,140,0.12);
  color: var(--pink-light);
}

.product-preview .section-title { color: #fff; }
.product-preview .section-subtitle { color: var(--gray-400); }

/* Tabs */
.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.preview-tab {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.preview-tab:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
}

.preview-tab--active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}

/* Browser Frame */
.preview-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
}

.browser-chrome {
  background: #22223a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots { display: flex; gap: 6px; flex-shrink: 0; }

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dot--red    { background: #ff5f57; }
.browser-dot--yellow { background: #febc2e; }
.browser-dot--green  { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Screen panels */
.preview-screens {
  position: relative;
  background: #f5f7fa;
  height: 520px;
  overflow: hidden;
}

.preview-screen {
  position: absolute;
  inset: 0;
  display: none;
}

.preview-screen--active { display: flex; }

/* ── App Shell (Dashboard + Manifest) ── */
.mock-app-wrap { display: flex; flex-direction: column; width: 100%; height: 100%; }
.mock-app { display: flex; flex: 1; min-height: 0; }

/* ── App Toolbar (mat-toolbar replica) ── */
.mock-toolbar {
  height: 44px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.mock-toolbar-left  { display: flex; align-items: center; gap: 7px; }
.mock-toolbar-right { display: flex; align-items: center; gap: 6px; }
.mock-tb-icon { font-size: 18px !important; color: #6b7280; cursor: default; }
.mock-tb-brand { font-size: 0.78rem; font-weight: 700; color: #1976d2; }
.mock-tb-sep { width: 1px; height: 14px; background: #e5e7eb; }
.mock-tb-page { font-size: 0.76rem; color: #6b7280; }
.mock-tb-tenant {
  font-size: 0.65rem; font-weight: 500;
  background: #f3f4f6; color: #374151;
  padding: 2px 8px; border-radius: 8px;
}
.mock-tb-avatar {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  font-size: 0.56rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* ── Dashboard stat icon gradients (real app) ── */
.si-people    { background: linear-gradient(135deg, #667eea, #764ba2); }
.si-locations { background: linear-gradient(135deg, #f093fb, #f5576c); }
.si-aircraft  { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.si-pilots    { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.mock-sidebar {
  width: 196px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.mock-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  border-bottom: 1px solid #e5e7eb;
}

.mock-sidebar-brand img { border-radius: 5px; }
.mock-sidebar-brand span { font-size: 0.88rem; font-weight: 700; color: #1976d2; }

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  font-size: 0.8rem;
  color: #6b7280;
  cursor: default;
}

.mock-nav-item .material-icons-round { font-size: 16px; }

.mock-nav-item--active {
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 500;
}

.mock-main { flex: 1; padding: 18px; overflow: auto; }

.mock-page-header { margin-bottom: 14px; }
.mock-page-title { font-size: 1rem; font-weight: 700; color: #111827; }
.mock-page-sub { font-size: 0.72rem; color: #9ca3af; margin-top: 2px; }

/* Dashboard: Stats */
.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mock-stat {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 9px;
}

.mock-stat-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mock-stat-icon .material-icons-round { font-size: 16px; color: #fff; }
.si-blue   { background: #1976d2; }
.si-orange { background: #f59e0b; }
.si-green  { background: #10b981; }
.si-purple { background: #8b5cf6; }

.mock-stat-val { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.mock-stat-lbl { font-size: 0.65rem; color: #9ca3af; margin-top: 2px; }

/* Dashboard: Summary */
.mock-summary-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mock-summary {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e5e7eb;
}

.mock-summary-title {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: #9ca3af; margin-bottom: 5px;
}

.mock-summary-rev  { font-size: 1rem; font-weight: 700; color: #16a34a; margin-bottom: 1px; }
.mock-summary-cred { font-size: 0.7rem; color: #dc2626; margin-bottom: 7px; }

.mock-summary-ops { display: flex; gap: 12px; }
.mock-op-val { font-size: 0.9rem; font-weight: 700; }
.mock-op-lbl { font-size: 0.62rem; color: #9ca3af; }

.mock-tags { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 6px; }
.mock-tag { background: #e0f2fe; color: #0369a1; padding: 1px 6px; border-radius: 5px; font-size: 0.62rem; font-weight: 500; }

/* Dashboard: Charts */
.mock-charts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.mock-chart {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e5e7eb;
}

.mock-chart-title { font-size: 0.72rem; font-weight: 600; color: #374151; margin-bottom: 8px; }

.mock-bars { display: flex; gap: 3px; align-items: flex-end; height: 60px; }

.mock-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
}

.mock-bar { width: 100%; border-radius: 2px 2px 0 0; margin-top: auto; }
.mb-blue { background: #1976d2; opacity: .65; }
.mb-red  { background: #ef4444; opacity: .55; }
.mb-cur  { background: #60a5fa; opacity: 1; }
.mock-bar-lbl { font-size: 0.56rem; color: #9ca3af; }

/* Manifest: Toolbar */
.mock-mf-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

.mock-mf-btn {
  background: #1976d2; color: #fff;
  border: none; border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; gap: 3px;
  cursor: default;
}

.mock-mf-btn .material-icons-round { font-size: 13px; }

/* Manifest: Load Cards */
.mock-loads { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 4px; }

.mock-load {
  background: #fff;
  border-radius: 9px;
  border: 1px solid #e5e7eb;
  padding: 10px;
  min-width: 152px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.mock-load.ml-next  { border-left: 3px solid #f59e0b; }
.mock-load.ml-air   { border-left: 3px solid #22c55e; opacity: .9; }
.mock-load.ml-land  { border-left: 3px solid #10b981; opacity: .75; }
.mock-load.ml-draft { opacity: .6; }

.ml-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.ml-num  { font-weight: 700; font-size: 0.82rem; }
.ml-time { display: flex; align-items: center; gap: 2px; font-size: 0.68rem; color: #9ca3af; margin-top: 2px; }
.ml-time .material-icons-round { font-size: 11px; }

.ml-badge {
  display: flex; align-items: center; gap: 2px;
  padding: 2px 6px; border-radius: 8px;
  font-size: 0.62rem; font-weight: 600;
}

.ml-badge .material-icons-round { font-size: 9px; }
.mb-next { background: #fef3c7; color: #d97706; }
.mb-sch  { background: #dbeafe; color: #1d4ed8; }
.mb-air  { background: #dcfce7; color: #16a34a; }
.mb-land { background: #f3f4f6; color: #6b7280; }

.ml-info { display: flex; gap: 7px; font-size: 0.68rem; color: #9ca3af; margin-bottom: 7px; }
.ml-info span { display: flex; align-items: center; gap: 2px; }
.ml-info .material-icons-round { font-size: 11px; }

.ml-slots { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 7px; }

.sl { padding: 2px 5px; border-radius: 4px; font-size: 0.62rem; font-weight: 500; }
.sl-t  { background: #fce7f3; color: #9d174d; }
.sl-a  { background: #fef3c7; color: #92400e; }
.sl-s  { background: #dcfce7; color: #166534; }
.sl-st { background: #ede9fe; color: #4c1d95; }
.sl-e  { background: #f9fafb; color: #9ca3af; border: 1px dashed #d1d5db; }

.ml-footer { display: flex; justify-content: space-between; font-size: 0.68rem; padding-top: 6px; border-top: 1px solid #f3f4f6; }
.ml-count { color: #9ca3af; }
.ml-rev   { font-weight: 600; color: #16a34a; }

/* ── Athlete Portal ── */
.mock-portal { display: flex; flex-direction: column; width: 100%; height: 100%; background: #f5f7fa; }

.mock-portal-header {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #fff;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mph-brand { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.9rem; }
.mph-brand .material-icons-round { font-size: 17px; }
.mph-dz { font-size: 0.72rem; opacity: .65; }

.mock-portal-body { flex: 1; overflow-y: auto; padding: 12px; }

.mp-hero {
  background: #fff; border-radius: 10px;
  padding: 12px; margin-bottom: 9px;
  border: 1px solid #e5e7eb;
  display: flex; justify-content: space-between; align-items: center;
}

.mp-greeting { font-size: 0.92rem; font-weight: 700; }
.mp-date { font-size: 0.68rem; color: #9ca3af; margin-top: 2px; }
.mp-balance-label { font-size: 0.65rem; color: #9ca3af; text-align: right; }
.mp-balance-val { font-size: 1.05rem; font-weight: 700; color: #16a34a; }

.mp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 9px; }

.mp-card { background: #fff; border-radius: 9px; padding: 11px; border: 1px solid #e5e7eb; }

.mp-card-label { font-size: 0.62rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
.mp-card-main  { font-size: 0.88rem; font-weight: 700; }
.mp-card-sub   { font-size: 0.68rem; color: #9ca3af; display: flex; align-items: center; gap: 3px; margin-top: 3px; }
.mp-card-sub .material-icons-round { font-size: 11px; }

.mp-pill {
  display: inline-block;
  padding: 2px 8px; border-radius: 8px;
  font-size: 0.62rem; font-weight: 600;
  margin-top: 5px;
}

.mp-pill-next { background: #fef3c7; color: #d97706; }
.mp-pill-ok   { background: #dcfce7; color: #166534; }

.mp-jumps { background: #fff; border-radius: 9px; padding: 11px; border: 1px solid #e5e7eb; margin-bottom: 9px; }
.mp-jumps-lbl { font-size: 0.68rem; font-weight: 600; color: #6b7280; margin-bottom: 9px; }

.mp-jump-row { display: flex; justify-content: space-around; }
.mp-jump-item { display: flex; flex-direction: column; align-items: center; }
.mp-jump-val  { font-size: 1.25rem; font-weight: 700; color: #1976d2; }
.mp-jump-lbl  { font-size: 0.62rem; color: #9ca3af; }

.mp-gear { background: #fff; border-radius: 9px; padding: 11px; border: 1px solid #e5e7eb; }
.mp-gear-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.mp-gear-title  { font-size: 0.72rem; font-weight: 600; }
.mp-gear-name   { font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; }
.mp-gear-row    { display: flex; justify-content: space-between; font-size: 0.7rem; color: #6b7280; padding: 2px 0; }
.gear-ok        { color: #16a34a; }

/* ── Packer Portal ── */
.mock-packer { display: flex; flex-direction: column; width: 100%; height: 100%; background: #0f0f1a; color: #fff; }

.mock-packer-header {
  padding: 12px 14px;
  background: #18182e;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mpack-brand { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.88rem; }
.mpack-brand .material-icons-round { font-size: 17px; color: #60a5fa; }
.mpack-user  { font-size: 0.68rem; opacity: .45; }

.mock-packer-body { flex: 1; overflow-y: auto; padding: 12px; }

.mpack-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }

.mpack-stat {
  background: rgba(255,255,255,.04);
  border-radius: 7px; padding: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}

.mpack-stat-val { font-size: 1.1rem; font-weight: 700; }
.mpack-stat-lbl { font-size: 0.6rem; opacity: .45; margin-top: 2px; }

.mpack-queue-lbl { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .45; margin-bottom: 7px; }

.mpack-queue { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }

.mpack-job {
  background: rgba(255,255,255,.04);
  border-radius: 7px; padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
}

.mpack-job.pj-priority { border-left: 3px solid #f59e0b; }
.mpack-job.pj-done     { opacity: .45; }

.mpack-job-left { display: flex; align-items: center; gap: 8px; }

.mpack-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  flex-shrink: 0;
}

.av-pink   { background: #e91e63; }
.av-blue   { background: #1976d2; }
.av-green  { background: #4caf50; }
.av-orange { background: #f59e0b; }
.av-teal   { background: #009688; }

.mpack-name { font-size: 0.8rem; font-weight: 500; }
.mpack-rig  { font-size: 0.64rem; opacity: .45; margin-top: 1px; }

.mpack-status {
  font-size: 0.64rem; font-weight: 600;
  padding: 2px 8px; border-radius: 8px;
}

.ps-prio { background: rgba(245,158,11,.14); color: #fbbf24; }
.ps-prog { background: rgba(25,118,210,.14); color: #93c5fd; }
.ps-done { background: rgba(16,185,129,.1);  color: #6ee7b7; }
.ps-wait { background: rgba(255,255,255,.04); color: rgba(255,255,255,.35); }

.mpack-wallet {
  background: rgba(255,255,255,.04);
  border-radius: 7px; padding: 10px;
  border: 1px solid rgba(255,255,255,.06);
}

.mpack-wallet-lbl { font-size: 0.62rem; opacity: .45; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.mpack-wallet-bal { font-size: 1.25rem; font-weight: 700; color: #6ee7b7; }
.mpack-wallet-sub { font-size: 0.64rem; opacity: .4; margin-top: 2px; margin-bottom: 7px; }
.mpack-tx { display: flex; justify-content: space-between; font-size: 0.68rem; opacity: .6; padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.tx-up    { color: #6ee7b7; }
.tx-down  { color: #fca5a5; }

/* ── Manifest Board Layout ── */
.mock-main--mf {
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 0;
  overflow: hidden;
}

.mf-toolbar-right { display: flex; align-items: center; gap: 5px; }

.ac-chip {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.62rem; font-weight: 500;
  padding: 3px 8px; border-radius: 8px;
  cursor: default; flex-shrink: 0;
}
.ac-chip .material-icons-round { font-size: 10px; }
.ac-chip-avail { background: #dcfce7; color: #16a34a; }
.ac-chip-air   { background: #fef3c7; color: #d97706; }

.mock-board {
  flex: 1;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  min-height: 0;
  margin-top: 12px;
}
.mock-board::-webkit-scrollbar { height: 4px; }
.mock-board::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 2px; }

.mock-load-col {
  min-width: 160px;
  max-width: 160px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
}
.mlc-next  { border: 1.5px solid #f59e0b; background: #fffdf5; }
.mlc-air   { background: #f0fdf4; border-color: #bbf7d0; }
.mlc-land  { opacity: .7; }
.mlc-draft { opacity: .5; }

.mlc-header {
  padding: 8px 9px 7px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}
.mlc-header-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 5px;
}
.mlc-num { font-size: 0.78rem; font-weight: 700; }

.mlc-badge {
  font-size: 0.55rem; font-weight: 600;
  padding: 2px 5px; border-radius: 6px;
}
.mlcb-land  { background: #f3f4f6; color: #6b7280; }
.mlcb-air   { background: #dcfce7; color: #16a34a; }
.mlcb-next  { background: #fef3c7; color: #d97706; }
.mlcb-sch   { background: #dbeafe; color: #1d4ed8; }
.mlcb-draft { background: #f3f4f6; color: #9ca3af; }

.mlc-meta {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.66rem; color: #6b7280;
  margin-bottom: 3px;
}
.mlc-meta .material-icons-round { font-size: 10px; }
.mlc-meta--urgent { color: #d97706; font-weight: 600; }
.mlc-meta--dim { opacity: .4; }

.mlc-plane {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.62rem; color: #9ca3af;
}
.mlc-plane .material-icons-round { font-size: 10px; }
.mlc-plane--dim { opacity: .4; }

.mlc-slots {
  flex: 1;
  padding: 6px 7px;
  display: flex; flex-direction: column; gap: 3px;
  overflow-y: auto;
}
.mlc-slots::-webkit-scrollbar { display: none; }

.mlc-slot {
  display: flex; align-items: center; gap: 5px;
  padding: 3px 4px; border-radius: 5px;
}
.mlc-slot-open { opacity: .5; }

.mlc-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.54rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av-open { background: #f3f4f6; color: #9ca3af; border: 1.5px dashed #d1d5db; }
.av-gray { background: #9ca3af; }

.mlc-slot-info { flex: 1; min-width: 0; }
.mlc-slot-name { font-size: 0.66rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mlc-slot-placeholder { color: #d1d5db; font-style: italic; font-weight: 400; }

.mlc-slot-type {
  font-size: 0.52rem; font-weight: 600;
  padding: 1px 4px; border-radius: 3px;
  display: inline-block; margin-top: 1px;
}
.slot-t  { background: #fce7f3; color: #9d174d; }
.slot-a  { background: #fef3c7; color: #92400e; }
.slot-s  { background: #dcfce7; color: #166534; }
.slot-st { background: #ede9fe; color: #4c1d95; }

.mlc-slot-gear { font-size: 10px; color: #10b981; margin-left: auto; flex-shrink: 0; }

.mlc-footer {
  padding: 6px 9px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex; justify-content: space-between;
  font-size: 0.62rem; color: #9ca3af;
  flex-shrink: 0;
}
.mlc-rev { font-weight: 600; color: #16a34a; }

/* ── Phone Frame ── */
.preview-frame--phone .preview-screens {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 60%, #0f2240 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 510px;
}

.preview-frame--phone .preview-screen--active {
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.phone-frame {
  width: 258px;
  height: 488px;
  border-radius: 40px;
  border: 8px solid #2a2a2a;
  box-shadow:
    0 0 0 1px #111,
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 40px 80px rgba(0,0,0,.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
}

.phone-island {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 16px;
  background: #000;
  border-radius: 14px;
  z-index: 20;
}

.phone-status-bar {
  padding: 7px 16px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}
.pstatus-light { color: #1a1a2e; background: #fff; }
.pstatus-dark  { color: #fff;    background: #0f0f1a; }

.phone-status-icons { display: flex; gap: 2px; align-items: center; }
.phone-status-icons .material-icons-round { font-size: 9px; }

.phone-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f5f7fa;
}
.phone-content--dark { background: #0f0f1a; }

.phone-home-bar {
  height: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-home-bar::after {
  content: '';
  width: 88px; height: 3px;
  border-radius: 99px;
}
.phone-home-bar--light { background: #fff; }
.phone-home-bar--light::after { background: rgba(0,0,0,.2); }
.phone-home-bar--dark  { background: #0f0f1a; }
.phone-home-bar--dark::after  { background: rgba(255,255,255,.25); }

/* ── Athlete Portal Phone ── */
.ph-portal-header {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  padding: 9px 12px;
  display: flex; align-items: center; gap: 5px;
  color: #fff;
  flex-shrink: 0;
}
.pph-logo { font-size: 16px; }
.pph-name { font-size: 0.82rem; font-weight: 700; flex: 1; }
.pph-dz   { font-size: 0.58rem; opacity: .6; }
.pph-bell { font-size: 16px; opacity: .7; }

.ph-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}
.ph-scroll::-webkit-scrollbar { display: none; }

.pph-hero {
  background: linear-gradient(135deg, #1565c0, #2196f3);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  margin-bottom: 8px;
}
.pph-greeting { font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.pph-balance-row { display: flex; justify-content: space-between; align-items: flex-end; }
.pph-balance-label { font-size: 0.58rem; opacity: .65; }
.pph-balance { font-size: 1.2rem; font-weight: 800; }

.pph-next-load {
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #f59e0b;
  padding: 9px 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(245,158,11,.12);
}
.pph-nl-header {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.7rem; color: #d97706;
  margin-bottom: 5px;
}
.pph-nl-header .material-icons-round { font-size: 12px; }
.pph-nl-badge {
  margin-left: auto;
  background: #fef3c7; color: #d97706;
  font-size: 0.55rem; font-weight: 700;
  padding: 1px 5px; border-radius: 5px;
}
.pph-nl-num { font-size: 0.8rem; font-weight: 700; color: #111; margin-bottom: 2px; }
.pph-nl-sub { font-size: 0.65rem; color: #9ca3af; display: flex; align-items: center; gap: 3px; }

.pph-section-title {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #9ca3af;
  margin-bottom: 5px;
}

.pph-stats {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 4px; text-align: center;
  border: 1px solid #e5e7eb;
  margin-bottom: 8px;
}
.pph-stat-val { font-size: 1rem; font-weight: 800; color: #1976d2; line-height: 1; }
.pph-stat-lbl { font-size: 0.54rem; color: #9ca3af; margin-top: 2px; }

.pph-gear {
  background: #fff;
  border-radius: 10px;
  padding: 9px 10px;
  border: 1px solid #e5e7eb;
}
.pph-gear-name {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 600;
  color: #374151; margin-bottom: 5px;
}
.pph-gear-name .material-icons-round { font-size: 12px; color: #10b981; }
.pph-gear-row { display: flex; justify-content: space-between; font-size: 0.64rem; color: #6b7280; padding: 2px 0; }
.pph-gear-ok { color: #16a34a; font-weight: 500; }

/* ── Packer Phone ── */
.ph-pack-header {
  background: #18182e;
  padding: 9px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.ph-pack-header-left { display: flex; align-items: center; gap: 6px; }
.ph-pack-title { font-size: 0.82rem; font-weight: 700; color: #fff; }
.ph-pack-user  { font-size: 0.6rem; color: rgba(255,255,255,.4); }

.ph-pack-earned {
  background: linear-gradient(135deg, #052e16, #14532d);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  flex-shrink: 0;
}
.ph-pack-earned-val { font-size: 1.3rem; font-weight: 800; color: #6ee7b7; line-height: 1; }
.ph-pack-earned-sub { font-size: 0.6rem; color: rgba(255,255,255,.4); margin-top: 3px; }

.ph-pack-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 4px; padding: 8px 10px;
  background: #18182e;
  border-bottom: 1px solid rgba(255,255,255,.04);
  flex-shrink: 0;
}
.ph-pack-stat { text-align: center; }
.ph-pack-stat-lbl { font-size: 0.52rem; color: rgba(255,255,255,.35); margin-top: 2px; }

.ph-pack-scroll {
  flex: 1; overflow-y: auto; padding: 0;
}
.ph-pack-scroll::-webkit-scrollbar { display: none; }

.ph-pack-section-title {
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.3);
  padding: 7px 12px 3px;
}

.ph-pack-job {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ph-pack-job--priority { background: rgba(245,158,11,.06); border-left: 2.5px solid #f59e0b; }
.ph-pack-job--done { opacity: .4; }

.ph-pack-job-info { flex: 1; min-width: 0; }
.ph-pack-job-name { font-size: 0.76rem; font-weight: 500; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-pack-job-rig  { font-size: 0.6rem; color: rgba(255,255,255,.35); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Bottom nav (shared) ── */
.ph-bottom-nav {
  display: flex;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  flex-shrink: 0;
}
.ph-bottom-nav--dark { border-top-color: rgba(255,255,255,.06); background: #18182e; }

.ph-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 1px; padding: 6px 2px;
  font-size: 0.52rem; color: #9ca3af; cursor: default;
}
.ph-nav-item .material-icons-round { font-size: 16px; }

.ph-nav-active { color: #1976d2; }
.ph-nav-active .material-icons-round { color: #1976d2; }
.ph-nav-active-dark { color: #60a5fa; }
.ph-nav-active-dark .material-icons-round { color: #60a5fa; }

/* ── Real Load Card (rlc) — matches Angular load-card component ── */
.rlc {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #1976d2;
  padding: 0.75rem;
  min-width: 210px;
  max-width: 210px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rlc--draft     { border-left-color: #607d8b; border-left-style: dashed; opacity: .85; }
.rlc--scheduled { border-left-color: #2196f3; }
.rlc--boarding  { border-left-color: #3f51b5; }
.rlc--departed  { border-left-color: #9c27b0; }
.rlc--landed    { border-left-color: #4caf50; opacity: .8; }
.rlc--cancelled { border-left-color: #f44336; opacity: .5; }
.rlc--next      { border-left-color: #00bcd4; border-left-width: 6px; box-shadow: 0 2px 8px rgba(0,188,212,.3); }

.rlc-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.6rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.rlc-header-left { display: flex; flex-direction: column; gap: 0.2rem; }
.rlc-header-right { display: flex; align-items: center; gap: 0.2rem; flex-shrink: 0; }
.rlc-number { font-size: 0.88rem; font-weight: 600; color: #111827; }
.rlc-time-row { display: flex; align-items: center; gap: 0.3rem; }
.rlc-time-badge {
  display: flex; align-items: center; gap: 0.2rem;
  font-size: 0.78rem; color: #6b7280;
}
.rlc-time-badge .material-icons-round { font-size: 12px; }
.rlc-time-badge--urgent { color: #00bcd4; font-weight: 600; }
.rlc-countdown { font-size: 0.68rem; font-weight: 500; color: #9ca3af; }
.rlc-menu { font-size: 18px !important; color: #9ca3af; cursor: default; }

.rlc-status-badge {
  display: inline-flex; align-items: center; gap: 0.2rem;
  padding: 0.2rem 0.4rem; border-radius: 4px;
  font-size: 0.65rem; font-weight: 500;
}
.rlc-status-badge .material-icons-round { font-size: 12px; }
.rlc-status--draft     { background: #eceff1; color: #607d8b; border: 1px dashed #607d8b; }
.rlc-status--scheduled { background: #e3f2fd; color: #2196f3; border: 1px solid #2196f3; }
.rlc-status--departed  { background: #f3e5f5; color: #9c27b0; border: 1px solid #9c27b0; }
.rlc-status--landed    { background: #e8f5e9; color: #4caf50; border: 1px solid #4caf50; }
.rlc-status--next      { background: #e0f7fa; color: #00bcd4; border: 1px solid #00bcd4; font-weight: 600; }

.rlc-info-row {
  display: flex; align-items: center;
  border: 1px solid #e5e7eb; border-radius: 0.5rem;
  overflow: hidden; margin-bottom: 0.6rem;
  font-size: 0.75rem; color: #6b7280;
}
.rlc-info-col {
  display: flex; align-items: center; gap: 0.2rem;
  padding: 0.3rem 0.4rem; flex: 1; min-width: 0;
  overflow: hidden;
}
.rlc-info-icon { font-size: 13px !important; width: 13px !important; height: 13px !important; flex-shrink: 0; }
.rlc-info-val { font-weight: 500; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rlc-info-det { color: #9ca3af; font-size: 0.68rem; flex-shrink: 0; }
.rlc-info-ph  { font-style: italic; color: #9ca3af; white-space: nowrap; font-size: 0.68rem; }

.rlc-fuel {
  flex: 0 0 auto; justify-content: center;
  padding: 0.3rem 0.35rem;
  border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb;
}
.rlc-fuel--active { background: #fde8e8; }
.rlc-fuel-icon { font-size: 16px !important; width: 16px !important; height: 16px !important; color: #d1d5db; }
.rlc-fuel-icon--active { color: #e10808 !important; }

.rlc-slots {
  display: flex; flex-direction: column; gap: 0.3rem;
  min-height: 100px; padding: 0.4rem;
  background: #fafafa; border-radius: 0.5rem;
  border: 1px dashed #e5e7eb;
  margin-bottom: 0.6rem;
  flex: 1;
}
.rlc-slot {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.35rem; border-radius: 5px;
  height: 2.25rem;
  background: #fff; border: 1px solid #e5e7eb;
}
.rlc-drag { font-size: 14px !important; color: #d1d5db; flex-shrink: 0; }
.rlc-slot-name {
  font-size: 0.72rem; font-weight: 500; color: #111827;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0; width: 90px;
}
.rlc-slot-type {
  font-size: 0.58rem; font-weight: 600;
  padding: 1px 5px; border-radius: 3px;
  display: inline-block; flex-shrink: 0;
}
.rlc-slot-empty {
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  height: 2.25rem; padding: 0.25rem;
  background: #f9fafb; border: 1px dashed #d1d5db; border-radius: 5px;
  color: #9ca3af; font-size: 0.65rem;
}
.rlc-slot-empty .material-icons-round { font-size: 12px; }

.rlc-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.4rem; border-top: 1px solid #e5e7eb;
  margin-top: auto;
}
.rlc-slots-info { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; }
.rlc-count { font-weight: 500; color: #111827; }
.rlc-avail { color: #1976d2; font-weight: 500; font-size: 0.62rem; }
.rlc-revenue {
  display: flex; align-items: center; gap: 0.2rem;
  font-size: 0.68rem; font-weight: 600; color: #2e7d32;
}
.rlc-revenue .material-icons-round { font-size: 12px; }

/* ── Portal Layout Shell (prt-*) — matches portal-layout.scss ── */
.prt-toolbar {
  background: #1a1a2e;
  padding: 8px 12px; display: flex; align-items: center;
  flex-shrink: 0;
}
.prt-brand { display: flex; align-items: center; gap: 5px; flex: 1; }
.prt-brand-icon { font-size: 18px !important; color: rgba(255,255,255,.9); }
.prt-brand-name { font-size: 0.8rem; font-weight: 600; color: #fff; letter-spacing: .01em; }
.prt-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #1976d2; color: #fff;
  font-size: 0.6rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

.prt-scroll {
  flex: 1; overflow-y: auto; overflow-x: hidden; padding: 12px;
  background: #fafafa; width: 100%; box-sizing: border-box;
}
.prt-scroll::-webkit-scrollbar { display: none; }

/* Hero */
.prt-hero {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.5rem; margin-bottom: 12px;
}
.prt-hero-left { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.prt-hero-greeting { font-size: 0.88rem; font-weight: 600; color: #111827; }
.prt-hero-date { font-size: 0.6rem; color: #6b7280; white-space: normal; }
.prt-hero-balance { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.prt-balance-label { font-size: 0.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; }
.prt-balance-val { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; color: #111827; line-height: 1; }

/* Cards */
.prt-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7px; margin-bottom: 8px;
}
.prt-card {
  background: #fff; border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 3px;
}
.prt-card--full { grid-column: 1/-1; }
.prt-card--pending { border-left: 3px solid #d97706; }

.prt-card-label {
  font-size: 0.57rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: #9ca3af;
}
.prt-card-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.prt-card-highlight { font-size: 0.8rem; font-weight: 700; color: #111827; letter-spacing: .03em; margin-top: 3px; }
.prt-card-big { font-size: 2rem; font-weight: 700; color: #111827; line-height: 1; margin-top: 3px; letter-spacing: -.02em; }
.prt-card-meta { display: flex; align-items: center; gap: 8px; font-size: 0.65rem; color: #9ca3af; flex-wrap: wrap; }

.prt-badge { font-size: 0.55rem; font-weight: 600; text-transform: uppercase; padding: 2px 5px; border-radius: 4px; color: #fff; flex-shrink: 0; }
.prt-badge--scheduled { background: #2196f3; }
.prt-badge--next { background: #00bcd4; }

.prt-jump-details { display: flex; flex-direction: column; gap: 2px; margin-top: 3px; }
.prt-jump-row { display: flex; justify-content: space-between; align-items: baseline; gap: 4px; font-size: 0.63rem; }
.prt-jump-row span:first-child { color: #9ca3af; }
.prt-jump-row span:last-child { font-weight: 600; color: #111827; }

.prt-pill { display: inline-flex; align-items: center; gap: 2px; font-size: 0.6rem; font-weight: 600; padding: 2px 6px; border-radius: 1rem; }
.prt-pill--ok { background: #ecfdf5; color: #065f46; }

.prt-license { display: flex; align-items: flex-start; gap: 12px; margin-top: 7px; }
.prt-license-cat { font-size: 2rem; font-weight: 700; color: #111827; line-height: 1; min-width: 2rem; text-align: center; }
.prt-license-details { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.prt-license-row { display: flex; justify-content: space-between; font-size: 0.67rem; }
.prt-license-row span:first-child { color: #9ca3af; }
.prt-license-row span:last-child { color: #111827; font-weight: 500; }

.prt-gear { display: flex; align-items: center; gap: 5px; margin-top: 7px; }
.prt-gear-icon { font-size: 16px !important; width: 16px !important; height: 16px !important; flex-shrink: 0; }
.prt-status-ok { color: #059669; }
.prt-gear-name { font-size: 0.78rem; font-weight: 600; color: #111827; }
.prt-gear-detail { font-size: 0.65rem; color: #9ca3af; padding-left: 21px; margin-top: 1px; }
.prt-gear-detail-row { display: flex; justify-content: space-between; font-size: 0.65rem; color: #9ca3af; padding-left: 21px; }
.prt-gear-days { font-weight: 600; color: #9ca3af; }

/* Packer-specific */
.prt-hero-today { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.prt-today-label { font-size: 0.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; }
.prt-today-count { font-size: 1.75rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: #111827; }
.prt-today-sub { font-size: 0.6rem; color: #9ca3af; align-self: flex-end; }
.prt-today-earn { font-size: 0.8rem; font-weight: 600; color: #16a34a; margin-top: 2px; }
.prt-pk-big { font-size: 1.5rem; font-weight: 700; color: #111827; line-height: 1; margin-top: 3px; letter-spacing: -.02em; }
.prt-pk-big--accent { color: #d97706; }
.prt-warn { color: #d97706; font-weight: 600; }

.prt-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.prt-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 10px; border-radius: 6px;
  font-size: 0.68rem; font-weight: 600; cursor: default; border: none;
}
.prt-btn .material-icons-round { font-size: 14px; }
.prt-btn--primary { background: #1976d2; color: #fff; }
.prt-btn--outline { background: transparent; color: #1976d2; border: 1px solid #1976d2; }

/* Dark bottom nav */
.prt-bottom-nav {
  display: flex; background: #1a1a2e;
  flex-shrink: 0; box-shadow: 0 -2px 8px rgba(0,0,0,.2);
}
.prt-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 1px; padding: 6px 2px;
  font-size: 0.5rem; color: rgba(255,255,255,.55);
}
.prt-nav-item .material-icons-round { font-size: 18px; }
.prt-nav-active { color: #fff; }
.prt-nav-active .material-icons-round { transform: scale(1.1); }

.prt-home-bar {
  height: 20px; background: #1a1a2e;
  display: flex; align-items: center; justify-content: center;
}
.prt-home-bar::after {
  content: ''; width: 80px; height: 3px; border-radius: 99px;
  background: rgba(255,255,255,.2);
}

/* ── Multi-phone row ── */
.phones-row { display: flex; gap: 14px; align-items: center; justify-content: center; }

/* ── Small phone frame (multi-phone views) ── */
.phone-frame--sm { width: 190px; height: 402px; border-radius: 32px; border-width: 6px; }
.phone-frame--sm .phone-island { width: 60px; height: 12px; top: 4px; }
.phone-frame--sm .prt-scroll { padding: 8px; }
.phone-frame--sm .prt-toolbar { padding: 6px 10px; }

/* ── Athlete manifest mini-cards ── */
.prt-section-hd { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; margin-bottom: 6px; }
.prt-mload { background: #fff; border-radius: 8px; border-left: 4px solid #2196f3; padding: 7px; margin-bottom: 7px; }
.prt-mload--next { border-left-color: #00bcd4; border-left-width: 5px; box-shadow: 0 1px 6px rgba(0,188,212,.2); }
.prt-mload-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; gap: 4px; }
.prt-mload-num { font-size: 0.72rem; font-weight: 700; color: #111827; }
.prt-mload-badge { font-size: 0.52rem; font-weight: 700; padding: 2px 5px; border-radius: 4px; flex-shrink: 0; }
.prt-mload-badge--next  { background: #e0f7fa; color: #00bcd4; border: 1px solid #00bcd4; }
.prt-mload-badge--sched { background: #e3f2fd; color: #2196f3; border: 1px solid #2196f3; }
.prt-mload-meta { font-size: 0.6rem; color: #9ca3af; margin-bottom: 5px; }
.prt-mload-slot { display: flex; align-items: center; gap: 4px; padding: 3px 6px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 4px; font-size: 0.62rem; color: #1d4ed8; font-weight: 600; margin-bottom: 2px; }
.prt-mload-slot .material-icons-round { font-size: 10px; }
.prt-mload-you { margin-left: auto; font-size: 0.5rem; font-weight: 700; background: #dbeafe; color: #1d4ed8; padding: 1px 4px; border-radius: 3px; flex-shrink: 0; }
.prt-mload-others { font-size: 0.58rem; color: #9ca3af; padding-top: 2px; }

/* ── Logbook ── */
.prt-lb-header { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; }
.prt-lb-total { font-size: 1.8rem; font-weight: 700; color: #111827; line-height: 1; letter-spacing: -.03em; }
.prt-lb-total-lbl { font-size: 0.6rem; color: #9ca3af; }
.prt-lb-row { display: flex; align-items: center; gap: 5px; padding: 5px 0; border-bottom: 1px solid #f3f4f6; }
.prt-lb-num { font-size: 0.6rem; font-weight: 600; color: #9ca3af; min-width: 28px; flex-shrink: 0; }
.prt-lb-info { flex: 1; min-width: 0; }
.prt-lb-desc { font-size: 0.67rem; font-weight: 500; color: #111827; }
.prt-lb-meta { font-size: 0.57rem; color: #9ca3af; }
.prt-lb-ac { font-size: 0.58rem; color: #6b7280; flex-shrink: 0; }

/* ── Pack jobs ── */
.prt-filter-row { display: flex; gap: 4px; margin-bottom: 8px; }
.prt-filter-btn { font-size: 0.6rem; font-weight: 600; padding: 3px 8px; border-radius: 99px; border: none; cursor: default; }
.prt-filter-btn--on  { background: #1976d2; color: #fff; }
.prt-filter-btn--off { background: #f3f4f6; color: #6b7280; }
.prt-pj-row { background: #fff; border-radius: 8px; padding: 7px; margin-bottom: 6px; border-left: 3px solid #e5e7eb; }
.prt-pj-row--pending { border-left-color: #d97706; }
.prt-pj-row--done { opacity: .65; }
.prt-pj-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; }
.prt-pj-name { font-size: 0.7rem; font-weight: 600; color: #111827; flex: 1; min-width: 0; }
.prt-pj-status { font-size: 0.52rem; font-weight: 700; padding: 2px 5px; border-radius: 4px; flex-shrink: 0; }
.prt-pj-status--pending { background: #fef3c7; color: #d97706; }
.prt-pj-status--done    { background: #d1fae5; color: #065f46; }
.prt-pj-meta { font-size: 0.6rem; color: #9ca3af; margin-top: 2px; }

/* ── Wallet ── */
.prt-wallet-card { background: #1976d2; border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
.prt-wallet-lbl  { font-size: 0.57rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.75); }
.prt-wallet-val  { font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.02em; }
.prt-wallet-sub  { font-size: 0.58rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.prt-tx-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 6px 0; border-bottom: 1px solid #f3f4f6; }
.prt-tx-info { flex: 1; min-width: 0; }
.prt-tx-desc { font-size: 0.67rem; font-weight: 500; color: #111827; }
.prt-tx-date { font-size: 0.57rem; color: #9ca3af; }
.prt-tx-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.prt-tx-val { font-size: 0.7rem; font-weight: 600; color: #111827; }
.prt-tx-badge { font-size: 0.52rem; font-weight: 600; padding: 1px 4px; border-radius: 3px; }
.prt-tx-badge--paid    { background: #d1fae5; color: #065f46; }
.prt-tx-badge--pending { background: #fef3c7; color: #d97706; }

/* ── Packer Portal Light Theme ── */
.ph-pk-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 9px 12px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.ph-pk-header-left { display: flex; align-items: center; gap: 6px; }
.ph-pk-title { font-size: 0.82rem; font-weight: 700; color: #111827; }
.ph-pk-user  { font-size: 0.6rem; color: #9ca3af; }

.ph-pk-hero {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-bottom: 1px solid #bbf7d0;
  padding: 10px 12px;
  text-align: center;
  flex-shrink: 0;
}
.ph-pk-hero-count { font-size: 2rem; font-weight: 800; color: #15803d; line-height: 1; }
.ph-pk-hero-lbl   { font-size: 0.6rem; color: #4b7c62; margin-top: 2px; }
.ph-pk-hero-earn  { font-size: 0.76rem; font-weight: 600; color: #16a34a; margin-top: 4px; }

.ph-pk-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 5px; padding: 7px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.ph-pk-card {
  background: #fff; border-radius: 7px; padding: 7px 4px;
  text-align: center; border: 1px solid #e5e7eb;
}
.ph-pk-card--pending { border-left: 3px solid #d97706; }
.ph-pk-card-val { font-size: 1rem; font-weight: 700; line-height: 1; }
.ph-pk-card-lbl { font-size: 0.5rem; color: #9ca3af; margin-top: 2px; }

.ph-pk-scroll { flex: 1; overflow-y: auto; }
.ph-pk-scroll::-webkit-scrollbar { display: none; }

.ph-pk-sec-title {
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #9ca3af; padding: 6px 12px 3px;
}

.ph-pk-job {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}
.ph-pk-job--priority { background: #fffbeb; border-left: 2.5px solid #d97706; }
.ph-pk-job--done { opacity: .5; }

.ph-pk-job-info { flex: 1; min-width: 0; }
.ph-pk-name { font-size: 0.75rem; font-weight: 500; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-pk-rig  { font-size: 0.6rem; color: #9ca3af; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ph-pk-status { font-size: 0.6rem; font-weight: 600; padding: 2px 6px; border-radius: 6px; white-space: nowrap; }
.ps-prio-lt { background: #fef3c7; color: #d97706; }
.ps-prog-lt { background: #dbeafe; color: #1d4ed8; }
.ps-wait-lt { background: #f3f4f6; color: #6b7280; }
.ps-done-lt { background: #dcfce7; color: #16a34a; }

/* ── Mobile Showcase (App Store style) ── */
.mobile-showcase {
  padding: 80px 0 48px;
  background: #0d1117;
  overflow: hidden;
}
.mobile-showcase .section-tag {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
}
.mobile-showcase .section-title { color: #f1f5f9; }
.mobile-showcase .section-subtitle { color: rgba(255,255,255,.5); }
.mobile-showcase .section-header { margin-bottom: 52px; }

.ms-group { margin-bottom: 48px; }
.ms-group:last-child { margin-bottom: 0; }

.ms-group-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.ms-app-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.ms-app-icon .material-icons-round { font-size: 22px; }
.ms-icon--athlete { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.ms-icon--packer  { background: linear-gradient(135deg, #c05621, #f6ad55); }
.ms-group-title { font-size: 1rem; font-weight: 700; color: #f1f5f9; }
.ms-group-sub   { font-size: 0.75rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.ms-strip {
  display: flex;
  gap: 14px;
  padding: 6px 24px 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ms-strip::-webkit-scrollbar { display: none; }

/* Inside the product preview frame */
.ms-strip--preview {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  align-items: center;
  padding: 18px 32px;
}

.phone-frame--ms {
  width: 212px;
  height: 450px;
  border-radius: 36px;
  border-width: 7px;
  border-color: #2c2c2c;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform .25s ease;
  box-shadow: 0 0 0 1px #000, 0 24px 48px rgba(0,0,0,.65);
}
.phone-frame--ms:hover { transform: translateY(-6px); }
.phone-frame--ms .phone-island { width: 68px; height: 14px; top: 5px; }
.phone-frame--ms .prt-scroll { padding: 10px; }
.phone-frame--ms .prt-toolbar { padding: 7px 11px; }

/* Stat bars (packer stats screen) */
.prt-stat-big { font-size: 1.6rem; font-weight: 700; color: #111827; letter-spacing: -.03em; line-height: 1; margin-bottom: 2px; }
.prt-stat-sub { font-size: 0.62rem; color: #9ca3af; margin-bottom: 12px; }
.prt-bar-row  { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.prt-bar-label { font-size: 0.58rem; color: #6b7280; min-width: 38px; flex-shrink: 0; }
.prt-bar { flex: 1; height: 5px; background: #e5e7eb; border-radius: 99px; overflow: hidden; }
.prt-bar-fill { height: 100%; background: #1976d2; border-radius: 99px; }
.prt-bar-fill--amber { background: #d97706; }
.prt-bar-val  { font-size: 0.58rem; font-weight: 600; color: #111827; min-width: 30px; text-align: right; flex-shrink: 0; }

/* Credit badges (athlete conta screen) */
.prt-credit-badge { font-size: 0.52rem; font-weight: 700; padding: 1px 4px; border-radius: 3px; }
.prt-credit-badge--in  { background: #d1fae5; color: #065f46; }
.prt-credit-badge--out { background: #fee2e2; color: #991b1b; }

/* Responsive */
@media (max-width: 768px) {
  .preview-tabs { gap: 6px; }
  .preview-tab  { padding: 8px 14px; font-size: 0.8rem; }
  .preview-screens { height: 440px; }
  .mock-sidebar { display: none; }
  .mock-stats-row, .mock-summary-row, .mock-charts-row { grid-template-columns: repeat(2,1fr); }
  .mock-stats-row .mock-stat:nth-child(n+3) { display: none; }
  .mpack-stats { grid-template-columns: repeat(2,1fr); }
  .phone-frame { width: 230px; height: 430px; }
  .mf-toolbar-right .ac-chip { display: none; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
